Get cleaned population data with lower and upper limits of age.
age_population.Rd
This function helps clean up datasets of population data, which
might be similar to socialmixr::wpp_age()
or a dataset with columns
representing: population, location, age, and year. If age is numeric, it
groups ages into age groups with 5 year bins (0-4, 5-9, etc). It then
separates age groups into two column of these lower and upper limits.
Finally, it filters data passed to the specified year and location. If no
year or location is provided then all years or locations are used.
Usage
age_population(
data,
location_col = NULL,
location = NULL,
age_col,
year_col = NULL,
year = NULL
)
Arguments
- data
dataset containing information on population for a given age, country, and year
- location_col
bare variable name for the column with location information. If using, both
location_col
&location
must be specified.- location
character vector with location names. If using, both
location_col
&location
must be specified.- age_col
bare variable name for the column with age information
- year_col
bare variable name for the column with year information. If using, both
year_col
&year
must be specified.- year
numeric vector representing the desired year(s). If using, both
year_col
&year
must be specified.
Examples
world_data <- socialmixr::wpp_age()
world_data
#> country
#> 1 AFRICA
#> 2 AFRICA
#> 3 AFRICA
#> 4 AFRICA
#> 5 AFRICA
#> 6 AFRICA
#> 7 AFRICA
#> 8 AFRICA
#> 9 AFRICA
#> 10 AFRICA
#> 11 AFRICA
#> 12 AFRICA
#> 13 AFRICA
#> 14 AFRICA
#> 15 ASIA
#> 16 ASIA
#> 17 ASIA
#> 18 ASIA
#> 19 ASIA
#> 20 ASIA
#> 21 ASIA
#> 22 ASIA
#> 23 ASIA
#> 24 ASIA
#> 25 ASIA
#> 26 ASIA
#> 27 ASIA
#> 28 ASIA
#> 29 Afghanistan
#> 30 Afghanistan
#> 31 Afghanistan
#> 32 Afghanistan
#> 33 Afghanistan
#> 34 Afghanistan
#> 35 Afghanistan
#> 36 Afghanistan
#> 37 Afghanistan
#> 38 Afghanistan
#> 39 Afghanistan
#> 40 Afghanistan
#> 41 Afghanistan
#> 42 Afghanistan
#> 43 Albania
#> 44 Albania
#> 45 Albania
#> 46 Albania
#> 47 Albania
#> 48 Albania
#> 49 Albania
#> 50 Albania
#> 51 Albania
#> 52 Albania
#> 53 Albania
#> 54 Albania
#> 55 Albania
#> 56 Albania
#> 57 Algeria
#> 58 Algeria
#> 59 Algeria
#> 60 Algeria
#> 61 Algeria
#> 62 Algeria
#> 63 Algeria
#> 64 Algeria
#> 65 Algeria
#> 66 Algeria
#> 67 Algeria
#> 68 Algeria
#> 69 Algeria
#> 70 Algeria
#> 71 Angola
#> 72 Angola
#> 73 Angola
#> 74 Angola
#> 75 Angola
#> 76 Angola
#> 77 Angola
#> 78 Angola
#> 79 Angola
#> 80 Angola
#> 81 Angola
#> 82 Angola
#> 83 Angola
#> 84 Angola
#> 85 Antigua and Barbuda
#> 86 Antigua and Barbuda
#> 87 Antigua and Barbuda
#> 88 Antigua and Barbuda
#> 89 Antigua and Barbuda
#> 90 Antigua and Barbuda
#> 91 Antigua and Barbuda
#> 92 Antigua and Barbuda
#> 93 Antigua and Barbuda
#> 94 Antigua and Barbuda
#> 95 Antigua and Barbuda
#> 96 Antigua and Barbuda
#> 97 Antigua and Barbuda
#> 98 Antigua and Barbuda
#> 99 Argentina
#> 100 Argentina
#> 101 Argentina
#> 102 Argentina
#> 103 Argentina
#> 104 Argentina
#> 105 Argentina
#> 106 Argentina
#> 107 Argentina
#> 108 Argentina
#> 109 Argentina
#> 110 Argentina
#> 111 Argentina
#> 112 Argentina
#> 113 Armenia
#> 114 Armenia
#> 115 Armenia
#> 116 Armenia
#> 117 Armenia
#> 118 Armenia
#> 119 Armenia
#> 120 Armenia
#> 121 Armenia
#> 122 Armenia
#> 123 Armenia
#> 124 Armenia
#> 125 Armenia
#> 126 Armenia
#> 127 Aruba
#> 128 Aruba
#> 129 Aruba
#> 130 Aruba
#> 131 Aruba
#> 132 Aruba
#> 133 Aruba
#> 134 Aruba
#> 135 Aruba
#> 136 Aruba
#> 137 Aruba
#> 138 Aruba
#> 139 Aruba
#> 140 Aruba
#> 141 Australia
#> 142 Australia
#> 143 Australia
#> 144 Australia
#> 145 Australia
#> 146 Australia
#> 147 Australia
#> 148 Australia
#> 149 Australia
#> 150 Australia
#> 151 Australia
#> 152 Australia
#> 153 Australia
#> 154 Australia
#> 155 Australia/New Zealand
#> 156 Australia/New Zealand
#> 157 Australia/New Zealand
#> 158 Australia/New Zealand
#> 159 Australia/New Zealand
#> 160 Australia/New Zealand
#> 161 Australia/New Zealand
#> 162 Australia/New Zealand
#> 163 Australia/New Zealand
#> 164 Australia/New Zealand
#> 165 Australia/New Zealand
#> 166 Australia/New Zealand
#> 167 Australia/New Zealand
#> 168 Australia/New Zealand
#> 169 Austria
#> 170 Austria
#> 171 Austria
#> 172 Austria
#> 173 Austria
#> 174 Austria
#> 175 Austria
#> 176 Austria
#> 177 Austria
#> 178 Austria
#> 179 Austria
#> 180 Austria
#> 181 Austria
#> 182 Austria
#> 183 Azerbaijan
#> 184 Azerbaijan
#> 185 Azerbaijan
#> 186 Azerbaijan
#> 187 Azerbaijan
#> 188 Azerbaijan
#> 189 Azerbaijan
#> 190 Azerbaijan
#> 191 Azerbaijan
#> 192 Azerbaijan
#> 193 Azerbaijan
#> 194 Azerbaijan
#> 195 Azerbaijan
#> 196 Azerbaijan
#> 197 Bahamas
#> 198 Bahamas
#> 199 Bahamas
#> 200 Bahamas
#> 201 Bahamas
#> 202 Bahamas
#> 203 Bahamas
#> 204 Bahamas
#> 205 Bahamas
#> 206 Bahamas
#> 207 Bahamas
#> 208 Bahamas
#> 209 Bahamas
#> 210 Bahamas
#> 211 Bahrain
#> 212 Bahrain
#> 213 Bahrain
#> 214 Bahrain
#> 215 Bahrain
#> 216 Bahrain
#> 217 Bahrain
#> 218 Bahrain
#> 219 Bahrain
#> 220 Bahrain
#> 221 Bahrain
#> 222 Bahrain
#> 223 Bahrain
#> 224 Bahrain
#> 225 Bangladesh
#> 226 Bangladesh
#> 227 Bangladesh
#> 228 Bangladesh
#> 229 Bangladesh
#> 230 Bangladesh
#> 231 Bangladesh
#> 232 Bangladesh
#> 233 Bangladesh
#> 234 Bangladesh
#> 235 Bangladesh
#> 236 Bangladesh
#> 237 Bangladesh
#> 238 Bangladesh
#> 239 Barbados
#> 240 Barbados
#> 241 Barbados
#> 242 Barbados
#> 243 Barbados
#> 244 Barbados
#> 245 Barbados
#> 246 Barbados
#> 247 Barbados
#> 248 Barbados
#> 249 Barbados
#> 250 Barbados
#> 251 Barbados
#> 252 Barbados
#> 253 Belarus
#> 254 Belarus
#> 255 Belarus
#> 256 Belarus
#> 257 Belarus
#> 258 Belarus
#> 259 Belarus
#> 260 Belarus
#> 261 Belarus
#> 262 Belarus
#> 263 Belarus
#> 264 Belarus
#> 265 Belarus
#> 266 Belarus
#> 267 Belgium
#> 268 Belgium
#> 269 Belgium
#> 270 Belgium
#> 271 Belgium
#> 272 Belgium
#> 273 Belgium
#> 274 Belgium
#> 275 Belgium
#> 276 Belgium
#> 277 Belgium
#> 278 Belgium
#> 279 Belgium
#> 280 Belgium
#> 281 Belize
#> 282 Belize
#> 283 Belize
#> 284 Belize
#> 285 Belize
#> 286 Belize
#> 287 Belize
#> 288 Belize
#> 289 Belize
#> 290 Belize
#> 291 Belize
#> 292 Belize
#> 293 Belize
#> 294 Belize
#> 295 Benin
#> 296 Benin
#> 297 Benin
#> 298 Benin
#> 299 Benin
#> 300 Benin
#> 301 Benin
#> 302 Benin
#> 303 Benin
#> 304 Benin
#> 305 Benin
#> 306 Benin
#> 307 Benin
#> 308 Benin
#> 309 Bhutan
#> 310 Bhutan
#> 311 Bhutan
#> 312 Bhutan
#> 313 Bhutan
#> 314 Bhutan
#> 315 Bhutan
#> 316 Bhutan
#> 317 Bhutan
#> 318 Bhutan
#> 319 Bhutan
#> 320 Bhutan
#> 321 Bhutan
#> 322 Bhutan
#> 323 Bolivia (Plurinational State of)
#> 324 Bolivia (Plurinational State of)
#> 325 Bolivia (Plurinational State of)
#> 326 Bolivia (Plurinational State of)
#> 327 Bolivia (Plurinational State of)
#> 328 Bolivia (Plurinational State of)
#> 329 Bolivia (Plurinational State of)
#> 330 Bolivia (Plurinational State of)
#> 331 Bolivia (Plurinational State of)
#> 332 Bolivia (Plurinational State of)
#> 333 Bolivia (Plurinational State of)
#> 334 Bolivia (Plurinational State of)
#> 335 Bolivia (Plurinational State of)
#> 336 Bolivia (Plurinational State of)
#> 337 Bosnia and Herzegovina
#> 338 Bosnia and Herzegovina
#> 339 Bosnia and Herzegovina
#> 340 Bosnia and Herzegovina
#> 341 Bosnia and Herzegovina
#> 342 Bosnia and Herzegovina
#> 343 Bosnia and Herzegovina
#> 344 Bosnia and Herzegovina
#> 345 Bosnia and Herzegovina
#> 346 Bosnia and Herzegovina
#> 347 Bosnia and Herzegovina
#> 348 Bosnia and Herzegovina
#> 349 Bosnia and Herzegovina
#> 350 Bosnia and Herzegovina
#> 351 Botswana
#> 352 Botswana
#> 353 Botswana
#> 354 Botswana
#> 355 Botswana
#> 356 Botswana
#> 357 Botswana
#> 358 Botswana
#> 359 Botswana
#> 360 Botswana
#> 361 Botswana
#> 362 Botswana
#> 363 Botswana
#> 364 Botswana
#> 365 Brazil
#> 366 Brazil
#> 367 Brazil
#> 368 Brazil
#> 369 Brazil
#> 370 Brazil
#> 371 Brazil
#> 372 Brazil
#> 373 Brazil
#> 374 Brazil
#> 375 Brazil
#> 376 Brazil
#> 377 Brazil
#> 378 Brazil
#> 379 Brunei Darussalam
#> 380 Brunei Darussalam
#> 381 Brunei Darussalam
#> 382 Brunei Darussalam
#> 383 Brunei Darussalam
#> 384 Brunei Darussalam
#> 385 Brunei Darussalam
#> 386 Brunei Darussalam
#> 387 Brunei Darussalam
#> 388 Brunei Darussalam
#> 389 Brunei Darussalam
#> 390 Brunei Darussalam
#> 391 Brunei Darussalam
#> 392 Brunei Darussalam
#> 393 Bulgaria
#> 394 Bulgaria
#> 395 Bulgaria
#> 396 Bulgaria
#> 397 Bulgaria
#> 398 Bulgaria
#> 399 Bulgaria
#> 400 Bulgaria
#> 401 Bulgaria
#> 402 Bulgaria
#> 403 Bulgaria
#> 404 Bulgaria
#> 405 Bulgaria
#> 406 Bulgaria
#> 407 Burkina Faso
#> 408 Burkina Faso
#> 409 Burkina Faso
#> 410 Burkina Faso
#> 411 Burkina Faso
#> 412 Burkina Faso
#> 413 Burkina Faso
#> 414 Burkina Faso
#> 415 Burkina Faso
#> 416 Burkina Faso
#> 417 Burkina Faso
#> 418 Burkina Faso
#> 419 Burkina Faso
#> 420 Burkina Faso
#> 421 Burundi
#> 422 Burundi
#> 423 Burundi
#> 424 Burundi
#> 425 Burundi
#> 426 Burundi
#> 427 Burundi
#> 428 Burundi
#> 429 Burundi
#> 430 Burundi
#> 431 Burundi
#> 432 Burundi
#> 433 Burundi
#> 434 Burundi
#> 435 Cabo Verde
#> 436 Cabo Verde
#> 437 Cabo Verde
#> 438 Cabo Verde
#> 439 Cabo Verde
#> 440 Cabo Verde
#> 441 Cabo Verde
#> 442 Cabo Verde
#> 443 Cabo Verde
#> 444 Cabo Verde
#> 445 Cabo Verde
#> 446 Cabo Verde
#> 447 Cabo Verde
#> 448 Cabo Verde
#> 449 Cambodia
#> 450 Cambodia
#> 451 Cambodia
#> 452 Cambodia
#> 453 Cambodia
#> 454 Cambodia
#> 455 Cambodia
#> 456 Cambodia
#> 457 Cambodia
#> 458 Cambodia
#> 459 Cambodia
#> 460 Cambodia
#> 461 Cambodia
#> 462 Cambodia
#> 463 Cameroon
#> 464 Cameroon
#> 465 Cameroon
#> 466 Cameroon
#> 467 Cameroon
#> 468 Cameroon
#> 469 Cameroon
#> 470 Cameroon
#> 471 Cameroon
#> 472 Cameroon
#> 473 Cameroon
#> 474 Cameroon
#> 475 Cameroon
#> 476 Cameroon
#> 477 Canada
#> 478 Canada
#> 479 Canada
#> 480 Canada
#> 481 Canada
#> 482 Canada
#> 483 Canada
#> 484 Canada
#> 485 Canada
#> 486 Canada
#> 487 Canada
#> 488 Canada
#> 489 Canada
#> 490 Canada
#> 491 Caribbean
#> 492 Caribbean
#> 493 Caribbean
#> 494 Caribbean
#> 495 Caribbean
#> 496 Caribbean
#> 497 Caribbean
#> 498 Caribbean
#> 499 Caribbean
#> 500 Caribbean
#> 501 Caribbean
#> 502 Caribbean
#> 503 Caribbean
#> 504 Caribbean
#> 505 Central African Republic
#> 506 Central African Republic
#> 507 Central African Republic
#> 508 Central African Republic
#> 509 Central African Republic
#> 510 Central African Republic
#> 511 Central African Republic
#> 512 Central African Republic
#> 513 Central African Republic
#> 514 Central African Republic
#> 515 Central African Republic
#> 516 Central African Republic
#> 517 Central African Republic
#> 518 Central African Republic
#> 519 Central America
#> 520 Central America
#> 521 Central America
#> 522 Central America
#> 523 Central America
#> 524 Central America
#> 525 Central America
#> 526 Central America
#> 527 Central America
#> 528 Central America
#> 529 Central America
#> 530 Central America
#> 531 Central America
#> 532 Central America
#> 533 Central Asia
#> 534 Central Asia
#> 535 Central Asia
#> 536 Central Asia
#> 537 Central Asia
#> 538 Central Asia
#> 539 Central Asia
#> 540 Central Asia
#> 541 Central Asia
#> 542 Central Asia
#> 543 Central Asia
#> 544 Central Asia
#> 545 Central Asia
#> 546 Central Asia
#> 547 Chad
#> 548 Chad
#> 549 Chad
#> 550 Chad
#> 551 Chad
#> 552 Chad
#> 553 Chad
#> 554 Chad
#> 555 Chad
#> 556 Chad
#> 557 Chad
#> 558 Chad
#> 559 Chad
#> 560 Chad
#> 561 Channel Islands
#> 562 Channel Islands
#> 563 Channel Islands
#> 564 Channel Islands
#> 565 Channel Islands
#> 566 Channel Islands
#> 567 Channel Islands
#> 568 Channel Islands
#> 569 Channel Islands
#> 570 Channel Islands
#> 571 Channel Islands
#> 572 Channel Islands
#> 573 Channel Islands
#> 574 Channel Islands
#> 575 Chile
#> 576 Chile
#> 577 Chile
#> 578 Chile
#> 579 Chile
#> 580 Chile
#> 581 Chile
#> 582 Chile
#> 583 Chile
#> 584 Chile
#> 585 Chile
#> 586 Chile
#> 587 Chile
#> 588 Chile
#> 589 China
#> 590 China
#> 591 China
#> 592 China
#> 593 China
#> 594 China
#> 595 China
#> 596 China
#> 597 China
#> 598 China
#> 599 China
#> 600 China
#> 601 China
#> 602 China
#> 603 China, Hong Kong SAR
#> 604 China, Hong Kong SAR
#> 605 China, Hong Kong SAR
#> 606 China, Hong Kong SAR
#> 607 China, Hong Kong SAR
#> 608 China, Hong Kong SAR
#> 609 China, Hong Kong SAR
#> 610 China, Hong Kong SAR
#> 611 China, Hong Kong SAR
#> 612 China, Hong Kong SAR
#> 613 China, Hong Kong SAR
#> 614 China, Hong Kong SAR
#> 615 China, Hong Kong SAR
#> 616 China, Hong Kong SAR
#> 617 China, Macao SAR
#> 618 China, Macao SAR
#> 619 China, Macao SAR
#> 620 China, Macao SAR
#> 621 China, Macao SAR
#> 622 China, Macao SAR
#> 623 China, Macao SAR
#> 624 China, Macao SAR
#> 625 China, Macao SAR
#> 626 China, Macao SAR
#> 627 China, Macao SAR
#> 628 China, Macao SAR
#> 629 China, Macao SAR
#> 630 China, Macao SAR
#> 631 China, Taiwan Province of China
#> 632 China, Taiwan Province of China
#> 633 China, Taiwan Province of China
#> 634 China, Taiwan Province of China
#> 635 China, Taiwan Province of China
#> 636 China, Taiwan Province of China
#> 637 China, Taiwan Province of China
#> 638 China, Taiwan Province of China
#> 639 China, Taiwan Province of China
#> 640 China, Taiwan Province of China
#> 641 China, Taiwan Province of China
#> 642 China, Taiwan Province of China
#> 643 China, Taiwan Province of China
#> 644 China, Taiwan Province of China
#> 645 Colombia
#> 646 Colombia
#> 647 Colombia
#> 648 Colombia
#> 649 Colombia
#> 650 Colombia
#> 651 Colombia
#> 652 Colombia
#> 653 Colombia
#> 654 Colombia
#> 655 Colombia
#> 656 Colombia
#> 657 Colombia
#> 658 Colombia
#> 659 Comoros
#> 660 Comoros
#> 661 Comoros
#> 662 Comoros
#> 663 Comoros
#> 664 Comoros
#> 665 Comoros
#> 666 Comoros
#> 667 Comoros
#> 668 Comoros
#> 669 Comoros
#> 670 Comoros
#> 671 Comoros
#> 672 Comoros
#> 673 Congo
#> 674 Congo
#> 675 Congo
#> 676 Congo
#> 677 Congo
#> 678 Congo
#> 679 Congo
#> 680 Congo
#> 681 Congo
#> 682 Congo
#> 683 Congo
#> 684 Congo
#> 685 Congo
#> 686 Congo
#> 687 Costa Rica
#> 688 Costa Rica
#> 689 Costa Rica
#> 690 Costa Rica
#> 691 Costa Rica
#> 692 Costa Rica
#> 693 Costa Rica
#> 694 Costa Rica
#> 695 Costa Rica
#> 696 Costa Rica
#> 697 Costa Rica
#> 698 Costa Rica
#> 699 Costa Rica
#> 700 Costa Rica
#> 701 Cote d'Ivoire
#> 702 Cote d'Ivoire
#> 703 Cote d'Ivoire
#> 704 Cote d'Ivoire
#> 705 Cote d'Ivoire
#> 706 Cote d'Ivoire
#> 707 Cote d'Ivoire
#> 708 Cote d'Ivoire
#> 709 Cote d'Ivoire
#> 710 Cote d'Ivoire
#> 711 Cote d'Ivoire
#> 712 Cote d'Ivoire
#> 713 Cote d'Ivoire
#> 714 Cote d'Ivoire
#> 715 Croatia
#> 716 Croatia
#> 717 Croatia
#> 718 Croatia
#> 719 Croatia
#> 720 Croatia
#> 721 Croatia
#> 722 Croatia
#> 723 Croatia
#> 724 Croatia
#> 725 Croatia
#> 726 Croatia
#> 727 Croatia
#> 728 Croatia
#> 729 Cuba
#> 730 Cuba
#> 731 Cuba
#> 732 Cuba
#> 733 Cuba
#> 734 Cuba
#> 735 Cuba
#> 736 Cuba
#> 737 Cuba
#> 738 Cuba
#> 739 Cuba
#> 740 Cuba
#> 741 Cuba
#> 742 Cuba
#> 743 Curacao
#> 744 Curacao
#> 745 Curacao
#> 746 Curacao
#> 747 Curacao
#> 748 Curacao
#> 749 Curacao
#> 750 Curacao
#> 751 Curacao
#> 752 Curacao
#> 753 Curacao
#> 754 Curacao
#> 755 Curacao
#> 756 Curacao
#> 757 Cyprus
#> 758 Cyprus
#> 759 Cyprus
#> 760 Cyprus
#> 761 Cyprus
#> 762 Cyprus
#> 763 Cyprus
#> 764 Cyprus
#> 765 Cyprus
#> 766 Cyprus
#> 767 Cyprus
#> 768 Cyprus
#> 769 Cyprus
#> 770 Cyprus
#> 771 Czechia
#> 772 Czechia
#> 773 Czechia
#> 774 Czechia
#> 775 Czechia
#> 776 Czechia
#> 777 Czechia
#> 778 Czechia
#> 779 Czechia
#> 780 Czechia
#> 781 Czechia
#> 782 Czechia
#> 783 Czechia
#> 784 Czechia
#> 785 Dem. People's Republic of Korea
#> 786 Dem. People's Republic of Korea
#> 787 Dem. People's Republic of Korea
#> 788 Dem. People's Republic of Korea
#> 789 Dem. People's Republic of Korea
#> 790 Dem. People's Republic of Korea
#> 791 Dem. People's Republic of Korea
#> 792 Dem. People's Republic of Korea
#> 793 Dem. People's Republic of Korea
#> 794 Dem. People's Republic of Korea
#> 795 Dem. People's Republic of Korea
#> 796 Dem. People's Republic of Korea
#> 797 Dem. People's Republic of Korea
#> 798 Dem. People's Republic of Korea
#> 799 Democratic Republic of the Congo
#> 800 Democratic Republic of the Congo
#> 801 Democratic Republic of the Congo
#> 802 Democratic Republic of the Congo
#> 803 Democratic Republic of the Congo
#> 804 Democratic Republic of the Congo
#> 805 Democratic Republic of the Congo
#> 806 Democratic Republic of the Congo
#> 807 Democratic Republic of the Congo
#> 808 Democratic Republic of the Congo
#> 809 Democratic Republic of the Congo
#> 810 Democratic Republic of the Congo
#> 811 Democratic Republic of the Congo
#> 812 Democratic Republic of the Congo
#> 813 Denmark
#> 814 Denmark
#> 815 Denmark
#> 816 Denmark
#> 817 Denmark
#> 818 Denmark
#> 819 Denmark
#> 820 Denmark
#> 821 Denmark
#> 822 Denmark
#> 823 Denmark
#> 824 Denmark
#> 825 Denmark
#> 826 Denmark
#> 827 Djibouti
#> 828 Djibouti
#> 829 Djibouti
#> 830 Djibouti
#> 831 Djibouti
#> 832 Djibouti
#> 833 Djibouti
#> 834 Djibouti
#> 835 Djibouti
#> 836 Djibouti
#> 837 Djibouti
#> 838 Djibouti
#> 839 Djibouti
#> 840 Djibouti
#> 841 Dominican Republic
#> 842 Dominican Republic
#> 843 Dominican Republic
#> 844 Dominican Republic
#> 845 Dominican Republic
#> 846 Dominican Republic
#> 847 Dominican Republic
#> 848 Dominican Republic
#> 849 Dominican Republic
#> 850 Dominican Republic
#> 851 Dominican Republic
#> 852 Dominican Republic
#> 853 Dominican Republic
#> 854 Dominican Republic
#> 855 EUROPE
#> 856 EUROPE
#> 857 EUROPE
#> 858 EUROPE
#> 859 EUROPE
#> 860 EUROPE
#> 861 EUROPE
#> 862 EUROPE
#> 863 EUROPE
#> 864 EUROPE
#> 865 EUROPE
#> 866 EUROPE
#> 867 EUROPE
#> 868 EUROPE
#> 869 Eastern Africa
#> 870 Eastern Africa
#> 871 Eastern Africa
#> 872 Eastern Africa
#> 873 Eastern Africa
#> 874 Eastern Africa
#> 875 Eastern Africa
#> 876 Eastern Africa
#> 877 Eastern Africa
#> 878 Eastern Africa
#> 879 Eastern Africa
#> 880 Eastern Africa
#> 881 Eastern Africa
#> 882 Eastern Africa
#> 883 Eastern Asia
#> 884 Eastern Asia
#> 885 Eastern Asia
#> 886 Eastern Asia
#> 887 Eastern Asia
#> 888 Eastern Asia
#> 889 Eastern Asia
#> 890 Eastern Asia
#> 891 Eastern Asia
#> 892 Eastern Asia
#> 893 Eastern Asia
#> 894 Eastern Asia
#> 895 Eastern Asia
#> 896 Eastern Asia
#> 897 Eastern Europe
#> 898 Eastern Europe
#> 899 Eastern Europe
#> 900 Eastern Europe
#> 901 Eastern Europe
#> 902 Eastern Europe
#> 903 Eastern Europe
#> 904 Eastern Europe
#> 905 Eastern Europe
#> 906 Eastern Europe
#> 907 Eastern Europe
#> 908 Eastern Europe
#> 909 Eastern Europe
#> 910 Eastern Europe
#> 911 Ecuador
#> 912 Ecuador
#> 913 Ecuador
#> 914 Ecuador
#> 915 Ecuador
#> 916 Ecuador
#> 917 Ecuador
#> 918 Ecuador
#> 919 Ecuador
#> 920 Ecuador
#> 921 Ecuador
#> 922 Ecuador
#> 923 Ecuador
#> 924 Ecuador
#> 925 Egypt
#> 926 Egypt
#> 927 Egypt
#> 928 Egypt
#> 929 Egypt
#> 930 Egypt
#> 931 Egypt
#> 932 Egypt
#> 933 Egypt
#> 934 Egypt
#> 935 Egypt
#> 936 Egypt
#> 937 Egypt
#> 938 Egypt
#> 939 El Salvador
#> 940 El Salvador
#> 941 El Salvador
#> 942 El Salvador
#> 943 El Salvador
#> 944 El Salvador
#> 945 El Salvador
#> 946 El Salvador
#> 947 El Salvador
#> 948 El Salvador
#> 949 El Salvador
#> 950 El Salvador
#> 951 El Salvador
#> 952 El Salvador
#> 953 Equatorial Guinea
#> 954 Equatorial Guinea
#> 955 Equatorial Guinea
#> 956 Equatorial Guinea
#> 957 Equatorial Guinea
#> 958 Equatorial Guinea
#> 959 Equatorial Guinea
#> 960 Equatorial Guinea
#> 961 Equatorial Guinea
#> 962 Equatorial Guinea
#> 963 Equatorial Guinea
#> 964 Equatorial Guinea
#> 965 Equatorial Guinea
#> 966 Equatorial Guinea
#> 967 Eritrea
#> 968 Eritrea
#> 969 Eritrea
#> 970 Eritrea
#> 971 Eritrea
#> 972 Eritrea
#> 973 Eritrea
#> 974 Eritrea
#> 975 Eritrea
#> 976 Eritrea
#> 977 Eritrea
#> 978 Eritrea
#> 979 Eritrea
#> 980 Eritrea
#> 981 Estonia
#> 982 Estonia
#> 983 Estonia
#> 984 Estonia
#> 985 Estonia
#> 986 Estonia
#> 987 Estonia
#> 988 Estonia
#> 989 Estonia
#> 990 Estonia
#> 991 Estonia
#> 992 Estonia
#> 993 Estonia
#> 994 Estonia
#> 995 Ethiopia
#> 996 Ethiopia
#> 997 Ethiopia
#> 998 Ethiopia
#> 999 Ethiopia
#> 1000 Ethiopia
#> 1001 Ethiopia
#> 1002 Ethiopia
#> 1003 Ethiopia
#> 1004 Ethiopia
#> 1005 Ethiopia
#> 1006 Ethiopia
#> 1007 Ethiopia
#> 1008 Ethiopia
#> 1009 Fiji
#> 1010 Fiji
#> 1011 Fiji
#> 1012 Fiji
#> 1013 Fiji
#> 1014 Fiji
#> 1015 Fiji
#> 1016 Fiji
#> 1017 Fiji
#> 1018 Fiji
#> 1019 Fiji
#> 1020 Fiji
#> 1021 Fiji
#> 1022 Fiji
#> 1023 Finland
#> 1024 Finland
#> 1025 Finland
#> 1026 Finland
#> 1027 Finland
#> 1028 Finland
#> 1029 Finland
#> 1030 Finland
#> 1031 Finland
#> 1032 Finland
#> 1033 Finland
#> 1034 Finland
#> 1035 Finland
#> 1036 Finland
#> 1037 France
#> 1038 France
#> 1039 France
#> 1040 France
#> 1041 France
#> 1042 France
#> 1043 France
#> 1044 France
#> 1045 France
#> 1046 France
#> 1047 France
#> 1048 France
#> 1049 France
#> 1050 France
#> 1051 French Guiana
#> 1052 French Guiana
#> 1053 French Guiana
#> 1054 French Guiana
#> 1055 French Guiana
#> 1056 French Guiana
#> 1057 French Guiana
#> 1058 French Guiana
#> 1059 French Guiana
#> 1060 French Guiana
#> 1061 French Guiana
#> 1062 French Guiana
#> 1063 French Guiana
#> 1064 French Guiana
#> 1065 French Polynesia
#> 1066 French Polynesia
#> 1067 French Polynesia
#> 1068 French Polynesia
#> 1069 French Polynesia
#> 1070 French Polynesia
#> 1071 French Polynesia
#> 1072 French Polynesia
#> 1073 French Polynesia
#> 1074 French Polynesia
#> 1075 French Polynesia
#> 1076 French Polynesia
#> 1077 French Polynesia
#> 1078 French Polynesia
#> 1079 Gabon
#> 1080 Gabon
#> 1081 Gabon
#> 1082 Gabon
#> 1083 Gabon
#> 1084 Gabon
#> 1085 Gabon
#> 1086 Gabon
#> 1087 Gabon
#> 1088 Gabon
#> 1089 Gabon
#> 1090 Gabon
#> 1091 Gabon
#> 1092 Gabon
#> 1093 Gambia
#> 1094 Gambia
#> 1095 Gambia
#> 1096 Gambia
#> 1097 Gambia
#> 1098 Gambia
#> 1099 Gambia
#> 1100 Gambia
#> 1101 Gambia
#> 1102 Gambia
#> 1103 Gambia
#> 1104 Gambia
#> 1105 Gambia
#> 1106 Gambia
#> 1107 Georgia
#> 1108 Georgia
#> 1109 Georgia
#> 1110 Georgia
#> 1111 Georgia
#> 1112 Georgia
#> 1113 Georgia
#> 1114 Georgia
#> 1115 Georgia
#> 1116 Georgia
#> 1117 Georgia
#> 1118 Georgia
#> 1119 Georgia
#> 1120 Georgia
#> 1121 Germany
#> 1122 Germany
#> 1123 Germany
#> 1124 Germany
#> 1125 Germany
#> 1126 Germany
#> 1127 Germany
#> 1128 Germany
#> 1129 Germany
#> 1130 Germany
#> 1131 Germany
#> 1132 Germany
#> 1133 Germany
#> 1134 Germany
#> 1135 Ghana
#> 1136 Ghana
#> 1137 Ghana
#> 1138 Ghana
#> 1139 Ghana
#> 1140 Ghana
#> 1141 Ghana
#> 1142 Ghana
#> 1143 Ghana
#> 1144 Ghana
#> 1145 Ghana
#> 1146 Ghana
#> 1147 Ghana
#> 1148 Ghana
#> 1149 Greece
#> 1150 Greece
#> 1151 Greece
#> 1152 Greece
#> 1153 Greece
#> 1154 Greece
#> 1155 Greece
#> 1156 Greece
#> 1157 Greece
#> 1158 Greece
#> 1159 Greece
#> 1160 Greece
#> 1161 Greece
#> 1162 Greece
#> 1163 Grenada
#> 1164 Grenada
#> 1165 Grenada
#> 1166 Grenada
#> 1167 Grenada
#> 1168 Grenada
#> 1169 Grenada
#> 1170 Grenada
#> 1171 Grenada
#> 1172 Grenada
#> 1173 Grenada
#> 1174 Grenada
#> 1175 Grenada
#> 1176 Grenada
#> 1177 Guadeloupe
#> 1178 Guadeloupe
#> 1179 Guadeloupe
#> 1180 Guadeloupe
#> 1181 Guadeloupe
#> 1182 Guadeloupe
#> 1183 Guadeloupe
#> 1184 Guadeloupe
#> 1185 Guadeloupe
#> 1186 Guadeloupe
#> 1187 Guadeloupe
#> 1188 Guadeloupe
#> 1189 Guadeloupe
#> 1190 Guadeloupe
#> 1191 Guam
#> 1192 Guam
#> 1193 Guam
#> 1194 Guam
#> 1195 Guam
#> 1196 Guam
#> 1197 Guam
#> 1198 Guam
#> 1199 Guam
#> 1200 Guam
#> 1201 Guam
#> 1202 Guam
#> 1203 Guam
#> 1204 Guam
#> 1205 Guatemala
#> 1206 Guatemala
#> 1207 Guatemala
#> 1208 Guatemala
#> 1209 Guatemala
#> 1210 Guatemala
#> 1211 Guatemala
#> 1212 Guatemala
#> 1213 Guatemala
#> 1214 Guatemala
#> 1215 Guatemala
#> 1216 Guatemala
#> 1217 Guatemala
#> 1218 Guatemala
#> 1219 Guinea
#> 1220 Guinea
#> 1221 Guinea
#> 1222 Guinea
#> 1223 Guinea
#> 1224 Guinea
#> 1225 Guinea
#> 1226 Guinea
#> 1227 Guinea
#> 1228 Guinea
#> 1229 Guinea
#> 1230 Guinea
#> 1231 Guinea
#> 1232 Guinea
#> 1233 Guinea-Bissau
#> 1234 Guinea-Bissau
#> 1235 Guinea-Bissau
#> 1236 Guinea-Bissau
#> 1237 Guinea-Bissau
#> 1238 Guinea-Bissau
#> 1239 Guinea-Bissau
#> 1240 Guinea-Bissau
#> 1241 Guinea-Bissau
#> 1242 Guinea-Bissau
#> 1243 Guinea-Bissau
#> 1244 Guinea-Bissau
#> 1245 Guinea-Bissau
#> 1246 Guinea-Bissau
#> 1247 Guyana
#> 1248 Guyana
#> 1249 Guyana
#> 1250 Guyana
#> 1251 Guyana
#> 1252 Guyana
#> 1253 Guyana
#> 1254 Guyana
#> 1255 Guyana
#> 1256 Guyana
#> 1257 Guyana
#> 1258 Guyana
#> 1259 Guyana
#> 1260 Guyana
#> 1261 Haiti
#> 1262 Haiti
#> 1263 Haiti
#> 1264 Haiti
#> 1265 Haiti
#> 1266 Haiti
#> 1267 Haiti
#> 1268 Haiti
#> 1269 Haiti
#> 1270 Haiti
#> 1271 Haiti
#> 1272 Haiti
#> 1273 Haiti
#> 1274 Haiti
#> 1275 High-income countries
#> 1276 High-income countries
#> 1277 High-income countries
#> 1278 High-income countries
#> 1279 High-income countries
#> 1280 High-income countries
#> 1281 High-income countries
#> 1282 High-income countries
#> 1283 High-income countries
#> 1284 High-income countries
#> 1285 High-income countries
#> 1286 High-income countries
#> 1287 High-income countries
#> 1288 High-income countries
#> 1289 Honduras
#> 1290 Honduras
#> 1291 Honduras
#> 1292 Honduras
#> 1293 Honduras
#> 1294 Honduras
#> 1295 Honduras
#> 1296 Honduras
#> 1297 Honduras
#> 1298 Honduras
#> 1299 Honduras
#> 1300 Honduras
#> 1301 Honduras
#> 1302 Honduras
#> 1303 Hungary
#> 1304 Hungary
#> 1305 Hungary
#> 1306 Hungary
#> 1307 Hungary
#> 1308 Hungary
#> 1309 Hungary
#> 1310 Hungary
#> 1311 Hungary
#> 1312 Hungary
#> 1313 Hungary
#> 1314 Hungary
#> 1315 Hungary
#> 1316 Hungary
#> 1317 Iceland
#> 1318 Iceland
#> 1319 Iceland
#> 1320 Iceland
#> 1321 Iceland
#> 1322 Iceland
#> 1323 Iceland
#> 1324 Iceland
#> 1325 Iceland
#> 1326 Iceland
#> 1327 Iceland
#> 1328 Iceland
#> 1329 Iceland
#> 1330 Iceland
#> 1331 India
#> 1332 India
#> 1333 India
#> 1334 India
#> 1335 India
#> 1336 India
#> 1337 India
#> 1338 India
#> 1339 India
#> 1340 India
#> 1341 India
#> 1342 India
#> 1343 India
#> 1344 India
#> 1345 Indonesia
#> 1346 Indonesia
#> 1347 Indonesia
#> 1348 Indonesia
#> 1349 Indonesia
#> 1350 Indonesia
#> 1351 Indonesia
#> 1352 Indonesia
#> 1353 Indonesia
#> 1354 Indonesia
#> 1355 Indonesia
#> 1356 Indonesia
#> 1357 Indonesia
#> 1358 Indonesia
#> 1359 Iran (Islamic Republic of)
#> 1360 Iran (Islamic Republic of)
#> 1361 Iran (Islamic Republic of)
#> 1362 Iran (Islamic Republic of)
#> 1363 Iran (Islamic Republic of)
#> 1364 Iran (Islamic Republic of)
#> 1365 Iran (Islamic Republic of)
#> 1366 Iran (Islamic Republic of)
#> 1367 Iran (Islamic Republic of)
#> 1368 Iran (Islamic Republic of)
#> 1369 Iran (Islamic Republic of)
#> 1370 Iran (Islamic Republic of)
#> 1371 Iran (Islamic Republic of)
#> 1372 Iran (Islamic Republic of)
#> 1373 Iraq
#> 1374 Iraq
#> 1375 Iraq
#> 1376 Iraq
#> 1377 Iraq
#> 1378 Iraq
#> 1379 Iraq
#> 1380 Iraq
#> 1381 Iraq
#> 1382 Iraq
#> 1383 Iraq
#> 1384 Iraq
#> 1385 Iraq
#> 1386 Iraq
#> 1387 Ireland
#> 1388 Ireland
#> 1389 Ireland
#> 1390 Ireland
#> 1391 Ireland
#> 1392 Ireland
#> 1393 Ireland
#> 1394 Ireland
#> 1395 Ireland
#> 1396 Ireland
#> 1397 Ireland
#> 1398 Ireland
#> 1399 Ireland
#> 1400 Ireland
#> 1401 Israel
#> 1402 Israel
#> 1403 Israel
#> 1404 Israel
#> 1405 Israel
#> 1406 Israel
#> 1407 Israel
#> 1408 Israel
#> 1409 Israel
#> 1410 Israel
#> 1411 Israel
#> 1412 Israel
#> 1413 Israel
#> 1414 Israel
#> 1415 Italy
#> 1416 Italy
#> 1417 Italy
#> 1418 Italy
#> 1419 Italy
#> 1420 Italy
#> 1421 Italy
#> 1422 Italy
#> 1423 Italy
#> 1424 Italy
#> 1425 Italy
#> 1426 Italy
#> 1427 Italy
#> 1428 Italy
#> 1429 Jamaica
#> 1430 Jamaica
#> 1431 Jamaica
#> 1432 Jamaica
#> 1433 Jamaica
#> 1434 Jamaica
#> 1435 Jamaica
#> 1436 Jamaica
#> 1437 Jamaica
#> 1438 Jamaica
#> 1439 Jamaica
#> 1440 Jamaica
#> 1441 Jamaica
#> 1442 Jamaica
#> 1443 Japan
#> 1444 Japan
#> 1445 Japan
#> 1446 Japan
#> 1447 Japan
#> 1448 Japan
#> 1449 Japan
#> 1450 Japan
#> 1451 Japan
#> 1452 Japan
#> 1453 Japan
#> 1454 Japan
#> 1455 Japan
#> 1456 Japan
#> 1457 Jordan
#> 1458 Jordan
#> 1459 Jordan
#> 1460 Jordan
#> 1461 Jordan
#> 1462 Jordan
#> 1463 Jordan
#> 1464 Jordan
#> 1465 Jordan
#> 1466 Jordan
#> 1467 Jordan
#> 1468 Jordan
#> 1469 Jordan
#> 1470 Jordan
#> 1471 Kazakhstan
#> 1472 Kazakhstan
#> 1473 Kazakhstan
#> 1474 Kazakhstan
#> 1475 Kazakhstan
#> 1476 Kazakhstan
#> 1477 Kazakhstan
#> 1478 Kazakhstan
#> 1479 Kazakhstan
#> 1480 Kazakhstan
#> 1481 Kazakhstan
#> 1482 Kazakhstan
#> 1483 Kazakhstan
#> 1484 Kazakhstan
#> 1485 Kenya
#> 1486 Kenya
#> 1487 Kenya
#> 1488 Kenya
#> 1489 Kenya
#> 1490 Kenya
#> 1491 Kenya
#> 1492 Kenya
#> 1493 Kenya
#> 1494 Kenya
#> 1495 Kenya
#> 1496 Kenya
#> 1497 Kenya
#> 1498 Kenya
#> 1499 Kiribati
#> 1500 Kiribati
#> 1501 Kiribati
#> 1502 Kiribati
#> 1503 Kiribati
#> 1504 Kiribati
#> 1505 Kiribati
#> 1506 Kiribati
#> 1507 Kiribati
#> 1508 Kiribati
#> 1509 Kiribati
#> 1510 Kiribati
#> 1511 Kiribati
#> 1512 Kiribati
#> 1513 Kuwait
#> 1514 Kuwait
#> 1515 Kuwait
#> 1516 Kuwait
#> 1517 Kuwait
#> 1518 Kuwait
#> 1519 Kuwait
#> 1520 Kuwait
#> 1521 Kuwait
#> 1522 Kuwait
#> 1523 Kuwait
#> 1524 Kuwait
#> 1525 Kuwait
#> 1526 Kuwait
#> 1527 Kyrgyzstan
#> 1528 Kyrgyzstan
#> 1529 Kyrgyzstan
#> 1530 Kyrgyzstan
#> 1531 Kyrgyzstan
#> 1532 Kyrgyzstan
#> 1533 Kyrgyzstan
#> 1534 Kyrgyzstan
#> 1535 Kyrgyzstan
#> 1536 Kyrgyzstan
#> 1537 Kyrgyzstan
#> 1538 Kyrgyzstan
#> 1539 Kyrgyzstan
#> 1540 Kyrgyzstan
#> 1541 LATIN AMERICA AND THE CARIBBEAN
#> 1542 LATIN AMERICA AND THE CARIBBEAN
#> 1543 LATIN AMERICA AND THE CARIBBEAN
#> 1544 LATIN AMERICA AND THE CARIBBEAN
#> 1545 LATIN AMERICA AND THE CARIBBEAN
#> 1546 LATIN AMERICA AND THE CARIBBEAN
#> 1547 LATIN AMERICA AND THE CARIBBEAN
#> 1548 LATIN AMERICA AND THE CARIBBEAN
#> 1549 LATIN AMERICA AND THE CARIBBEAN
#> 1550 LATIN AMERICA AND THE CARIBBEAN
#> 1551 LATIN AMERICA AND THE CARIBBEAN
#> 1552 LATIN AMERICA AND THE CARIBBEAN
#> 1553 LATIN AMERICA AND THE CARIBBEAN
#> 1554 LATIN AMERICA AND THE CARIBBEAN
#> 1555 Lao People's Democratic Republic
#> 1556 Lao People's Democratic Republic
#> 1557 Lao People's Democratic Republic
#> 1558 Lao People's Democratic Republic
#> 1559 Lao People's Democratic Republic
#> 1560 Lao People's Democratic Republic
#> 1561 Lao People's Democratic Republic
#> 1562 Lao People's Democratic Republic
#> 1563 Lao People's Democratic Republic
#> 1564 Lao People's Democratic Republic
#> 1565 Lao People's Democratic Republic
#> 1566 Lao People's Democratic Republic
#> 1567 Lao People's Democratic Republic
#> 1568 Lao People's Democratic Republic
#> 1569 Latvia
#> 1570 Latvia
#> 1571 Latvia
#> 1572 Latvia
#> 1573 Latvia
#> 1574 Latvia
#> 1575 Latvia
#> 1576 Latvia
#> 1577 Latvia
#> 1578 Latvia
#> 1579 Latvia
#> 1580 Latvia
#> 1581 Latvia
#> 1582 Latvia
#> 1583 Least developed countries
#> 1584 Least developed countries
#> 1585 Least developed countries
#> 1586 Least developed countries
#> 1587 Least developed countries
#> 1588 Least developed countries
#> 1589 Least developed countries
#> 1590 Least developed countries
#> 1591 Least developed countries
#> 1592 Least developed countries
#> 1593 Least developed countries
#> 1594 Least developed countries
#> 1595 Least developed countries
#> 1596 Least developed countries
#> 1597 Lebanon
#> 1598 Lebanon
#> 1599 Lebanon
#> 1600 Lebanon
#> 1601 Lebanon
#> 1602 Lebanon
#> 1603 Lebanon
#> 1604 Lebanon
#> 1605 Lebanon
#> 1606 Lebanon
#> 1607 Lebanon
#> 1608 Lebanon
#> 1609 Lebanon
#> 1610 Lebanon
#> 1611 Lesotho
#> 1612 Lesotho
#> 1613 Lesotho
#> 1614 Lesotho
#> 1615 Lesotho
#> 1616 Lesotho
#> 1617 Lesotho
#> 1618 Lesotho
#> 1619 Lesotho
#> 1620 Lesotho
#> 1621 Lesotho
#> 1622 Lesotho
#> 1623 Lesotho
#> 1624 Lesotho
#> 1625 Less developed regions
#> 1626 Less developed regions
#> 1627 Less developed regions
#> 1628 Less developed regions
#> 1629 Less developed regions
#> 1630 Less developed regions
#> 1631 Less developed regions
#> 1632 Less developed regions
#> 1633 Less developed regions
#> 1634 Less developed regions
#> 1635 Less developed regions
#> 1636 Less developed regions
#> 1637 Less developed regions
#> 1638 Less developed regions
#> 1639 Less developed regions, excluding China
#> 1640 Less developed regions, excluding China
#> 1641 Less developed regions, excluding China
#> 1642 Less developed regions, excluding China
#> 1643 Less developed regions, excluding China
#> 1644 Less developed regions, excluding China
#> 1645 Less developed regions, excluding China
#> 1646 Less developed regions, excluding China
#> 1647 Less developed regions, excluding China
#> 1648 Less developed regions, excluding China
#> 1649 Less developed regions, excluding China
#> 1650 Less developed regions, excluding China
#> 1651 Less developed regions, excluding China
#> 1652 Less developed regions, excluding China
#> 1653 Less developed regions, excluding least developed countries
#> 1654 Less developed regions, excluding least developed countries
#> 1655 Less developed regions, excluding least developed countries
#> 1656 Less developed regions, excluding least developed countries
#> 1657 Less developed regions, excluding least developed countries
#> 1658 Less developed regions, excluding least developed countries
#> 1659 Less developed regions, excluding least developed countries
#> 1660 Less developed regions, excluding least developed countries
#> 1661 Less developed regions, excluding least developed countries
#> 1662 Less developed regions, excluding least developed countries
#> 1663 Less developed regions, excluding least developed countries
#> 1664 Less developed regions, excluding least developed countries
#> 1665 Less developed regions, excluding least developed countries
#> 1666 Less developed regions, excluding least developed countries
#> 1667 Liberia
#> 1668 Liberia
#> 1669 Liberia
#> 1670 Liberia
#> 1671 Liberia
#> 1672 Liberia
#> 1673 Liberia
#> 1674 Liberia
#> 1675 Liberia
#> 1676 Liberia
#> 1677 Liberia
#> 1678 Liberia
#> 1679 Liberia
#> 1680 Liberia
#> 1681 Libya
#> 1682 Libya
#> 1683 Libya
#> 1684 Libya
#> 1685 Libya
#> 1686 Libya
#> 1687 Libya
#> 1688 Libya
#> 1689 Libya
#> 1690 Libya
#> 1691 Libya
#> 1692 Libya
#> 1693 Libya
#> 1694 Libya
#> 1695 Lithuania
#> 1696 Lithuania
#> 1697 Lithuania
#> 1698 Lithuania
#> 1699 Lithuania
#> 1700 Lithuania
#> 1701 Lithuania
#> 1702 Lithuania
#> 1703 Lithuania
#> 1704 Lithuania
#> 1705 Lithuania
#> 1706 Lithuania
#> 1707 Lithuania
#> 1708 Lithuania
#> 1709 Low-income countries
#> 1710 Low-income countries
#> 1711 Low-income countries
#> 1712 Low-income countries
#> 1713 Low-income countries
#> 1714 Low-income countries
#> 1715 Low-income countries
#> 1716 Low-income countries
#> 1717 Low-income countries
#> 1718 Low-income countries
#> 1719 Low-income countries
#> 1720 Low-income countries
#> 1721 Low-income countries
#> 1722 Low-income countries
#> 1723 Lower-middle-income countries
#> 1724 Lower-middle-income countries
#> 1725 Lower-middle-income countries
#> 1726 Lower-middle-income countries
#> 1727 Lower-middle-income countries
#> 1728 Lower-middle-income countries
#> 1729 Lower-middle-income countries
#> 1730 Lower-middle-income countries
#> 1731 Lower-middle-income countries
#> 1732 Lower-middle-income countries
#> 1733 Lower-middle-income countries
#> 1734 Lower-middle-income countries
#> 1735 Lower-middle-income countries
#> 1736 Lower-middle-income countries
#> 1737 Luxembourg
#> 1738 Luxembourg
#> 1739 Luxembourg
#> 1740 Luxembourg
#> 1741 Luxembourg
#> 1742 Luxembourg
#> 1743 Luxembourg
#> 1744 Luxembourg
#> 1745 Luxembourg
#> 1746 Luxembourg
#> 1747 Luxembourg
#> 1748 Luxembourg
#> 1749 Luxembourg
#> 1750 Luxembourg
#> 1751 Madagascar
#> 1752 Madagascar
#> 1753 Madagascar
#> 1754 Madagascar
#> 1755 Madagascar
#> 1756 Madagascar
#> 1757 Madagascar
#> 1758 Madagascar
#> 1759 Madagascar
#> 1760 Madagascar
#> 1761 Madagascar
#> 1762 Madagascar
#> 1763 Madagascar
#> 1764 Madagascar
#> 1765 Malawi
#> 1766 Malawi
#> 1767 Malawi
#> 1768 Malawi
#> 1769 Malawi
#> 1770 Malawi
#> 1771 Malawi
#> 1772 Malawi
#> 1773 Malawi
#> 1774 Malawi
#> 1775 Malawi
#> 1776 Malawi
#> 1777 Malawi
#> 1778 Malawi
#> 1779 Malaysia
#> 1780 Malaysia
#> 1781 Malaysia
#> 1782 Malaysia
#> 1783 Malaysia
#> 1784 Malaysia
#> 1785 Malaysia
#> 1786 Malaysia
#> 1787 Malaysia
#> 1788 Malaysia
#> 1789 Malaysia
#> 1790 Malaysia
#> 1791 Malaysia
#> 1792 Malaysia
#> 1793 Maldives
#> 1794 Maldives
#> 1795 Maldives
#> 1796 Maldives
#> 1797 Maldives
#> 1798 Maldives
#> 1799 Maldives
#> 1800 Maldives
#> 1801 Maldives
#> 1802 Maldives
#> 1803 Maldives
#> 1804 Maldives
#> 1805 Maldives
#> 1806 Maldives
#> 1807 Mali
#> 1808 Mali
#> 1809 Mali
#> 1810 Mali
#> 1811 Mali
#> 1812 Mali
#> 1813 Mali
#> 1814 Mali
#> 1815 Mali
#> 1816 Mali
#> 1817 Mali
#> 1818 Mali
#> 1819 Mali
#> 1820 Mali
#> 1821 Malta
#> 1822 Malta
#> 1823 Malta
#> 1824 Malta
#> 1825 Malta
#> 1826 Malta
#> 1827 Malta
#> 1828 Malta
#> 1829 Malta
#> 1830 Malta
#> 1831 Malta
#> 1832 Malta
#> 1833 Malta
#> 1834 Malta
#> 1835 Martinique
#> 1836 Martinique
#> 1837 Martinique
#> 1838 Martinique
#> 1839 Martinique
#> 1840 Martinique
#> 1841 Martinique
#> 1842 Martinique
#> 1843 Martinique
#> 1844 Martinique
#> 1845 Martinique
#> 1846 Martinique
#> 1847 Martinique
#> 1848 Martinique
#> 1849 Mauritania
#> 1850 Mauritania
#> 1851 Mauritania
#> 1852 Mauritania
#> 1853 Mauritania
#> 1854 Mauritania
#> 1855 Mauritania
#> 1856 Mauritania
#> 1857 Mauritania
#> 1858 Mauritania
#> 1859 Mauritania
#> 1860 Mauritania
#> 1861 Mauritania
#> 1862 Mauritania
#> 1863 Mauritius
#> 1864 Mauritius
#> 1865 Mauritius
#> 1866 Mauritius
#> 1867 Mauritius
#> 1868 Mauritius
#> 1869 Mauritius
#> 1870 Mauritius
#> 1871 Mauritius
#> 1872 Mauritius
#> 1873 Mauritius
#> 1874 Mauritius
#> 1875 Mauritius
#> 1876 Mauritius
#> 1877 Mayotte
#> 1878 Mayotte
#> 1879 Mayotte
#> 1880 Mayotte
#> 1881 Mayotte
#> 1882 Mayotte
#> 1883 Mayotte
#> 1884 Mayotte
#> 1885 Mayotte
#> 1886 Mayotte
#> 1887 Mayotte
#> 1888 Mayotte
#> 1889 Mayotte
#> 1890 Mayotte
#> 1891 Melanesia
#> 1892 Melanesia
#> 1893 Melanesia
#> 1894 Melanesia
#> 1895 Melanesia
#> 1896 Melanesia
#> 1897 Melanesia
#> 1898 Melanesia
#> 1899 Melanesia
#> 1900 Melanesia
#> 1901 Melanesia
#> 1902 Melanesia
#> 1903 Melanesia
#> 1904 Melanesia
#> 1905 Mexico
#> 1906 Mexico
#> 1907 Mexico
#> 1908 Mexico
#> 1909 Mexico
#> 1910 Mexico
#> 1911 Mexico
#> 1912 Mexico
#> 1913 Mexico
#> 1914 Mexico
#> 1915 Mexico
#> 1916 Mexico
#> 1917 Mexico
#> 1918 Mexico
#> 1919 Micronesia
#> 1920 Micronesia
#> 1921 Micronesia
#> 1922 Micronesia
#> 1923 Micronesia
#> 1924 Micronesia
#> 1925 Micronesia
#> 1926 Micronesia
#> 1927 Micronesia
#> 1928 Micronesia
#> 1929 Micronesia
#> 1930 Micronesia
#> 1931 Micronesia
#> 1932 Micronesia
#> 1933 Micronesia (Fed. States of)
#> 1934 Micronesia (Fed. States of)
#> 1935 Micronesia (Fed. States of)
#> 1936 Micronesia (Fed. States of)
#> 1937 Micronesia (Fed. States of)
#> 1938 Micronesia (Fed. States of)
#> 1939 Micronesia (Fed. States of)
#> 1940 Micronesia (Fed. States of)
#> 1941 Micronesia (Fed. States of)
#> 1942 Micronesia (Fed. States of)
#> 1943 Micronesia (Fed. States of)
#> 1944 Micronesia (Fed. States of)
#> 1945 Micronesia (Fed. States of)
#> 1946 Micronesia (Fed. States of)
#> 1947 Middle Africa
#> 1948 Middle Africa
#> 1949 Middle Africa
#> 1950 Middle Africa
#> 1951 Middle Africa
#> 1952 Middle Africa
#> 1953 Middle Africa
#> 1954 Middle Africa
#> 1955 Middle Africa
#> 1956 Middle Africa
#> 1957 Middle Africa
#> 1958 Middle Africa
#> 1959 Middle Africa
#> 1960 Middle Africa
#> 1961 Middle-income countries
#> 1962 Middle-income countries
#> 1963 Middle-income countries
#> 1964 Middle-income countries
#> 1965 Middle-income countries
#> 1966 Middle-income countries
#> 1967 Middle-income countries
#> 1968 Middle-income countries
#> 1969 Middle-income countries
#> 1970 Middle-income countries
#> 1971 Middle-income countries
#> 1972 Middle-income countries
#> 1973 Middle-income countries
#> 1974 Middle-income countries
#> 1975 Mongolia
#> 1976 Mongolia
#> 1977 Mongolia
#> 1978 Mongolia
#> 1979 Mongolia
#> 1980 Mongolia
#> 1981 Mongolia
#> 1982 Mongolia
#> 1983 Mongolia
#> 1984 Mongolia
#> 1985 Mongolia
#> 1986 Mongolia
#> 1987 Mongolia
#> 1988 Mongolia
#> 1989 Montenegro
#> 1990 Montenegro
#> 1991 Montenegro
#> 1992 Montenegro
#> 1993 Montenegro
#> 1994 Montenegro
#> 1995 Montenegro
#> 1996 Montenegro
#> 1997 Montenegro
#> 1998 Montenegro
#> 1999 Montenegro
#> 2000 Montenegro
#> 2001 Montenegro
#> 2002 Montenegro
#> 2003 More developed regions
#> 2004 More developed regions
#> 2005 More developed regions
#> 2006 More developed regions
#> 2007 More developed regions
#> 2008 More developed regions
#> 2009 More developed regions
#> 2010 More developed regions
#> 2011 More developed regions
#> 2012 More developed regions
#> 2013 More developed regions
#> 2014 More developed regions
#> 2015 More developed regions
#> 2016 More developed regions
#> 2017 Morocco
#> 2018 Morocco
#> 2019 Morocco
#> 2020 Morocco
#> 2021 Morocco
#> 2022 Morocco
#> 2023 Morocco
#> 2024 Morocco
#> 2025 Morocco
#> 2026 Morocco
#> 2027 Morocco
#> 2028 Morocco
#> 2029 Morocco
#> 2030 Morocco
#> 2031 Mozambique
#> 2032 Mozambique
#> 2033 Mozambique
#> 2034 Mozambique
#> 2035 Mozambique
#> 2036 Mozambique
#> 2037 Mozambique
#> 2038 Mozambique
#> 2039 Mozambique
#> 2040 Mozambique
#> 2041 Mozambique
#> 2042 Mozambique
#> 2043 Mozambique
#> 2044 Mozambique
#> 2045 Myanmar
#> 2046 Myanmar
#> 2047 Myanmar
#> 2048 Myanmar
#> 2049 Myanmar
#> 2050 Myanmar
#> 2051 Myanmar
#> 2052 Myanmar
#> 2053 Myanmar
#> 2054 Myanmar
#> 2055 Myanmar
#> 2056 Myanmar
#> 2057 Myanmar
#> 2058 Myanmar
#> 2059 NORTHERN AMERICA
#> 2060 NORTHERN AMERICA
#> 2061 NORTHERN AMERICA
#> 2062 NORTHERN AMERICA
#> 2063 NORTHERN AMERICA
#> 2064 NORTHERN AMERICA
#> 2065 NORTHERN AMERICA
#> 2066 NORTHERN AMERICA
#> 2067 NORTHERN AMERICA
#> 2068 NORTHERN AMERICA
#> 2069 NORTHERN AMERICA
#> 2070 NORTHERN AMERICA
#> 2071 NORTHERN AMERICA
#> 2072 NORTHERN AMERICA
#> 2073 Namibia
#> 2074 Namibia
#> 2075 Namibia
#> 2076 Namibia
#> 2077 Namibia
#> 2078 Namibia
#> 2079 Namibia
#> 2080 Namibia
#> 2081 Namibia
#> 2082 Namibia
#> 2083 Namibia
#> 2084 Namibia
#> 2085 Namibia
#> 2086 Namibia
#> 2087 Nepal
#> 2088 Nepal
#> 2089 Nepal
#> 2090 Nepal
#> 2091 Nepal
#> 2092 Nepal
#> 2093 Nepal
#> 2094 Nepal
#> 2095 Nepal
#> 2096 Nepal
#> 2097 Nepal
#> 2098 Nepal
#> 2099 Nepal
#> 2100 Nepal
#> 2101 Netherlands
#> 2102 Netherlands
#> 2103 Netherlands
#> 2104 Netherlands
#> 2105 Netherlands
#> 2106 Netherlands
#> 2107 Netherlands
#> 2108 Netherlands
#> 2109 Netherlands
#> 2110 Netherlands
#> 2111 Netherlands
#> 2112 Netherlands
#> 2113 Netherlands
#> 2114 Netherlands
#> 2115 New Caledonia
#> 2116 New Caledonia
#> 2117 New Caledonia
#> 2118 New Caledonia
#> 2119 New Caledonia
#> 2120 New Caledonia
#> 2121 New Caledonia
#> 2122 New Caledonia
#> 2123 New Caledonia
#> 2124 New Caledonia
#> 2125 New Caledonia
#> 2126 New Caledonia
#> 2127 New Caledonia
#> 2128 New Caledonia
#> 2129 New Zealand
#> 2130 New Zealand
#> 2131 New Zealand
#> 2132 New Zealand
#> 2133 New Zealand
#> 2134 New Zealand
#> 2135 New Zealand
#> 2136 New Zealand
#> 2137 New Zealand
#> 2138 New Zealand
#> 2139 New Zealand
#> 2140 New Zealand
#> 2141 New Zealand
#> 2142 New Zealand
#> 2143 Nicaragua
#> 2144 Nicaragua
#> 2145 Nicaragua
#> 2146 Nicaragua
#> 2147 Nicaragua
#> 2148 Nicaragua
#> 2149 Nicaragua
#> 2150 Nicaragua
#> 2151 Nicaragua
#> 2152 Nicaragua
#> 2153 Nicaragua
#> 2154 Nicaragua
#> 2155 Nicaragua
#> 2156 Nicaragua
#> 2157 Niger
#> 2158 Niger
#> 2159 Niger
#> 2160 Niger
#> 2161 Niger
#> 2162 Niger
#> 2163 Niger
#> 2164 Niger
#> 2165 Niger
#> 2166 Niger
#> 2167 Niger
#> 2168 Niger
#> 2169 Niger
#> 2170 Niger
#> 2171 Nigeria
#> 2172 Nigeria
#> 2173 Nigeria
#> 2174 Nigeria
#> 2175 Nigeria
#> 2176 Nigeria
#> 2177 Nigeria
#> 2178 Nigeria
#> 2179 Nigeria
#> 2180 Nigeria
#> 2181 Nigeria
#> 2182 Nigeria
#> 2183 Nigeria
#> 2184 Nigeria
#> 2185 Northern Africa
#> 2186 Northern Africa
#> 2187 Northern Africa
#> 2188 Northern Africa
#> 2189 Northern Africa
#> 2190 Northern Africa
#> 2191 Northern Africa
#> 2192 Northern Africa
#> 2193 Northern Africa
#> 2194 Northern Africa
#> 2195 Northern Africa
#> 2196 Northern Africa
#> 2197 Northern Africa
#> 2198 Northern Africa
#> 2199 Northern Europe
#> 2200 Northern Europe
#> 2201 Northern Europe
#> 2202 Northern Europe
#> 2203 Northern Europe
#> 2204 Northern Europe
#> 2205 Northern Europe
#> 2206 Northern Europe
#> 2207 Northern Europe
#> 2208 Northern Europe
#> 2209 Northern Europe
#> 2210 Northern Europe
#> 2211 Northern Europe
#> 2212 Northern Europe
#> 2213 Norway
#> 2214 Norway
#> 2215 Norway
#> 2216 Norway
#> 2217 Norway
#> 2218 Norway
#> 2219 Norway
#> 2220 Norway
#> 2221 Norway
#> 2222 Norway
#> 2223 Norway
#> 2224 Norway
#> 2225 Norway
#> 2226 Norway
#> 2227 OCEANIA
#> 2228 OCEANIA
#> 2229 OCEANIA
#> 2230 OCEANIA
#> 2231 OCEANIA
#> 2232 OCEANIA
#> 2233 OCEANIA
#> 2234 OCEANIA
#> 2235 OCEANIA
#> 2236 OCEANIA
#> 2237 OCEANIA
#> 2238 OCEANIA
#> 2239 OCEANIA
#> 2240 OCEANIA
#> 2241 Oman
#> 2242 Oman
#> 2243 Oman
#> 2244 Oman
#> 2245 Oman
#> 2246 Oman
#> 2247 Oman
#> 2248 Oman
#> 2249 Oman
#> 2250 Oman
#> 2251 Oman
#> 2252 Oman
#> 2253 Oman
#> 2254 Oman
#> 2255 Pakistan
#> 2256 Pakistan
#> 2257 Pakistan
#> 2258 Pakistan
#> 2259 Pakistan
#> 2260 Pakistan
#> 2261 Pakistan
#> 2262 Pakistan
#> 2263 Pakistan
#> 2264 Pakistan
#> 2265 Pakistan
#> 2266 Pakistan
#> 2267 Pakistan
#> 2268 Pakistan
#> 2269 Panama
#> 2270 Panama
#> 2271 Panama
#> 2272 Panama
#> 2273 Panama
#> 2274 Panama
#> 2275 Panama
#> 2276 Panama
#> 2277 Panama
#> 2278 Panama
#> 2279 Panama
#> 2280 Panama
#> 2281 Panama
#> 2282 Panama
#> 2283 Papua New Guinea
#> 2284 Papua New Guinea
#> 2285 Papua New Guinea
#> 2286 Papua New Guinea
#> 2287 Papua New Guinea
#> 2288 Papua New Guinea
#> 2289 Papua New Guinea
#> 2290 Papua New Guinea
#> 2291 Papua New Guinea
#> 2292 Papua New Guinea
#> 2293 Papua New Guinea
#> 2294 Papua New Guinea
#> 2295 Papua New Guinea
#> 2296 Papua New Guinea
#> 2297 Paraguay
#> 2298 Paraguay
#> 2299 Paraguay
#> 2300 Paraguay
#> 2301 Paraguay
#> 2302 Paraguay
#> 2303 Paraguay
#> 2304 Paraguay
#> 2305 Paraguay
#> 2306 Paraguay
#> 2307 Paraguay
#> 2308 Paraguay
#> 2309 Paraguay
#> 2310 Paraguay
#> 2311 Peru
#> 2312 Peru
#> 2313 Peru
#> 2314 Peru
#> 2315 Peru
#> 2316 Peru
#> 2317 Peru
#> 2318 Peru
#> 2319 Peru
#> 2320 Peru
#> 2321 Peru
#> 2322 Peru
#> 2323 Peru
#> 2324 Peru
#> 2325 Philippines
#> 2326 Philippines
#> 2327 Philippines
#> 2328 Philippines
#> 2329 Philippines
#> 2330 Philippines
#> 2331 Philippines
#> 2332 Philippines
#> 2333 Philippines
#> 2334 Philippines
#> 2335 Philippines
#> 2336 Philippines
#> 2337 Philippines
#> 2338 Philippines
#> 2339 Poland
#> 2340 Poland
#> 2341 Poland
#> 2342 Poland
#> 2343 Poland
#> 2344 Poland
#> 2345 Poland
#> 2346 Poland
#> 2347 Poland
#> 2348 Poland
#> 2349 Poland
#> 2350 Poland
#> 2351 Poland
#> 2352 Poland
#> 2353 Polynesia
#> 2354 Polynesia
#> 2355 Polynesia
#> 2356 Polynesia
#> 2357 Polynesia
#> 2358 Polynesia
#> 2359 Polynesia
#> 2360 Polynesia
#> 2361 Polynesia
#> 2362 Polynesia
#> 2363 Polynesia
#> 2364 Polynesia
#> 2365 Polynesia
#> 2366 Polynesia
#> 2367 Portugal
#> 2368 Portugal
#> 2369 Portugal
#> 2370 Portugal
#> 2371 Portugal
#> 2372 Portugal
#> 2373 Portugal
#> 2374 Portugal
#> 2375 Portugal
#> 2376 Portugal
#> 2377 Portugal
#> 2378 Portugal
#> 2379 Portugal
#> 2380 Portugal
#> 2381 Puerto Rico
#> 2382 Puerto Rico
#> 2383 Puerto Rico
#> 2384 Puerto Rico
#> 2385 Puerto Rico
#> 2386 Puerto Rico
#> 2387 Puerto Rico
#> 2388 Puerto Rico
#> 2389 Puerto Rico
#> 2390 Puerto Rico
#> 2391 Puerto Rico
#> 2392 Puerto Rico
#> 2393 Puerto Rico
#> 2394 Puerto Rico
#> 2395 Qatar
#> 2396 Qatar
#> 2397 Qatar
#> 2398 Qatar
#> 2399 Qatar
#> 2400 Qatar
#> 2401 Qatar
#> 2402 Qatar
#> 2403 Qatar
#> 2404 Qatar
#> 2405 Qatar
#> 2406 Qatar
#> 2407 Qatar
#> 2408 Qatar
#> 2409 Republic of Korea
#> 2410 Republic of Korea
#> 2411 Republic of Korea
#> 2412 Republic of Korea
#> 2413 Republic of Korea
#> 2414 Republic of Korea
#> 2415 Republic of Korea
#> 2416 Republic of Korea
#> 2417 Republic of Korea
#> 2418 Republic of Korea
#> 2419 Republic of Korea
#> 2420 Republic of Korea
#> 2421 Republic of Korea
#> 2422 Republic of Korea
#> 2423 Republic of Moldova
#> 2424 Republic of Moldova
#> 2425 Republic of Moldova
#> 2426 Republic of Moldova
#> 2427 Republic of Moldova
#> 2428 Republic of Moldova
#> 2429 Republic of Moldova
#> 2430 Republic of Moldova
#> 2431 Republic of Moldova
#> 2432 Republic of Moldova
#> 2433 Republic of Moldova
#> 2434 Republic of Moldova
#> 2435 Republic of Moldova
#> 2436 Republic of Moldova
#> 2437 Reunion
#> 2438 Reunion
#> 2439 Reunion
#> 2440 Reunion
#> 2441 Reunion
#> 2442 Reunion
#> 2443 Reunion
#> 2444 Reunion
#> 2445 Reunion
#> 2446 Reunion
#> 2447 Reunion
#> 2448 Reunion
#> 2449 Reunion
#> 2450 Reunion
#> 2451 Romania
#> 2452 Romania
#> 2453 Romania
#> 2454 Romania
#> 2455 Romania
#> 2456 Romania
#> 2457 Romania
#> 2458 Romania
#> 2459 Romania
#> 2460 Romania
#> 2461 Romania
#> 2462 Romania
#> 2463 Romania
#> 2464 Romania
#> 2465 Russian Federation
#> 2466 Russian Federation
#> 2467 Russian Federation
#> 2468 Russian Federation
#> 2469 Russian Federation
#> 2470 Russian Federation
#> 2471 Russian Federation
#> 2472 Russian Federation
#> 2473 Russian Federation
#> 2474 Russian Federation
#> 2475 Russian Federation
#> 2476 Russian Federation
#> 2477 Russian Federation
#> 2478 Russian Federation
#> 2479 Rwanda
#> 2480 Rwanda
#> 2481 Rwanda
#> 2482 Rwanda
#> 2483 Rwanda
#> 2484 Rwanda
#> 2485 Rwanda
#> 2486 Rwanda
#> 2487 Rwanda
#> 2488 Rwanda
#> 2489 Rwanda
#> 2490 Rwanda
#> 2491 Rwanda
#> 2492 Rwanda
#> 2493 Saint Lucia
#> 2494 Saint Lucia
#> 2495 Saint Lucia
#> 2496 Saint Lucia
#> 2497 Saint Lucia
#> 2498 Saint Lucia
#> 2499 Saint Lucia
#> 2500 Saint Lucia
#> 2501 Saint Lucia
#> 2502 Saint Lucia
#> 2503 Saint Lucia
#> 2504 Saint Lucia
#> 2505 Saint Lucia
#> 2506 Saint Lucia
#> 2507 Saint Vincent and the Grenadines
#> 2508 Saint Vincent and the Grenadines
#> 2509 Saint Vincent and the Grenadines
#> 2510 Saint Vincent and the Grenadines
#> 2511 Saint Vincent and the Grenadines
#> 2512 Saint Vincent and the Grenadines
#> 2513 Saint Vincent and the Grenadines
#> 2514 Saint Vincent and the Grenadines
#> 2515 Saint Vincent and the Grenadines
#> 2516 Saint Vincent and the Grenadines
#> 2517 Saint Vincent and the Grenadines
#> 2518 Saint Vincent and the Grenadines
#> 2519 Saint Vincent and the Grenadines
#> 2520 Saint Vincent and the Grenadines
#> 2521 Samoa
#> 2522 Samoa
#> 2523 Samoa
#> 2524 Samoa
#> 2525 Samoa
#> 2526 Samoa
#> 2527 Samoa
#> 2528 Samoa
#> 2529 Samoa
#> 2530 Samoa
#> 2531 Samoa
#> 2532 Samoa
#> 2533 Samoa
#> 2534 Samoa
#> 2535 Sao Tome and Principe
#> 2536 Sao Tome and Principe
#> 2537 Sao Tome and Principe
#> 2538 Sao Tome and Principe
#> 2539 Sao Tome and Principe
#> 2540 Sao Tome and Principe
#> 2541 Sao Tome and Principe
#> 2542 Sao Tome and Principe
#> 2543 Sao Tome and Principe
#> 2544 Sao Tome and Principe
#> 2545 Sao Tome and Principe
#> 2546 Sao Tome and Principe
#> 2547 Sao Tome and Principe
#> 2548 Sao Tome and Principe
#> 2549 Saudi Arabia
#> 2550 Saudi Arabia
#> 2551 Saudi Arabia
#> 2552 Saudi Arabia
#> 2553 Saudi Arabia
#> 2554 Saudi Arabia
#> 2555 Saudi Arabia
#> 2556 Saudi Arabia
#> 2557 Saudi Arabia
#> 2558 Saudi Arabia
#> 2559 Saudi Arabia
#> 2560 Saudi Arabia
#> 2561 Saudi Arabia
#> 2562 Saudi Arabia
#> 2563 Senegal
#> 2564 Senegal
#> 2565 Senegal
#> 2566 Senegal
#> 2567 Senegal
#> 2568 Senegal
#> 2569 Senegal
#> 2570 Senegal
#> 2571 Senegal
#> 2572 Senegal
#> 2573 Senegal
#> 2574 Senegal
#> 2575 Senegal
#> 2576 Senegal
#> 2577 Serbia
#> 2578 Serbia
#> 2579 Serbia
#> 2580 Serbia
#> 2581 Serbia
#> 2582 Serbia
#> 2583 Serbia
#> 2584 Serbia
#> 2585 Serbia
#> 2586 Serbia
#> 2587 Serbia
#> 2588 Serbia
#> 2589 Serbia
#> 2590 Serbia
#> 2591 Seychelles
#> 2592 Seychelles
#> 2593 Seychelles
#> 2594 Seychelles
#> 2595 Seychelles
#> 2596 Seychelles
#> 2597 Seychelles
#> 2598 Seychelles
#> 2599 Seychelles
#> 2600 Seychelles
#> 2601 Seychelles
#> 2602 Seychelles
#> 2603 Seychelles
#> 2604 Seychelles
#> 2605 Sierra Leone
#> 2606 Sierra Leone
#> 2607 Sierra Leone
#> 2608 Sierra Leone
#> 2609 Sierra Leone
#> 2610 Sierra Leone
#> 2611 Sierra Leone
#> 2612 Sierra Leone
#> 2613 Sierra Leone
#> 2614 Sierra Leone
#> 2615 Sierra Leone
#> 2616 Sierra Leone
#> 2617 Sierra Leone
#> 2618 Sierra Leone
#> 2619 Singapore
#> 2620 Singapore
#> 2621 Singapore
#> 2622 Singapore
#> 2623 Singapore
#> 2624 Singapore
#> 2625 Singapore
#> 2626 Singapore
#> 2627 Singapore
#> 2628 Singapore
#> 2629 Singapore
#> 2630 Singapore
#> 2631 Singapore
#> 2632 Singapore
#> 2633 Slovakia
#> 2634 Slovakia
#> 2635 Slovakia
#> 2636 Slovakia
#> 2637 Slovakia
#> 2638 Slovakia
#> 2639 Slovakia
#> 2640 Slovakia
#> 2641 Slovakia
#> 2642 Slovakia
#> 2643 Slovakia
#> 2644 Slovakia
#> 2645 Slovakia
#> 2646 Slovakia
#> 2647 Slovenia
#> 2648 Slovenia
#> 2649 Slovenia
#> 2650 Slovenia
#> 2651 Slovenia
#> 2652 Slovenia
#> 2653 Slovenia
#> 2654 Slovenia
#> 2655 Slovenia
#> 2656 Slovenia
#> 2657 Slovenia
#> 2658 Slovenia
#> 2659 Slovenia
#> 2660 Slovenia
#> 2661 Solomon Islands
#> 2662 Solomon Islands
#> 2663 Solomon Islands
#> 2664 Solomon Islands
#> 2665 Solomon Islands
#> 2666 Solomon Islands
#> 2667 Solomon Islands
#> 2668 Solomon Islands
#> 2669 Solomon Islands
#> 2670 Solomon Islands
#> 2671 Solomon Islands
#> 2672 Solomon Islands
#> 2673 Solomon Islands
#> 2674 Solomon Islands
#> 2675 Somalia
#> 2676 Somalia
#> 2677 Somalia
#> 2678 Somalia
#> 2679 Somalia
#> 2680 Somalia
#> 2681 Somalia
#> 2682 Somalia
#> 2683 Somalia
#> 2684 Somalia
#> 2685 Somalia
#> 2686 Somalia
#> 2687 Somalia
#> 2688 Somalia
#> 2689 South Africa
#> 2690 South Africa
#> 2691 South Africa
#> 2692 South Africa
#> 2693 South Africa
#> 2694 South Africa
#> 2695 South Africa
#> 2696 South Africa
#> 2697 South Africa
#> 2698 South Africa
#> 2699 South Africa
#> 2700 South Africa
#> 2701 South Africa
#> 2702 South Africa
#> 2703 South America
#> 2704 South America
#> 2705 South America
#> 2706 South America
#> 2707 South America
#> 2708 South America
#> 2709 South America
#> 2710 South America
#> 2711 South America
#> 2712 South America
#> 2713 South America
#> 2714 South America
#> 2715 South America
#> 2716 South America
#> 2717 South Sudan
#> 2718 South Sudan
#> 2719 South Sudan
#> 2720 South Sudan
#> 2721 South Sudan
#> 2722 South Sudan
#> 2723 South Sudan
#> 2724 South Sudan
#> 2725 South Sudan
#> 2726 South Sudan
#> 2727 South Sudan
#> 2728 South Sudan
#> 2729 South Sudan
#> 2730 South Sudan
#> 2731 South-Central Asia
#> 2732 South-Central Asia
#> 2733 South-Central Asia
#> 2734 South-Central Asia
#> 2735 South-Central Asia
#> 2736 South-Central Asia
#> 2737 South-Central Asia
#> 2738 South-Central Asia
#> 2739 South-Central Asia
#> 2740 South-Central Asia
#> 2741 South-Central Asia
#> 2742 South-Central Asia
#> 2743 South-Central Asia
#> 2744 South-Central Asia
#> 2745 South-Eastern Asia
#> 2746 South-Eastern Asia
#> 2747 South-Eastern Asia
#> 2748 South-Eastern Asia
#> 2749 South-Eastern Asia
#> 2750 South-Eastern Asia
#> 2751 South-Eastern Asia
#> 2752 South-Eastern Asia
#> 2753 South-Eastern Asia
#> 2754 South-Eastern Asia
#> 2755 South-Eastern Asia
#> 2756 South-Eastern Asia
#> 2757 South-Eastern Asia
#> 2758 South-Eastern Asia
#> 2759 Southern Africa
#> 2760 Southern Africa
#> 2761 Southern Africa
#> 2762 Southern Africa
#> 2763 Southern Africa
#> 2764 Southern Africa
#> 2765 Southern Africa
#> 2766 Southern Africa
#> 2767 Southern Africa
#> 2768 Southern Africa
#> 2769 Southern Africa
#> 2770 Southern Africa
#> 2771 Southern Africa
#> 2772 Southern Africa
#> 2773 Southern Asia
#> 2774 Southern Asia
#> 2775 Southern Asia
#> 2776 Southern Asia
#> 2777 Southern Asia
#> 2778 Southern Asia
#> 2779 Southern Asia
#> 2780 Southern Asia
#> 2781 Southern Asia
#> 2782 Southern Asia
#> 2783 Southern Asia
#> 2784 Southern Asia
#> 2785 Southern Asia
#> 2786 Southern Asia
#> 2787 Southern Europe
#> 2788 Southern Europe
#> 2789 Southern Europe
#> 2790 Southern Europe
#> 2791 Southern Europe
#> 2792 Southern Europe
#> 2793 Southern Europe
#> 2794 Southern Europe
#> 2795 Southern Europe
#> 2796 Southern Europe
#> 2797 Southern Europe
#> 2798 Southern Europe
#> 2799 Southern Europe
#> 2800 Southern Europe
#> 2801 Spain
#> 2802 Spain
#> 2803 Spain
#> 2804 Spain
#> 2805 Spain
#> 2806 Spain
#> 2807 Spain
#> 2808 Spain
#> 2809 Spain
#> 2810 Spain
#> 2811 Spain
#> 2812 Spain
#> 2813 Spain
#> 2814 Spain
#> 2815 Sri Lanka
#> 2816 Sri Lanka
#> 2817 Sri Lanka
#> 2818 Sri Lanka
#> 2819 Sri Lanka
#> 2820 Sri Lanka
#> 2821 Sri Lanka
#> 2822 Sri Lanka
#> 2823 Sri Lanka
#> 2824 Sri Lanka
#> 2825 Sri Lanka
#> 2826 Sri Lanka
#> 2827 Sri Lanka
#> 2828 Sri Lanka
#> 2829 State of Palestine
#> 2830 State of Palestine
#> 2831 State of Palestine
#> 2832 State of Palestine
#> 2833 State of Palestine
#> 2834 State of Palestine
#> 2835 State of Palestine
#> 2836 State of Palestine
#> 2837 State of Palestine
#> 2838 State of Palestine
#> 2839 State of Palestine
#> 2840 State of Palestine
#> 2841 State of Palestine
#> 2842 State of Palestine
#> 2843 Sub-Saharan Africa
#> 2844 Sub-Saharan Africa
#> 2845 Sub-Saharan Africa
#> 2846 Sub-Saharan Africa
#> 2847 Sub-Saharan Africa
#> 2848 Sub-Saharan Africa
#> 2849 Sub-Saharan Africa
#> 2850 Sub-Saharan Africa
#> 2851 Sub-Saharan Africa
#> 2852 Sub-Saharan Africa
#> 2853 Sub-Saharan Africa
#> 2854 Sub-Saharan Africa
#> 2855 Sub-Saharan Africa
#> 2856 Sub-Saharan Africa
#> 2857 Sudan
#> 2858 Sudan
#> 2859 Sudan
#> 2860 Sudan
#> 2861 Sudan
#> 2862 Sudan
#> 2863 Sudan
#> 2864 Sudan
#> 2865 Sudan
#> 2866 Sudan
#> 2867 Sudan
#> 2868 Sudan
#> 2869 Sudan
#> 2870 Sudan
#> 2871 Suriname
#> 2872 Suriname
#> 2873 Suriname
#> 2874 Suriname
#> 2875 Suriname
#> 2876 Suriname
#> 2877 Suriname
#> 2878 Suriname
#> 2879 Suriname
#> 2880 Suriname
#> 2881 Suriname
#> 2882 Suriname
#> 2883 Suriname
#> 2884 Suriname
#> 2885 Swaziland
#> 2886 Swaziland
#> 2887 Swaziland
#> 2888 Swaziland
#> 2889 Swaziland
#> 2890 Swaziland
#> 2891 Swaziland
#> 2892 Swaziland
#> 2893 Swaziland
#> 2894 Swaziland
#> 2895 Swaziland
#> 2896 Swaziland
#> 2897 Swaziland
#> 2898 Swaziland
#> 2899 Sweden
#> 2900 Sweden
#> 2901 Sweden
#> 2902 Sweden
#> 2903 Sweden
#> 2904 Sweden
#> 2905 Sweden
#> 2906 Sweden
#> 2907 Sweden
#> 2908 Sweden
#> 2909 Sweden
#> 2910 Sweden
#> 2911 Sweden
#> 2912 Sweden
#> 2913 Switzerland
#> 2914 Switzerland
#> 2915 Switzerland
#> 2916 Switzerland
#> 2917 Switzerland
#> 2918 Switzerland
#> 2919 Switzerland
#> 2920 Switzerland
#> 2921 Switzerland
#> 2922 Switzerland
#> 2923 Switzerland
#> 2924 Switzerland
#> 2925 Switzerland
#> 2926 Switzerland
#> 2927 Syrian Arab Republic
#> 2928 Syrian Arab Republic
#> 2929 Syrian Arab Republic
#> 2930 Syrian Arab Republic
#> 2931 Syrian Arab Republic
#> 2932 Syrian Arab Republic
#> 2933 Syrian Arab Republic
#> 2934 Syrian Arab Republic
#> 2935 Syrian Arab Republic
#> 2936 Syrian Arab Republic
#> 2937 Syrian Arab Republic
#> 2938 Syrian Arab Republic
#> 2939 Syrian Arab Republic
#> 2940 Syrian Arab Republic
#> 2941 TFYR Macedonia
#> 2942 TFYR Macedonia
#> 2943 TFYR Macedonia
#> 2944 TFYR Macedonia
#> 2945 TFYR Macedonia
#> 2946 TFYR Macedonia
#> 2947 TFYR Macedonia
#> 2948 TFYR Macedonia
#> 2949 TFYR Macedonia
#> 2950 TFYR Macedonia
#> 2951 TFYR Macedonia
#> 2952 TFYR Macedonia
#> 2953 TFYR Macedonia
#> 2954 TFYR Macedonia
#> 2955 Tajikistan
#> 2956 Tajikistan
#> 2957 Tajikistan
#> 2958 Tajikistan
#> 2959 Tajikistan
#> 2960 Tajikistan
#> 2961 Tajikistan
#> 2962 Tajikistan
#> 2963 Tajikistan
#> 2964 Tajikistan
#> 2965 Tajikistan
#> 2966 Tajikistan
#> 2967 Tajikistan
#> 2968 Tajikistan
#> 2969 Thailand
#> 2970 Thailand
#> 2971 Thailand
#> 2972 Thailand
#> 2973 Thailand
#> 2974 Thailand
#> 2975 Thailand
#> 2976 Thailand
#> 2977 Thailand
#> 2978 Thailand
#> 2979 Thailand
#> 2980 Thailand
#> 2981 Thailand
#> 2982 Thailand
#> 2983 Timor-Leste
#> 2984 Timor-Leste
#> 2985 Timor-Leste
#> 2986 Timor-Leste
#> 2987 Timor-Leste
#> 2988 Timor-Leste
#> 2989 Timor-Leste
#> 2990 Timor-Leste
#> 2991 Timor-Leste
#> 2992 Timor-Leste
#> 2993 Timor-Leste
#> 2994 Timor-Leste
#> 2995 Timor-Leste
#> 2996 Timor-Leste
#> 2997 Togo
#> 2998 Togo
#> 2999 Togo
#> 3000 Togo
#> 3001 Togo
#> 3002 Togo
#> 3003 Togo
#> 3004 Togo
#> 3005 Togo
#> 3006 Togo
#> 3007 Togo
#> 3008 Togo
#> 3009 Togo
#> 3010 Togo
#> 3011 Tonga
#> 3012 Tonga
#> 3013 Tonga
#> 3014 Tonga
#> 3015 Tonga
#> 3016 Tonga
#> 3017 Tonga
#> 3018 Tonga
#> 3019 Tonga
#> 3020 Tonga
#> 3021 Tonga
#> 3022 Tonga
#> 3023 Tonga
#> 3024 Tonga
#> 3025 Trinidad and Tobago
#> 3026 Trinidad and Tobago
#> 3027 Trinidad and Tobago
#> 3028 Trinidad and Tobago
#> 3029 Trinidad and Tobago
#> 3030 Trinidad and Tobago
#> 3031 Trinidad and Tobago
#> 3032 Trinidad and Tobago
#> 3033 Trinidad and Tobago
#> 3034 Trinidad and Tobago
#> 3035 Trinidad and Tobago
#> 3036 Trinidad and Tobago
#> 3037 Trinidad and Tobago
#> 3038 Trinidad and Tobago
#> 3039 Tunisia
#> 3040 Tunisia
#> 3041 Tunisia
#> 3042 Tunisia
#> 3043 Tunisia
#> 3044 Tunisia
#> 3045 Tunisia
#> 3046 Tunisia
#> 3047 Tunisia
#> 3048 Tunisia
#> 3049 Tunisia
#> 3050 Tunisia
#> 3051 Tunisia
#> 3052 Tunisia
#> 3053 Turkey
#> 3054 Turkey
#> 3055 Turkey
#> 3056 Turkey
#> 3057 Turkey
#> 3058 Turkey
#> 3059 Turkey
#> 3060 Turkey
#> 3061 Turkey
#> 3062 Turkey
#> 3063 Turkey
#> 3064 Turkey
#> 3065 Turkey
#> 3066 Turkey
#> 3067 Turkmenistan
#> 3068 Turkmenistan
#> 3069 Turkmenistan
#> 3070 Turkmenistan
#> 3071 Turkmenistan
#> 3072 Turkmenistan
#> 3073 Turkmenistan
#> 3074 Turkmenistan
#> 3075 Turkmenistan
#> 3076 Turkmenistan
#> 3077 Turkmenistan
#> 3078 Turkmenistan
#> 3079 Turkmenistan
#> 3080 Turkmenistan
#> 3081 Uganda
#> 3082 Uganda
#> 3083 Uganda
#> 3084 Uganda
#> 3085 Uganda
#> 3086 Uganda
#> 3087 Uganda
#> 3088 Uganda
#> 3089 Uganda
#> 3090 Uganda
#> 3091 Uganda
#> 3092 Uganda
#> 3093 Uganda
#> 3094 Uganda
#> 3095 Ukraine
#> 3096 Ukraine
#> 3097 Ukraine
#> 3098 Ukraine
#> 3099 Ukraine
#> 3100 Ukraine
#> 3101 Ukraine
#> 3102 Ukraine
#> 3103 Ukraine
#> 3104 Ukraine
#> 3105 Ukraine
#> 3106 Ukraine
#> 3107 Ukraine
#> 3108 Ukraine
#> 3109 United Arab Emirates
#> 3110 United Arab Emirates
#> 3111 United Arab Emirates
#> 3112 United Arab Emirates
#> 3113 United Arab Emirates
#> 3114 United Arab Emirates
#> 3115 United Arab Emirates
#> 3116 United Arab Emirates
#> 3117 United Arab Emirates
#> 3118 United Arab Emirates
#> 3119 United Arab Emirates
#> 3120 United Arab Emirates
#> 3121 United Arab Emirates
#> 3122 United Arab Emirates
#> 3123 United Kingdom
#> 3124 United Kingdom
#> 3125 United Kingdom
#> 3126 United Kingdom
#> 3127 United Kingdom
#> 3128 United Kingdom
#> 3129 United Kingdom
#> 3130 United Kingdom
#> 3131 United Kingdom
#> 3132 United Kingdom
#> 3133 United Kingdom
#> 3134 United Kingdom
#> 3135 United Kingdom
#> 3136 United Kingdom
#> 3137 United Republic of Tanzania
#> 3138 United Republic of Tanzania
#> 3139 United Republic of Tanzania
#> 3140 United Republic of Tanzania
#> 3141 United Republic of Tanzania
#> 3142 United Republic of Tanzania
#> 3143 United Republic of Tanzania
#> 3144 United Republic of Tanzania
#> 3145 United Republic of Tanzania
#> 3146 United Republic of Tanzania
#> 3147 United Republic of Tanzania
#> 3148 United Republic of Tanzania
#> 3149 United Republic of Tanzania
#> 3150 United Republic of Tanzania
#> 3151 United States Virgin Islands
#> 3152 United States Virgin Islands
#> 3153 United States Virgin Islands
#> 3154 United States Virgin Islands
#> 3155 United States Virgin Islands
#> 3156 United States Virgin Islands
#> 3157 United States Virgin Islands
#> 3158 United States Virgin Islands
#> 3159 United States Virgin Islands
#> 3160 United States Virgin Islands
#> 3161 United States Virgin Islands
#> 3162 United States Virgin Islands
#> 3163 United States Virgin Islands
#> 3164 United States Virgin Islands
#> 3165 United States of America
#> 3166 United States of America
#> 3167 United States of America
#> 3168 United States of America
#> 3169 United States of America
#> 3170 United States of America
#> 3171 United States of America
#> 3172 United States of America
#> 3173 United States of America
#> 3174 United States of America
#> 3175 United States of America
#> 3176 United States of America
#> 3177 United States of America
#> 3178 United States of America
#> 3179 Upper-middle-income countries
#> 3180 Upper-middle-income countries
#> 3181 Upper-middle-income countries
#> 3182 Upper-middle-income countries
#> 3183 Upper-middle-income countries
#> 3184 Upper-middle-income countries
#> 3185 Upper-middle-income countries
#> 3186 Upper-middle-income countries
#> 3187 Upper-middle-income countries
#> 3188 Upper-middle-income countries
#> 3189 Upper-middle-income countries
#> 3190 Upper-middle-income countries
#> 3191 Upper-middle-income countries
#> 3192 Upper-middle-income countries
#> 3193 Uruguay
#> 3194 Uruguay
#> 3195 Uruguay
#> 3196 Uruguay
#> 3197 Uruguay
#> 3198 Uruguay
#> 3199 Uruguay
#> 3200 Uruguay
#> 3201 Uruguay
#> 3202 Uruguay
#> 3203 Uruguay
#> 3204 Uruguay
#> 3205 Uruguay
#> 3206 Uruguay
#> 3207 Uzbekistan
#> 3208 Uzbekistan
#> 3209 Uzbekistan
#> 3210 Uzbekistan
#> 3211 Uzbekistan
#> 3212 Uzbekistan
#> 3213 Uzbekistan
#> 3214 Uzbekistan
#> 3215 Uzbekistan
#> 3216 Uzbekistan
#> 3217 Uzbekistan
#> 3218 Uzbekistan
#> 3219 Uzbekistan
#> 3220 Uzbekistan
#> 3221 Vanuatu
#> 3222 Vanuatu
#> 3223 Vanuatu
#> 3224 Vanuatu
#> 3225 Vanuatu
#> 3226 Vanuatu
#> 3227 Vanuatu
#> 3228 Vanuatu
#> 3229 Vanuatu
#> 3230 Vanuatu
#> 3231 Vanuatu
#> 3232 Vanuatu
#> 3233 Vanuatu
#> 3234 Vanuatu
#> 3235 Venezuela (Bolivarian Republic of)
#> 3236 Venezuela (Bolivarian Republic of)
#> 3237 Venezuela (Bolivarian Republic of)
#> 3238 Venezuela (Bolivarian Republic of)
#> 3239 Venezuela (Bolivarian Republic of)
#> 3240 Venezuela (Bolivarian Republic of)
#> 3241 Venezuela (Bolivarian Republic of)
#> 3242 Venezuela (Bolivarian Republic of)
#> 3243 Venezuela (Bolivarian Republic of)
#> 3244 Venezuela (Bolivarian Republic of)
#> 3245 Venezuela (Bolivarian Republic of)
#> 3246 Venezuela (Bolivarian Republic of)
#> 3247 Venezuela (Bolivarian Republic of)
#> 3248 Venezuela (Bolivarian Republic of)
#> 3249 Viet Nam
#> 3250 Viet Nam
#> 3251 Viet Nam
#> 3252 Viet Nam
#> 3253 Viet Nam
#> 3254 Viet Nam
#> 3255 Viet Nam
#> 3256 Viet Nam
#> 3257 Viet Nam
#> 3258 Viet Nam
#> 3259 Viet Nam
#> 3260 Viet Nam
#> 3261 Viet Nam
#> 3262 Viet Nam
#> 3263 WORLD
#> 3264 WORLD
#> 3265 WORLD
#> 3266 WORLD
#> 3267 WORLD
#> 3268 WORLD
#> 3269 WORLD
#> 3270 WORLD
#> 3271 WORLD
#> 3272 WORLD
#> 3273 WORLD
#> 3274 WORLD
#> 3275 WORLD
#> 3276 WORLD
#> 3277 Western Africa
#> 3278 Western Africa
#> 3279 Western Africa
#> 3280 Western Africa
#> 3281 Western Africa
#> 3282 Western Africa
#> 3283 Western Africa
#> 3284 Western Africa
#> 3285 Western Africa
#> 3286 Western Africa
#> 3287 Western Africa
#> 3288 Western Africa
#> 3289 Western Africa
#> 3290 Western Africa
#> 3291 Western Asia
#> 3292 Western Asia
#> 3293 Western Asia
#> 3294 Western Asia
#> 3295 Western Asia
#> 3296 Western Asia
#> 3297 Western Asia
#> 3298 Western Asia
#> 3299 Western Asia
#> 3300 Western Asia
#> 3301 Western Asia
#> 3302 Western Asia
#> 3303 Western Asia
#> 3304 Western Asia
#> 3305 Western Europe
#> 3306 Western Europe
#> 3307 Western Europe
#> 3308 Western Europe
#> 3309 Western Europe
#> 3310 Western Europe
#> 3311 Western Europe
#> 3312 Western Europe
#> 3313 Western Europe
#> 3314 Western Europe
#> 3315 Western Europe
#> 3316 Western Europe
#> 3317 Western Europe
#> 3318 Western Europe
#> 3319 Western Sahara
#> 3320 Western Sahara
#> 3321 Western Sahara
#> 3322 Western Sahara
#> 3323 Western Sahara
#> 3324 Western Sahara
#> 3325 Western Sahara
#> 3326 Western Sahara
#> 3327 Western Sahara
#> 3328 Western Sahara
#> 3329 Western Sahara
#> 3330 Western Sahara
#> 3331 Western Sahara
#> 3332 Western Sahara
#> 3333 Yemen
#> 3334 Yemen
#> 3335 Yemen
#> 3336 Yemen
#> 3337 Yemen
#> 3338 Yemen
#> 3339 Yemen
#> 3340 Yemen
#> 3341 Yemen
#> 3342 Yemen
#> 3343 Yemen
#> 3344 Yemen
#> 3345 Yemen
#> 3346 Yemen
#> 3347 Zambia
#> 3348 Zambia
#> 3349 Zambia
#> 3350 Zambia
#> 3351 Zambia
#> 3352 Zambia
#> 3353 Zambia
#> 3354 Zambia
#> 3355 Zambia
#> 3356 Zambia
#> 3357 Zambia
#> 3358 Zambia
#> 3359 Zambia
#> 3360 Zambia
#> 3361 Zimbabwe
#> 3362 Zimbabwe
#> 3363 Zimbabwe
#> 3364 Zimbabwe
#> 3365 Zimbabwe
#> 3366 Zimbabwe
#> 3367 Zimbabwe
#> 3368 Zimbabwe
#> 3369 Zimbabwe
#> 3370 Zimbabwe
#> 3371 Zimbabwe
#> 3372 Zimbabwe
#> 3373 Zimbabwe
#> 3374 Zimbabwe
#> 3375 AFRICA
#> 3376 AFRICA
#> 3377 AFRICA
#> 3378 AFRICA
#> 3379 AFRICA
#> 3380 AFRICA
#> 3381 AFRICA
#> 3382 AFRICA
#> 3383 AFRICA
#> 3384 AFRICA
#> 3385 AFRICA
#> 3386 AFRICA
#> 3387 AFRICA
#> 3388 AFRICA
#> 3389 ASIA
#> 3390 ASIA
#> 3391 ASIA
#> 3392 ASIA
#> 3393 ASIA
#> 3394 ASIA
#> 3395 ASIA
#> 3396 ASIA
#> 3397 ASIA
#> 3398 ASIA
#> 3399 ASIA
#> 3400 ASIA
#> 3401 ASIA
#> 3402 ASIA
#> 3403 Afghanistan
#> 3404 Afghanistan
#> 3405 Afghanistan
#> 3406 Afghanistan
#> 3407 Afghanistan
#> 3408 Afghanistan
#> 3409 Afghanistan
#> 3410 Afghanistan
#> 3411 Afghanistan
#> 3412 Afghanistan
#> 3413 Afghanistan
#> 3414 Afghanistan
#> 3415 Afghanistan
#> 3416 Afghanistan
#> 3417 Albania
#> 3418 Albania
#> 3419 Albania
#> 3420 Albania
#> 3421 Albania
#> 3422 Albania
#> 3423 Albania
#> 3424 Albania
#> 3425 Albania
#> 3426 Albania
#> 3427 Albania
#> 3428 Albania
#> 3429 Albania
#> 3430 Albania
#> 3431 Algeria
#> 3432 Algeria
#> 3433 Algeria
#> 3434 Algeria
#> 3435 Algeria
#> 3436 Algeria
#> 3437 Algeria
#> 3438 Algeria
#> 3439 Algeria
#> 3440 Algeria
#> 3441 Algeria
#> 3442 Algeria
#> 3443 Algeria
#> 3444 Algeria
#> 3445 Angola
#> 3446 Angola
#> 3447 Angola
#> 3448 Angola
#> 3449 Angola
#> 3450 Angola
#> 3451 Angola
#> 3452 Angola
#> 3453 Angola
#> 3454 Angola
#> 3455 Angola
#> 3456 Angola
#> 3457 Angola
#> 3458 Angola
#> 3459 Antigua and Barbuda
#> 3460 Antigua and Barbuda
#> 3461 Antigua and Barbuda
#> 3462 Antigua and Barbuda
#> 3463 Antigua and Barbuda
#> 3464 Antigua and Barbuda
#> 3465 Antigua and Barbuda
#> 3466 Antigua and Barbuda
#> 3467 Antigua and Barbuda
#> 3468 Antigua and Barbuda
#> 3469 Antigua and Barbuda
#> 3470 Antigua and Barbuda
#> 3471 Antigua and Barbuda
#> 3472 Antigua and Barbuda
#> 3473 Argentina
#> 3474 Argentina
#> 3475 Argentina
#> 3476 Argentina
#> 3477 Argentina
#> 3478 Argentina
#> 3479 Argentina
#> 3480 Argentina
#> 3481 Argentina
#> 3482 Argentina
#> 3483 Argentina
#> 3484 Argentina
#> 3485 Argentina
#> 3486 Argentina
#> 3487 Armenia
#> 3488 Armenia
#> 3489 Armenia
#> 3490 Armenia
#> 3491 Armenia
#> 3492 Armenia
#> 3493 Armenia
#> 3494 Armenia
#> 3495 Armenia
#> 3496 Armenia
#> 3497 Armenia
#> 3498 Armenia
#> 3499 Armenia
#> 3500 Armenia
#> 3501 Aruba
#> 3502 Aruba
#> 3503 Aruba
#> 3504 Aruba
#> 3505 Aruba
#> 3506 Aruba
#> 3507 Aruba
#> 3508 Aruba
#> 3509 Aruba
#> 3510 Aruba
#> 3511 Aruba
#> 3512 Aruba
#> 3513 Aruba
#> 3514 Aruba
#> 3515 Australia
#> 3516 Australia
#> 3517 Australia
#> 3518 Australia
#> 3519 Australia
#> 3520 Australia
#> 3521 Australia
#> 3522 Australia
#> 3523 Australia
#> 3524 Australia
#> 3525 Australia
#> 3526 Australia
#> 3527 Australia
#> 3528 Australia
#> 3529 Australia/New Zealand
#> 3530 Australia/New Zealand
#> 3531 Australia/New Zealand
#> 3532 Australia/New Zealand
#> 3533 Australia/New Zealand
#> 3534 Australia/New Zealand
#> 3535 Australia/New Zealand
#> 3536 Australia/New Zealand
#> 3537 Australia/New Zealand
#> 3538 Australia/New Zealand
#> 3539 Australia/New Zealand
#> 3540 Australia/New Zealand
#> 3541 Australia/New Zealand
#> 3542 Australia/New Zealand
#> 3543 Austria
#> 3544 Austria
#> 3545 Austria
#> 3546 Austria
#> 3547 Austria
#> 3548 Austria
#> 3549 Austria
#> 3550 Austria
#> 3551 Austria
#> 3552 Austria
#> 3553 Austria
#> 3554 Austria
#> 3555 Austria
#> 3556 Austria
#> 3557 Azerbaijan
#> 3558 Azerbaijan
#> 3559 Azerbaijan
#> 3560 Azerbaijan
#> 3561 Azerbaijan
#> 3562 Azerbaijan
#> 3563 Azerbaijan
#> 3564 Azerbaijan
#> 3565 Azerbaijan
#> 3566 Azerbaijan
#> 3567 Azerbaijan
#> 3568 Azerbaijan
#> 3569 Azerbaijan
#> 3570 Azerbaijan
#> 3571 Bahamas
#> 3572 Bahamas
#> 3573 Bahamas
#> 3574 Bahamas
#> 3575 Bahamas
#> 3576 Bahamas
#> 3577 Bahamas
#> 3578 Bahamas
#> 3579 Bahamas
#> 3580 Bahamas
#> 3581 Bahamas
#> 3582 Bahamas
#> 3583 Bahamas
#> 3584 Bahamas
#> 3585 Bahrain
#> 3586 Bahrain
#> 3587 Bahrain
#> 3588 Bahrain
#> 3589 Bahrain
#> 3590 Bahrain
#> 3591 Bahrain
#> 3592 Bahrain
#> 3593 Bahrain
#> 3594 Bahrain
#> 3595 Bahrain
#> 3596 Bahrain
#> 3597 Bahrain
#> 3598 Bahrain
#> 3599 Bangladesh
#> 3600 Bangladesh
#> 3601 Bangladesh
#> 3602 Bangladesh
#> 3603 Bangladesh
#> 3604 Bangladesh
#> 3605 Bangladesh
#> 3606 Bangladesh
#> 3607 Bangladesh
#> 3608 Bangladesh
#> 3609 Bangladesh
#> 3610 Bangladesh
#> 3611 Bangladesh
#> 3612 Bangladesh
#> 3613 Barbados
#> 3614 Barbados
#> 3615 Barbados
#> 3616 Barbados
#> 3617 Barbados
#> 3618 Barbados
#> 3619 Barbados
#> 3620 Barbados
#> 3621 Barbados
#> 3622 Barbados
#> 3623 Barbados
#> 3624 Barbados
#> 3625 Barbados
#> 3626 Barbados
#> 3627 Belarus
#> 3628 Belarus
#> 3629 Belarus
#> 3630 Belarus
#> 3631 Belarus
#> 3632 Belarus
#> 3633 Belarus
#> 3634 Belarus
#> 3635 Belarus
#> 3636 Belarus
#> 3637 Belarus
#> 3638 Belarus
#> 3639 Belarus
#> 3640 Belarus
#> 3641 Belgium
#> 3642 Belgium
#> 3643 Belgium
#> 3644 Belgium
#> 3645 Belgium
#> 3646 Belgium
#> 3647 Belgium
#> 3648 Belgium
#> 3649 Belgium
#> 3650 Belgium
#> 3651 Belgium
#> 3652 Belgium
#> 3653 Belgium
#> 3654 Belgium
#> 3655 Belize
#> 3656 Belize
#> 3657 Belize
#> 3658 Belize
#> 3659 Belize
#> 3660 Belize
#> 3661 Belize
#> 3662 Belize
#> 3663 Belize
#> 3664 Belize
#> 3665 Belize
#> 3666 Belize
#> 3667 Belize
#> 3668 Belize
#> 3669 Benin
#> 3670 Benin
#> 3671 Benin
#> 3672 Benin
#> 3673 Benin
#> 3674 Benin
#> 3675 Benin
#> 3676 Benin
#> 3677 Benin
#> 3678 Benin
#> 3679 Benin
#> 3680 Benin
#> 3681 Benin
#> 3682 Benin
#> 3683 Bhutan
#> 3684 Bhutan
#> 3685 Bhutan
#> 3686 Bhutan
#> 3687 Bhutan
#> 3688 Bhutan
#> 3689 Bhutan
#> 3690 Bhutan
#> 3691 Bhutan
#> 3692 Bhutan
#> 3693 Bhutan
#> 3694 Bhutan
#> 3695 Bhutan
#> 3696 Bhutan
#> 3697 Bolivia (Plurinational State of)
#> 3698 Bolivia (Plurinational State of)
#> 3699 Bolivia (Plurinational State of)
#> 3700 Bolivia (Plurinational State of)
#> 3701 Bolivia (Plurinational State of)
#> 3702 Bolivia (Plurinational State of)
#> 3703 Bolivia (Plurinational State of)
#> 3704 Bolivia (Plurinational State of)
#> 3705 Bolivia (Plurinational State of)
#> 3706 Bolivia (Plurinational State of)
#> 3707 Bolivia (Plurinational State of)
#> 3708 Bolivia (Plurinational State of)
#> 3709 Bolivia (Plurinational State of)
#> 3710 Bolivia (Plurinational State of)
#> 3711 Bosnia and Herzegovina
#> 3712 Bosnia and Herzegovina
#> 3713 Bosnia and Herzegovina
#> 3714 Bosnia and Herzegovina
#> 3715 Bosnia and Herzegovina
#> 3716 Bosnia and Herzegovina
#> 3717 Bosnia and Herzegovina
#> 3718 Bosnia and Herzegovina
#> 3719 Bosnia and Herzegovina
#> 3720 Bosnia and Herzegovina
#> 3721 Bosnia and Herzegovina
#> 3722 Bosnia and Herzegovina
#> 3723 Bosnia and Herzegovina
#> 3724 Bosnia and Herzegovina
#> 3725 Botswana
#> 3726 Botswana
#> 3727 Botswana
#> 3728 Botswana
#> 3729 Botswana
#> 3730 Botswana
#> 3731 Botswana
#> 3732 Botswana
#> 3733 Botswana
#> 3734 Botswana
#> 3735 Botswana
#> 3736 Botswana
#> 3737 Botswana
#> 3738 Botswana
#> 3739 Brazil
#> 3740 Brazil
#> 3741 Brazil
#> 3742 Brazil
#> 3743 Brazil
#> 3744 Brazil
#> 3745 Brazil
#> 3746 Brazil
#> 3747 Brazil
#> 3748 Brazil
#> 3749 Brazil
#> 3750 Brazil
#> 3751 Brazil
#> 3752 Brazil
#> 3753 Brunei Darussalam
#> 3754 Brunei Darussalam
#> 3755 Brunei Darussalam
#> 3756 Brunei Darussalam
#> 3757 Brunei Darussalam
#> 3758 Brunei Darussalam
#> 3759 Brunei Darussalam
#> 3760 Brunei Darussalam
#> 3761 Brunei Darussalam
#> 3762 Brunei Darussalam
#> 3763 Brunei Darussalam
#> 3764 Brunei Darussalam
#> 3765 Brunei Darussalam
#> 3766 Brunei Darussalam
#> 3767 Bulgaria
#> 3768 Bulgaria
#> 3769 Bulgaria
#> 3770 Bulgaria
#> 3771 Bulgaria
#> 3772 Bulgaria
#> 3773 Bulgaria
#> 3774 Bulgaria
#> 3775 Bulgaria
#> 3776 Bulgaria
#> 3777 Bulgaria
#> 3778 Bulgaria
#> 3779 Bulgaria
#> 3780 Bulgaria
#> 3781 Burkina Faso
#> 3782 Burkina Faso
#> 3783 Burkina Faso
#> 3784 Burkina Faso
#> 3785 Burkina Faso
#> 3786 Burkina Faso
#> 3787 Burkina Faso
#> 3788 Burkina Faso
#> 3789 Burkina Faso
#> 3790 Burkina Faso
#> 3791 Burkina Faso
#> 3792 Burkina Faso
#> 3793 Burkina Faso
#> 3794 Burkina Faso
#> 3795 Burundi
#> 3796 Burundi
#> 3797 Burundi
#> 3798 Burundi
#> 3799 Burundi
#> 3800 Burundi
#> 3801 Burundi
#> 3802 Burundi
#> 3803 Burundi
#> 3804 Burundi
#> 3805 Burundi
#> 3806 Burundi
#> 3807 Burundi
#> 3808 Burundi
#> 3809 Cabo Verde
#> 3810 Cabo Verde
#> 3811 Cabo Verde
#> 3812 Cabo Verde
#> 3813 Cabo Verde
#> 3814 Cabo Verde
#> 3815 Cabo Verde
#> 3816 Cabo Verde
#> 3817 Cabo Verde
#> 3818 Cabo Verde
#> 3819 Cabo Verde
#> 3820 Cabo Verde
#> 3821 Cabo Verde
#> 3822 Cabo Verde
#> 3823 Cambodia
#> 3824 Cambodia
#> 3825 Cambodia
#> 3826 Cambodia
#> 3827 Cambodia
#> 3828 Cambodia
#> 3829 Cambodia
#> 3830 Cambodia
#> 3831 Cambodia
#> 3832 Cambodia
#> 3833 Cambodia
#> 3834 Cambodia
#> 3835 Cambodia
#> 3836 Cambodia
#> 3837 Cameroon
#> 3838 Cameroon
#> 3839 Cameroon
#> 3840 Cameroon
#> 3841 Cameroon
#> 3842 Cameroon
#> 3843 Cameroon
#> 3844 Cameroon
#> 3845 Cameroon
#> 3846 Cameroon
#> 3847 Cameroon
#> 3848 Cameroon
#> 3849 Cameroon
#> 3850 Cameroon
#> 3851 Canada
#> 3852 Canada
#> 3853 Canada
#> 3854 Canada
#> 3855 Canada
#> 3856 Canada
#> 3857 Canada
#> 3858 Canada
#> 3859 Canada
#> 3860 Canada
#> 3861 Canada
#> 3862 Canada
#> 3863 Canada
#> 3864 Canada
#> 3865 Caribbean
#> 3866 Caribbean
#> 3867 Caribbean
#> 3868 Caribbean
#> 3869 Caribbean
#> 3870 Caribbean
#> 3871 Caribbean
#> 3872 Caribbean
#> 3873 Caribbean
#> 3874 Caribbean
#> 3875 Caribbean
#> 3876 Caribbean
#> 3877 Caribbean
#> 3878 Caribbean
#> 3879 Central African Republic
#> 3880 Central African Republic
#> 3881 Central African Republic
#> 3882 Central African Republic
#> 3883 Central African Republic
#> 3884 Central African Republic
#> 3885 Central African Republic
#> 3886 Central African Republic
#> 3887 Central African Republic
#> 3888 Central African Republic
#> 3889 Central African Republic
#> 3890 Central African Republic
#> 3891 Central African Republic
#> 3892 Central African Republic
#> 3893 Central America
#> 3894 Central America
#> 3895 Central America
#> 3896 Central America
#> 3897 Central America
#> 3898 Central America
#> 3899 Central America
#> 3900 Central America
#> 3901 Central America
#> 3902 Central America
#> 3903 Central America
#> 3904 Central America
#> 3905 Central America
#> 3906 Central America
#> 3907 Central Asia
#> 3908 Central Asia
#> 3909 Central Asia
#> 3910 Central Asia
#> 3911 Central Asia
#> 3912 Central Asia
#> 3913 Central Asia
#> 3914 Central Asia
#> 3915 Central Asia
#> 3916 Central Asia
#> 3917 Central Asia
#> 3918 Central Asia
#> 3919 Central Asia
#> 3920 Central Asia
#> 3921 Chad
#> 3922 Chad
#> 3923 Chad
#> 3924 Chad
#> 3925 Chad
#> 3926 Chad
#> 3927 Chad
#> 3928 Chad
#> 3929 Chad
#> 3930 Chad
#> 3931 Chad
#> 3932 Chad
#> 3933 Chad
#> 3934 Chad
#> 3935 Channel Islands
#> 3936 Channel Islands
#> 3937 Channel Islands
#> 3938 Channel Islands
#> 3939 Channel Islands
#> 3940 Channel Islands
#> 3941 Channel Islands
#> 3942 Channel Islands
#> 3943 Channel Islands
#> 3944 Channel Islands
#> 3945 Channel Islands
#> 3946 Channel Islands
#> 3947 Channel Islands
#> 3948 Channel Islands
#> 3949 Chile
#> 3950 Chile
#> 3951 Chile
#> 3952 Chile
#> 3953 Chile
#> 3954 Chile
#> 3955 Chile
#> 3956 Chile
#> 3957 Chile
#> 3958 Chile
#> 3959 Chile
#> 3960 Chile
#> 3961 Chile
#> 3962 Chile
#> 3963 China
#> 3964 China
#> 3965 China
#> 3966 China
#> 3967 China
#> 3968 China
#> 3969 China
#> 3970 China
#> 3971 China
#> 3972 China
#> 3973 China
#> 3974 China
#> 3975 China
#> 3976 China
#> 3977 China, Hong Kong SAR
#> 3978 China, Hong Kong SAR
#> 3979 China, Hong Kong SAR
#> 3980 China, Hong Kong SAR
#> 3981 China, Hong Kong SAR
#> 3982 China, Hong Kong SAR
#> 3983 China, Hong Kong SAR
#> 3984 China, Hong Kong SAR
#> 3985 China, Hong Kong SAR
#> 3986 China, Hong Kong SAR
#> 3987 China, Hong Kong SAR
#> 3988 China, Hong Kong SAR
#> 3989 China, Hong Kong SAR
#> 3990 China, Hong Kong SAR
#> 3991 China, Macao SAR
#> 3992 China, Macao SAR
#> 3993 China, Macao SAR
#> 3994 China, Macao SAR
#> 3995 China, Macao SAR
#> 3996 China, Macao SAR
#> 3997 China, Macao SAR
#> 3998 China, Macao SAR
#> 3999 China, Macao SAR
#> 4000 China, Macao SAR
#> 4001 China, Macao SAR
#> 4002 China, Macao SAR
#> 4003 China, Macao SAR
#> 4004 China, Macao SAR
#> 4005 China, Taiwan Province of China
#> 4006 China, Taiwan Province of China
#> 4007 China, Taiwan Province of China
#> 4008 China, Taiwan Province of China
#> 4009 China, Taiwan Province of China
#> 4010 China, Taiwan Province of China
#> 4011 China, Taiwan Province of China
#> 4012 China, Taiwan Province of China
#> 4013 China, Taiwan Province of China
#> 4014 China, Taiwan Province of China
#> 4015 China, Taiwan Province of China
#> 4016 China, Taiwan Province of China
#> 4017 China, Taiwan Province of China
#> 4018 China, Taiwan Province of China
#> 4019 Colombia
#> 4020 Colombia
#> 4021 Colombia
#> 4022 Colombia
#> 4023 Colombia
#> 4024 Colombia
#> 4025 Colombia
#> 4026 Colombia
#> 4027 Colombia
#> 4028 Colombia
#> 4029 Colombia
#> 4030 Colombia
#> 4031 Colombia
#> 4032 Colombia
#> 4033 Comoros
#> 4034 Comoros
#> 4035 Comoros
#> 4036 Comoros
#> 4037 Comoros
#> 4038 Comoros
#> 4039 Comoros
#> 4040 Comoros
#> 4041 Comoros
#> 4042 Comoros
#> 4043 Comoros
#> 4044 Comoros
#> 4045 Comoros
#> 4046 Comoros
#> 4047 Congo
#> 4048 Congo
#> 4049 Congo
#> 4050 Congo
#> 4051 Congo
#> 4052 Congo
#> 4053 Congo
#> 4054 Congo
#> 4055 Congo
#> 4056 Congo
#> 4057 Congo
#> 4058 Congo
#> 4059 Congo
#> 4060 Congo
#> 4061 Costa Rica
#> 4062 Costa Rica
#> 4063 Costa Rica
#> 4064 Costa Rica
#> 4065 Costa Rica
#> 4066 Costa Rica
#> 4067 Costa Rica
#> 4068 Costa Rica
#> 4069 Costa Rica
#> 4070 Costa Rica
#> 4071 Costa Rica
#> 4072 Costa Rica
#> 4073 Costa Rica
#> 4074 Costa Rica
#> 4075 Cote d'Ivoire
#> 4076 Cote d'Ivoire
#> 4077 Cote d'Ivoire
#> 4078 Cote d'Ivoire
#> 4079 Cote d'Ivoire
#> 4080 Cote d'Ivoire
#> 4081 Cote d'Ivoire
#> 4082 Cote d'Ivoire
#> 4083 Cote d'Ivoire
#> 4084 Cote d'Ivoire
#> 4085 Cote d'Ivoire
#> 4086 Cote d'Ivoire
#> 4087 Cote d'Ivoire
#> 4088 Cote d'Ivoire
#> 4089 Croatia
#> 4090 Croatia
#> 4091 Croatia
#> 4092 Croatia
#> 4093 Croatia
#> 4094 Croatia
#> 4095 Croatia
#> 4096 Croatia
#> 4097 Croatia
#> 4098 Croatia
#> 4099 Croatia
#> 4100 Croatia
#> 4101 Croatia
#> 4102 Croatia
#> 4103 Cuba
#> 4104 Cuba
#> 4105 Cuba
#> 4106 Cuba
#> 4107 Cuba
#> 4108 Cuba
#> 4109 Cuba
#> 4110 Cuba
#> 4111 Cuba
#> 4112 Cuba
#> 4113 Cuba
#> 4114 Cuba
#> 4115 Cuba
#> 4116 Cuba
#> 4117 Curacao
#> 4118 Curacao
#> 4119 Curacao
#> 4120 Curacao
#> 4121 Curacao
#> 4122 Curacao
#> 4123 Curacao
#> 4124 Curacao
#> 4125 Curacao
#> 4126 Curacao
#> 4127 Curacao
#> 4128 Curacao
#> 4129 Curacao
#> 4130 Curacao
#> 4131 Cyprus
#> 4132 Cyprus
#> 4133 Cyprus
#> 4134 Cyprus
#> 4135 Cyprus
#> 4136 Cyprus
#> 4137 Cyprus
#> 4138 Cyprus
#> 4139 Cyprus
#> 4140 Cyprus
#> 4141 Cyprus
#> 4142 Cyprus
#> 4143 Cyprus
#> 4144 Cyprus
#> 4145 Czechia
#> 4146 Czechia
#> 4147 Czechia
#> 4148 Czechia
#> 4149 Czechia
#> 4150 Czechia
#> 4151 Czechia
#> 4152 Czechia
#> 4153 Czechia
#> 4154 Czechia
#> 4155 Czechia
#> 4156 Czechia
#> 4157 Czechia
#> 4158 Czechia
#> 4159 Dem. People's Republic of Korea
#> 4160 Dem. People's Republic of Korea
#> 4161 Dem. People's Republic of Korea
#> 4162 Dem. People's Republic of Korea
#> 4163 Dem. People's Republic of Korea
#> 4164 Dem. People's Republic of Korea
#> 4165 Dem. People's Republic of Korea
#> 4166 Dem. People's Republic of Korea
#> 4167 Dem. People's Republic of Korea
#> 4168 Dem. People's Republic of Korea
#> 4169 Dem. People's Republic of Korea
#> 4170 Dem. People's Republic of Korea
#> 4171 Dem. People's Republic of Korea
#> 4172 Dem. People's Republic of Korea
#> 4173 Democratic Republic of the Congo
#> 4174 Democratic Republic of the Congo
#> 4175 Democratic Republic of the Congo
#> 4176 Democratic Republic of the Congo
#> 4177 Democratic Republic of the Congo
#> 4178 Democratic Republic of the Congo
#> 4179 Democratic Republic of the Congo
#> 4180 Democratic Republic of the Congo
#> 4181 Democratic Republic of the Congo
#> 4182 Democratic Republic of the Congo
#> 4183 Democratic Republic of the Congo
#> 4184 Democratic Republic of the Congo
#> 4185 Democratic Republic of the Congo
#> 4186 Democratic Republic of the Congo
#> 4187 Denmark
#> 4188 Denmark
#> 4189 Denmark
#> 4190 Denmark
#> 4191 Denmark
#> 4192 Denmark
#> 4193 Denmark
#> 4194 Denmark
#> 4195 Denmark
#> 4196 Denmark
#> 4197 Denmark
#> 4198 Denmark
#> 4199 Denmark
#> 4200 Denmark
#> 4201 Djibouti
#> 4202 Djibouti
#> 4203 Djibouti
#> 4204 Djibouti
#> 4205 Djibouti
#> 4206 Djibouti
#> 4207 Djibouti
#> 4208 Djibouti
#> 4209 Djibouti
#> 4210 Djibouti
#> 4211 Djibouti
#> 4212 Djibouti
#> 4213 Djibouti
#> 4214 Djibouti
#> 4215 Dominican Republic
#> 4216 Dominican Republic
#> 4217 Dominican Republic
#> 4218 Dominican Republic
#> 4219 Dominican Republic
#> 4220 Dominican Republic
#> 4221 Dominican Republic
#> 4222 Dominican Republic
#> 4223 Dominican Republic
#> 4224 Dominican Republic
#> 4225 Dominican Republic
#> 4226 Dominican Republic
#> 4227 Dominican Republic
#> 4228 Dominican Republic
#> 4229 EUROPE
#> 4230 EUROPE
#> 4231 EUROPE
#> 4232 EUROPE
#> 4233 EUROPE
#> 4234 EUROPE
#> 4235 EUROPE
#> 4236 EUROPE
#> 4237 EUROPE
#> 4238 EUROPE
#> 4239 EUROPE
#> 4240 EUROPE
#> 4241 EUROPE
#> 4242 EUROPE
#> 4243 Eastern Africa
#> 4244 Eastern Africa
#> 4245 Eastern Africa
#> 4246 Eastern Africa
#> 4247 Eastern Africa
#> 4248 Eastern Africa
#> 4249 Eastern Africa
#> 4250 Eastern Africa
#> 4251 Eastern Africa
#> 4252 Eastern Africa
#> 4253 Eastern Africa
#> 4254 Eastern Africa
#> 4255 Eastern Africa
#> 4256 Eastern Africa
#> 4257 Eastern Asia
#> 4258 Eastern Asia
#> 4259 Eastern Asia
#> 4260 Eastern Asia
#> 4261 Eastern Asia
#> 4262 Eastern Asia
#> 4263 Eastern Asia
#> 4264 Eastern Asia
#> 4265 Eastern Asia
#> 4266 Eastern Asia
#> 4267 Eastern Asia
#> 4268 Eastern Asia
#> 4269 Eastern Asia
#> 4270 Eastern Asia
#> 4271 Eastern Europe
#> 4272 Eastern Europe
#> 4273 Eastern Europe
#> 4274 Eastern Europe
#> 4275 Eastern Europe
#> 4276 Eastern Europe
#> 4277 Eastern Europe
#> 4278 Eastern Europe
#> 4279 Eastern Europe
#> 4280 Eastern Europe
#> 4281 Eastern Europe
#> 4282 Eastern Europe
#> 4283 Eastern Europe
#> 4284 Eastern Europe
#> 4285 Ecuador
#> 4286 Ecuador
#> 4287 Ecuador
#> 4288 Ecuador
#> 4289 Ecuador
#> 4290 Ecuador
#> 4291 Ecuador
#> 4292 Ecuador
#> 4293 Ecuador
#> 4294 Ecuador
#> 4295 Ecuador
#> 4296 Ecuador
#> 4297 Ecuador
#> 4298 Ecuador
#> 4299 Egypt
#> 4300 Egypt
#> 4301 Egypt
#> 4302 Egypt
#> 4303 Egypt
#> 4304 Egypt
#> 4305 Egypt
#> 4306 Egypt
#> 4307 Egypt
#> 4308 Egypt
#> 4309 Egypt
#> 4310 Egypt
#> 4311 Egypt
#> 4312 Egypt
#> 4313 El Salvador
#> 4314 El Salvador
#> 4315 El Salvador
#> 4316 El Salvador
#> 4317 El Salvador
#> 4318 El Salvador
#> 4319 El Salvador
#> 4320 El Salvador
#> 4321 El Salvador
#> 4322 El Salvador
#> 4323 El Salvador
#> 4324 El Salvador
#> 4325 El Salvador
#> 4326 El Salvador
#> 4327 Equatorial Guinea
#> 4328 Equatorial Guinea
#> 4329 Equatorial Guinea
#> 4330 Equatorial Guinea
#> 4331 Equatorial Guinea
#> 4332 Equatorial Guinea
#> 4333 Equatorial Guinea
#> 4334 Equatorial Guinea
#> 4335 Equatorial Guinea
#> 4336 Equatorial Guinea
#> 4337 Equatorial Guinea
#> 4338 Equatorial Guinea
#> 4339 Equatorial Guinea
#> 4340 Equatorial Guinea
#> 4341 Eritrea
#> 4342 Eritrea
#> 4343 Eritrea
#> 4344 Eritrea
#> 4345 Eritrea
#> 4346 Eritrea
#> 4347 Eritrea
#> 4348 Eritrea
#> 4349 Eritrea
#> 4350 Eritrea
#> 4351 Eritrea
#> 4352 Eritrea
#> 4353 Eritrea
#> 4354 Eritrea
#> 4355 Estonia
#> 4356 Estonia
#> 4357 Estonia
#> 4358 Estonia
#> 4359 Estonia
#> 4360 Estonia
#> 4361 Estonia
#> 4362 Estonia
#> 4363 Estonia
#> 4364 Estonia
#> 4365 Estonia
#> 4366 Estonia
#> 4367 Estonia
#> 4368 Estonia
#> 4369 Ethiopia
#> 4370 Ethiopia
#> 4371 Ethiopia
#> 4372 Ethiopia
#> 4373 Ethiopia
#> 4374 Ethiopia
#> 4375 Ethiopia
#> 4376 Ethiopia
#> 4377 Ethiopia
#> 4378 Ethiopia
#> 4379 Ethiopia
#> 4380 Ethiopia
#> 4381 Ethiopia
#> 4382 Ethiopia
#> 4383 Fiji
#> 4384 Fiji
#> 4385 Fiji
#> 4386 Fiji
#> 4387 Fiji
#> 4388 Fiji
#> 4389 Fiji
#> 4390 Fiji
#> 4391 Fiji
#> 4392 Fiji
#> 4393 Fiji
#> 4394 Fiji
#> 4395 Fiji
#> 4396 Fiji
#> 4397 Finland
#> 4398 Finland
#> 4399 Finland
#> 4400 Finland
#> 4401 Finland
#> 4402 Finland
#> 4403 Finland
#> 4404 Finland
#> 4405 Finland
#> 4406 Finland
#> 4407 Finland
#> 4408 Finland
#> 4409 Finland
#> 4410 Finland
#> 4411 France
#> 4412 France
#> 4413 France
#> 4414 France
#> 4415 France
#> 4416 France
#> 4417 France
#> 4418 France
#> 4419 France
#> 4420 France
#> 4421 France
#> 4422 France
#> 4423 France
#> 4424 France
#> 4425 French Guiana
#> 4426 French Guiana
#> 4427 French Guiana
#> 4428 French Guiana
#> 4429 French Guiana
#> 4430 French Guiana
#> 4431 French Guiana
#> 4432 French Guiana
#> 4433 French Guiana
#> 4434 French Guiana
#> 4435 French Guiana
#> 4436 French Guiana
#> 4437 French Guiana
#> 4438 French Guiana
#> 4439 French Polynesia
#> 4440 French Polynesia
#> 4441 French Polynesia
#> 4442 French Polynesia
#> 4443 French Polynesia
#> 4444 French Polynesia
#> 4445 French Polynesia
#> 4446 French Polynesia
#> 4447 French Polynesia
#> 4448 French Polynesia
#> 4449 French Polynesia
#> 4450 French Polynesia
#> 4451 French Polynesia
#> 4452 French Polynesia
#> 4453 Gabon
#> 4454 Gabon
#> 4455 Gabon
#> 4456 Gabon
#> 4457 Gabon
#> 4458 Gabon
#> 4459 Gabon
#> 4460 Gabon
#> 4461 Gabon
#> 4462 Gabon
#> 4463 Gabon
#> 4464 Gabon
#> 4465 Gabon
#> 4466 Gabon
#> 4467 Gambia
#> 4468 Gambia
#> 4469 Gambia
#> 4470 Gambia
#> 4471 Gambia
#> 4472 Gambia
#> 4473 Gambia
#> 4474 Gambia
#> 4475 Gambia
#> 4476 Gambia
#> 4477 Gambia
#> 4478 Gambia
#> 4479 Gambia
#> 4480 Gambia
#> 4481 Georgia
#> 4482 Georgia
#> 4483 Georgia
#> 4484 Georgia
#> 4485 Georgia
#> 4486 Georgia
#> 4487 Georgia
#> 4488 Georgia
#> 4489 Georgia
#> 4490 Georgia
#> 4491 Georgia
#> 4492 Georgia
#> 4493 Georgia
#> 4494 Georgia
#> 4495 Germany
#> 4496 Germany
#> 4497 Germany
#> 4498 Germany
#> 4499 Germany
#> 4500 Germany
#> 4501 Germany
#> 4502 Germany
#> 4503 Germany
#> 4504 Germany
#> 4505 Germany
#> 4506 Germany
#> 4507 Germany
#> 4508 Germany
#> 4509 Ghana
#> 4510 Ghana
#> 4511 Ghana
#> 4512 Ghana
#> 4513 Ghana
#> 4514 Ghana
#> 4515 Ghana
#> 4516 Ghana
#> 4517 Ghana
#> 4518 Ghana
#> 4519 Ghana
#> 4520 Ghana
#> 4521 Ghana
#> 4522 Ghana
#> 4523 Greece
#> 4524 Greece
#> 4525 Greece
#> 4526 Greece
#> 4527 Greece
#> 4528 Greece
#> 4529 Greece
#> 4530 Greece
#> 4531 Greece
#> 4532 Greece
#> 4533 Greece
#> 4534 Greece
#> 4535 Greece
#> 4536 Greece
#> 4537 Grenada
#> 4538 Grenada
#> 4539 Grenada
#> 4540 Grenada
#> 4541 Grenada
#> 4542 Grenada
#> 4543 Grenada
#> 4544 Grenada
#> 4545 Grenada
#> 4546 Grenada
#> 4547 Grenada
#> 4548 Grenada
#> 4549 Grenada
#> 4550 Grenada
#> 4551 Guadeloupe
#> 4552 Guadeloupe
#> 4553 Guadeloupe
#> 4554 Guadeloupe
#> 4555 Guadeloupe
#> 4556 Guadeloupe
#> 4557 Guadeloupe
#> 4558 Guadeloupe
#> 4559 Guadeloupe
#> 4560 Guadeloupe
#> 4561 Guadeloupe
#> 4562 Guadeloupe
#> 4563 Guadeloupe
#> 4564 Guadeloupe
#> 4565 Guam
#> 4566 Guam
#> 4567 Guam
#> 4568 Guam
#> 4569 Guam
#> 4570 Guam
#> 4571 Guam
#> 4572 Guam
#> 4573 Guam
#> 4574 Guam
#> 4575 Guam
#> 4576 Guam
#> 4577 Guam
#> 4578 Guam
#> 4579 Guatemala
#> 4580 Guatemala
#> 4581 Guatemala
#> 4582 Guatemala
#> 4583 Guatemala
#> 4584 Guatemala
#> 4585 Guatemala
#> 4586 Guatemala
#> 4587 Guatemala
#> 4588 Guatemala
#> 4589 Guatemala
#> 4590 Guatemala
#> 4591 Guatemala
#> 4592 Guatemala
#> 4593 Guinea
#> 4594 Guinea
#> 4595 Guinea
#> 4596 Guinea
#> 4597 Guinea
#> 4598 Guinea
#> 4599 Guinea
#> 4600 Guinea
#> 4601 Guinea
#> 4602 Guinea
#> 4603 Guinea
#> 4604 Guinea
#> 4605 Guinea
#> 4606 Guinea
#> 4607 Guinea-Bissau
#> 4608 Guinea-Bissau
#> 4609 Guinea-Bissau
#> 4610 Guinea-Bissau
#> 4611 Guinea-Bissau
#> 4612 Guinea-Bissau
#> 4613 Guinea-Bissau
#> 4614 Guinea-Bissau
#> 4615 Guinea-Bissau
#> 4616 Guinea-Bissau
#> 4617 Guinea-Bissau
#> 4618 Guinea-Bissau
#> 4619 Guinea-Bissau
#> 4620 Guinea-Bissau
#> 4621 Guyana
#> 4622 Guyana
#> 4623 Guyana
#> 4624 Guyana
#> 4625 Guyana
#> 4626 Guyana
#> 4627 Guyana
#> 4628 Guyana
#> 4629 Guyana
#> 4630 Guyana
#> 4631 Guyana
#> 4632 Guyana
#> 4633 Guyana
#> 4634 Guyana
#> 4635 Haiti
#> 4636 Haiti
#> 4637 Haiti
#> 4638 Haiti
#> 4639 Haiti
#> 4640 Haiti
#> 4641 Haiti
#> 4642 Haiti
#> 4643 Haiti
#> 4644 Haiti
#> 4645 Haiti
#> 4646 Haiti
#> 4647 Haiti
#> 4648 Haiti
#> 4649 High-income countries
#> 4650 High-income countries
#> 4651 High-income countries
#> 4652 High-income countries
#> 4653 High-income countries
#> 4654 High-income countries
#> 4655 High-income countries
#> 4656 High-income countries
#> 4657 High-income countries
#> 4658 High-income countries
#> 4659 High-income countries
#> 4660 High-income countries
#> 4661 High-income countries
#> 4662 High-income countries
#> 4663 Honduras
#> 4664 Honduras
#> 4665 Honduras
#> 4666 Honduras
#> 4667 Honduras
#> 4668 Honduras
#> 4669 Honduras
#> 4670 Honduras
#> 4671 Honduras
#> 4672 Honduras
#> 4673 Honduras
#> 4674 Honduras
#> 4675 Honduras
#> 4676 Honduras
#> 4677 Hungary
#> 4678 Hungary
#> 4679 Hungary
#> 4680 Hungary
#> 4681 Hungary
#> 4682 Hungary
#> 4683 Hungary
#> 4684 Hungary
#> 4685 Hungary
#> 4686 Hungary
#> 4687 Hungary
#> 4688 Hungary
#> 4689 Hungary
#> 4690 Hungary
#> 4691 Iceland
#> 4692 Iceland
#> 4693 Iceland
#> 4694 Iceland
#> 4695 Iceland
#> 4696 Iceland
#> 4697 Iceland
#> 4698 Iceland
#> 4699 Iceland
#> 4700 Iceland
#> 4701 Iceland
#> 4702 Iceland
#> 4703 Iceland
#> 4704 Iceland
#> 4705 India
#> 4706 India
#> 4707 India
#> 4708 India
#> 4709 India
#> 4710 India
#> 4711 India
#> 4712 India
#> 4713 India
#> 4714 India
#> 4715 India
#> 4716 India
#> 4717 India
#> 4718 India
#> 4719 Indonesia
#> 4720 Indonesia
#> 4721 Indonesia
#> 4722 Indonesia
#> 4723 Indonesia
#> 4724 Indonesia
#> 4725 Indonesia
#> 4726 Indonesia
#> 4727 Indonesia
#> 4728 Indonesia
#> 4729 Indonesia
#> 4730 Indonesia
#> 4731 Indonesia
#> 4732 Indonesia
#> 4733 Iran (Islamic Republic of)
#> 4734 Iran (Islamic Republic of)
#> 4735 Iran (Islamic Republic of)
#> 4736 Iran (Islamic Republic of)
#> 4737 Iran (Islamic Republic of)
#> 4738 Iran (Islamic Republic of)
#> 4739 Iran (Islamic Republic of)
#> 4740 Iran (Islamic Republic of)
#> 4741 Iran (Islamic Republic of)
#> 4742 Iran (Islamic Republic of)
#> 4743 Iran (Islamic Republic of)
#> 4744 Iran (Islamic Republic of)
#> 4745 Iran (Islamic Republic of)
#> 4746 Iran (Islamic Republic of)
#> 4747 Iraq
#> 4748 Iraq
#> 4749 Iraq
#> 4750 Iraq
#> 4751 Iraq
#> 4752 Iraq
#> 4753 Iraq
#> 4754 Iraq
#> 4755 Iraq
#> 4756 Iraq
#> 4757 Iraq
#> 4758 Iraq
#> 4759 Iraq
#> 4760 Iraq
#> 4761 Ireland
#> 4762 Ireland
#> 4763 Ireland
#> 4764 Ireland
#> 4765 Ireland
#> 4766 Ireland
#> 4767 Ireland
#> 4768 Ireland
#> 4769 Ireland
#> 4770 Ireland
#> 4771 Ireland
#> 4772 Ireland
#> 4773 Ireland
#> 4774 Ireland
#> 4775 Israel
#> 4776 Israel
#> 4777 Israel
#> 4778 Israel
#> 4779 Israel
#> 4780 Israel
#> 4781 Israel
#> 4782 Israel
#> 4783 Israel
#> 4784 Israel
#> 4785 Israel
#> 4786 Israel
#> 4787 Israel
#> 4788 Israel
#> 4789 Italy
#> 4790 Italy
#> 4791 Italy
#> 4792 Italy
#> 4793 Italy
#> 4794 Italy
#> 4795 Italy
#> 4796 Italy
#> 4797 Italy
#> 4798 Italy
#> 4799 Italy
#> 4800 Italy
#> 4801 Italy
#> 4802 Italy
#> 4803 Jamaica
#> 4804 Jamaica
#> 4805 Jamaica
#> 4806 Jamaica
#> 4807 Jamaica
#> 4808 Jamaica
#> 4809 Jamaica
#> 4810 Jamaica
#> 4811 Jamaica
#> 4812 Jamaica
#> 4813 Jamaica
#> 4814 Jamaica
#> 4815 Jamaica
#> 4816 Jamaica
#> 4817 Japan
#> 4818 Japan
#> 4819 Japan
#> 4820 Japan
#> 4821 Japan
#> 4822 Japan
#> 4823 Japan
#> 4824 Japan
#> 4825 Japan
#> 4826 Japan
#> 4827 Japan
#> 4828 Japan
#> 4829 Japan
#> 4830 Japan
#> 4831 Jordan
#> 4832 Jordan
#> 4833 Jordan
#> 4834 Jordan
#> 4835 Jordan
#> 4836 Jordan
#> 4837 Jordan
#> 4838 Jordan
#> 4839 Jordan
#> 4840 Jordan
#> 4841 Jordan
#> 4842 Jordan
#> 4843 Jordan
#> 4844 Jordan
#> 4845 Kazakhstan
#> 4846 Kazakhstan
#> 4847 Kazakhstan
#> 4848 Kazakhstan
#> 4849 Kazakhstan
#> 4850 Kazakhstan
#> 4851 Kazakhstan
#> 4852 Kazakhstan
#> 4853 Kazakhstan
#> 4854 Kazakhstan
#> 4855 Kazakhstan
#> 4856 Kazakhstan
#> 4857 Kazakhstan
#> 4858 Kazakhstan
#> 4859 Kenya
#> 4860 Kenya
#> 4861 Kenya
#> 4862 Kenya
#> 4863 Kenya
#> 4864 Kenya
#> 4865 Kenya
#> 4866 Kenya
#> 4867 Kenya
#> 4868 Kenya
#> 4869 Kenya
#> 4870 Kenya
#> 4871 Kenya
#> 4872 Kenya
#> 4873 Kiribati
#> 4874 Kiribati
#> 4875 Kiribati
#> 4876 Kiribati
#> 4877 Kiribati
#> 4878 Kiribati
#> 4879 Kiribati
#> 4880 Kiribati
#> 4881 Kiribati
#> 4882 Kiribati
#> 4883 Kiribati
#> 4884 Kiribati
#> 4885 Kiribati
#> 4886 Kiribati
#> 4887 Kuwait
#> 4888 Kuwait
#> 4889 Kuwait
#> 4890 Kuwait
#> 4891 Kuwait
#> 4892 Kuwait
#> 4893 Kuwait
#> 4894 Kuwait
#> 4895 Kuwait
#> 4896 Kuwait
#> 4897 Kuwait
#> 4898 Kuwait
#> 4899 Kuwait
#> 4900 Kuwait
#> 4901 Kyrgyzstan
#> 4902 Kyrgyzstan
#> 4903 Kyrgyzstan
#> 4904 Kyrgyzstan
#> 4905 Kyrgyzstan
#> 4906 Kyrgyzstan
#> 4907 Kyrgyzstan
#> 4908 Kyrgyzstan
#> 4909 Kyrgyzstan
#> 4910 Kyrgyzstan
#> 4911 Kyrgyzstan
#> 4912 Kyrgyzstan
#> 4913 Kyrgyzstan
#> 4914 Kyrgyzstan
#> 4915 LATIN AMERICA AND THE CARIBBEAN
#> 4916 LATIN AMERICA AND THE CARIBBEAN
#> 4917 LATIN AMERICA AND THE CARIBBEAN
#> 4918 LATIN AMERICA AND THE CARIBBEAN
#> 4919 LATIN AMERICA AND THE CARIBBEAN
#> 4920 LATIN AMERICA AND THE CARIBBEAN
#> 4921 LATIN AMERICA AND THE CARIBBEAN
#> 4922 LATIN AMERICA AND THE CARIBBEAN
#> 4923 LATIN AMERICA AND THE CARIBBEAN
#> 4924 LATIN AMERICA AND THE CARIBBEAN
#> 4925 LATIN AMERICA AND THE CARIBBEAN
#> 4926 LATIN AMERICA AND THE CARIBBEAN
#> 4927 LATIN AMERICA AND THE CARIBBEAN
#> 4928 LATIN AMERICA AND THE CARIBBEAN
#> 4929 Lao People's Democratic Republic
#> 4930 Lao People's Democratic Republic
#> 4931 Lao People's Democratic Republic
#> 4932 Lao People's Democratic Republic
#> 4933 Lao People's Democratic Republic
#> 4934 Lao People's Democratic Republic
#> 4935 Lao People's Democratic Republic
#> 4936 Lao People's Democratic Republic
#> 4937 Lao People's Democratic Republic
#> 4938 Lao People's Democratic Republic
#> 4939 Lao People's Democratic Republic
#> 4940 Lao People's Democratic Republic
#> 4941 Lao People's Democratic Republic
#> 4942 Lao People's Democratic Republic
#> 4943 Latvia
#> 4944 Latvia
#> 4945 Latvia
#> 4946 Latvia
#> 4947 Latvia
#> 4948 Latvia
#> 4949 Latvia
#> 4950 Latvia
#> 4951 Latvia
#> 4952 Latvia
#> 4953 Latvia
#> 4954 Latvia
#> 4955 Latvia
#> 4956 Latvia
#> 4957 Least developed countries
#> 4958 Least developed countries
#> 4959 Least developed countries
#> 4960 Least developed countries
#> 4961 Least developed countries
#> 4962 Least developed countries
#> 4963 Least developed countries
#> 4964 Least developed countries
#> 4965 Least developed countries
#> 4966 Least developed countries
#> 4967 Least developed countries
#> 4968 Least developed countries
#> 4969 Least developed countries
#> 4970 Least developed countries
#> 4971 Lebanon
#> 4972 Lebanon
#> 4973 Lebanon
#> 4974 Lebanon
#> 4975 Lebanon
#> 4976 Lebanon
#> 4977 Lebanon
#> 4978 Lebanon
#> 4979 Lebanon
#> 4980 Lebanon
#> 4981 Lebanon
#> 4982 Lebanon
#> 4983 Lebanon
#> 4984 Lebanon
#> 4985 Lesotho
#> 4986 Lesotho
#> 4987 Lesotho
#> 4988 Lesotho
#> 4989 Lesotho
#> 4990 Lesotho
#> 4991 Lesotho
#> 4992 Lesotho
#> 4993 Lesotho
#> 4994 Lesotho
#> 4995 Lesotho
#> 4996 Lesotho
#> 4997 Lesotho
#> 4998 Lesotho
#> 4999 Less developed regions
#> 5000 Less developed regions
#> 5001 Less developed regions
#> 5002 Less developed regions
#> 5003 Less developed regions
#> 5004 Less developed regions
#> 5005 Less developed regions
#> 5006 Less developed regions
#> 5007 Less developed regions
#> 5008 Less developed regions
#> 5009 Less developed regions
#> 5010 Less developed regions
#> 5011 Less developed regions
#> 5012 Less developed regions
#> 5013 Less developed regions, excluding China
#> 5014 Less developed regions, excluding China
#> 5015 Less developed regions, excluding China
#> 5016 Less developed regions, excluding China
#> 5017 Less developed regions, excluding China
#> 5018 Less developed regions, excluding China
#> 5019 Less developed regions, excluding China
#> 5020 Less developed regions, excluding China
#> 5021 Less developed regions, excluding China
#> 5022 Less developed regions, excluding China
#> 5023 Less developed regions, excluding China
#> 5024 Less developed regions, excluding China
#> 5025 Less developed regions, excluding China
#> 5026 Less developed regions, excluding China
#> 5027 Less developed regions, excluding least developed countries
#> 5028 Less developed regions, excluding least developed countries
#> 5029 Less developed regions, excluding least developed countries
#> 5030 Less developed regions, excluding least developed countries
#> 5031 Less developed regions, excluding least developed countries
#> 5032 Less developed regions, excluding least developed countries
#> 5033 Less developed regions, excluding least developed countries
#> 5034 Less developed regions, excluding least developed countries
#> 5035 Less developed regions, excluding least developed countries
#> 5036 Less developed regions, excluding least developed countries
#> 5037 Less developed regions, excluding least developed countries
#> 5038 Less developed regions, excluding least developed countries
#> 5039 Less developed regions, excluding least developed countries
#> 5040 Less developed regions, excluding least developed countries
#> 5041 Liberia
#> 5042 Liberia
#> 5043 Liberia
#> 5044 Liberia
#> 5045 Liberia
#> 5046 Liberia
#> 5047 Liberia
#> 5048 Liberia
#> 5049 Liberia
#> 5050 Liberia
#> 5051 Liberia
#> 5052 Liberia
#> 5053 Liberia
#> 5054 Liberia
#> 5055 Libya
#> 5056 Libya
#> 5057 Libya
#> 5058 Libya
#> 5059 Libya
#> 5060 Libya
#> 5061 Libya
#> 5062 Libya
#> 5063 Libya
#> 5064 Libya
#> 5065 Libya
#> 5066 Libya
#> 5067 Libya
#> 5068 Libya
#> 5069 Lithuania
#> 5070 Lithuania
#> 5071 Lithuania
#> 5072 Lithuania
#> 5073 Lithuania
#> 5074 Lithuania
#> 5075 Lithuania
#> 5076 Lithuania
#> 5077 Lithuania
#> 5078 Lithuania
#> 5079 Lithuania
#> 5080 Lithuania
#> 5081 Lithuania
#> 5082 Lithuania
#> 5083 Low-income countries
#> 5084 Low-income countries
#> 5085 Low-income countries
#> 5086 Low-income countries
#> 5087 Low-income countries
#> 5088 Low-income countries
#> 5089 Low-income countries
#> 5090 Low-income countries
#> 5091 Low-income countries
#> 5092 Low-income countries
#> 5093 Low-income countries
#> 5094 Low-income countries
#> 5095 Low-income countries
#> 5096 Low-income countries
#> 5097 Lower-middle-income countries
#> 5098 Lower-middle-income countries
#> 5099 Lower-middle-income countries
#> 5100 Lower-middle-income countries
#> 5101 Lower-middle-income countries
#> 5102 Lower-middle-income countries
#> 5103 Lower-middle-income countries
#> 5104 Lower-middle-income countries
#> 5105 Lower-middle-income countries
#> 5106 Lower-middle-income countries
#> 5107 Lower-middle-income countries
#> 5108 Lower-middle-income countries
#> 5109 Lower-middle-income countries
#> 5110 Lower-middle-income countries
#> 5111 Luxembourg
#> 5112 Luxembourg
#> 5113 Luxembourg
#> 5114 Luxembourg
#> 5115 Luxembourg
#> 5116 Luxembourg
#> 5117 Luxembourg
#> 5118 Luxembourg
#> 5119 Luxembourg
#> 5120 Luxembourg
#> 5121 Luxembourg
#> 5122 Luxembourg
#> 5123 Luxembourg
#> 5124 Luxembourg
#> 5125 Madagascar
#> 5126 Madagascar
#> 5127 Madagascar
#> 5128 Madagascar
#> 5129 Madagascar
#> 5130 Madagascar
#> 5131 Madagascar
#> 5132 Madagascar
#> 5133 Madagascar
#> 5134 Madagascar
#> 5135 Madagascar
#> 5136 Madagascar
#> 5137 Madagascar
#> 5138 Madagascar
#> 5139 Malawi
#> 5140 Malawi
#> 5141 Malawi
#> 5142 Malawi
#> 5143 Malawi
#> 5144 Malawi
#> 5145 Malawi
#> 5146 Malawi
#> 5147 Malawi
#> 5148 Malawi
#> 5149 Malawi
#> 5150 Malawi
#> 5151 Malawi
#> 5152 Malawi
#> 5153 Malaysia
#> 5154 Malaysia
#> 5155 Malaysia
#> 5156 Malaysia
#> 5157 Malaysia
#> 5158 Malaysia
#> 5159 Malaysia
#> 5160 Malaysia
#> 5161 Malaysia
#> 5162 Malaysia
#> 5163 Malaysia
#> 5164 Malaysia
#> 5165 Malaysia
#> 5166 Malaysia
#> 5167 Maldives
#> 5168 Maldives
#> 5169 Maldives
#> 5170 Maldives
#> 5171 Maldives
#> 5172 Maldives
#> 5173 Maldives
#> 5174 Maldives
#> 5175 Maldives
#> 5176 Maldives
#> 5177 Maldives
#> 5178 Maldives
#> 5179 Maldives
#> 5180 Maldives
#> 5181 Mali
#> 5182 Mali
#> 5183 Mali
#> 5184 Mali
#> 5185 Mali
#> 5186 Mali
#> 5187 Mali
#> 5188 Mali
#> 5189 Mali
#> 5190 Mali
#> 5191 Mali
#> 5192 Mali
#> 5193 Mali
#> 5194 Mali
#> 5195 Malta
#> 5196 Malta
#> 5197 Malta
#> 5198 Malta
#> 5199 Malta
#> 5200 Malta
#> 5201 Malta
#> 5202 Malta
#> 5203 Malta
#> 5204 Malta
#> 5205 Malta
#> 5206 Malta
#> 5207 Malta
#> 5208 Malta
#> 5209 Martinique
#> 5210 Martinique
#> 5211 Martinique
#> 5212 Martinique
#> 5213 Martinique
#> 5214 Martinique
#> 5215 Martinique
#> 5216 Martinique
#> 5217 Martinique
#> 5218 Martinique
#> 5219 Martinique
#> 5220 Martinique
#> 5221 Martinique
#> 5222 Martinique
#> 5223 Mauritania
#> 5224 Mauritania
#> 5225 Mauritania
#> 5226 Mauritania
#> 5227 Mauritania
#> 5228 Mauritania
#> 5229 Mauritania
#> 5230 Mauritania
#> 5231 Mauritania
#> 5232 Mauritania
#> 5233 Mauritania
#> 5234 Mauritania
#> 5235 Mauritania
#> 5236 Mauritania
#> 5237 Mauritius
#> 5238 Mauritius
#> 5239 Mauritius
#> 5240 Mauritius
#> 5241 Mauritius
#> 5242 Mauritius
#> 5243 Mauritius
#> 5244 Mauritius
#> 5245 Mauritius
#> 5246 Mauritius
#> 5247 Mauritius
#> 5248 Mauritius
#> 5249 Mauritius
#> 5250 Mauritius
#> 5251 Mayotte
#> 5252 Mayotte
#> 5253 Mayotte
#> 5254 Mayotte
#> 5255 Mayotte
#> 5256 Mayotte
#> 5257 Mayotte
#> 5258 Mayotte
#> 5259 Mayotte
#> 5260 Mayotte
#> 5261 Mayotte
#> 5262 Mayotte
#> 5263 Mayotte
#> 5264 Mayotte
#> 5265 Melanesia
#> 5266 Melanesia
#> 5267 Melanesia
#> 5268 Melanesia
#> 5269 Melanesia
#> 5270 Melanesia
#> 5271 Melanesia
#> 5272 Melanesia
#> 5273 Melanesia
#> 5274 Melanesia
#> 5275 Melanesia
#> 5276 Melanesia
#> 5277 Melanesia
#> 5278 Melanesia
#> 5279 Mexico
#> 5280 Mexico
#> 5281 Mexico
#> 5282 Mexico
#> 5283 Mexico
#> 5284 Mexico
#> 5285 Mexico
#> 5286 Mexico
#> 5287 Mexico
#> 5288 Mexico
#> 5289 Mexico
#> 5290 Mexico
#> 5291 Mexico
#> 5292 Mexico
#> 5293 Micronesia
#> 5294 Micronesia
#> 5295 Micronesia
#> 5296 Micronesia
#> 5297 Micronesia
#> 5298 Micronesia
#> 5299 Micronesia
#> 5300 Micronesia
#> 5301 Micronesia
#> 5302 Micronesia
#> 5303 Micronesia
#> 5304 Micronesia
#> 5305 Micronesia
#> 5306 Micronesia
#> 5307 Micronesia (Fed. States of)
#> 5308 Micronesia (Fed. States of)
#> 5309 Micronesia (Fed. States of)
#> 5310 Micronesia (Fed. States of)
#> 5311 Micronesia (Fed. States of)
#> 5312 Micronesia (Fed. States of)
#> 5313 Micronesia (Fed. States of)
#> 5314 Micronesia (Fed. States of)
#> 5315 Micronesia (Fed. States of)
#> 5316 Micronesia (Fed. States of)
#> 5317 Micronesia (Fed. States of)
#> 5318 Micronesia (Fed. States of)
#> 5319 Micronesia (Fed. States of)
#> 5320 Micronesia (Fed. States of)
#> 5321 Middle Africa
#> 5322 Middle Africa
#> 5323 Middle Africa
#> 5324 Middle Africa
#> 5325 Middle Africa
#> 5326 Middle Africa
#> 5327 Middle Africa
#> 5328 Middle Africa
#> 5329 Middle Africa
#> 5330 Middle Africa
#> 5331 Middle Africa
#> 5332 Middle Africa
#> 5333 Middle Africa
#> 5334 Middle Africa
#> 5335 Middle-income countries
#> 5336 Middle-income countries
#> 5337 Middle-income countries
#> 5338 Middle-income countries
#> 5339 Middle-income countries
#> 5340 Middle-income countries
#> 5341 Middle-income countries
#> 5342 Middle-income countries
#> 5343 Middle-income countries
#> 5344 Middle-income countries
#> 5345 Middle-income countries
#> 5346 Middle-income countries
#> 5347 Middle-income countries
#> 5348 Middle-income countries
#> 5349 Mongolia
#> 5350 Mongolia
#> 5351 Mongolia
#> 5352 Mongolia
#> 5353 Mongolia
#> 5354 Mongolia
#> 5355 Mongolia
#> 5356 Mongolia
#> 5357 Mongolia
#> 5358 Mongolia
#> 5359 Mongolia
#> 5360 Mongolia
#> 5361 Mongolia
#> 5362 Mongolia
#> 5363 Montenegro
#> 5364 Montenegro
#> 5365 Montenegro
#> 5366 Montenegro
#> 5367 Montenegro
#> 5368 Montenegro
#> 5369 Montenegro
#> 5370 Montenegro
#> 5371 Montenegro
#> 5372 Montenegro
#> 5373 Montenegro
#> 5374 Montenegro
#> 5375 Montenegro
#> 5376 Montenegro
#> 5377 More developed regions
#> 5378 More developed regions
#> 5379 More developed regions
#> 5380 More developed regions
#> 5381 More developed regions
#> 5382 More developed regions
#> 5383 More developed regions
#> 5384 More developed regions
#> 5385 More developed regions
#> 5386 More developed regions
#> 5387 More developed regions
#> 5388 More developed regions
#> 5389 More developed regions
#> 5390 More developed regions
#> 5391 Morocco
#> 5392 Morocco
#> 5393 Morocco
#> 5394 Morocco
#> 5395 Morocco
#> 5396 Morocco
#> 5397 Morocco
#> 5398 Morocco
#> 5399 Morocco
#> 5400 Morocco
#> 5401 Morocco
#> 5402 Morocco
#> 5403 Morocco
#> 5404 Morocco
#> 5405 Mozambique
#> 5406 Mozambique
#> 5407 Mozambique
#> 5408 Mozambique
#> 5409 Mozambique
#> 5410 Mozambique
#> 5411 Mozambique
#> 5412 Mozambique
#> 5413 Mozambique
#> 5414 Mozambique
#> 5415 Mozambique
#> 5416 Mozambique
#> 5417 Mozambique
#> 5418 Mozambique
#> 5419 Myanmar
#> 5420 Myanmar
#> 5421 Myanmar
#> 5422 Myanmar
#> 5423 Myanmar
#> 5424 Myanmar
#> 5425 Myanmar
#> 5426 Myanmar
#> 5427 Myanmar
#> 5428 Myanmar
#> 5429 Myanmar
#> 5430 Myanmar
#> 5431 Myanmar
#> 5432 Myanmar
#> 5433 NORTHERN AMERICA
#> 5434 NORTHERN AMERICA
#> 5435 NORTHERN AMERICA
#> 5436 NORTHERN AMERICA
#> 5437 NORTHERN AMERICA
#> 5438 NORTHERN AMERICA
#> 5439 NORTHERN AMERICA
#> 5440 NORTHERN AMERICA
#> 5441 NORTHERN AMERICA
#> 5442 NORTHERN AMERICA
#> 5443 NORTHERN AMERICA
#> 5444 NORTHERN AMERICA
#> 5445 NORTHERN AMERICA
#> 5446 NORTHERN AMERICA
#> 5447 Namibia
#> 5448 Namibia
#> 5449 Namibia
#> 5450 Namibia
#> 5451 Namibia
#> 5452 Namibia
#> 5453 Namibia
#> 5454 Namibia
#> 5455 Namibia
#> 5456 Namibia
#> 5457 Namibia
#> 5458 Namibia
#> 5459 Namibia
#> 5460 Namibia
#> 5461 Nepal
#> 5462 Nepal
#> 5463 Nepal
#> 5464 Nepal
#> 5465 Nepal
#> 5466 Nepal
#> 5467 Nepal
#> 5468 Nepal
#> 5469 Nepal
#> 5470 Nepal
#> 5471 Nepal
#> 5472 Nepal
#> 5473 Nepal
#> 5474 Nepal
#> 5475 Netherlands
#> 5476 Netherlands
#> 5477 Netherlands
#> 5478 Netherlands
#> 5479 Netherlands
#> 5480 Netherlands
#> 5481 Netherlands
#> 5482 Netherlands
#> 5483 Netherlands
#> 5484 Netherlands
#> 5485 Netherlands
#> 5486 Netherlands
#> 5487 Netherlands
#> 5488 Netherlands
#> 5489 New Caledonia
#> 5490 New Caledonia
#> 5491 New Caledonia
#> 5492 New Caledonia
#> 5493 New Caledonia
#> 5494 New Caledonia
#> 5495 New Caledonia
#> 5496 New Caledonia
#> 5497 New Caledonia
#> 5498 New Caledonia
#> 5499 New Caledonia
#> 5500 New Caledonia
#> 5501 New Caledonia
#> 5502 New Caledonia
#> 5503 New Zealand
#> 5504 New Zealand
#> 5505 New Zealand
#> 5506 New Zealand
#> 5507 New Zealand
#> 5508 New Zealand
#> 5509 New Zealand
#> 5510 New Zealand
#> 5511 New Zealand
#> 5512 New Zealand
#> 5513 New Zealand
#> 5514 New Zealand
#> 5515 New Zealand
#> 5516 New Zealand
#> 5517 Nicaragua
#> 5518 Nicaragua
#> 5519 Nicaragua
#> 5520 Nicaragua
#> 5521 Nicaragua
#> 5522 Nicaragua
#> 5523 Nicaragua
#> 5524 Nicaragua
#> 5525 Nicaragua
#> 5526 Nicaragua
#> 5527 Nicaragua
#> 5528 Nicaragua
#> 5529 Nicaragua
#> 5530 Nicaragua
#> 5531 Niger
#> 5532 Niger
#> 5533 Niger
#> 5534 Niger
#> 5535 Niger
#> 5536 Niger
#> 5537 Niger
#> 5538 Niger
#> 5539 Niger
#> 5540 Niger
#> 5541 Niger
#> 5542 Niger
#> 5543 Niger
#> 5544 Niger
#> 5545 Nigeria
#> 5546 Nigeria
#> 5547 Nigeria
#> 5548 Nigeria
#> 5549 Nigeria
#> 5550 Nigeria
#> 5551 Nigeria
#> 5552 Nigeria
#> 5553 Nigeria
#> 5554 Nigeria
#> 5555 Nigeria
#> 5556 Nigeria
#> 5557 Nigeria
#> 5558 Nigeria
#> 5559 Northern Africa
#> 5560 Northern Africa
#> 5561 Northern Africa
#> 5562 Northern Africa
#> 5563 Northern Africa
#> 5564 Northern Africa
#> 5565 Northern Africa
#> 5566 Northern Africa
#> 5567 Northern Africa
#> 5568 Northern Africa
#> 5569 Northern Africa
#> 5570 Northern Africa
#> 5571 Northern Africa
#> 5572 Northern Africa
#> 5573 Northern Europe
#> 5574 Northern Europe
#> 5575 Northern Europe
#> 5576 Northern Europe
#> 5577 Northern Europe
#> 5578 Northern Europe
#> 5579 Northern Europe
#> 5580 Northern Europe
#> 5581 Northern Europe
#> 5582 Northern Europe
#> 5583 Northern Europe
#> 5584 Northern Europe
#> 5585 Northern Europe
#> 5586 Northern Europe
#> 5587 Norway
#> 5588 Norway
#> 5589 Norway
#> 5590 Norway
#> 5591 Norway
#> 5592 Norway
#> 5593 Norway
#> 5594 Norway
#> 5595 Norway
#> 5596 Norway
#> 5597 Norway
#> 5598 Norway
#> 5599 Norway
#> 5600 Norway
#> 5601 OCEANIA
#> 5602 OCEANIA
#> 5603 OCEANIA
#> 5604 OCEANIA
#> 5605 OCEANIA
#> 5606 OCEANIA
#> 5607 OCEANIA
#> 5608 OCEANIA
#> 5609 OCEANIA
#> 5610 OCEANIA
#> 5611 OCEANIA
#> 5612 OCEANIA
#> 5613 OCEANIA
#> 5614 OCEANIA
#> 5615 Oman
#> 5616 Oman
#> 5617 Oman
#> 5618 Oman
#> 5619 Oman
#> 5620 Oman
#> 5621 Oman
#> 5622 Oman
#> 5623 Oman
#> 5624 Oman
#> 5625 Oman
#> 5626 Oman
#> 5627 Oman
#> 5628 Oman
#> 5629 Pakistan
#> 5630 Pakistan
#> 5631 Pakistan
#> 5632 Pakistan
#> 5633 Pakistan
#> 5634 Pakistan
#> 5635 Pakistan
#> 5636 Pakistan
#> 5637 Pakistan
#> 5638 Pakistan
#> 5639 Pakistan
#> 5640 Pakistan
#> 5641 Pakistan
#> 5642 Pakistan
#> 5643 Panama
#> 5644 Panama
#> 5645 Panama
#> 5646 Panama
#> 5647 Panama
#> 5648 Panama
#> 5649 Panama
#> 5650 Panama
#> 5651 Panama
#> 5652 Panama
#> 5653 Panama
#> 5654 Panama
#> 5655 Panama
#> 5656 Panama
#> 5657 Papua New Guinea
#> 5658 Papua New Guinea
#> 5659 Papua New Guinea
#> 5660 Papua New Guinea
#> 5661 Papua New Guinea
#> 5662 Papua New Guinea
#> 5663 Papua New Guinea
#> 5664 Papua New Guinea
#> 5665 Papua New Guinea
#> 5666 Papua New Guinea
#> 5667 Papua New Guinea
#> 5668 Papua New Guinea
#> 5669 Papua New Guinea
#> 5670 Papua New Guinea
#> 5671 Paraguay
#> 5672 Paraguay
#> 5673 Paraguay
#> 5674 Paraguay
#> 5675 Paraguay
#> 5676 Paraguay
#> 5677 Paraguay
#> 5678 Paraguay
#> 5679 Paraguay
#> 5680 Paraguay
#> 5681 Paraguay
#> 5682 Paraguay
#> 5683 Paraguay
#> 5684 Paraguay
#> 5685 Peru
#> 5686 Peru
#> 5687 Peru
#> 5688 Peru
#> 5689 Peru
#> 5690 Peru
#> 5691 Peru
#> 5692 Peru
#> 5693 Peru
#> 5694 Peru
#> 5695 Peru
#> 5696 Peru
#> 5697 Peru
#> 5698 Peru
#> 5699 Philippines
#> 5700 Philippines
#> 5701 Philippines
#> 5702 Philippines
#> 5703 Philippines
#> 5704 Philippines
#> 5705 Philippines
#> 5706 Philippines
#> 5707 Philippines
#> 5708 Philippines
#> 5709 Philippines
#> 5710 Philippines
#> 5711 Philippines
#> 5712 Philippines
#> 5713 Poland
#> 5714 Poland
#> 5715 Poland
#> 5716 Poland
#> 5717 Poland
#> 5718 Poland
#> 5719 Poland
#> 5720 Poland
#> 5721 Poland
#> 5722 Poland
#> 5723 Poland
#> 5724 Poland
#> 5725 Poland
#> 5726 Poland
#> 5727 Polynesia
#> 5728 Polynesia
#> 5729 Polynesia
#> 5730 Polynesia
#> 5731 Polynesia
#> 5732 Polynesia
#> 5733 Polynesia
#> 5734 Polynesia
#> 5735 Polynesia
#> 5736 Polynesia
#> 5737 Polynesia
#> 5738 Polynesia
#> 5739 Polynesia
#> 5740 Polynesia
#> 5741 Portugal
#> 5742 Portugal
#> 5743 Portugal
#> 5744 Portugal
#> 5745 Portugal
#> 5746 Portugal
#> 5747 Portugal
#> 5748 Portugal
#> 5749 Portugal
#> 5750 Portugal
#> 5751 Portugal
#> 5752 Portugal
#> 5753 Portugal
#> 5754 Portugal
#> 5755 Puerto Rico
#> 5756 Puerto Rico
#> 5757 Puerto Rico
#> 5758 Puerto Rico
#> 5759 Puerto Rico
#> 5760 Puerto Rico
#> 5761 Puerto Rico
#> 5762 Puerto Rico
#> 5763 Puerto Rico
#> 5764 Puerto Rico
#> 5765 Puerto Rico
#> 5766 Puerto Rico
#> 5767 Puerto Rico
#> 5768 Puerto Rico
#> 5769 Qatar
#> 5770 Qatar
#> 5771 Qatar
#> 5772 Qatar
#> 5773 Qatar
#> 5774 Qatar
#> 5775 Qatar
#> 5776 Qatar
#> 5777 Qatar
#> 5778 Qatar
#> 5779 Qatar
#> 5780 Qatar
#> 5781 Qatar
#> 5782 Qatar
#> 5783 Republic of Korea
#> 5784 Republic of Korea
#> 5785 Republic of Korea
#> 5786 Republic of Korea
#> 5787 Republic of Korea
#> 5788 Republic of Korea
#> 5789 Republic of Korea
#> 5790 Republic of Korea
#> 5791 Republic of Korea
#> 5792 Republic of Korea
#> 5793 Republic of Korea
#> 5794 Republic of Korea
#> 5795 Republic of Korea
#> 5796 Republic of Korea
#> 5797 Republic of Moldova
#> 5798 Republic of Moldova
#> 5799 Republic of Moldova
#> 5800 Republic of Moldova
#> 5801 Republic of Moldova
#> 5802 Republic of Moldova
#> 5803 Republic of Moldova
#> 5804 Republic of Moldova
#> 5805 Republic of Moldova
#> 5806 Republic of Moldova
#> 5807 Republic of Moldova
#> 5808 Republic of Moldova
#> 5809 Republic of Moldova
#> 5810 Republic of Moldova
#> 5811 Reunion
#> 5812 Reunion
#> 5813 Reunion
#> 5814 Reunion
#> 5815 Reunion
#> 5816 Reunion
#> 5817 Reunion
#> 5818 Reunion
#> 5819 Reunion
#> 5820 Reunion
#> 5821 Reunion
#> 5822 Reunion
#> 5823 Reunion
#> 5824 Reunion
#> 5825 Romania
#> 5826 Romania
#> 5827 Romania
#> 5828 Romania
#> 5829 Romania
#> 5830 Romania
#> 5831 Romania
#> 5832 Romania
#> 5833 Romania
#> 5834 Romania
#> 5835 Romania
#> 5836 Romania
#> 5837 Romania
#> 5838 Romania
#> 5839 Russian Federation
#> 5840 Russian Federation
#> 5841 Russian Federation
#> 5842 Russian Federation
#> 5843 Russian Federation
#> 5844 Russian Federation
#> 5845 Russian Federation
#> 5846 Russian Federation
#> 5847 Russian Federation
#> 5848 Russian Federation
#> 5849 Russian Federation
#> 5850 Russian Federation
#> 5851 Russian Federation
#> 5852 Russian Federation
#> 5853 Rwanda
#> 5854 Rwanda
#> 5855 Rwanda
#> 5856 Rwanda
#> 5857 Rwanda
#> 5858 Rwanda
#> 5859 Rwanda
#> 5860 Rwanda
#> 5861 Rwanda
#> 5862 Rwanda
#> 5863 Rwanda
#> 5864 Rwanda
#> 5865 Rwanda
#> 5866 Rwanda
#> 5867 Saint Lucia
#> 5868 Saint Lucia
#> 5869 Saint Lucia
#> 5870 Saint Lucia
#> 5871 Saint Lucia
#> 5872 Saint Lucia
#> 5873 Saint Lucia
#> 5874 Saint Lucia
#> 5875 Saint Lucia
#> 5876 Saint Lucia
#> 5877 Saint Lucia
#> 5878 Saint Lucia
#> 5879 Saint Lucia
#> 5880 Saint Lucia
#> 5881 Saint Vincent and the Grenadines
#> 5882 Saint Vincent and the Grenadines
#> 5883 Saint Vincent and the Grenadines
#> 5884 Saint Vincent and the Grenadines
#> 5885 Saint Vincent and the Grenadines
#> 5886 Saint Vincent and the Grenadines
#> 5887 Saint Vincent and the Grenadines
#> 5888 Saint Vincent and the Grenadines
#> 5889 Saint Vincent and the Grenadines
#> 5890 Saint Vincent and the Grenadines
#> 5891 Saint Vincent and the Grenadines
#> 5892 Saint Vincent and the Grenadines
#> 5893 Saint Vincent and the Grenadines
#> 5894 Saint Vincent and the Grenadines
#> 5895 Samoa
#> 5896 Samoa
#> 5897 Samoa
#> 5898 Samoa
#> 5899 Samoa
#> 5900 Samoa
#> 5901 Samoa
#> 5902 Samoa
#> 5903 Samoa
#> 5904 Samoa
#> 5905 Samoa
#> 5906 Samoa
#> 5907 Samoa
#> 5908 Samoa
#> 5909 Sao Tome and Principe
#> 5910 Sao Tome and Principe
#> 5911 Sao Tome and Principe
#> 5912 Sao Tome and Principe
#> 5913 Sao Tome and Principe
#> 5914 Sao Tome and Principe
#> 5915 Sao Tome and Principe
#> 5916 Sao Tome and Principe
#> 5917 Sao Tome and Principe
#> 5918 Sao Tome and Principe
#> 5919 Sao Tome and Principe
#> 5920 Sao Tome and Principe
#> 5921 Sao Tome and Principe
#> 5922 Sao Tome and Principe
#> 5923 Saudi Arabia
#> 5924 Saudi Arabia
#> 5925 Saudi Arabia
#> 5926 Saudi Arabia
#> 5927 Saudi Arabia
#> 5928 Saudi Arabia
#> 5929 Saudi Arabia
#> 5930 Saudi Arabia
#> 5931 Saudi Arabia
#> 5932 Saudi Arabia
#> 5933 Saudi Arabia
#> 5934 Saudi Arabia
#> 5935 Saudi Arabia
#> 5936 Saudi Arabia
#> 5937 Senegal
#> 5938 Senegal
#> 5939 Senegal
#> 5940 Senegal
#> 5941 Senegal
#> 5942 Senegal
#> 5943 Senegal
#> 5944 Senegal
#> 5945 Senegal
#> 5946 Senegal
#> 5947 Senegal
#> 5948 Senegal
#> 5949 Senegal
#> 5950 Senegal
#> 5951 Serbia
#> 5952 Serbia
#> 5953 Serbia
#> 5954 Serbia
#> 5955 Serbia
#> 5956 Serbia
#> 5957 Serbia
#> 5958 Serbia
#> 5959 Serbia
#> 5960 Serbia
#> 5961 Serbia
#> 5962 Serbia
#> 5963 Serbia
#> 5964 Serbia
#> 5965 Seychelles
#> 5966 Seychelles
#> 5967 Seychelles
#> 5968 Seychelles
#> 5969 Seychelles
#> 5970 Seychelles
#> 5971 Seychelles
#> 5972 Seychelles
#> 5973 Seychelles
#> 5974 Seychelles
#> 5975 Seychelles
#> 5976 Seychelles
#> 5977 Seychelles
#> 5978 Seychelles
#> 5979 Sierra Leone
#> 5980 Sierra Leone
#> 5981 Sierra Leone
#> 5982 Sierra Leone
#> 5983 Sierra Leone
#> 5984 Sierra Leone
#> 5985 Sierra Leone
#> 5986 Sierra Leone
#> 5987 Sierra Leone
#> 5988 Sierra Leone
#> 5989 Sierra Leone
#> 5990 Sierra Leone
#> 5991 Sierra Leone
#> 5992 Sierra Leone
#> 5993 Singapore
#> 5994 Singapore
#> 5995 Singapore
#> 5996 Singapore
#> 5997 Singapore
#> 5998 Singapore
#> 5999 Singapore
#> 6000 Singapore
#> 6001 Singapore
#> 6002 Singapore
#> 6003 Singapore
#> 6004 Singapore
#> 6005 Singapore
#> 6006 Singapore
#> 6007 Slovakia
#> 6008 Slovakia
#> 6009 Slovakia
#> 6010 Slovakia
#> 6011 Slovakia
#> 6012 Slovakia
#> 6013 Slovakia
#> 6014 Slovakia
#> 6015 Slovakia
#> 6016 Slovakia
#> 6017 Slovakia
#> 6018 Slovakia
#> 6019 Slovakia
#> 6020 Slovakia
#> 6021 Slovenia
#> 6022 Slovenia
#> 6023 Slovenia
#> 6024 Slovenia
#> 6025 Slovenia
#> 6026 Slovenia
#> 6027 Slovenia
#> 6028 Slovenia
#> 6029 Slovenia
#> 6030 Slovenia
#> 6031 Slovenia
#> 6032 Slovenia
#> 6033 Slovenia
#> 6034 Slovenia
#> 6035 Solomon Islands
#> 6036 Solomon Islands
#> 6037 Solomon Islands
#> 6038 Solomon Islands
#> 6039 Solomon Islands
#> 6040 Solomon Islands
#> 6041 Solomon Islands
#> 6042 Solomon Islands
#> 6043 Solomon Islands
#> 6044 Solomon Islands
#> 6045 Solomon Islands
#> 6046 Solomon Islands
#> 6047 Solomon Islands
#> 6048 Solomon Islands
#> 6049 Somalia
#> 6050 Somalia
#> 6051 Somalia
#> 6052 Somalia
#> 6053 Somalia
#> 6054 Somalia
#> 6055 Somalia
#> 6056 Somalia
#> 6057 Somalia
#> 6058 Somalia
#> 6059 Somalia
#> 6060 Somalia
#> 6061 Somalia
#> 6062 Somalia
#> 6063 South Africa
#> 6064 South Africa
#> 6065 South Africa
#> 6066 South Africa
#> 6067 South Africa
#> 6068 South Africa
#> 6069 South Africa
#> 6070 South Africa
#> 6071 South Africa
#> 6072 South Africa
#> 6073 South Africa
#> 6074 South Africa
#> 6075 South Africa
#> 6076 South Africa
#> 6077 South America
#> 6078 South America
#> 6079 South America
#> 6080 South America
#> 6081 South America
#> 6082 South America
#> 6083 South America
#> 6084 South America
#> 6085 South America
#> 6086 South America
#> 6087 South America
#> 6088 South America
#> 6089 South America
#> 6090 South America
#> 6091 South Sudan
#> 6092 South Sudan
#> 6093 South Sudan
#> 6094 South Sudan
#> 6095 South Sudan
#> 6096 South Sudan
#> 6097 South Sudan
#> 6098 South Sudan
#> 6099 South Sudan
#> 6100 South Sudan
#> 6101 South Sudan
#> 6102 South Sudan
#> 6103 South Sudan
#> 6104 South Sudan
#> 6105 South-Central Asia
#> 6106 South-Central Asia
#> 6107 South-Central Asia
#> 6108 South-Central Asia
#> 6109 South-Central Asia
#> 6110 South-Central Asia
#> 6111 South-Central Asia
#> 6112 South-Central Asia
#> 6113 South-Central Asia
#> 6114 South-Central Asia
#> 6115 South-Central Asia
#> 6116 South-Central Asia
#> 6117 South-Central Asia
#> 6118 South-Central Asia
#> 6119 South-Eastern Asia
#> 6120 South-Eastern Asia
#> 6121 South-Eastern Asia
#> 6122 South-Eastern Asia
#> 6123 South-Eastern Asia
#> 6124 South-Eastern Asia
#> 6125 South-Eastern Asia
#> 6126 South-Eastern Asia
#> 6127 South-Eastern Asia
#> 6128 South-Eastern Asia
#> 6129 South-Eastern Asia
#> 6130 South-Eastern Asia
#> 6131 South-Eastern Asia
#> 6132 South-Eastern Asia
#> 6133 Southern Africa
#> 6134 Southern Africa
#> 6135 Southern Africa
#> 6136 Southern Africa
#> 6137 Southern Africa
#> 6138 Southern Africa
#> 6139 Southern Africa
#> 6140 Southern Africa
#> 6141 Southern Africa
#> 6142 Southern Africa
#> 6143 Southern Africa
#> 6144 Southern Africa
#> 6145 Southern Africa
#> 6146 Southern Africa
#> 6147 Southern Asia
#> 6148 Southern Asia
#> 6149 Southern Asia
#> 6150 Southern Asia
#> 6151 Southern Asia
#> 6152 Southern Asia
#> 6153 Southern Asia
#> 6154 Southern Asia
#> 6155 Southern Asia
#> 6156 Southern Asia
#> 6157 Southern Asia
#> 6158 Southern Asia
#> 6159 Southern Asia
#> 6160 Southern Asia
#> 6161 Southern Europe
#> 6162 Southern Europe
#> 6163 Southern Europe
#> 6164 Southern Europe
#> 6165 Southern Europe
#> 6166 Southern Europe
#> 6167 Southern Europe
#> 6168 Southern Europe
#> 6169 Southern Europe
#> 6170 Southern Europe
#> 6171 Southern Europe
#> 6172 Southern Europe
#> 6173 Southern Europe
#> 6174 Southern Europe
#> 6175 Spain
#> 6176 Spain
#> 6177 Spain
#> 6178 Spain
#> 6179 Spain
#> 6180 Spain
#> 6181 Spain
#> 6182 Spain
#> 6183 Spain
#> 6184 Spain
#> 6185 Spain
#> 6186 Spain
#> 6187 Spain
#> 6188 Spain
#> 6189 Sri Lanka
#> 6190 Sri Lanka
#> 6191 Sri Lanka
#> 6192 Sri Lanka
#> 6193 Sri Lanka
#> 6194 Sri Lanka
#> 6195 Sri Lanka
#> 6196 Sri Lanka
#> 6197 Sri Lanka
#> 6198 Sri Lanka
#> 6199 Sri Lanka
#> 6200 Sri Lanka
#> 6201 Sri Lanka
#> 6202 Sri Lanka
#> 6203 State of Palestine
#> 6204 State of Palestine
#> 6205 State of Palestine
#> 6206 State of Palestine
#> 6207 State of Palestine
#> 6208 State of Palestine
#> 6209 State of Palestine
#> 6210 State of Palestine
#> 6211 State of Palestine
#> 6212 State of Palestine
#> 6213 State of Palestine
#> 6214 State of Palestine
#> 6215 State of Palestine
#> 6216 State of Palestine
#> 6217 Sub-Saharan Africa
#> 6218 Sub-Saharan Africa
#> 6219 Sub-Saharan Africa
#> 6220 Sub-Saharan Africa
#> 6221 Sub-Saharan Africa
#> 6222 Sub-Saharan Africa
#> 6223 Sub-Saharan Africa
#> 6224 Sub-Saharan Africa
#> 6225 Sub-Saharan Africa
#> 6226 Sub-Saharan Africa
#> 6227 Sub-Saharan Africa
#> 6228 Sub-Saharan Africa
#> 6229 Sub-Saharan Africa
#> 6230 Sub-Saharan Africa
#> 6231 Sudan
#> 6232 Sudan
#> 6233 Sudan
#> 6234 Sudan
#> 6235 Sudan
#> 6236 Sudan
#> 6237 Sudan
#> 6238 Sudan
#> 6239 Sudan
#> 6240 Sudan
#> 6241 Sudan
#> 6242 Sudan
#> 6243 Sudan
#> 6244 Sudan
#> 6245 Suriname
#> 6246 Suriname
#> 6247 Suriname
#> 6248 Suriname
#> 6249 Suriname
#> 6250 Suriname
#> 6251 Suriname
#> 6252 Suriname
#> 6253 Suriname
#> 6254 Suriname
#> 6255 Suriname
#> 6256 Suriname
#> 6257 Suriname
#> 6258 Suriname
#> 6259 Swaziland
#> 6260 Swaziland
#> 6261 Swaziland
#> 6262 Swaziland
#> 6263 Swaziland
#> 6264 Swaziland
#> 6265 Swaziland
#> 6266 Swaziland
#> 6267 Swaziland
#> 6268 Swaziland
#> 6269 Swaziland
#> 6270 Swaziland
#> 6271 Swaziland
#> 6272 Swaziland
#> 6273 Sweden
#> 6274 Sweden
#> 6275 Sweden
#> 6276 Sweden
#> 6277 Sweden
#> 6278 Sweden
#> 6279 Sweden
#> 6280 Sweden
#> 6281 Sweden
#> 6282 Sweden
#> 6283 Sweden
#> 6284 Sweden
#> 6285 Sweden
#> 6286 Sweden
#> 6287 Switzerland
#> 6288 Switzerland
#> 6289 Switzerland
#> 6290 Switzerland
#> 6291 Switzerland
#> 6292 Switzerland
#> 6293 Switzerland
#> 6294 Switzerland
#> 6295 Switzerland
#> 6296 Switzerland
#> 6297 Switzerland
#> 6298 Switzerland
#> 6299 Switzerland
#> 6300 Switzerland
#> 6301 Syrian Arab Republic
#> 6302 Syrian Arab Republic
#> 6303 Syrian Arab Republic
#> 6304 Syrian Arab Republic
#> 6305 Syrian Arab Republic
#> 6306 Syrian Arab Republic
#> 6307 Syrian Arab Republic
#> 6308 Syrian Arab Republic
#> 6309 Syrian Arab Republic
#> 6310 Syrian Arab Republic
#> 6311 Syrian Arab Republic
#> 6312 Syrian Arab Republic
#> 6313 Syrian Arab Republic
#> 6314 Syrian Arab Republic
#> 6315 TFYR Macedonia
#> 6316 TFYR Macedonia
#> 6317 TFYR Macedonia
#> 6318 TFYR Macedonia
#> 6319 TFYR Macedonia
#> 6320 TFYR Macedonia
#> 6321 TFYR Macedonia
#> 6322 TFYR Macedonia
#> 6323 TFYR Macedonia
#> 6324 TFYR Macedonia
#> 6325 TFYR Macedonia
#> 6326 TFYR Macedonia
#> 6327 TFYR Macedonia
#> 6328 TFYR Macedonia
#> 6329 Tajikistan
#> 6330 Tajikistan
#> 6331 Tajikistan
#> 6332 Tajikistan
#> 6333 Tajikistan
#> 6334 Tajikistan
#> 6335 Tajikistan
#> 6336 Tajikistan
#> 6337 Tajikistan
#> 6338 Tajikistan
#> 6339 Tajikistan
#> 6340 Tajikistan
#> 6341 Tajikistan
#> 6342 Tajikistan
#> 6343 Thailand
#> 6344 Thailand
#> 6345 Thailand
#> 6346 Thailand
#> 6347 Thailand
#> 6348 Thailand
#> 6349 Thailand
#> 6350 Thailand
#> 6351 Thailand
#> 6352 Thailand
#> 6353 Thailand
#> 6354 Thailand
#> 6355 Thailand
#> 6356 Thailand
#> 6357 Timor-Leste
#> 6358 Timor-Leste
#> 6359 Timor-Leste
#> 6360 Timor-Leste
#> 6361 Timor-Leste
#> 6362 Timor-Leste
#> 6363 Timor-Leste
#> 6364 Timor-Leste
#> 6365 Timor-Leste
#> 6366 Timor-Leste
#> 6367 Timor-Leste
#> 6368 Timor-Leste
#> 6369 Timor-Leste
#> 6370 Timor-Leste
#> 6371 Togo
#> 6372 Togo
#> 6373 Togo
#> 6374 Togo
#> 6375 Togo
#> 6376 Togo
#> 6377 Togo
#> 6378 Togo
#> 6379 Togo
#> 6380 Togo
#> 6381 Togo
#> 6382 Togo
#> 6383 Togo
#> 6384 Togo
#> 6385 Tonga
#> 6386 Tonga
#> 6387 Tonga
#> 6388 Tonga
#> 6389 Tonga
#> 6390 Tonga
#> 6391 Tonga
#> 6392 Tonga
#> 6393 Tonga
#> 6394 Tonga
#> 6395 Tonga
#> 6396 Tonga
#> 6397 Tonga
#> 6398 Tonga
#> 6399 Trinidad and Tobago
#> 6400 Trinidad and Tobago
#> 6401 Trinidad and Tobago
#> 6402 Trinidad and Tobago
#> 6403 Trinidad and Tobago
#> 6404 Trinidad and Tobago
#> 6405 Trinidad and Tobago
#> 6406 Trinidad and Tobago
#> 6407 Trinidad and Tobago
#> 6408 Trinidad and Tobago
#> 6409 Trinidad and Tobago
#> 6410 Trinidad and Tobago
#> 6411 Trinidad and Tobago
#> 6412 Trinidad and Tobago
#> 6413 Tunisia
#> 6414 Tunisia
#> 6415 Tunisia
#> 6416 Tunisia
#> 6417 Tunisia
#> 6418 Tunisia
#> 6419 Tunisia
#> 6420 Tunisia
#> 6421 Tunisia
#> 6422 Tunisia
#> 6423 Tunisia
#> 6424 Tunisia
#> 6425 Tunisia
#> 6426 Tunisia
#> 6427 Turkey
#> 6428 Turkey
#> 6429 Turkey
#> 6430 Turkey
#> 6431 Turkey
#> 6432 Turkey
#> 6433 Turkey
#> 6434 Turkey
#> 6435 Turkey
#> 6436 Turkey
#> 6437 Turkey
#> 6438 Turkey
#> 6439 Turkey
#> 6440 Turkey
#> 6441 Turkmenistan
#> 6442 Turkmenistan
#> 6443 Turkmenistan
#> 6444 Turkmenistan
#> 6445 Turkmenistan
#> 6446 Turkmenistan
#> 6447 Turkmenistan
#> 6448 Turkmenistan
#> 6449 Turkmenistan
#> 6450 Turkmenistan
#> 6451 Turkmenistan
#> 6452 Turkmenistan
#> 6453 Turkmenistan
#> 6454 Turkmenistan
#> 6455 Uganda
#> 6456 Uganda
#> 6457 Uganda
#> 6458 Uganda
#> 6459 Uganda
#> 6460 Uganda
#> 6461 Uganda
#> 6462 Uganda
#> 6463 Uganda
#> 6464 Uganda
#> 6465 Uganda
#> 6466 Uganda
#> 6467 Uganda
#> 6468 Uganda
#> 6469 Ukraine
#> 6470 Ukraine
#> 6471 Ukraine
#> 6472 Ukraine
#> 6473 Ukraine
#> 6474 Ukraine
#> 6475 Ukraine
#> 6476 Ukraine
#> 6477 Ukraine
#> 6478 Ukraine
#> 6479 Ukraine
#> 6480 Ukraine
#> 6481 Ukraine
#> 6482 Ukraine
#> 6483 United Arab Emirates
#> 6484 United Arab Emirates
#> 6485 United Arab Emirates
#> 6486 United Arab Emirates
#> 6487 United Arab Emirates
#> 6488 United Arab Emirates
#> 6489 United Arab Emirates
#> 6490 United Arab Emirates
#> 6491 United Arab Emirates
#> 6492 United Arab Emirates
#> 6493 United Arab Emirates
#> 6494 United Arab Emirates
#> 6495 United Arab Emirates
#> 6496 United Arab Emirates
#> 6497 United Kingdom
#> 6498 United Kingdom
#> 6499 United Kingdom
#> 6500 United Kingdom
#> 6501 United Kingdom
#> 6502 United Kingdom
#> 6503 United Kingdom
#> 6504 United Kingdom
#> 6505 United Kingdom
#> 6506 United Kingdom
#> 6507 United Kingdom
#> 6508 United Kingdom
#> 6509 United Kingdom
#> 6510 United Kingdom
#> 6511 United Republic of Tanzania
#> 6512 United Republic of Tanzania
#> 6513 United Republic of Tanzania
#> 6514 United Republic of Tanzania
#> 6515 United Republic of Tanzania
#> 6516 United Republic of Tanzania
#> 6517 United Republic of Tanzania
#> 6518 United Republic of Tanzania
#> 6519 United Republic of Tanzania
#> 6520 United Republic of Tanzania
#> 6521 United Republic of Tanzania
#> 6522 United Republic of Tanzania
#> 6523 United Republic of Tanzania
#> 6524 United Republic of Tanzania
#> 6525 United States Virgin Islands
#> 6526 United States Virgin Islands
#> 6527 United States Virgin Islands
#> 6528 United States Virgin Islands
#> 6529 United States Virgin Islands
#> 6530 United States Virgin Islands
#> 6531 United States Virgin Islands
#> 6532 United States Virgin Islands
#> 6533 United States Virgin Islands
#> 6534 United States Virgin Islands
#> 6535 United States Virgin Islands
#> 6536 United States Virgin Islands
#> 6537 United States Virgin Islands
#> 6538 United States Virgin Islands
#> 6539 United States of America
#> 6540 United States of America
#> 6541 United States of America
#> 6542 United States of America
#> 6543 United States of America
#> 6544 United States of America
#> 6545 United States of America
#> 6546 United States of America
#> 6547 United States of America
#> 6548 United States of America
#> 6549 United States of America
#> 6550 United States of America
#> 6551 United States of America
#> 6552 United States of America
#> 6553 Upper-middle-income countries
#> 6554 Upper-middle-income countries
#> 6555 Upper-middle-income countries
#> 6556 Upper-middle-income countries
#> 6557 Upper-middle-income countries
#> 6558 Upper-middle-income countries
#> 6559 Upper-middle-income countries
#> 6560 Upper-middle-income countries
#> 6561 Upper-middle-income countries
#> 6562 Upper-middle-income countries
#> 6563 Upper-middle-income countries
#> 6564 Upper-middle-income countries
#> 6565 Upper-middle-income countries
#> 6566 Upper-middle-income countries
#> 6567 Uruguay
#> 6568 Uruguay
#> 6569 Uruguay
#> 6570 Uruguay
#> 6571 Uruguay
#> 6572 Uruguay
#> 6573 Uruguay
#> 6574 Uruguay
#> 6575 Uruguay
#> 6576 Uruguay
#> 6577 Uruguay
#> 6578 Uruguay
#> 6579 Uruguay
#> 6580 Uruguay
#> 6581 Uzbekistan
#> 6582 Uzbekistan
#> 6583 Uzbekistan
#> 6584 Uzbekistan
#> 6585 Uzbekistan
#> 6586 Uzbekistan
#> 6587 Uzbekistan
#> 6588 Uzbekistan
#> 6589 Uzbekistan
#> 6590 Uzbekistan
#> 6591 Uzbekistan
#> 6592 Uzbekistan
#> 6593 Uzbekistan
#> 6594 Uzbekistan
#> 6595 Vanuatu
#> 6596 Vanuatu
#> 6597 Vanuatu
#> 6598 Vanuatu
#> 6599 Vanuatu
#> 6600 Vanuatu
#> 6601 Vanuatu
#> 6602 Vanuatu
#> 6603 Vanuatu
#> 6604 Vanuatu
#> 6605 Vanuatu
#> 6606 Vanuatu
#> 6607 Vanuatu
#> 6608 Vanuatu
#> 6609 Venezuela (Bolivarian Republic of)
#> 6610 Venezuela (Bolivarian Republic of)
#> 6611 Venezuela (Bolivarian Republic of)
#> 6612 Venezuela (Bolivarian Republic of)
#> 6613 Venezuela (Bolivarian Republic of)
#> 6614 Venezuela (Bolivarian Republic of)
#> 6615 Venezuela (Bolivarian Republic of)
#> 6616 Venezuela (Bolivarian Republic of)
#> 6617 Venezuela (Bolivarian Republic of)
#> 6618 Venezuela (Bolivarian Republic of)
#> 6619 Venezuela (Bolivarian Republic of)
#> 6620 Venezuela (Bolivarian Republic of)
#> 6621 Venezuela (Bolivarian Republic of)
#> 6622 Venezuela (Bolivarian Republic of)
#> 6623 Viet Nam
#> 6624 Viet Nam
#> 6625 Viet Nam
#> 6626 Viet Nam
#> 6627 Viet Nam
#> 6628 Viet Nam
#> 6629 Viet Nam
#> 6630 Viet Nam
#> 6631 Viet Nam
#> 6632 Viet Nam
#> 6633 Viet Nam
#> 6634 Viet Nam
#> 6635 Viet Nam
#> 6636 Viet Nam
#> 6637 WORLD
#> 6638 WORLD
#> 6639 WORLD
#> 6640 WORLD
#> 6641 WORLD
#> 6642 WORLD
#> 6643 WORLD
#> 6644 WORLD
#> 6645 WORLD
#> 6646 WORLD
#> 6647 WORLD
#> 6648 WORLD
#> 6649 WORLD
#> 6650 WORLD
#> 6651 Western Africa
#> 6652 Western Africa
#> 6653 Western Africa
#> 6654 Western Africa
#> 6655 Western Africa
#> 6656 Western Africa
#> 6657 Western Africa
#> 6658 Western Africa
#> 6659 Western Africa
#> 6660 Western Africa
#> 6661 Western Africa
#> 6662 Western Africa
#> 6663 Western Africa
#> 6664 Western Africa
#> 6665 Western Asia
#> 6666 Western Asia
#> 6667 Western Asia
#> 6668 Western Asia
#> 6669 Western Asia
#> 6670 Western Asia
#> 6671 Western Asia
#> 6672 Western Asia
#> 6673 Western Asia
#> 6674 Western Asia
#> 6675 Western Asia
#> 6676 Western Asia
#> 6677 Western Asia
#> 6678 Western Asia
#> 6679 Western Europe
#> 6680 Western Europe
#> 6681 Western Europe
#> 6682 Western Europe
#> 6683 Western Europe
#> 6684 Western Europe
#> 6685 Western Europe
#> 6686 Western Europe
#> 6687 Western Europe
#> 6688 Western Europe
#> 6689 Western Europe
#> 6690 Western Europe
#> 6691 Western Europe
#> 6692 Western Europe
#> 6693 Western Sahara
#> 6694 Western Sahara
#> 6695 Western Sahara
#> 6696 Western Sahara
#> 6697 Western Sahara
#> 6698 Western Sahara
#> 6699 Western Sahara
#> 6700 Western Sahara
#> 6701 Western Sahara
#> 6702 Western Sahara
#> 6703 Western Sahara
#> 6704 Western Sahara
#> 6705 Western Sahara
#> 6706 Western Sahara
#> 6707 Yemen
#> 6708 Yemen
#> 6709 Yemen
#> 6710 Yemen
#> 6711 Yemen
#> 6712 Yemen
#> 6713 Yemen
#> 6714 Yemen
#> 6715 Yemen
#> 6716 Yemen
#> 6717 Yemen
#> 6718 Yemen
#> 6719 Yemen
#> 6720 Yemen
#> 6721 Zambia
#> 6722 Zambia
#> 6723 Zambia
#> 6724 Zambia
#> 6725 Zambia
#> 6726 Zambia
#> 6727 Zambia
#> 6728 Zambia
#> 6729 Zambia
#> 6730 Zambia
#> 6731 Zambia
#> 6732 Zambia
#> 6733 Zambia
#> 6734 Zambia
#> 6735 Zimbabwe
#> 6736 Zimbabwe
#> 6737 Zimbabwe
#> 6738 Zimbabwe
#> 6739 Zimbabwe
#> 6740 Zimbabwe
#> 6741 Zimbabwe
#> 6742 Zimbabwe
#> 6743 Zimbabwe
#> 6744 Zimbabwe
#> 6745 Zimbabwe
#> 6746 Zimbabwe
#> 6747 Zimbabwe
#> 6748 Zimbabwe
#> 6749 AFRICA
#> 6750 AFRICA
#> 6751 AFRICA
#> 6752 AFRICA
#> 6753 AFRICA
#> 6754 AFRICA
#> 6755 AFRICA
#> 6756 AFRICA
#> 6757 AFRICA
#> 6758 AFRICA
#> 6759 AFRICA
#> 6760 AFRICA
#> 6761 AFRICA
#> 6762 AFRICA
#> 6763 ASIA
#> 6764 ASIA
#> 6765 ASIA
#> 6766 ASIA
#> 6767 ASIA
#> 6768 ASIA
#> 6769 ASIA
#> 6770 ASIA
#> 6771 ASIA
#> 6772 ASIA
#> 6773 ASIA
#> 6774 ASIA
#> 6775 ASIA
#> 6776 ASIA
#> 6777 Afghanistan
#> 6778 Afghanistan
#> 6779 Afghanistan
#> 6780 Afghanistan
#> 6781 Afghanistan
#> 6782 Afghanistan
#> 6783 Afghanistan
#> 6784 Afghanistan
#> 6785 Afghanistan
#> 6786 Afghanistan
#> 6787 Afghanistan
#> 6788 Afghanistan
#> 6789 Afghanistan
#> 6790 Afghanistan
#> 6791 Albania
#> 6792 Albania
#> 6793 Albania
#> 6794 Albania
#> 6795 Albania
#> 6796 Albania
#> 6797 Albania
#> 6798 Albania
#> 6799 Albania
#> 6800 Albania
#> 6801 Albania
#> 6802 Albania
#> 6803 Albania
#> 6804 Albania
#> 6805 Algeria
#> 6806 Algeria
#> 6807 Algeria
#> 6808 Algeria
#> 6809 Algeria
#> 6810 Algeria
#> 6811 Algeria
#> 6812 Algeria
#> 6813 Algeria
#> 6814 Algeria
#> 6815 Algeria
#> 6816 Algeria
#> 6817 Algeria
#> 6818 Algeria
#> 6819 Angola
#> 6820 Angola
#> 6821 Angola
#> 6822 Angola
#> 6823 Angola
#> 6824 Angola
#> 6825 Angola
#> 6826 Angola
#> 6827 Angola
#> 6828 Angola
#> 6829 Angola
#> 6830 Angola
#> 6831 Angola
#> 6832 Angola
#> 6833 Antigua and Barbuda
#> 6834 Antigua and Barbuda
#> 6835 Antigua and Barbuda
#> 6836 Antigua and Barbuda
#> 6837 Antigua and Barbuda
#> 6838 Antigua and Barbuda
#> 6839 Antigua and Barbuda
#> 6840 Antigua and Barbuda
#> 6841 Antigua and Barbuda
#> 6842 Antigua and Barbuda
#> 6843 Antigua and Barbuda
#> 6844 Antigua and Barbuda
#> 6845 Antigua and Barbuda
#> 6846 Antigua and Barbuda
#> 6847 Argentina
#> 6848 Argentina
#> 6849 Argentina
#> 6850 Argentina
#> 6851 Argentina
#> 6852 Argentina
#> 6853 Argentina
#> 6854 Argentina
#> 6855 Argentina
#> 6856 Argentina
#> 6857 Argentina
#> 6858 Argentina
#> 6859 Argentina
#> 6860 Argentina
#> 6861 Armenia
#> 6862 Armenia
#> 6863 Armenia
#> 6864 Armenia
#> 6865 Armenia
#> 6866 Armenia
#> 6867 Armenia
#> 6868 Armenia
#> 6869 Armenia
#> 6870 Armenia
#> 6871 Armenia
#> 6872 Armenia
#> 6873 Armenia
#> 6874 Armenia
#> 6875 Aruba
#> 6876 Aruba
#> 6877 Aruba
#> 6878 Aruba
#> 6879 Aruba
#> 6880 Aruba
#> 6881 Aruba
#> 6882 Aruba
#> 6883 Aruba
#> 6884 Aruba
#> 6885 Aruba
#> 6886 Aruba
#> 6887 Aruba
#> 6888 Aruba
#> 6889 Australia
#> 6890 Australia
#> 6891 Australia
#> 6892 Australia
#> 6893 Australia
#> 6894 Australia
#> 6895 Australia
#> 6896 Australia
#> 6897 Australia
#> 6898 Australia
#> 6899 Australia
#> 6900 Australia
#> 6901 Australia
#> 6902 Australia
#> 6903 Australia/New Zealand
#> 6904 Australia/New Zealand
#> 6905 Australia/New Zealand
#> 6906 Australia/New Zealand
#> 6907 Australia/New Zealand
#> 6908 Australia/New Zealand
#> 6909 Australia/New Zealand
#> 6910 Australia/New Zealand
#> 6911 Australia/New Zealand
#> 6912 Australia/New Zealand
#> 6913 Australia/New Zealand
#> 6914 Australia/New Zealand
#> 6915 Australia/New Zealand
#> 6916 Australia/New Zealand
#> 6917 Austria
#> 6918 Austria
#> 6919 Austria
#> 6920 Austria
#> 6921 Austria
#> 6922 Austria
#> 6923 Austria
#> 6924 Austria
#> 6925 Austria
#> 6926 Austria
#> 6927 Austria
#> 6928 Austria
#> 6929 Austria
#> 6930 Austria
#> 6931 Azerbaijan
#> 6932 Azerbaijan
#> 6933 Azerbaijan
#> 6934 Azerbaijan
#> 6935 Azerbaijan
#> 6936 Azerbaijan
#> 6937 Azerbaijan
#> 6938 Azerbaijan
#> 6939 Azerbaijan
#> 6940 Azerbaijan
#> 6941 Azerbaijan
#> 6942 Azerbaijan
#> 6943 Azerbaijan
#> 6944 Azerbaijan
#> 6945 Bahamas
#> 6946 Bahamas
#> 6947 Bahamas
#> 6948 Bahamas
#> 6949 Bahamas
#> 6950 Bahamas
#> 6951 Bahamas
#> 6952 Bahamas
#> 6953 Bahamas
#> 6954 Bahamas
#> 6955 Bahamas
#> 6956 Bahamas
#> 6957 Bahamas
#> 6958 Bahamas
#> 6959 Bahrain
#> 6960 Bahrain
#> 6961 Bahrain
#> 6962 Bahrain
#> 6963 Bahrain
#> 6964 Bahrain
#> 6965 Bahrain
#> 6966 Bahrain
#> 6967 Bahrain
#> 6968 Bahrain
#> 6969 Bahrain
#> 6970 Bahrain
#> 6971 Bahrain
#> 6972 Bahrain
#> 6973 Bangladesh
#> 6974 Bangladesh
#> 6975 Bangladesh
#> 6976 Bangladesh
#> 6977 Bangladesh
#> 6978 Bangladesh
#> 6979 Bangladesh
#> 6980 Bangladesh
#> 6981 Bangladesh
#> 6982 Bangladesh
#> 6983 Bangladesh
#> 6984 Bangladesh
#> 6985 Bangladesh
#> 6986 Bangladesh
#> 6987 Barbados
#> 6988 Barbados
#> 6989 Barbados
#> 6990 Barbados
#> 6991 Barbados
#> 6992 Barbados
#> 6993 Barbados
#> 6994 Barbados
#> 6995 Barbados
#> 6996 Barbados
#> 6997 Barbados
#> 6998 Barbados
#> 6999 Barbados
#> 7000 Barbados
#> 7001 Belarus
#> 7002 Belarus
#> 7003 Belarus
#> 7004 Belarus
#> 7005 Belarus
#> 7006 Belarus
#> 7007 Belarus
#> 7008 Belarus
#> 7009 Belarus
#> 7010 Belarus
#> 7011 Belarus
#> 7012 Belarus
#> 7013 Belarus
#> 7014 Belarus
#> 7015 Belgium
#> 7016 Belgium
#> 7017 Belgium
#> 7018 Belgium
#> 7019 Belgium
#> 7020 Belgium
#> 7021 Belgium
#> 7022 Belgium
#> 7023 Belgium
#> 7024 Belgium
#> 7025 Belgium
#> 7026 Belgium
#> 7027 Belgium
#> 7028 Belgium
#> 7029 Belize
#> 7030 Belize
#> 7031 Belize
#> 7032 Belize
#> 7033 Belize
#> 7034 Belize
#> 7035 Belize
#> 7036 Belize
#> 7037 Belize
#> 7038 Belize
#> 7039 Belize
#> 7040 Belize
#> 7041 Belize
#> 7042 Belize
#> 7043 Benin
#> 7044 Benin
#> 7045 Benin
#> 7046 Benin
#> 7047 Benin
#> 7048 Benin
#> 7049 Benin
#> 7050 Benin
#> 7051 Benin
#> 7052 Benin
#> 7053 Benin
#> 7054 Benin
#> 7055 Benin
#> 7056 Benin
#> 7057 Bhutan
#> 7058 Bhutan
#> 7059 Bhutan
#> 7060 Bhutan
#> 7061 Bhutan
#> 7062 Bhutan
#> 7063 Bhutan
#> 7064 Bhutan
#> 7065 Bhutan
#> 7066 Bhutan
#> 7067 Bhutan
#> 7068 Bhutan
#> 7069 Bhutan
#> 7070 Bhutan
#> 7071 Bolivia (Plurinational State of)
#> 7072 Bolivia (Plurinational State of)
#> 7073 Bolivia (Plurinational State of)
#> 7074 Bolivia (Plurinational State of)
#> 7075 Bolivia (Plurinational State of)
#> 7076 Bolivia (Plurinational State of)
#> 7077 Bolivia (Plurinational State of)
#> 7078 Bolivia (Plurinational State of)
#> 7079 Bolivia (Plurinational State of)
#> 7080 Bolivia (Plurinational State of)
#> 7081 Bolivia (Plurinational State of)
#> 7082 Bolivia (Plurinational State of)
#> 7083 Bolivia (Plurinational State of)
#> 7084 Bolivia (Plurinational State of)
#> 7085 Bosnia and Herzegovina
#> 7086 Bosnia and Herzegovina
#> 7087 Bosnia and Herzegovina
#> 7088 Bosnia and Herzegovina
#> 7089 Bosnia and Herzegovina
#> 7090 Bosnia and Herzegovina
#> 7091 Bosnia and Herzegovina
#> 7092 Bosnia and Herzegovina
#> 7093 Bosnia and Herzegovina
#> 7094 Bosnia and Herzegovina
#> 7095 Bosnia and Herzegovina
#> 7096 Bosnia and Herzegovina
#> 7097 Bosnia and Herzegovina
#> 7098 Bosnia and Herzegovina
#> 7099 Botswana
#> 7100 Botswana
#> 7101 Botswana
#> 7102 Botswana
#> 7103 Botswana
#> 7104 Botswana
#> 7105 Botswana
#> 7106 Botswana
#> 7107 Botswana
#> 7108 Botswana
#> 7109 Botswana
#> 7110 Botswana
#> 7111 Botswana
#> 7112 Botswana
#> 7113 Brazil
#> 7114 Brazil
#> 7115 Brazil
#> 7116 Brazil
#> 7117 Brazil
#> 7118 Brazil
#> 7119 Brazil
#> 7120 Brazil
#> 7121 Brazil
#> 7122 Brazil
#> 7123 Brazil
#> 7124 Brazil
#> 7125 Brazil
#> 7126 Brazil
#> 7127 Brunei Darussalam
#> 7128 Brunei Darussalam
#> 7129 Brunei Darussalam
#> 7130 Brunei Darussalam
#> 7131 Brunei Darussalam
#> 7132 Brunei Darussalam
#> 7133 Brunei Darussalam
#> 7134 Brunei Darussalam
#> 7135 Brunei Darussalam
#> 7136 Brunei Darussalam
#> 7137 Brunei Darussalam
#> 7138 Brunei Darussalam
#> 7139 Brunei Darussalam
#> 7140 Brunei Darussalam
#> 7141 Bulgaria
#> 7142 Bulgaria
#> 7143 Bulgaria
#> 7144 Bulgaria
#> 7145 Bulgaria
#> 7146 Bulgaria
#> 7147 Bulgaria
#> 7148 Bulgaria
#> 7149 Bulgaria
#> 7150 Bulgaria
#> 7151 Bulgaria
#> 7152 Bulgaria
#> 7153 Bulgaria
#> 7154 Bulgaria
#> 7155 Burkina Faso
#> 7156 Burkina Faso
#> 7157 Burkina Faso
#> 7158 Burkina Faso
#> 7159 Burkina Faso
#> 7160 Burkina Faso
#> 7161 Burkina Faso
#> 7162 Burkina Faso
#> 7163 Burkina Faso
#> 7164 Burkina Faso
#> 7165 Burkina Faso
#> 7166 Burkina Faso
#> 7167 Burkina Faso
#> 7168 Burkina Faso
#> 7169 Burundi
#> 7170 Burundi
#> 7171 Burundi
#> 7172 Burundi
#> 7173 Burundi
#> 7174 Burundi
#> 7175 Burundi
#> 7176 Burundi
#> 7177 Burundi
#> 7178 Burundi
#> 7179 Burundi
#> 7180 Burundi
#> 7181 Burundi
#> 7182 Burundi
#> 7183 Cabo Verde
#> 7184 Cabo Verde
#> 7185 Cabo Verde
#> 7186 Cabo Verde
#> 7187 Cabo Verde
#> 7188 Cabo Verde
#> 7189 Cabo Verde
#> 7190 Cabo Verde
#> 7191 Cabo Verde
#> 7192 Cabo Verde
#> 7193 Cabo Verde
#> 7194 Cabo Verde
#> 7195 Cabo Verde
#> 7196 Cabo Verde
#> 7197 Cambodia
#> 7198 Cambodia
#> 7199 Cambodia
#> 7200 Cambodia
#> 7201 Cambodia
#> 7202 Cambodia
#> 7203 Cambodia
#> 7204 Cambodia
#> 7205 Cambodia
#> 7206 Cambodia
#> 7207 Cambodia
#> 7208 Cambodia
#> 7209 Cambodia
#> 7210 Cambodia
#> 7211 Cameroon
#> 7212 Cameroon
#> 7213 Cameroon
#> 7214 Cameroon
#> 7215 Cameroon
#> 7216 Cameroon
#> 7217 Cameroon
#> 7218 Cameroon
#> 7219 Cameroon
#> 7220 Cameroon
#> 7221 Cameroon
#> 7222 Cameroon
#> 7223 Cameroon
#> 7224 Cameroon
#> 7225 Canada
#> 7226 Canada
#> 7227 Canada
#> 7228 Canada
#> 7229 Canada
#> 7230 Canada
#> 7231 Canada
#> 7232 Canada
#> 7233 Canada
#> 7234 Canada
#> 7235 Canada
#> 7236 Canada
#> 7237 Canada
#> 7238 Canada
#> 7239 Caribbean
#> 7240 Caribbean
#> 7241 Caribbean
#> 7242 Caribbean
#> 7243 Caribbean
#> 7244 Caribbean
#> 7245 Caribbean
#> 7246 Caribbean
#> 7247 Caribbean
#> 7248 Caribbean
#> 7249 Caribbean
#> 7250 Caribbean
#> 7251 Caribbean
#> 7252 Caribbean
#> 7253 Central African Republic
#> 7254 Central African Republic
#> 7255 Central African Republic
#> 7256 Central African Republic
#> 7257 Central African Republic
#> 7258 Central African Republic
#> 7259 Central African Republic
#> 7260 Central African Republic
#> 7261 Central African Republic
#> 7262 Central African Republic
#> 7263 Central African Republic
#> 7264 Central African Republic
#> 7265 Central African Republic
#> 7266 Central African Republic
#> 7267 Central America
#> 7268 Central America
#> 7269 Central America
#> 7270 Central America
#> 7271 Central America
#> 7272 Central America
#> 7273 Central America
#> 7274 Central America
#> 7275 Central America
#> 7276 Central America
#> 7277 Central America
#> 7278 Central America
#> 7279 Central America
#> 7280 Central America
#> 7281 Central Asia
#> 7282 Central Asia
#> 7283 Central Asia
#> 7284 Central Asia
#> 7285 Central Asia
#> 7286 Central Asia
#> 7287 Central Asia
#> 7288 Central Asia
#> 7289 Central Asia
#> 7290 Central Asia
#> 7291 Central Asia
#> 7292 Central Asia
#> 7293 Central Asia
#> 7294 Central Asia
#> 7295 Chad
#> 7296 Chad
#> 7297 Chad
#> 7298 Chad
#> 7299 Chad
#> 7300 Chad
#> 7301 Chad
#> 7302 Chad
#> 7303 Chad
#> 7304 Chad
#> 7305 Chad
#> 7306 Chad
#> 7307 Chad
#> 7308 Chad
#> 7309 Channel Islands
#> 7310 Channel Islands
#> 7311 Channel Islands
#> 7312 Channel Islands
#> 7313 Channel Islands
#> 7314 Channel Islands
#> 7315 Channel Islands
#> 7316 Channel Islands
#> 7317 Channel Islands
#> 7318 Channel Islands
#> 7319 Channel Islands
#> 7320 Channel Islands
#> 7321 Channel Islands
#> 7322 Channel Islands
#> 7323 Chile
#> 7324 Chile
#> 7325 Chile
#> 7326 Chile
#> 7327 Chile
#> 7328 Chile
#> 7329 Chile
#> 7330 Chile
#> 7331 Chile
#> 7332 Chile
#> 7333 Chile
#> 7334 Chile
#> 7335 Chile
#> 7336 Chile
#> 7337 China
#> 7338 China
#> 7339 China
#> 7340 China
#> 7341 China
#> 7342 China
#> 7343 China
#> 7344 China
#> 7345 China
#> 7346 China
#> 7347 China
#> 7348 China
#> 7349 China
#> 7350 China
#> 7351 China, Hong Kong SAR
#> 7352 China, Hong Kong SAR
#> 7353 China, Hong Kong SAR
#> 7354 China, Hong Kong SAR
#> 7355 China, Hong Kong SAR
#> 7356 China, Hong Kong SAR
#> 7357 China, Hong Kong SAR
#> 7358 China, Hong Kong SAR
#> 7359 China, Hong Kong SAR
#> 7360 China, Hong Kong SAR
#> 7361 China, Hong Kong SAR
#> 7362 China, Hong Kong SAR
#> 7363 China, Hong Kong SAR
#> 7364 China, Hong Kong SAR
#> 7365 China, Macao SAR
#> 7366 China, Macao SAR
#> 7367 China, Macao SAR
#> 7368 China, Macao SAR
#> 7369 China, Macao SAR
#> 7370 China, Macao SAR
#> 7371 China, Macao SAR
#> 7372 China, Macao SAR
#> 7373 China, Macao SAR
#> 7374 China, Macao SAR
#> 7375 China, Macao SAR
#> 7376 China, Macao SAR
#> 7377 China, Macao SAR
#> 7378 China, Macao SAR
#> 7379 China, Taiwan Province of China
#> 7380 China, Taiwan Province of China
#> 7381 China, Taiwan Province of China
#> 7382 China, Taiwan Province of China
#> 7383 China, Taiwan Province of China
#> 7384 China, Taiwan Province of China
#> 7385 China, Taiwan Province of China
#> 7386 China, Taiwan Province of China
#> 7387 China, Taiwan Province of China
#> 7388 China, Taiwan Province of China
#> 7389 China, Taiwan Province of China
#> 7390 China, Taiwan Province of China
#> 7391 China, Taiwan Province of China
#> 7392 China, Taiwan Province of China
#> 7393 Colombia
#> 7394 Colombia
#> 7395 Colombia
#> 7396 Colombia
#> 7397 Colombia
#> 7398 Colombia
#> 7399 Colombia
#> 7400 Colombia
#> 7401 Colombia
#> 7402 Colombia
#> 7403 Colombia
#> 7404 Colombia
#> 7405 Colombia
#> 7406 Colombia
#> 7407 Comoros
#> 7408 Comoros
#> 7409 Comoros
#> 7410 Comoros
#> 7411 Comoros
#> 7412 Comoros
#> 7413 Comoros
#> 7414 Comoros
#> 7415 Comoros
#> 7416 Comoros
#> 7417 Comoros
#> 7418 Comoros
#> 7419 Comoros
#> 7420 Comoros
#> 7421 Congo
#> 7422 Congo
#> 7423 Congo
#> 7424 Congo
#> 7425 Congo
#> 7426 Congo
#> 7427 Congo
#> 7428 Congo
#> 7429 Congo
#> 7430 Congo
#> 7431 Congo
#> 7432 Congo
#> 7433 Congo
#> 7434 Congo
#> 7435 Costa Rica
#> 7436 Costa Rica
#> 7437 Costa Rica
#> 7438 Costa Rica
#> 7439 Costa Rica
#> 7440 Costa Rica
#> 7441 Costa Rica
#> 7442 Costa Rica
#> 7443 Costa Rica
#> 7444 Costa Rica
#> 7445 Costa Rica
#> 7446 Costa Rica
#> 7447 Costa Rica
#> 7448 Costa Rica
#> 7449 Cote d'Ivoire
#> 7450 Cote d'Ivoire
#> 7451 Cote d'Ivoire
#> 7452 Cote d'Ivoire
#> 7453 Cote d'Ivoire
#> 7454 Cote d'Ivoire
#> 7455 Cote d'Ivoire
#> 7456 Cote d'Ivoire
#> 7457 Cote d'Ivoire
#> 7458 Cote d'Ivoire
#> 7459 Cote d'Ivoire
#> 7460 Cote d'Ivoire
#> 7461 Cote d'Ivoire
#> 7462 Cote d'Ivoire
#> 7463 Croatia
#> 7464 Croatia
#> 7465 Croatia
#> 7466 Croatia
#> 7467 Croatia
#> 7468 Croatia
#> 7469 Croatia
#> 7470 Croatia
#> 7471 Croatia
#> 7472 Croatia
#> 7473 Croatia
#> 7474 Croatia
#> 7475 Croatia
#> 7476 Croatia
#> 7477 Cuba
#> 7478 Cuba
#> 7479 Cuba
#> 7480 Cuba
#> 7481 Cuba
#> 7482 Cuba
#> 7483 Cuba
#> 7484 Cuba
#> 7485 Cuba
#> 7486 Cuba
#> 7487 Cuba
#> 7488 Cuba
#> 7489 Cuba
#> 7490 Cuba
#> 7491 Curacao
#> 7492 Curacao
#> 7493 Curacao
#> 7494 Curacao
#> 7495 Curacao
#> 7496 Curacao
#> 7497 Curacao
#> 7498 Curacao
#> 7499 Curacao
#> 7500 Curacao
#> 7501 Curacao
#> 7502 Curacao
#> 7503 Curacao
#> 7504 Curacao
#> 7505 Cyprus
#> 7506 Cyprus
#> 7507 Cyprus
#> 7508 Cyprus
#> 7509 Cyprus
#> 7510 Cyprus
#> 7511 Cyprus
#> 7512 Cyprus
#> 7513 Cyprus
#> 7514 Cyprus
#> 7515 Cyprus
#> 7516 Cyprus
#> 7517 Cyprus
#> 7518 Cyprus
#> 7519 Czechia
#> 7520 Czechia
#> 7521 Czechia
#> 7522 Czechia
#> 7523 Czechia
#> 7524 Czechia
#> 7525 Czechia
#> 7526 Czechia
#> 7527 Czechia
#> 7528 Czechia
#> 7529 Czechia
#> 7530 Czechia
#> 7531 Czechia
#> 7532 Czechia
#> 7533 Dem. People's Republic of Korea
#> 7534 Dem. People's Republic of Korea
#> 7535 Dem. People's Republic of Korea
#> 7536 Dem. People's Republic of Korea
#> 7537 Dem. People's Republic of Korea
#> 7538 Dem. People's Republic of Korea
#> 7539 Dem. People's Republic of Korea
#> 7540 Dem. People's Republic of Korea
#> 7541 Dem. People's Republic of Korea
#> 7542 Dem. People's Republic of Korea
#> 7543 Dem. People's Republic of Korea
#> 7544 Dem. People's Republic of Korea
#> 7545 Dem. People's Republic of Korea
#> 7546 Dem. People's Republic of Korea
#> 7547 Democratic Republic of the Congo
#> 7548 Democratic Republic of the Congo
#> 7549 Democratic Republic of the Congo
#> 7550 Democratic Republic of the Congo
#> 7551 Democratic Republic of the Congo
#> 7552 Democratic Republic of the Congo
#> 7553 Democratic Republic of the Congo
#> 7554 Democratic Republic of the Congo
#> 7555 Democratic Republic of the Congo
#> 7556 Democratic Republic of the Congo
#> 7557 Democratic Republic of the Congo
#> 7558 Democratic Republic of the Congo
#> 7559 Democratic Republic of the Congo
#> 7560 Democratic Republic of the Congo
#> 7561 Denmark
#> 7562 Denmark
#> 7563 Denmark
#> 7564 Denmark
#> 7565 Denmark
#> 7566 Denmark
#> 7567 Denmark
#> 7568 Denmark
#> 7569 Denmark
#> 7570 Denmark
#> 7571 Denmark
#> 7572 Denmark
#> 7573 Denmark
#> 7574 Denmark
#> 7575 Djibouti
#> 7576 Djibouti
#> 7577 Djibouti
#> 7578 Djibouti
#> 7579 Djibouti
#> 7580 Djibouti
#> 7581 Djibouti
#> 7582 Djibouti
#> 7583 Djibouti
#> 7584 Djibouti
#> 7585 Djibouti
#> 7586 Djibouti
#> 7587 Djibouti
#> 7588 Djibouti
#> 7589 Dominican Republic
#> 7590 Dominican Republic
#> 7591 Dominican Republic
#> 7592 Dominican Republic
#> 7593 Dominican Republic
#> 7594 Dominican Republic
#> 7595 Dominican Republic
#> 7596 Dominican Republic
#> 7597 Dominican Republic
#> 7598 Dominican Republic
#> 7599 Dominican Republic
#> 7600 Dominican Republic
#> 7601 Dominican Republic
#> 7602 Dominican Republic
#> 7603 EUROPE
#> 7604 EUROPE
#> 7605 EUROPE
#> 7606 EUROPE
#> 7607 EUROPE
#> 7608 EUROPE
#> 7609 EUROPE
#> 7610 EUROPE
#> 7611 EUROPE
#> 7612 EUROPE
#> 7613 EUROPE
#> 7614 EUROPE
#> 7615 EUROPE
#> 7616 EUROPE
#> 7617 Eastern Africa
#> 7618 Eastern Africa
#> 7619 Eastern Africa
#> 7620 Eastern Africa
#> 7621 Eastern Africa
#> 7622 Eastern Africa
#> 7623 Eastern Africa
#> 7624 Eastern Africa
#> 7625 Eastern Africa
#> 7626 Eastern Africa
#> 7627 Eastern Africa
#> 7628 Eastern Africa
#> 7629 Eastern Africa
#> 7630 Eastern Africa
#> 7631 Eastern Asia
#> 7632 Eastern Asia
#> 7633 Eastern Asia
#> 7634 Eastern Asia
#> 7635 Eastern Asia
#> 7636 Eastern Asia
#> 7637 Eastern Asia
#> 7638 Eastern Asia
#> 7639 Eastern Asia
#> 7640 Eastern Asia
#> 7641 Eastern Asia
#> 7642 Eastern Asia
#> 7643 Eastern Asia
#> 7644 Eastern Asia
#> 7645 Eastern Europe
#> 7646 Eastern Europe
#> 7647 Eastern Europe
#> 7648 Eastern Europe
#> 7649 Eastern Europe
#> 7650 Eastern Europe
#> 7651 Eastern Europe
#> 7652 Eastern Europe
#> 7653 Eastern Europe
#> 7654 Eastern Europe
#> 7655 Eastern Europe
#> 7656 Eastern Europe
#> 7657 Eastern Europe
#> 7658 Eastern Europe
#> 7659 Ecuador
#> 7660 Ecuador
#> 7661 Ecuador
#> 7662 Ecuador
#> 7663 Ecuador
#> 7664 Ecuador
#> 7665 Ecuador
#> 7666 Ecuador
#> 7667 Ecuador
#> 7668 Ecuador
#> 7669 Ecuador
#> 7670 Ecuador
#> 7671 Ecuador
#> 7672 Ecuador
#> 7673 Egypt
#> 7674 Egypt
#> 7675 Egypt
#> 7676 Egypt
#> 7677 Egypt
#> 7678 Egypt
#> 7679 Egypt
#> 7680 Egypt
#> 7681 Egypt
#> 7682 Egypt
#> 7683 Egypt
#> 7684 Egypt
#> 7685 Egypt
#> 7686 Egypt
#> 7687 El Salvador
#> 7688 El Salvador
#> 7689 El Salvador
#> 7690 El Salvador
#> 7691 El Salvador
#> 7692 El Salvador
#> 7693 El Salvador
#> 7694 El Salvador
#> 7695 El Salvador
#> 7696 El Salvador
#> 7697 El Salvador
#> 7698 El Salvador
#> 7699 El Salvador
#> 7700 El Salvador
#> 7701 Equatorial Guinea
#> 7702 Equatorial Guinea
#> 7703 Equatorial Guinea
#> 7704 Equatorial Guinea
#> 7705 Equatorial Guinea
#> 7706 Equatorial Guinea
#> 7707 Equatorial Guinea
#> 7708 Equatorial Guinea
#> 7709 Equatorial Guinea
#> 7710 Equatorial Guinea
#> 7711 Equatorial Guinea
#> 7712 Equatorial Guinea
#> 7713 Equatorial Guinea
#> 7714 Equatorial Guinea
#> 7715 Eritrea
#> 7716 Eritrea
#> 7717 Eritrea
#> 7718 Eritrea
#> 7719 Eritrea
#> 7720 Eritrea
#> 7721 Eritrea
#> 7722 Eritrea
#> 7723 Eritrea
#> 7724 Eritrea
#> 7725 Eritrea
#> 7726 Eritrea
#> 7727 Eritrea
#> 7728 Eritrea
#> 7729 Estonia
#> 7730 Estonia
#> 7731 Estonia
#> 7732 Estonia
#> 7733 Estonia
#> 7734 Estonia
#> 7735 Estonia
#> 7736 Estonia
#> 7737 Estonia
#> 7738 Estonia
#> 7739 Estonia
#> 7740 Estonia
#> 7741 Estonia
#> 7742 Estonia
#> 7743 Ethiopia
#> 7744 Ethiopia
#> 7745 Ethiopia
#> 7746 Ethiopia
#> 7747 Ethiopia
#> 7748 Ethiopia
#> 7749 Ethiopia
#> 7750 Ethiopia
#> 7751 Ethiopia
#> 7752 Ethiopia
#> 7753 Ethiopia
#> 7754 Ethiopia
#> 7755 Ethiopia
#> 7756 Ethiopia
#> 7757 Fiji
#> 7758 Fiji
#> 7759 Fiji
#> 7760 Fiji
#> 7761 Fiji
#> 7762 Fiji
#> 7763 Fiji
#> 7764 Fiji
#> 7765 Fiji
#> 7766 Fiji
#> 7767 Fiji
#> 7768 Fiji
#> 7769 Fiji
#> 7770 Fiji
#> 7771 Finland
#> 7772 Finland
#> 7773 Finland
#> 7774 Finland
#> 7775 Finland
#> 7776 Finland
#> 7777 Finland
#> 7778 Finland
#> 7779 Finland
#> 7780 Finland
#> 7781 Finland
#> 7782 Finland
#> 7783 Finland
#> 7784 Finland
#> 7785 France
#> 7786 France
#> 7787 France
#> 7788 France
#> 7789 France
#> 7790 France
#> 7791 France
#> 7792 France
#> 7793 France
#> 7794 France
#> 7795 France
#> 7796 France
#> 7797 France
#> 7798 France
#> 7799 French Guiana
#> 7800 French Guiana
#> 7801 French Guiana
#> 7802 French Guiana
#> 7803 French Guiana
#> 7804 French Guiana
#> 7805 French Guiana
#> 7806 French Guiana
#> 7807 French Guiana
#> 7808 French Guiana
#> 7809 French Guiana
#> 7810 French Guiana
#> 7811 French Guiana
#> 7812 French Guiana
#> 7813 French Polynesia
#> 7814 French Polynesia
#> 7815 French Polynesia
#> 7816 French Polynesia
#> 7817 French Polynesia
#> 7818 French Polynesia
#> 7819 French Polynesia
#> 7820 French Polynesia
#> 7821 French Polynesia
#> 7822 French Polynesia
#> 7823 French Polynesia
#> 7824 French Polynesia
#> 7825 French Polynesia
#> 7826 French Polynesia
#> 7827 Gabon
#> 7828 Gabon
#> 7829 Gabon
#> 7830 Gabon
#> 7831 Gabon
#> 7832 Gabon
#> 7833 Gabon
#> 7834 Gabon
#> 7835 Gabon
#> 7836 Gabon
#> 7837 Gabon
#> 7838 Gabon
#> 7839 Gabon
#> 7840 Gabon
#> 7841 Gambia
#> 7842 Gambia
#> 7843 Gambia
#> 7844 Gambia
#> 7845 Gambia
#> 7846 Gambia
#> 7847 Gambia
#> 7848 Gambia
#> 7849 Gambia
#> 7850 Gambia
#> 7851 Gambia
#> 7852 Gambia
#> 7853 Gambia
#> 7854 Gambia
#> 7855 Georgia
#> 7856 Georgia
#> 7857 Georgia
#> 7858 Georgia
#> 7859 Georgia
#> 7860 Georgia
#> 7861 Georgia
#> 7862 Georgia
#> 7863 Georgia
#> 7864 Georgia
#> 7865 Georgia
#> 7866 Georgia
#> 7867 Georgia
#> 7868 Georgia
#> 7869 Germany
#> 7870 Germany
#> 7871 Germany
#> 7872 Germany
#> 7873 Germany
#> 7874 Germany
#> 7875 Germany
#> 7876 Germany
#> 7877 Germany
#> 7878 Germany
#> 7879 Germany
#> 7880 Germany
#> 7881 Germany
#> 7882 Germany
#> 7883 Ghana
#> 7884 Ghana
#> 7885 Ghana
#> 7886 Ghana
#> 7887 Ghana
#> 7888 Ghana
#> 7889 Ghana
#> 7890 Ghana
#> 7891 Ghana
#> 7892 Ghana
#> 7893 Ghana
#> 7894 Ghana
#> 7895 Ghana
#> 7896 Ghana
#> 7897 Greece
#> 7898 Greece
#> 7899 Greece
#> 7900 Greece
#> 7901 Greece
#> 7902 Greece
#> 7903 Greece
#> 7904 Greece
#> 7905 Greece
#> 7906 Greece
#> 7907 Greece
#> 7908 Greece
#> 7909 Greece
#> 7910 Greece
#> 7911 Grenada
#> 7912 Grenada
#> 7913 Grenada
#> 7914 Grenada
#> 7915 Grenada
#> 7916 Grenada
#> 7917 Grenada
#> 7918 Grenada
#> 7919 Grenada
#> 7920 Grenada
#> 7921 Grenada
#> 7922 Grenada
#> 7923 Grenada
#> 7924 Grenada
#> 7925 Guadeloupe
#> 7926 Guadeloupe
#> 7927 Guadeloupe
#> 7928 Guadeloupe
#> 7929 Guadeloupe
#> 7930 Guadeloupe
#> 7931 Guadeloupe
#> 7932 Guadeloupe
#> 7933 Guadeloupe
#> 7934 Guadeloupe
#> 7935 Guadeloupe
#> 7936 Guadeloupe
#> 7937 Guadeloupe
#> 7938 Guadeloupe
#> 7939 Guam
#> 7940 Guam
#> 7941 Guam
#> 7942 Guam
#> 7943 Guam
#> 7944 Guam
#> 7945 Guam
#> 7946 Guam
#> 7947 Guam
#> 7948 Guam
#> 7949 Guam
#> 7950 Guam
#> 7951 Guam
#> 7952 Guam
#> 7953 Guatemala
#> 7954 Guatemala
#> 7955 Guatemala
#> 7956 Guatemala
#> 7957 Guatemala
#> 7958 Guatemala
#> 7959 Guatemala
#> 7960 Guatemala
#> 7961 Guatemala
#> 7962 Guatemala
#> 7963 Guatemala
#> 7964 Guatemala
#> 7965 Guatemala
#> 7966 Guatemala
#> 7967 Guinea
#> 7968 Guinea
#> 7969 Guinea
#> 7970 Guinea
#> 7971 Guinea
#> 7972 Guinea
#> 7973 Guinea
#> 7974 Guinea
#> 7975 Guinea
#> 7976 Guinea
#> 7977 Guinea
#> 7978 Guinea
#> 7979 Guinea
#> 7980 Guinea
#> 7981 Guinea-Bissau
#> 7982 Guinea-Bissau
#> 7983 Guinea-Bissau
#> 7984 Guinea-Bissau
#> 7985 Guinea-Bissau
#> 7986 Guinea-Bissau
#> 7987 Guinea-Bissau
#> 7988 Guinea-Bissau
#> 7989 Guinea-Bissau
#> 7990 Guinea-Bissau
#> 7991 Guinea-Bissau
#> 7992 Guinea-Bissau
#> 7993 Guinea-Bissau
#> 7994 Guinea-Bissau
#> 7995 Guyana
#> 7996 Guyana
#> 7997 Guyana
#> 7998 Guyana
#> 7999 Guyana
#> 8000 Guyana
#> 8001 Guyana
#> 8002 Guyana
#> 8003 Guyana
#> 8004 Guyana
#> 8005 Guyana
#> 8006 Guyana
#> 8007 Guyana
#> 8008 Guyana
#> 8009 Haiti
#> 8010 Haiti
#> 8011 Haiti
#> 8012 Haiti
#> 8013 Haiti
#> 8014 Haiti
#> 8015 Haiti
#> 8016 Haiti
#> 8017 Haiti
#> 8018 Haiti
#> 8019 Haiti
#> 8020 Haiti
#> 8021 Haiti
#> 8022 Haiti
#> 8023 High-income countries
#> 8024 High-income countries
#> 8025 High-income countries
#> 8026 High-income countries
#> 8027 High-income countries
#> 8028 High-income countries
#> 8029 High-income countries
#> 8030 High-income countries
#> 8031 High-income countries
#> 8032 High-income countries
#> 8033 High-income countries
#> 8034 High-income countries
#> 8035 High-income countries
#> 8036 High-income countries
#> 8037 Honduras
#> 8038 Honduras
#> 8039 Honduras
#> 8040 Honduras
#> 8041 Honduras
#> 8042 Honduras
#> 8043 Honduras
#> 8044 Honduras
#> 8045 Honduras
#> 8046 Honduras
#> 8047 Honduras
#> 8048 Honduras
#> 8049 Honduras
#> 8050 Honduras
#> 8051 Hungary
#> 8052 Hungary
#> 8053 Hungary
#> 8054 Hungary
#> 8055 Hungary
#> 8056 Hungary
#> 8057 Hungary
#> 8058 Hungary
#> 8059 Hungary
#> 8060 Hungary
#> 8061 Hungary
#> 8062 Hungary
#> 8063 Hungary
#> 8064 Hungary
#> 8065 Iceland
#> 8066 Iceland
#> 8067 Iceland
#> 8068 Iceland
#> 8069 Iceland
#> 8070 Iceland
#> 8071 Iceland
#> 8072 Iceland
#> 8073 Iceland
#> 8074 Iceland
#> 8075 Iceland
#> 8076 Iceland
#> 8077 Iceland
#> 8078 Iceland
#> 8079 India
#> 8080 India
#> 8081 India
#> 8082 India
#> 8083 India
#> 8084 India
#> 8085 India
#> 8086 India
#> 8087 India
#> 8088 India
#> 8089 India
#> 8090 India
#> 8091 India
#> 8092 India
#> 8093 Indonesia
#> 8094 Indonesia
#> 8095 Indonesia
#> 8096 Indonesia
#> 8097 Indonesia
#> 8098 Indonesia
#> 8099 Indonesia
#> 8100 Indonesia
#> 8101 Indonesia
#> 8102 Indonesia
#> 8103 Indonesia
#> 8104 Indonesia
#> 8105 Indonesia
#> 8106 Indonesia
#> 8107 Iran (Islamic Republic of)
#> 8108 Iran (Islamic Republic of)
#> 8109 Iran (Islamic Republic of)
#> 8110 Iran (Islamic Republic of)
#> 8111 Iran (Islamic Republic of)
#> 8112 Iran (Islamic Republic of)
#> 8113 Iran (Islamic Republic of)
#> 8114 Iran (Islamic Republic of)
#> 8115 Iran (Islamic Republic of)
#> 8116 Iran (Islamic Republic of)
#> 8117 Iran (Islamic Republic of)
#> 8118 Iran (Islamic Republic of)
#> 8119 Iran (Islamic Republic of)
#> 8120 Iran (Islamic Republic of)
#> 8121 Iraq
#> 8122 Iraq
#> 8123 Iraq
#> 8124 Iraq
#> 8125 Iraq
#> 8126 Iraq
#> 8127 Iraq
#> 8128 Iraq
#> 8129 Iraq
#> 8130 Iraq
#> 8131 Iraq
#> 8132 Iraq
#> 8133 Iraq
#> 8134 Iraq
#> 8135 Ireland
#> 8136 Ireland
#> 8137 Ireland
#> 8138 Ireland
#> 8139 Ireland
#> 8140 Ireland
#> 8141 Ireland
#> 8142 Ireland
#> 8143 Ireland
#> 8144 Ireland
#> 8145 Ireland
#> 8146 Ireland
#> 8147 Ireland
#> 8148 Ireland
#> 8149 Israel
#> 8150 Israel
#> 8151 Israel
#> 8152 Israel
#> 8153 Israel
#> 8154 Israel
#> 8155 Israel
#> 8156 Israel
#> 8157 Israel
#> 8158 Israel
#> 8159 Israel
#> 8160 Israel
#> 8161 Israel
#> 8162 Israel
#> 8163 Italy
#> 8164 Italy
#> 8165 Italy
#> 8166 Italy
#> 8167 Italy
#> 8168 Italy
#> 8169 Italy
#> 8170 Italy
#> 8171 Italy
#> 8172 Italy
#> 8173 Italy
#> 8174 Italy
#> 8175 Italy
#> 8176 Italy
#> 8177 Jamaica
#> 8178 Jamaica
#> 8179 Jamaica
#> 8180 Jamaica
#> 8181 Jamaica
#> 8182 Jamaica
#> 8183 Jamaica
#> 8184 Jamaica
#> 8185 Jamaica
#> 8186 Jamaica
#> 8187 Jamaica
#> 8188 Jamaica
#> 8189 Jamaica
#> 8190 Jamaica
#> 8191 Japan
#> 8192 Japan
#> 8193 Japan
#> 8194 Japan
#> 8195 Japan
#> 8196 Japan
#> 8197 Japan
#> 8198 Japan
#> 8199 Japan
#> 8200 Japan
#> 8201 Japan
#> 8202 Japan
#> 8203 Japan
#> 8204 Japan
#> 8205 Jordan
#> 8206 Jordan
#> 8207 Jordan
#> 8208 Jordan
#> 8209 Jordan
#> 8210 Jordan
#> 8211 Jordan
#> 8212 Jordan
#> 8213 Jordan
#> 8214 Jordan
#> 8215 Jordan
#> 8216 Jordan
#> 8217 Jordan
#> 8218 Jordan
#> 8219 Kazakhstan
#> 8220 Kazakhstan
#> 8221 Kazakhstan
#> 8222 Kazakhstan
#> 8223 Kazakhstan
#> 8224 Kazakhstan
#> 8225 Kazakhstan
#> 8226 Kazakhstan
#> 8227 Kazakhstan
#> 8228 Kazakhstan
#> 8229 Kazakhstan
#> 8230 Kazakhstan
#> 8231 Kazakhstan
#> 8232 Kazakhstan
#> 8233 Kenya
#> 8234 Kenya
#> 8235 Kenya
#> 8236 Kenya
#> 8237 Kenya
#> 8238 Kenya
#> 8239 Kenya
#> 8240 Kenya
#> 8241 Kenya
#> 8242 Kenya
#> 8243 Kenya
#> 8244 Kenya
#> 8245 Kenya
#> 8246 Kenya
#> 8247 Kiribati
#> 8248 Kiribati
#> 8249 Kiribati
#> 8250 Kiribati
#> 8251 Kiribati
#> 8252 Kiribati
#> 8253 Kiribati
#> 8254 Kiribati
#> 8255 Kiribati
#> 8256 Kiribati
#> 8257 Kiribati
#> 8258 Kiribati
#> 8259 Kiribati
#> 8260 Kiribati
#> 8261 Kuwait
#> 8262 Kuwait
#> 8263 Kuwait
#> 8264 Kuwait
#> 8265 Kuwait
#> 8266 Kuwait
#> 8267 Kuwait
#> 8268 Kuwait
#> 8269 Kuwait
#> 8270 Kuwait
#> 8271 Kuwait
#> 8272 Kuwait
#> 8273 Kuwait
#> 8274 Kuwait
#> 8275 Kyrgyzstan
#> 8276 Kyrgyzstan
#> 8277 Kyrgyzstan
#> 8278 Kyrgyzstan
#> 8279 Kyrgyzstan
#> 8280 Kyrgyzstan
#> 8281 Kyrgyzstan
#> 8282 Kyrgyzstan
#> 8283 Kyrgyzstan
#> 8284 Kyrgyzstan
#> 8285 Kyrgyzstan
#> 8286 Kyrgyzstan
#> 8287 Kyrgyzstan
#> 8288 Kyrgyzstan
#> 8289 LATIN AMERICA AND THE CARIBBEAN
#> 8290 LATIN AMERICA AND THE CARIBBEAN
#> 8291 LATIN AMERICA AND THE CARIBBEAN
#> 8292 LATIN AMERICA AND THE CARIBBEAN
#> 8293 LATIN AMERICA AND THE CARIBBEAN
#> 8294 LATIN AMERICA AND THE CARIBBEAN
#> 8295 LATIN AMERICA AND THE CARIBBEAN
#> 8296 LATIN AMERICA AND THE CARIBBEAN
#> 8297 LATIN AMERICA AND THE CARIBBEAN
#> 8298 LATIN AMERICA AND THE CARIBBEAN
#> 8299 LATIN AMERICA AND THE CARIBBEAN
#> 8300 LATIN AMERICA AND THE CARIBBEAN
#> 8301 LATIN AMERICA AND THE CARIBBEAN
#> 8302 LATIN AMERICA AND THE CARIBBEAN
#> 8303 Lao People's Democratic Republic
#> 8304 Lao People's Democratic Republic
#> 8305 Lao People's Democratic Republic
#> 8306 Lao People's Democratic Republic
#> 8307 Lao People's Democratic Republic
#> 8308 Lao People's Democratic Republic
#> 8309 Lao People's Democratic Republic
#> 8310 Lao People's Democratic Republic
#> 8311 Lao People's Democratic Republic
#> 8312 Lao People's Democratic Republic
#> 8313 Lao People's Democratic Republic
#> 8314 Lao People's Democratic Republic
#> 8315 Lao People's Democratic Republic
#> 8316 Lao People's Democratic Republic
#> 8317 Latvia
#> 8318 Latvia
#> 8319 Latvia
#> 8320 Latvia
#> 8321 Latvia
#> 8322 Latvia
#> 8323 Latvia
#> 8324 Latvia
#> 8325 Latvia
#> 8326 Latvia
#> 8327 Latvia
#> 8328 Latvia
#> 8329 Latvia
#> 8330 Latvia
#> 8331 Least developed countries
#> 8332 Least developed countries
#> 8333 Least developed countries
#> 8334 Least developed countries
#> 8335 Least developed countries
#> 8336 Least developed countries
#> 8337 Least developed countries
#> 8338 Least developed countries
#> 8339 Least developed countries
#> 8340 Least developed countries
#> 8341 Least developed countries
#> 8342 Least developed countries
#> 8343 Least developed countries
#> 8344 Least developed countries
#> 8345 Lebanon
#> 8346 Lebanon
#> 8347 Lebanon
#> 8348 Lebanon
#> 8349 Lebanon
#> 8350 Lebanon
#> 8351 Lebanon
#> 8352 Lebanon
#> 8353 Lebanon
#> 8354 Lebanon
#> 8355 Lebanon
#> 8356 Lebanon
#> 8357 Lebanon
#> 8358 Lebanon
#> 8359 Lesotho
#> 8360 Lesotho
#> 8361 Lesotho
#> 8362 Lesotho
#> 8363 Lesotho
#> 8364 Lesotho
#> 8365 Lesotho
#> 8366 Lesotho
#> 8367 Lesotho
#> 8368 Lesotho
#> 8369 Lesotho
#> 8370 Lesotho
#> 8371 Lesotho
#> 8372 Lesotho
#> 8373 Less developed regions
#> 8374 Less developed regions
#> 8375 Less developed regions
#> 8376 Less developed regions
#> 8377 Less developed regions
#> 8378 Less developed regions
#> 8379 Less developed regions
#> 8380 Less developed regions
#> 8381 Less developed regions
#> 8382 Less developed regions
#> 8383 Less developed regions
#> 8384 Less developed regions
#> 8385 Less developed regions
#> 8386 Less developed regions
#> 8387 Less developed regions, excluding China
#> 8388 Less developed regions, excluding China
#> 8389 Less developed regions, excluding China
#> 8390 Less developed regions, excluding China
#> 8391 Less developed regions, excluding China
#> 8392 Less developed regions, excluding China
#> 8393 Less developed regions, excluding China
#> 8394 Less developed regions, excluding China
#> 8395 Less developed regions, excluding China
#> 8396 Less developed regions, excluding China
#> 8397 Less developed regions, excluding China
#> 8398 Less developed regions, excluding China
#> 8399 Less developed regions, excluding China
#> 8400 Less developed regions, excluding China
#> 8401 Less developed regions, excluding least developed countries
#> 8402 Less developed regions, excluding least developed countries
#> 8403 Less developed regions, excluding least developed countries
#> 8404 Less developed regions, excluding least developed countries
#> 8405 Less developed regions, excluding least developed countries
#> 8406 Less developed regions, excluding least developed countries
#> 8407 Less developed regions, excluding least developed countries
#> 8408 Less developed regions, excluding least developed countries
#> 8409 Less developed regions, excluding least developed countries
#> 8410 Less developed regions, excluding least developed countries
#> 8411 Less developed regions, excluding least developed countries
#> 8412 Less developed regions, excluding least developed countries
#> 8413 Less developed regions, excluding least developed countries
#> 8414 Less developed regions, excluding least developed countries
#> 8415 Liberia
#> 8416 Liberia
#> 8417 Liberia
#> 8418 Liberia
#> 8419 Liberia
#> 8420 Liberia
#> 8421 Liberia
#> 8422 Liberia
#> 8423 Liberia
#> 8424 Liberia
#> 8425 Liberia
#> 8426 Liberia
#> 8427 Liberia
#> 8428 Liberia
#> 8429 Libya
#> 8430 Libya
#> 8431 Libya
#> 8432 Libya
#> 8433 Libya
#> 8434 Libya
#> 8435 Libya
#> 8436 Libya
#> 8437 Libya
#> 8438 Libya
#> 8439 Libya
#> 8440 Libya
#> 8441 Libya
#> 8442 Libya
#> 8443 Lithuania
#> 8444 Lithuania
#> 8445 Lithuania
#> 8446 Lithuania
#> 8447 Lithuania
#> 8448 Lithuania
#> 8449 Lithuania
#> 8450 Lithuania
#> 8451 Lithuania
#> 8452 Lithuania
#> 8453 Lithuania
#> 8454 Lithuania
#> 8455 Lithuania
#> 8456 Lithuania
#> 8457 Low-income countries
#> 8458 Low-income countries
#> 8459 Low-income countries
#> 8460 Low-income countries
#> 8461 Low-income countries
#> 8462 Low-income countries
#> 8463 Low-income countries
#> 8464 Low-income countries
#> 8465 Low-income countries
#> 8466 Low-income countries
#> 8467 Low-income countries
#> 8468 Low-income countries
#> 8469 Low-income countries
#> 8470 Low-income countries
#> 8471 Lower-middle-income countries
#> 8472 Lower-middle-income countries
#> 8473 Lower-middle-income countries
#> 8474 Lower-middle-income countries
#> 8475 Lower-middle-income countries
#> 8476 Lower-middle-income countries
#> 8477 Lower-middle-income countries
#> 8478 Lower-middle-income countries
#> 8479 Lower-middle-income countries
#> 8480 Lower-middle-income countries
#> 8481 Lower-middle-income countries
#> 8482 Lower-middle-income countries
#> 8483 Lower-middle-income countries
#> 8484 Lower-middle-income countries
#> 8485 Luxembourg
#> 8486 Luxembourg
#> 8487 Luxembourg
#> 8488 Luxembourg
#> 8489 Luxembourg
#> 8490 Luxembourg
#> 8491 Luxembourg
#> 8492 Luxembourg
#> 8493 Luxembourg
#> 8494 Luxembourg
#> 8495 Luxembourg
#> 8496 Luxembourg
#> 8497 Luxembourg
#> 8498 Luxembourg
#> 8499 Madagascar
#> 8500 Madagascar
#> 8501 Madagascar
#> 8502 Madagascar
#> 8503 Madagascar
#> 8504 Madagascar
#> 8505 Madagascar
#> 8506 Madagascar
#> 8507 Madagascar
#> 8508 Madagascar
#> 8509 Madagascar
#> 8510 Madagascar
#> 8511 Madagascar
#> 8512 Madagascar
#> 8513 Malawi
#> 8514 Malawi
#> 8515 Malawi
#> 8516 Malawi
#> 8517 Malawi
#> 8518 Malawi
#> 8519 Malawi
#> 8520 Malawi
#> 8521 Malawi
#> 8522 Malawi
#> 8523 Malawi
#> 8524 Malawi
#> 8525 Malawi
#> 8526 Malawi
#> 8527 Malaysia
#> 8528 Malaysia
#> 8529 Malaysia
#> 8530 Malaysia
#> 8531 Malaysia
#> 8532 Malaysia
#> 8533 Malaysia
#> 8534 Malaysia
#> 8535 Malaysia
#> 8536 Malaysia
#> 8537 Malaysia
#> 8538 Malaysia
#> 8539 Malaysia
#> 8540 Malaysia
#> 8541 Maldives
#> 8542 Maldives
#> 8543 Maldives
#> 8544 Maldives
#> 8545 Maldives
#> 8546 Maldives
#> 8547 Maldives
#> 8548 Maldives
#> 8549 Maldives
#> 8550 Maldives
#> 8551 Maldives
#> 8552 Maldives
#> 8553 Maldives
#> 8554 Maldives
#> 8555 Mali
#> 8556 Mali
#> 8557 Mali
#> 8558 Mali
#> 8559 Mali
#> 8560 Mali
#> 8561 Mali
#> 8562 Mali
#> 8563 Mali
#> 8564 Mali
#> 8565 Mali
#> 8566 Mali
#> 8567 Mali
#> 8568 Mali
#> 8569 Malta
#> 8570 Malta
#> 8571 Malta
#> 8572 Malta
#> 8573 Malta
#> 8574 Malta
#> 8575 Malta
#> 8576 Malta
#> 8577 Malta
#> 8578 Malta
#> 8579 Malta
#> 8580 Malta
#> 8581 Malta
#> 8582 Malta
#> 8583 Martinique
#> 8584 Martinique
#> 8585 Martinique
#> 8586 Martinique
#> 8587 Martinique
#> 8588 Martinique
#> 8589 Martinique
#> 8590 Martinique
#> 8591 Martinique
#> 8592 Martinique
#> 8593 Martinique
#> 8594 Martinique
#> 8595 Martinique
#> 8596 Martinique
#> 8597 Mauritania
#> 8598 Mauritania
#> 8599 Mauritania
#> 8600 Mauritania
#> 8601 Mauritania
#> 8602 Mauritania
#> 8603 Mauritania
#> 8604 Mauritania
#> 8605 Mauritania
#> 8606 Mauritania
#> 8607 Mauritania
#> 8608 Mauritania
#> 8609 Mauritania
#> 8610 Mauritania
#> 8611 Mauritius
#> 8612 Mauritius
#> 8613 Mauritius
#> 8614 Mauritius
#> 8615 Mauritius
#> 8616 Mauritius
#> 8617 Mauritius
#> 8618 Mauritius
#> 8619 Mauritius
#> 8620 Mauritius
#> 8621 Mauritius
#> 8622 Mauritius
#> 8623 Mauritius
#> 8624 Mauritius
#> 8625 Mayotte
#> 8626 Mayotte
#> 8627 Mayotte
#> 8628 Mayotte
#> 8629 Mayotte
#> 8630 Mayotte
#> 8631 Mayotte
#> 8632 Mayotte
#> 8633 Mayotte
#> 8634 Mayotte
#> 8635 Mayotte
#> 8636 Mayotte
#> 8637 Mayotte
#> 8638 Mayotte
#> 8639 Melanesia
#> 8640 Melanesia
#> 8641 Melanesia
#> 8642 Melanesia
#> 8643 Melanesia
#> 8644 Melanesia
#> 8645 Melanesia
#> 8646 Melanesia
#> 8647 Melanesia
#> 8648 Melanesia
#> 8649 Melanesia
#> 8650 Melanesia
#> 8651 Melanesia
#> 8652 Melanesia
#> 8653 Mexico
#> 8654 Mexico
#> 8655 Mexico
#> 8656 Mexico
#> 8657 Mexico
#> 8658 Mexico
#> 8659 Mexico
#> 8660 Mexico
#> 8661 Mexico
#> 8662 Mexico
#> 8663 Mexico
#> 8664 Mexico
#> 8665 Mexico
#> 8666 Mexico
#> 8667 Micronesia
#> 8668 Micronesia
#> 8669 Micronesia
#> 8670 Micronesia
#> 8671 Micronesia
#> 8672 Micronesia
#> 8673 Micronesia
#> 8674 Micronesia
#> 8675 Micronesia
#> 8676 Micronesia
#> 8677 Micronesia
#> 8678 Micronesia
#> 8679 Micronesia
#> 8680 Micronesia
#> 8681 Micronesia (Fed. States of)
#> 8682 Micronesia (Fed. States of)
#> 8683 Micronesia (Fed. States of)
#> 8684 Micronesia (Fed. States of)
#> 8685 Micronesia (Fed. States of)
#> 8686 Micronesia (Fed. States of)
#> 8687 Micronesia (Fed. States of)
#> 8688 Micronesia (Fed. States of)
#> 8689 Micronesia (Fed. States of)
#> 8690 Micronesia (Fed. States of)
#> 8691 Micronesia (Fed. States of)
#> 8692 Micronesia (Fed. States of)
#> 8693 Micronesia (Fed. States of)
#> 8694 Micronesia (Fed. States of)
#> 8695 Middle Africa
#> 8696 Middle Africa
#> 8697 Middle Africa
#> 8698 Middle Africa
#> 8699 Middle Africa
#> 8700 Middle Africa
#> 8701 Middle Africa
#> 8702 Middle Africa
#> 8703 Middle Africa
#> 8704 Middle Africa
#> 8705 Middle Africa
#> 8706 Middle Africa
#> 8707 Middle Africa
#> 8708 Middle Africa
#> 8709 Middle-income countries
#> 8710 Middle-income countries
#> 8711 Middle-income countries
#> 8712 Middle-income countries
#> 8713 Middle-income countries
#> 8714 Middle-income countries
#> 8715 Middle-income countries
#> 8716 Middle-income countries
#> 8717 Middle-income countries
#> 8718 Middle-income countries
#> 8719 Middle-income countries
#> 8720 Middle-income countries
#> 8721 Middle-income countries
#> 8722 Middle-income countries
#> 8723 Mongolia
#> 8724 Mongolia
#> 8725 Mongolia
#> 8726 Mongolia
#> 8727 Mongolia
#> 8728 Mongolia
#> 8729 Mongolia
#> 8730 Mongolia
#> 8731 Mongolia
#> 8732 Mongolia
#> 8733 Mongolia
#> 8734 Mongolia
#> 8735 Mongolia
#> 8736 Mongolia
#> 8737 Montenegro
#> 8738 Montenegro
#> 8739 Montenegro
#> 8740 Montenegro
#> 8741 Montenegro
#> 8742 Montenegro
#> 8743 Montenegro
#> 8744 Montenegro
#> 8745 Montenegro
#> 8746 Montenegro
#> 8747 Montenegro
#> 8748 Montenegro
#> 8749 Montenegro
#> 8750 Montenegro
#> 8751 More developed regions
#> 8752 More developed regions
#> 8753 More developed regions
#> 8754 More developed regions
#> 8755 More developed regions
#> 8756 More developed regions
#> 8757 More developed regions
#> 8758 More developed regions
#> 8759 More developed regions
#> 8760 More developed regions
#> 8761 More developed regions
#> 8762 More developed regions
#> 8763 More developed regions
#> 8764 More developed regions
#> 8765 Morocco
#> 8766 Morocco
#> 8767 Morocco
#> 8768 Morocco
#> 8769 Morocco
#> 8770 Morocco
#> 8771 Morocco
#> 8772 Morocco
#> 8773 Morocco
#> 8774 Morocco
#> 8775 Morocco
#> 8776 Morocco
#> 8777 Morocco
#> 8778 Morocco
#> 8779 Mozambique
#> 8780 Mozambique
#> 8781 Mozambique
#> 8782 Mozambique
#> 8783 Mozambique
#> 8784 Mozambique
#> 8785 Mozambique
#> 8786 Mozambique
#> 8787 Mozambique
#> 8788 Mozambique
#> 8789 Mozambique
#> 8790 Mozambique
#> 8791 Mozambique
#> 8792 Mozambique
#> 8793 Myanmar
#> 8794 Myanmar
#> 8795 Myanmar
#> 8796 Myanmar
#> 8797 Myanmar
#> 8798 Myanmar
#> 8799 Myanmar
#> 8800 Myanmar
#> 8801 Myanmar
#> 8802 Myanmar
#> 8803 Myanmar
#> 8804 Myanmar
#> 8805 Myanmar
#> 8806 Myanmar
#> 8807 NORTHERN AMERICA
#> 8808 NORTHERN AMERICA
#> 8809 NORTHERN AMERICA
#> 8810 NORTHERN AMERICA
#> 8811 NORTHERN AMERICA
#> 8812 NORTHERN AMERICA
#> 8813 NORTHERN AMERICA
#> 8814 NORTHERN AMERICA
#> 8815 NORTHERN AMERICA
#> 8816 NORTHERN AMERICA
#> 8817 NORTHERN AMERICA
#> 8818 NORTHERN AMERICA
#> 8819 NORTHERN AMERICA
#> 8820 NORTHERN AMERICA
#> 8821 Namibia
#> 8822 Namibia
#> 8823 Namibia
#> 8824 Namibia
#> 8825 Namibia
#> 8826 Namibia
#> 8827 Namibia
#> 8828 Namibia
#> 8829 Namibia
#> 8830 Namibia
#> 8831 Namibia
#> 8832 Namibia
#> 8833 Namibia
#> 8834 Namibia
#> 8835 Nepal
#> 8836 Nepal
#> 8837 Nepal
#> 8838 Nepal
#> 8839 Nepal
#> 8840 Nepal
#> 8841 Nepal
#> 8842 Nepal
#> 8843 Nepal
#> 8844 Nepal
#> 8845 Nepal
#> 8846 Nepal
#> 8847 Nepal
#> 8848 Nepal
#> 8849 Netherlands
#> 8850 Netherlands
#> 8851 Netherlands
#> 8852 Netherlands
#> 8853 Netherlands
#> 8854 Netherlands
#> 8855 Netherlands
#> 8856 Netherlands
#> 8857 Netherlands
#> 8858 Netherlands
#> 8859 Netherlands
#> 8860 Netherlands
#> 8861 Netherlands
#> 8862 Netherlands
#> 8863 New Caledonia
#> 8864 New Caledonia
#> 8865 New Caledonia
#> 8866 New Caledonia
#> 8867 New Caledonia
#> 8868 New Caledonia
#> 8869 New Caledonia
#> 8870 New Caledonia
#> 8871 New Caledonia
#> 8872 New Caledonia
#> 8873 New Caledonia
#> 8874 New Caledonia
#> 8875 New Caledonia
#> 8876 New Caledonia
#> 8877 New Zealand
#> 8878 New Zealand
#> 8879 New Zealand
#> 8880 New Zealand
#> 8881 New Zealand
#> 8882 New Zealand
#> 8883 New Zealand
#> 8884 New Zealand
#> 8885 New Zealand
#> 8886 New Zealand
#> 8887 New Zealand
#> 8888 New Zealand
#> 8889 New Zealand
#> 8890 New Zealand
#> 8891 Nicaragua
#> 8892 Nicaragua
#> 8893 Nicaragua
#> 8894 Nicaragua
#> 8895 Nicaragua
#> 8896 Nicaragua
#> 8897 Nicaragua
#> 8898 Nicaragua
#> 8899 Nicaragua
#> 8900 Nicaragua
#> 8901 Nicaragua
#> 8902 Nicaragua
#> 8903 Nicaragua
#> 8904 Nicaragua
#> 8905 Niger
#> 8906 Niger
#> 8907 Niger
#> 8908 Niger
#> 8909 Niger
#> 8910 Niger
#> 8911 Niger
#> 8912 Niger
#> 8913 Niger
#> 8914 Niger
#> 8915 Niger
#> 8916 Niger
#> 8917 Niger
#> 8918 Niger
#> 8919 Nigeria
#> 8920 Nigeria
#> 8921 Nigeria
#> 8922 Nigeria
#> 8923 Nigeria
#> 8924 Nigeria
#> 8925 Nigeria
#> 8926 Nigeria
#> 8927 Nigeria
#> 8928 Nigeria
#> 8929 Nigeria
#> 8930 Nigeria
#> 8931 Nigeria
#> 8932 Nigeria
#> 8933 Northern Africa
#> 8934 Northern Africa
#> 8935 Northern Africa
#> 8936 Northern Africa
#> 8937 Northern Africa
#> 8938 Northern Africa
#> 8939 Northern Africa
#> 8940 Northern Africa
#> 8941 Northern Africa
#> 8942 Northern Africa
#> 8943 Northern Africa
#> 8944 Northern Africa
#> 8945 Northern Africa
#> 8946 Northern Africa
#> 8947 Northern Europe
#> 8948 Northern Europe
#> 8949 Northern Europe
#> 8950 Northern Europe
#> 8951 Northern Europe
#> 8952 Northern Europe
#> 8953 Northern Europe
#> 8954 Northern Europe
#> 8955 Northern Europe
#> 8956 Northern Europe
#> 8957 Northern Europe
#> 8958 Northern Europe
#> 8959 Northern Europe
#> 8960 Northern Europe
#> 8961 Norway
#> 8962 Norway
#> 8963 Norway
#> 8964 Norway
#> 8965 Norway
#> 8966 Norway
#> 8967 Norway
#> 8968 Norway
#> 8969 Norway
#> 8970 Norway
#> 8971 Norway
#> 8972 Norway
#> 8973 Norway
#> 8974 Norway
#> 8975 OCEANIA
#> 8976 OCEANIA
#> 8977 OCEANIA
#> 8978 OCEANIA
#> 8979 OCEANIA
#> 8980 OCEANIA
#> 8981 OCEANIA
#> 8982 OCEANIA
#> 8983 OCEANIA
#> 8984 OCEANIA
#> 8985 OCEANIA
#> 8986 OCEANIA
#> 8987 OCEANIA
#> 8988 OCEANIA
#> 8989 Oman
#> 8990 Oman
#> 8991 Oman
#> 8992 Oman
#> 8993 Oman
#> 8994 Oman
#> 8995 Oman
#> 8996 Oman
#> 8997 Oman
#> 8998 Oman
#> 8999 Oman
#> 9000 Oman
#> 9001 Oman
#> 9002 Oman
#> 9003 Pakistan
#> 9004 Pakistan
#> 9005 Pakistan
#> 9006 Pakistan
#> 9007 Pakistan
#> 9008 Pakistan
#> 9009 Pakistan
#> 9010 Pakistan
#> 9011 Pakistan
#> 9012 Pakistan
#> 9013 Pakistan
#> 9014 Pakistan
#> 9015 Pakistan
#> 9016 Pakistan
#> 9017 Panama
#> 9018 Panama
#> 9019 Panama
#> 9020 Panama
#> 9021 Panama
#> 9022 Panama
#> 9023 Panama
#> 9024 Panama
#> 9025 Panama
#> 9026 Panama
#> 9027 Panama
#> 9028 Panama
#> 9029 Panama
#> 9030 Panama
#> 9031 Papua New Guinea
#> 9032 Papua New Guinea
#> 9033 Papua New Guinea
#> 9034 Papua New Guinea
#> 9035 Papua New Guinea
#> 9036 Papua New Guinea
#> 9037 Papua New Guinea
#> 9038 Papua New Guinea
#> 9039 Papua New Guinea
#> 9040 Papua New Guinea
#> 9041 Papua New Guinea
#> 9042 Papua New Guinea
#> 9043 Papua New Guinea
#> 9044 Papua New Guinea
#> 9045 Paraguay
#> 9046 Paraguay
#> 9047 Paraguay
#> 9048 Paraguay
#> 9049 Paraguay
#> 9050 Paraguay
#> 9051 Paraguay
#> 9052 Paraguay
#> 9053 Paraguay
#> 9054 Paraguay
#> 9055 Paraguay
#> 9056 Paraguay
#> 9057 Paraguay
#> 9058 Paraguay
#> 9059 Peru
#> 9060 Peru
#> 9061 Peru
#> 9062 Peru
#> 9063 Peru
#> 9064 Peru
#> 9065 Peru
#> 9066 Peru
#> 9067 Peru
#> 9068 Peru
#> 9069 Peru
#> 9070 Peru
#> 9071 Peru
#> 9072 Peru
#> 9073 Philippines
#> 9074 Philippines
#> 9075 Philippines
#> 9076 Philippines
#> 9077 Philippines
#> 9078 Philippines
#> 9079 Philippines
#> 9080 Philippines
#> 9081 Philippines
#> 9082 Philippines
#> 9083 Philippines
#> 9084 Philippines
#> 9085 Philippines
#> 9086 Philippines
#> 9087 Poland
#> 9088 Poland
#> 9089 Poland
#> 9090 Poland
#> 9091 Poland
#> 9092 Poland
#> 9093 Poland
#> 9094 Poland
#> 9095 Poland
#> 9096 Poland
#> 9097 Poland
#> 9098 Poland
#> 9099 Poland
#> 9100 Poland
#> 9101 Polynesia
#> 9102 Polynesia
#> 9103 Polynesia
#> 9104 Polynesia
#> 9105 Polynesia
#> 9106 Polynesia
#> 9107 Polynesia
#> 9108 Polynesia
#> 9109 Polynesia
#> 9110 Polynesia
#> 9111 Polynesia
#> 9112 Polynesia
#> 9113 Polynesia
#> 9114 Polynesia
#> 9115 Portugal
#> 9116 Portugal
#> 9117 Portugal
#> 9118 Portugal
#> 9119 Portugal
#> 9120 Portugal
#> 9121 Portugal
#> 9122 Portugal
#> 9123 Portugal
#> 9124 Portugal
#> 9125 Portugal
#> 9126 Portugal
#> 9127 Portugal
#> 9128 Portugal
#> 9129 Puerto Rico
#> 9130 Puerto Rico
#> 9131 Puerto Rico
#> 9132 Puerto Rico
#> 9133 Puerto Rico
#> 9134 Puerto Rico
#> 9135 Puerto Rico
#> 9136 Puerto Rico
#> 9137 Puerto Rico
#> 9138 Puerto Rico
#> 9139 Puerto Rico
#> 9140 Puerto Rico
#> 9141 Puerto Rico
#> 9142 Puerto Rico
#> 9143 Qatar
#> 9144 Qatar
#> 9145 Qatar
#> 9146 Qatar
#> 9147 Qatar
#> 9148 Qatar
#> 9149 Qatar
#> 9150 Qatar
#> 9151 Qatar
#> 9152 Qatar
#> 9153 Qatar
#> 9154 Qatar
#> 9155 Qatar
#> 9156 Qatar
#> 9157 Republic of Korea
#> 9158 Republic of Korea
#> 9159 Republic of Korea
#> 9160 Republic of Korea
#> 9161 Republic of Korea
#> 9162 Republic of Korea
#> 9163 Republic of Korea
#> 9164 Republic of Korea
#> 9165 Republic of Korea
#> 9166 Republic of Korea
#> 9167 Republic of Korea
#> 9168 Republic of Korea
#> 9169 Republic of Korea
#> 9170 Republic of Korea
#> 9171 Republic of Moldova
#> 9172 Republic of Moldova
#> 9173 Republic of Moldova
#> 9174 Republic of Moldova
#> 9175 Republic of Moldova
#> 9176 Republic of Moldova
#> 9177 Republic of Moldova
#> 9178 Republic of Moldova
#> 9179 Republic of Moldova
#> 9180 Republic of Moldova
#> 9181 Republic of Moldova
#> 9182 Republic of Moldova
#> 9183 Republic of Moldova
#> 9184 Republic of Moldova
#> 9185 Reunion
#> 9186 Reunion
#> 9187 Reunion
#> 9188 Reunion
#> 9189 Reunion
#> 9190 Reunion
#> 9191 Reunion
#> 9192 Reunion
#> 9193 Reunion
#> 9194 Reunion
#> 9195 Reunion
#> 9196 Reunion
#> 9197 Reunion
#> 9198 Reunion
#> 9199 Romania
#> 9200 Romania
#> 9201 Romania
#> 9202 Romania
#> 9203 Romania
#> 9204 Romania
#> 9205 Romania
#> 9206 Romania
#> 9207 Romania
#> 9208 Romania
#> 9209 Romania
#> 9210 Romania
#> 9211 Romania
#> 9212 Romania
#> 9213 Russian Federation
#> 9214 Russian Federation
#> 9215 Russian Federation
#> 9216 Russian Federation
#> 9217 Russian Federation
#> 9218 Russian Federation
#> 9219 Russian Federation
#> 9220 Russian Federation
#> 9221 Russian Federation
#> 9222 Russian Federation
#> 9223 Russian Federation
#> 9224 Russian Federation
#> 9225 Russian Federation
#> 9226 Russian Federation
#> 9227 Rwanda
#> 9228 Rwanda
#> 9229 Rwanda
#> 9230 Rwanda
#> 9231 Rwanda
#> 9232 Rwanda
#> 9233 Rwanda
#> 9234 Rwanda
#> 9235 Rwanda
#> 9236 Rwanda
#> 9237 Rwanda
#> 9238 Rwanda
#> 9239 Rwanda
#> 9240 Rwanda
#> 9241 Saint Lucia
#> 9242 Saint Lucia
#> 9243 Saint Lucia
#> 9244 Saint Lucia
#> 9245 Saint Lucia
#> 9246 Saint Lucia
#> 9247 Saint Lucia
#> 9248 Saint Lucia
#> 9249 Saint Lucia
#> 9250 Saint Lucia
#> 9251 Saint Lucia
#> 9252 Saint Lucia
#> 9253 Saint Lucia
#> 9254 Saint Lucia
#> 9255 Saint Vincent and the Grenadines
#> 9256 Saint Vincent and the Grenadines
#> 9257 Saint Vincent and the Grenadines
#> 9258 Saint Vincent and the Grenadines
#> 9259 Saint Vincent and the Grenadines
#> 9260 Saint Vincent and the Grenadines
#> 9261 Saint Vincent and the Grenadines
#> 9262 Saint Vincent and the Grenadines
#> 9263 Saint Vincent and the Grenadines
#> 9264 Saint Vincent and the Grenadines
#> 9265 Saint Vincent and the Grenadines
#> 9266 Saint Vincent and the Grenadines
#> 9267 Saint Vincent and the Grenadines
#> 9268 Saint Vincent and the Grenadines
#> 9269 Samoa
#> 9270 Samoa
#> 9271 Samoa
#> 9272 Samoa
#> 9273 Samoa
#> 9274 Samoa
#> 9275 Samoa
#> 9276 Samoa
#> 9277 Samoa
#> 9278 Samoa
#> 9279 Samoa
#> 9280 Samoa
#> 9281 Samoa
#> 9282 Samoa
#> 9283 Sao Tome and Principe
#> 9284 Sao Tome and Principe
#> 9285 Sao Tome and Principe
#> 9286 Sao Tome and Principe
#> 9287 Sao Tome and Principe
#> 9288 Sao Tome and Principe
#> 9289 Sao Tome and Principe
#> 9290 Sao Tome and Principe
#> 9291 Sao Tome and Principe
#> 9292 Sao Tome and Principe
#> 9293 Sao Tome and Principe
#> 9294 Sao Tome and Principe
#> 9295 Sao Tome and Principe
#> 9296 Sao Tome and Principe
#> 9297 Saudi Arabia
#> 9298 Saudi Arabia
#> 9299 Saudi Arabia
#> 9300 Saudi Arabia
#> 9301 Saudi Arabia
#> 9302 Saudi Arabia
#> 9303 Saudi Arabia
#> 9304 Saudi Arabia
#> 9305 Saudi Arabia
#> 9306 Saudi Arabia
#> 9307 Saudi Arabia
#> 9308 Saudi Arabia
#> 9309 Saudi Arabia
#> 9310 Saudi Arabia
#> 9311 Senegal
#> 9312 Senegal
#> 9313 Senegal
#> 9314 Senegal
#> 9315 Senegal
#> 9316 Senegal
#> 9317 Senegal
#> 9318 Senegal
#> 9319 Senegal
#> 9320 Senegal
#> 9321 Senegal
#> 9322 Senegal
#> 9323 Senegal
#> 9324 Senegal
#> 9325 Serbia
#> 9326 Serbia
#> 9327 Serbia
#> 9328 Serbia
#> 9329 Serbia
#> 9330 Serbia
#> 9331 Serbia
#> 9332 Serbia
#> 9333 Serbia
#> 9334 Serbia
#> 9335 Serbia
#> 9336 Serbia
#> 9337 Serbia
#> 9338 Serbia
#> 9339 Seychelles
#> 9340 Seychelles
#> 9341 Seychelles
#> 9342 Seychelles
#> 9343 Seychelles
#> 9344 Seychelles
#> 9345 Seychelles
#> 9346 Seychelles
#> 9347 Seychelles
#> 9348 Seychelles
#> 9349 Seychelles
#> 9350 Seychelles
#> 9351 Seychelles
#> 9352 Seychelles
#> 9353 Sierra Leone
#> 9354 Sierra Leone
#> 9355 Sierra Leone
#> 9356 Sierra Leone
#> 9357 Sierra Leone
#> 9358 Sierra Leone
#> 9359 Sierra Leone
#> 9360 Sierra Leone
#> 9361 Sierra Leone
#> 9362 Sierra Leone
#> 9363 Sierra Leone
#> 9364 Sierra Leone
#> 9365 Sierra Leone
#> 9366 Sierra Leone
#> 9367 Singapore
#> 9368 Singapore
#> 9369 Singapore
#> 9370 Singapore
#> 9371 Singapore
#> 9372 Singapore
#> 9373 Singapore
#> 9374 Singapore
#> 9375 Singapore
#> 9376 Singapore
#> 9377 Singapore
#> 9378 Singapore
#> 9379 Singapore
#> 9380 Singapore
#> 9381 Slovakia
#> 9382 Slovakia
#> 9383 Slovakia
#> 9384 Slovakia
#> 9385 Slovakia
#> 9386 Slovakia
#> 9387 Slovakia
#> 9388 Slovakia
#> 9389 Slovakia
#> 9390 Slovakia
#> 9391 Slovakia
#> 9392 Slovakia
#> 9393 Slovakia
#> 9394 Slovakia
#> 9395 Slovenia
#> 9396 Slovenia
#> 9397 Slovenia
#> 9398 Slovenia
#> 9399 Slovenia
#> 9400 Slovenia
#> 9401 Slovenia
#> 9402 Slovenia
#> 9403 Slovenia
#> 9404 Slovenia
#> 9405 Slovenia
#> 9406 Slovenia
#> 9407 Slovenia
#> 9408 Slovenia
#> 9409 Solomon Islands
#> 9410 Solomon Islands
#> 9411 Solomon Islands
#> 9412 Solomon Islands
#> 9413 Solomon Islands
#> 9414 Solomon Islands
#> 9415 Solomon Islands
#> 9416 Solomon Islands
#> 9417 Solomon Islands
#> 9418 Solomon Islands
#> 9419 Solomon Islands
#> 9420 Solomon Islands
#> 9421 Solomon Islands
#> 9422 Solomon Islands
#> 9423 Somalia
#> 9424 Somalia
#> 9425 Somalia
#> 9426 Somalia
#> 9427 Somalia
#> 9428 Somalia
#> 9429 Somalia
#> 9430 Somalia
#> 9431 Somalia
#> 9432 Somalia
#> 9433 Somalia
#> 9434 Somalia
#> 9435 Somalia
#> 9436 Somalia
#> 9437 South Africa
#> 9438 South Africa
#> 9439 South Africa
#> 9440 South Africa
#> 9441 South Africa
#> 9442 South Africa
#> 9443 South Africa
#> 9444 South Africa
#> 9445 South Africa
#> 9446 South Africa
#> 9447 South Africa
#> 9448 South Africa
#> 9449 South Africa
#> 9450 South Africa
#> 9451 South America
#> 9452 South America
#> 9453 South America
#> 9454 South America
#> 9455 South America
#> 9456 South America
#> 9457 South America
#> 9458 South America
#> 9459 South America
#> 9460 South America
#> 9461 South America
#> 9462 South America
#> 9463 South America
#> 9464 South America
#> 9465 South Sudan
#> 9466 South Sudan
#> 9467 South Sudan
#> 9468 South Sudan
#> 9469 South Sudan
#> 9470 South Sudan
#> 9471 South Sudan
#> 9472 South Sudan
#> 9473 South Sudan
#> 9474 South Sudan
#> 9475 South Sudan
#> 9476 South Sudan
#> 9477 South Sudan
#> 9478 South Sudan
#> 9479 South-Central Asia
#> 9480 South-Central Asia
#> 9481 South-Central Asia
#> 9482 South-Central Asia
#> 9483 South-Central Asia
#> 9484 South-Central Asia
#> 9485 South-Central Asia
#> 9486 South-Central Asia
#> 9487 South-Central Asia
#> 9488 South-Central Asia
#> 9489 South-Central Asia
#> 9490 South-Central Asia
#> 9491 South-Central Asia
#> 9492 South-Central Asia
#> 9493 South-Eastern Asia
#> 9494 South-Eastern Asia
#> 9495 South-Eastern Asia
#> 9496 South-Eastern Asia
#> 9497 South-Eastern Asia
#> 9498 South-Eastern Asia
#> 9499 South-Eastern Asia
#> 9500 South-Eastern Asia
#> 9501 South-Eastern Asia
#> 9502 South-Eastern Asia
#> 9503 South-Eastern Asia
#> 9504 South-Eastern Asia
#> 9505 South-Eastern Asia
#> 9506 South-Eastern Asia
#> 9507 Southern Africa
#> 9508 Southern Africa
#> 9509 Southern Africa
#> 9510 Southern Africa
#> 9511 Southern Africa
#> 9512 Southern Africa
#> 9513 Southern Africa
#> 9514 Southern Africa
#> 9515 Southern Africa
#> 9516 Southern Africa
#> 9517 Southern Africa
#> 9518 Southern Africa
#> 9519 Southern Africa
#> 9520 Southern Africa
#> 9521 Southern Asia
#> 9522 Southern Asia
#> 9523 Southern Asia
#> 9524 Southern Asia
#> 9525 Southern Asia
#> 9526 Southern Asia
#> 9527 Southern Asia
#> 9528 Southern Asia
#> 9529 Southern Asia
#> 9530 Southern Asia
#> 9531 Southern Asia
#> 9532 Southern Asia
#> 9533 Southern Asia
#> 9534 Southern Asia
#> 9535 Southern Europe
#> 9536 Southern Europe
#> 9537 Southern Europe
#> 9538 Southern Europe
#> 9539 Southern Europe
#> 9540 Southern Europe
#> 9541 Southern Europe
#> 9542 Southern Europe
#> 9543 Southern Europe
#> 9544 Southern Europe
#> 9545 Southern Europe
#> 9546 Southern Europe
#> 9547 Southern Europe
#> 9548 Southern Europe
#> 9549 Spain
#> 9550 Spain
#> 9551 Spain
#> 9552 Spain
#> 9553 Spain
#> 9554 Spain
#> 9555 Spain
#> 9556 Spain
#> 9557 Spain
#> 9558 Spain
#> 9559 Spain
#> 9560 Spain
#> 9561 Spain
#> 9562 Spain
#> 9563 Sri Lanka
#> 9564 Sri Lanka
#> 9565 Sri Lanka
#> 9566 Sri Lanka
#> 9567 Sri Lanka
#> 9568 Sri Lanka
#> 9569 Sri Lanka
#> 9570 Sri Lanka
#> 9571 Sri Lanka
#> 9572 Sri Lanka
#> 9573 Sri Lanka
#> 9574 Sri Lanka
#> 9575 Sri Lanka
#> 9576 Sri Lanka
#> 9577 State of Palestine
#> 9578 State of Palestine
#> 9579 State of Palestine
#> 9580 State of Palestine
#> 9581 State of Palestine
#> 9582 State of Palestine
#> 9583 State of Palestine
#> 9584 State of Palestine
#> 9585 State of Palestine
#> 9586 State of Palestine
#> 9587 State of Palestine
#> 9588 State of Palestine
#> 9589 State of Palestine
#> 9590 State of Palestine
#> 9591 Sub-Saharan Africa
#> 9592 Sub-Saharan Africa
#> 9593 Sub-Saharan Africa
#> 9594 Sub-Saharan Africa
#> 9595 Sub-Saharan Africa
#> 9596 Sub-Saharan Africa
#> 9597 Sub-Saharan Africa
#> 9598 Sub-Saharan Africa
#> 9599 Sub-Saharan Africa
#> 9600 Sub-Saharan Africa
#> 9601 Sub-Saharan Africa
#> 9602 Sub-Saharan Africa
#> 9603 Sub-Saharan Africa
#> 9604 Sub-Saharan Africa
#> 9605 Sudan
#> 9606 Sudan
#> 9607 Sudan
#> 9608 Sudan
#> 9609 Sudan
#> 9610 Sudan
#> 9611 Sudan
#> 9612 Sudan
#> 9613 Sudan
#> 9614 Sudan
#> 9615 Sudan
#> 9616 Sudan
#> 9617 Sudan
#> 9618 Sudan
#> 9619 Suriname
#> 9620 Suriname
#> 9621 Suriname
#> 9622 Suriname
#> 9623 Suriname
#> 9624 Suriname
#> 9625 Suriname
#> 9626 Suriname
#> 9627 Suriname
#> 9628 Suriname
#> 9629 Suriname
#> 9630 Suriname
#> 9631 Suriname
#> 9632 Suriname
#> 9633 Swaziland
#> 9634 Swaziland
#> 9635 Swaziland
#> 9636 Swaziland
#> 9637 Swaziland
#> 9638 Swaziland
#> 9639 Swaziland
#> 9640 Swaziland
#> 9641 Swaziland
#> 9642 Swaziland
#> 9643 Swaziland
#> 9644 Swaziland
#> 9645 Swaziland
#> 9646 Swaziland
#> 9647 Sweden
#> 9648 Sweden
#> 9649 Sweden
#> 9650 Sweden
#> 9651 Sweden
#> 9652 Sweden
#> 9653 Sweden
#> 9654 Sweden
#> 9655 Sweden
#> 9656 Sweden
#> 9657 Sweden
#> 9658 Sweden
#> 9659 Sweden
#> 9660 Sweden
#> 9661 Switzerland
#> 9662 Switzerland
#> 9663 Switzerland
#> 9664 Switzerland
#> 9665 Switzerland
#> 9666 Switzerland
#> 9667 Switzerland
#> 9668 Switzerland
#> 9669 Switzerland
#> 9670 Switzerland
#> 9671 Switzerland
#> 9672 Switzerland
#> 9673 Switzerland
#> 9674 Switzerland
#> 9675 Syrian Arab Republic
#> 9676 Syrian Arab Republic
#> 9677 Syrian Arab Republic
#> 9678 Syrian Arab Republic
#> 9679 Syrian Arab Republic
#> 9680 Syrian Arab Republic
#> 9681 Syrian Arab Republic
#> 9682 Syrian Arab Republic
#> 9683 Syrian Arab Republic
#> 9684 Syrian Arab Republic
#> 9685 Syrian Arab Republic
#> 9686 Syrian Arab Republic
#> 9687 Syrian Arab Republic
#> 9688 Syrian Arab Republic
#> 9689 TFYR Macedonia
#> 9690 TFYR Macedonia
#> 9691 TFYR Macedonia
#> 9692 TFYR Macedonia
#> 9693 TFYR Macedonia
#> 9694 TFYR Macedonia
#> 9695 TFYR Macedonia
#> 9696 TFYR Macedonia
#> 9697 TFYR Macedonia
#> 9698 TFYR Macedonia
#> 9699 TFYR Macedonia
#> 9700 TFYR Macedonia
#> 9701 TFYR Macedonia
#> 9702 TFYR Macedonia
#> 9703 Tajikistan
#> 9704 Tajikistan
#> 9705 Tajikistan
#> 9706 Tajikistan
#> 9707 Tajikistan
#> 9708 Tajikistan
#> 9709 Tajikistan
#> 9710 Tajikistan
#> 9711 Tajikistan
#> 9712 Tajikistan
#> 9713 Tajikistan
#> 9714 Tajikistan
#> 9715 Tajikistan
#> 9716 Tajikistan
#> 9717 Thailand
#> 9718 Thailand
#> 9719 Thailand
#> 9720 Thailand
#> 9721 Thailand
#> 9722 Thailand
#> 9723 Thailand
#> 9724 Thailand
#> 9725 Thailand
#> 9726 Thailand
#> 9727 Thailand
#> 9728 Thailand
#> 9729 Thailand
#> 9730 Thailand
#> 9731 Timor-Leste
#> 9732 Timor-Leste
#> 9733 Timor-Leste
#> 9734 Timor-Leste
#> 9735 Timor-Leste
#> 9736 Timor-Leste
#> 9737 Timor-Leste
#> 9738 Timor-Leste
#> 9739 Timor-Leste
#> 9740 Timor-Leste
#> 9741 Timor-Leste
#> 9742 Timor-Leste
#> 9743 Timor-Leste
#> 9744 Timor-Leste
#> 9745 Togo
#> 9746 Togo
#> 9747 Togo
#> 9748 Togo
#> 9749 Togo
#> 9750 Togo
#> 9751 Togo
#> 9752 Togo
#> 9753 Togo
#> 9754 Togo
#> 9755 Togo
#> 9756 Togo
#> 9757 Togo
#> 9758 Togo
#> 9759 Tonga
#> 9760 Tonga
#> 9761 Tonga
#> 9762 Tonga
#> 9763 Tonga
#> 9764 Tonga
#> 9765 Tonga
#> 9766 Tonga
#> 9767 Tonga
#> 9768 Tonga
#> 9769 Tonga
#> 9770 Tonga
#> 9771 Tonga
#> 9772 Tonga
#> 9773 Trinidad and Tobago
#> 9774 Trinidad and Tobago
#> 9775 Trinidad and Tobago
#> 9776 Trinidad and Tobago
#> 9777 Trinidad and Tobago
#> 9778 Trinidad and Tobago
#> 9779 Trinidad and Tobago
#> 9780 Trinidad and Tobago
#> 9781 Trinidad and Tobago
#> 9782 Trinidad and Tobago
#> 9783 Trinidad and Tobago
#> 9784 Trinidad and Tobago
#> 9785 Trinidad and Tobago
#> 9786 Trinidad and Tobago
#> 9787 Tunisia
#> 9788 Tunisia
#> 9789 Tunisia
#> 9790 Tunisia
#> 9791 Tunisia
#> 9792 Tunisia
#> 9793 Tunisia
#> 9794 Tunisia
#> 9795 Tunisia
#> 9796 Tunisia
#> 9797 Tunisia
#> 9798 Tunisia
#> 9799 Tunisia
#> 9800 Tunisia
#> 9801 Turkey
#> 9802 Turkey
#> 9803 Turkey
#> 9804 Turkey
#> 9805 Turkey
#> 9806 Turkey
#> 9807 Turkey
#> 9808 Turkey
#> 9809 Turkey
#> 9810 Turkey
#> 9811 Turkey
#> 9812 Turkey
#> 9813 Turkey
#> 9814 Turkey
#> 9815 Turkmenistan
#> 9816 Turkmenistan
#> 9817 Turkmenistan
#> 9818 Turkmenistan
#> 9819 Turkmenistan
#> 9820 Turkmenistan
#> 9821 Turkmenistan
#> 9822 Turkmenistan
#> 9823 Turkmenistan
#> 9824 Turkmenistan
#> 9825 Turkmenistan
#> 9826 Turkmenistan
#> 9827 Turkmenistan
#> 9828 Turkmenistan
#> 9829 Uganda
#> 9830 Uganda
#> 9831 Uganda
#> 9832 Uganda
#> 9833 Uganda
#> 9834 Uganda
#> 9835 Uganda
#> 9836 Uganda
#> 9837 Uganda
#> 9838 Uganda
#> 9839 Uganda
#> 9840 Uganda
#> 9841 Uganda
#> 9842 Uganda
#> 9843 Ukraine
#> 9844 Ukraine
#> 9845 Ukraine
#> 9846 Ukraine
#> 9847 Ukraine
#> 9848 Ukraine
#> 9849 Ukraine
#> 9850 Ukraine
#> 9851 Ukraine
#> 9852 Ukraine
#> 9853 Ukraine
#> 9854 Ukraine
#> 9855 Ukraine
#> 9856 Ukraine
#> 9857 United Arab Emirates
#> 9858 United Arab Emirates
#> 9859 United Arab Emirates
#> 9860 United Arab Emirates
#> 9861 United Arab Emirates
#> 9862 United Arab Emirates
#> 9863 United Arab Emirates
#> 9864 United Arab Emirates
#> 9865 United Arab Emirates
#> 9866 United Arab Emirates
#> 9867 United Arab Emirates
#> 9868 United Arab Emirates
#> 9869 United Arab Emirates
#> 9870 United Arab Emirates
#> 9871 United Kingdom
#> 9872 United Kingdom
#> 9873 United Kingdom
#> 9874 United Kingdom
#> 9875 United Kingdom
#> 9876 United Kingdom
#> 9877 United Kingdom
#> 9878 United Kingdom
#> 9879 United Kingdom
#> 9880 United Kingdom
#> 9881 United Kingdom
#> 9882 United Kingdom
#> 9883 United Kingdom
#> 9884 United Kingdom
#> 9885 United Republic of Tanzania
#> 9886 United Republic of Tanzania
#> 9887 United Republic of Tanzania
#> 9888 United Republic of Tanzania
#> 9889 United Republic of Tanzania
#> 9890 United Republic of Tanzania
#> 9891 United Republic of Tanzania
#> 9892 United Republic of Tanzania
#> 9893 United Republic of Tanzania
#> 9894 United Republic of Tanzania
#> 9895 United Republic of Tanzania
#> 9896 United Republic of Tanzania
#> 9897 United Republic of Tanzania
#> 9898 United Republic of Tanzania
#> 9899 United States Virgin Islands
#> 9900 United States Virgin Islands
#> 9901 United States Virgin Islands
#> 9902 United States Virgin Islands
#> 9903 United States Virgin Islands
#> 9904 United States Virgin Islands
#> 9905 United States Virgin Islands
#> 9906 United States Virgin Islands
#> 9907 United States Virgin Islands
#> 9908 United States Virgin Islands
#> 9909 United States Virgin Islands
#> 9910 United States Virgin Islands
#> 9911 United States Virgin Islands
#> 9912 United States Virgin Islands
#> 9913 United States of America
#> 9914 United States of America
#> 9915 United States of America
#> 9916 United States of America
#> 9917 United States of America
#> 9918 United States of America
#> 9919 United States of America
#> 9920 United States of America
#> 9921 United States of America
#> 9922 United States of America
#> 9923 United States of America
#> 9924 United States of America
#> 9925 United States of America
#> 9926 United States of America
#> 9927 Upper-middle-income countries
#> 9928 Upper-middle-income countries
#> 9929 Upper-middle-income countries
#> 9930 Upper-middle-income countries
#> 9931 Upper-middle-income countries
#> 9932 Upper-middle-income countries
#> 9933 Upper-middle-income countries
#> 9934 Upper-middle-income countries
#> 9935 Upper-middle-income countries
#> 9936 Upper-middle-income countries
#> 9937 Upper-middle-income countries
#> 9938 Upper-middle-income countries
#> 9939 Upper-middle-income countries
#> 9940 Upper-middle-income countries
#> 9941 Uruguay
#> 9942 Uruguay
#> 9943 Uruguay
#> 9944 Uruguay
#> 9945 Uruguay
#> 9946 Uruguay
#> 9947 Uruguay
#> 9948 Uruguay
#> 9949 Uruguay
#> 9950 Uruguay
#> 9951 Uruguay
#> 9952 Uruguay
#> 9953 Uruguay
#> 9954 Uruguay
#> 9955 Uzbekistan
#> 9956 Uzbekistan
#> 9957 Uzbekistan
#> 9958 Uzbekistan
#> 9959 Uzbekistan
#> 9960 Uzbekistan
#> 9961 Uzbekistan
#> 9962 Uzbekistan
#> 9963 Uzbekistan
#> 9964 Uzbekistan
#> 9965 Uzbekistan
#> 9966 Uzbekistan
#> 9967 Uzbekistan
#> 9968 Uzbekistan
#> 9969 Vanuatu
#> 9970 Vanuatu
#> 9971 Vanuatu
#> 9972 Vanuatu
#> 9973 Vanuatu
#> 9974 Vanuatu
#> 9975 Vanuatu
#> 9976 Vanuatu
#> 9977 Vanuatu
#> 9978 Vanuatu
#> 9979 Vanuatu
#> 9980 Vanuatu
#> 9981 Vanuatu
#> 9982 Vanuatu
#> 9983 Venezuela (Bolivarian Republic of)
#> 9984 Venezuela (Bolivarian Republic of)
#> 9985 Venezuela (Bolivarian Republic of)
#> 9986 Venezuela (Bolivarian Republic of)
#> 9987 Venezuela (Bolivarian Republic of)
#> 9988 Venezuela (Bolivarian Republic of)
#> 9989 Venezuela (Bolivarian Republic of)
#> 9990 Venezuela (Bolivarian Republic of)
#> 9991 Venezuela (Bolivarian Republic of)
#> 9992 Venezuela (Bolivarian Republic of)
#> 9993 Venezuela (Bolivarian Republic of)
#> 9994 Venezuela (Bolivarian Republic of)
#> 9995 Venezuela (Bolivarian Republic of)
#> 9996 Venezuela (Bolivarian Republic of)
#> 9997 Viet Nam
#> 9998 Viet Nam
#> 9999 Viet Nam
#> 10000 Viet Nam
#> 10001 Viet Nam
#> 10002 Viet Nam
#> 10003 Viet Nam
#> 10004 Viet Nam
#> 10005 Viet Nam
#> 10006 Viet Nam
#> 10007 Viet Nam
#> 10008 Viet Nam
#> 10009 Viet Nam
#> 10010 Viet Nam
#> 10011 WORLD
#> 10012 WORLD
#> 10013 WORLD
#> 10014 WORLD
#> 10015 WORLD
#> 10016 WORLD
#> 10017 WORLD
#> 10018 WORLD
#> 10019 WORLD
#> 10020 WORLD
#> 10021 WORLD
#> 10022 WORLD
#> 10023 WORLD
#> 10024 WORLD
#> 10025 Western Africa
#> 10026 Western Africa
#> 10027 Western Africa
#> 10028 Western Africa
#> 10029 Western Africa
#> 10030 Western Africa
#> 10031 Western Africa
#> 10032 Western Africa
#> 10033 Western Africa
#> 10034 Western Africa
#> 10035 Western Africa
#> 10036 Western Africa
#> 10037 Western Africa
#> 10038 Western Africa
#> 10039 Western Asia
#> 10040 Western Asia
#> 10041 Western Asia
#> 10042 Western Asia
#> 10043 Western Asia
#> 10044 Western Asia
#> 10045 Western Asia
#> 10046 Western Asia
#> 10047 Western Asia
#> 10048 Western Asia
#> 10049 Western Asia
#> 10050 Western Asia
#> 10051 Western Asia
#> 10052 Western Asia
#> 10053 Western Europe
#> 10054 Western Europe
#> 10055 Western Europe
#> 10056 Western Europe
#> 10057 Western Europe
#> 10058 Western Europe
#> 10059 Western Europe
#> 10060 Western Europe
#> 10061 Western Europe
#> 10062 Western Europe
#> 10063 Western Europe
#> 10064 Western Europe
#> 10065 Western Europe
#> 10066 Western Europe
#> 10067 Western Sahara
#> 10068 Western Sahara
#> 10069 Western Sahara
#> 10070 Western Sahara
#> 10071 Western Sahara
#> 10072 Western Sahara
#> 10073 Western Sahara
#> 10074 Western Sahara
#> 10075 Western Sahara
#> 10076 Western Sahara
#> 10077 Western Sahara
#> 10078 Western Sahara
#> 10079 Western Sahara
#> 10080 Western Sahara
#> 10081 Yemen
#> 10082 Yemen
#> 10083 Yemen
#> 10084 Yemen
#> 10085 Yemen
#> 10086 Yemen
#> 10087 Yemen
#> 10088 Yemen
#> 10089 Yemen
#> 10090 Yemen
#> 10091 Yemen
#> 10092 Yemen
#> 10093 Yemen
#> 10094 Yemen
#> 10095 Zambia
#> 10096 Zambia
#> 10097 Zambia
#> 10098 Zambia
#> 10099 Zambia
#> 10100 Zambia
#> 10101 Zambia
#> 10102 Zambia
#> 10103 Zambia
#> 10104 Zambia
#> 10105 Zambia
#> 10106 Zambia
#> 10107 Zambia
#> 10108 Zambia
#> 10109 Zimbabwe
#> 10110 Zimbabwe
#> 10111 Zimbabwe
#> 10112 Zimbabwe
#> 10113 Zimbabwe
#> 10114 Zimbabwe
#> 10115 Zimbabwe
#> 10116 Zimbabwe
#> 10117 Zimbabwe
#> 10118 Zimbabwe
#> 10119 Zimbabwe
#> 10120 Zimbabwe
#> 10121 Zimbabwe
#> 10122 Zimbabwe
#> 10123 AFRICA
#> 10124 AFRICA
#> 10125 AFRICA
#> 10126 AFRICA
#> 10127 AFRICA
#> 10128 AFRICA
#> 10129 AFRICA
#> 10130 AFRICA
#> 10131 AFRICA
#> 10132 AFRICA
#> 10133 AFRICA
#> 10134 AFRICA
#> 10135 AFRICA
#> 10136 AFRICA
#> 10137 ASIA
#> 10138 ASIA
#> 10139 ASIA
#> 10140 ASIA
#> 10141 ASIA
#> 10142 ASIA
#> 10143 ASIA
#> 10144 ASIA
#> 10145 ASIA
#> 10146 ASIA
#> 10147 ASIA
#> 10148 ASIA
#> 10149 ASIA
#> 10150 ASIA
#> 10151 Afghanistan
#> 10152 Afghanistan
#> 10153 Afghanistan
#> 10154 Afghanistan
#> 10155 Afghanistan
#> 10156 Afghanistan
#> 10157 Afghanistan
#> 10158 Afghanistan
#> 10159 Afghanistan
#> 10160 Afghanistan
#> 10161 Afghanistan
#> 10162 Afghanistan
#> 10163 Afghanistan
#> 10164 Afghanistan
#> 10165 Albania
#> 10166 Albania
#> 10167 Albania
#> 10168 Albania
#> 10169 Albania
#> 10170 Albania
#> 10171 Albania
#> 10172 Albania
#> 10173 Albania
#> 10174 Albania
#> 10175 Albania
#> 10176 Albania
#> 10177 Albania
#> 10178 Albania
#> 10179 Algeria
#> 10180 Algeria
#> 10181 Algeria
#> 10182 Algeria
#> 10183 Algeria
#> 10184 Algeria
#> 10185 Algeria
#> 10186 Algeria
#> 10187 Algeria
#> 10188 Algeria
#> 10189 Algeria
#> 10190 Algeria
#> 10191 Algeria
#> 10192 Algeria
#> 10193 Angola
#> 10194 Angola
#> 10195 Angola
#> 10196 Angola
#> 10197 Angola
#> 10198 Angola
#> 10199 Angola
#> 10200 Angola
#> 10201 Angola
#> 10202 Angola
#> 10203 Angola
#> 10204 Angola
#> 10205 Angola
#> 10206 Angola
#> 10207 Antigua and Barbuda
#> 10208 Antigua and Barbuda
#> 10209 Antigua and Barbuda
#> 10210 Antigua and Barbuda
#> 10211 Antigua and Barbuda
#> 10212 Antigua and Barbuda
#> 10213 Antigua and Barbuda
#> 10214 Antigua and Barbuda
#> 10215 Antigua and Barbuda
#> 10216 Antigua and Barbuda
#> 10217 Antigua and Barbuda
#> 10218 Antigua and Barbuda
#> 10219 Antigua and Barbuda
#> 10220 Antigua and Barbuda
#> 10221 Argentina
#> 10222 Argentina
#> 10223 Argentina
#> 10224 Argentina
#> 10225 Argentina
#> 10226 Argentina
#> 10227 Argentina
#> 10228 Argentina
#> 10229 Argentina
#> 10230 Argentina
#> 10231 Argentina
#> 10232 Argentina
#> 10233 Argentina
#> 10234 Argentina
#> 10235 Armenia
#> 10236 Armenia
#> 10237 Armenia
#> 10238 Armenia
#> 10239 Armenia
#> 10240 Armenia
#> 10241 Armenia
#> 10242 Armenia
#> 10243 Armenia
#> 10244 Armenia
#> 10245 Armenia
#> 10246 Armenia
#> 10247 Armenia
#> 10248 Armenia
#> 10249 Aruba
#> 10250 Aruba
#> 10251 Aruba
#> 10252 Aruba
#> 10253 Aruba
#> 10254 Aruba
#> 10255 Aruba
#> 10256 Aruba
#> 10257 Aruba
#> 10258 Aruba
#> 10259 Aruba
#> 10260 Aruba
#> 10261 Aruba
#> 10262 Aruba
#> 10263 Australia
#> 10264 Australia
#> 10265 Australia
#> 10266 Australia
#> 10267 Australia
#> 10268 Australia
#> 10269 Australia
#> 10270 Australia
#> 10271 Australia
#> 10272 Australia
#> 10273 Australia
#> 10274 Australia
#> 10275 Australia
#> 10276 Australia
#> 10277 Australia/New Zealand
#> 10278 Australia/New Zealand
#> 10279 Australia/New Zealand
#> 10280 Australia/New Zealand
#> 10281 Australia/New Zealand
#> 10282 Australia/New Zealand
#> 10283 Australia/New Zealand
#> 10284 Australia/New Zealand
#> 10285 Australia/New Zealand
#> 10286 Australia/New Zealand
#> 10287 Australia/New Zealand
#> 10288 Australia/New Zealand
#> 10289 Australia/New Zealand
#> 10290 Australia/New Zealand
#> 10291 Austria
#> 10292 Austria
#> 10293 Austria
#> 10294 Austria
#> 10295 Austria
#> 10296 Austria
#> 10297 Austria
#> 10298 Austria
#> 10299 Austria
#> 10300 Austria
#> 10301 Austria
#> 10302 Austria
#> 10303 Austria
#> 10304 Austria
#> 10305 Azerbaijan
#> 10306 Azerbaijan
#> 10307 Azerbaijan
#> 10308 Azerbaijan
#> 10309 Azerbaijan
#> 10310 Azerbaijan
#> 10311 Azerbaijan
#> 10312 Azerbaijan
#> 10313 Azerbaijan
#> 10314 Azerbaijan
#> 10315 Azerbaijan
#> 10316 Azerbaijan
#> 10317 Azerbaijan
#> 10318 Azerbaijan
#> 10319 Bahamas
#> 10320 Bahamas
#> 10321 Bahamas
#> 10322 Bahamas
#> 10323 Bahamas
#> 10324 Bahamas
#> 10325 Bahamas
#> 10326 Bahamas
#> 10327 Bahamas
#> 10328 Bahamas
#> 10329 Bahamas
#> 10330 Bahamas
#> 10331 Bahamas
#> 10332 Bahamas
#> 10333 Bahrain
#> 10334 Bahrain
#> 10335 Bahrain
#> 10336 Bahrain
#> 10337 Bahrain
#> 10338 Bahrain
#> 10339 Bahrain
#> 10340 Bahrain
#> 10341 Bahrain
#> 10342 Bahrain
#> 10343 Bahrain
#> 10344 Bahrain
#> 10345 Bahrain
#> 10346 Bahrain
#> 10347 Bangladesh
#> 10348 Bangladesh
#> 10349 Bangladesh
#> 10350 Bangladesh
#> 10351 Bangladesh
#> 10352 Bangladesh
#> 10353 Bangladesh
#> 10354 Bangladesh
#> 10355 Bangladesh
#> 10356 Bangladesh
#> 10357 Bangladesh
#> 10358 Bangladesh
#> 10359 Bangladesh
#> 10360 Bangladesh
#> 10361 Barbados
#> 10362 Barbados
#> 10363 Barbados
#> 10364 Barbados
#> 10365 Barbados
#> 10366 Barbados
#> 10367 Barbados
#> 10368 Barbados
#> 10369 Barbados
#> 10370 Barbados
#> 10371 Barbados
#> 10372 Barbados
#> 10373 Barbados
#> 10374 Barbados
#> 10375 Belarus
#> 10376 Belarus
#> 10377 Belarus
#> 10378 Belarus
#> 10379 Belarus
#> 10380 Belarus
#> 10381 Belarus
#> 10382 Belarus
#> 10383 Belarus
#> 10384 Belarus
#> 10385 Belarus
#> 10386 Belarus
#> 10387 Belarus
#> 10388 Belarus
#> 10389 Belgium
#> 10390 Belgium
#> 10391 Belgium
#> 10392 Belgium
#> 10393 Belgium
#> 10394 Belgium
#> 10395 Belgium
#> 10396 Belgium
#> 10397 Belgium
#> 10398 Belgium
#> 10399 Belgium
#> 10400 Belgium
#> 10401 Belgium
#> 10402 Belgium
#> 10403 Belize
#> 10404 Belize
#> 10405 Belize
#> 10406 Belize
#> 10407 Belize
#> 10408 Belize
#> 10409 Belize
#> 10410 Belize
#> 10411 Belize
#> 10412 Belize
#> 10413 Belize
#> 10414 Belize
#> 10415 Belize
#> 10416 Belize
#> 10417 Benin
#> 10418 Benin
#> 10419 Benin
#> 10420 Benin
#> 10421 Benin
#> 10422 Benin
#> 10423 Benin
#> 10424 Benin
#> 10425 Benin
#> 10426 Benin
#> 10427 Benin
#> 10428 Benin
#> 10429 Benin
#> 10430 Benin
#> 10431 Bhutan
#> 10432 Bhutan
#> 10433 Bhutan
#> 10434 Bhutan
#> 10435 Bhutan
#> 10436 Bhutan
#> 10437 Bhutan
#> 10438 Bhutan
#> 10439 Bhutan
#> 10440 Bhutan
#> 10441 Bhutan
#> 10442 Bhutan
#> 10443 Bhutan
#> 10444 Bhutan
#> 10445 Bolivia (Plurinational State of)
#> 10446 Bolivia (Plurinational State of)
#> 10447 Bolivia (Plurinational State of)
#> 10448 Bolivia (Plurinational State of)
#> 10449 Bolivia (Plurinational State of)
#> 10450 Bolivia (Plurinational State of)
#> 10451 Bolivia (Plurinational State of)
#> 10452 Bolivia (Plurinational State of)
#> 10453 Bolivia (Plurinational State of)
#> 10454 Bolivia (Plurinational State of)
#> 10455 Bolivia (Plurinational State of)
#> 10456 Bolivia (Plurinational State of)
#> 10457 Bolivia (Plurinational State of)
#> 10458 Bolivia (Plurinational State of)
#> 10459 Bosnia and Herzegovina
#> 10460 Bosnia and Herzegovina
#> 10461 Bosnia and Herzegovina
#> 10462 Bosnia and Herzegovina
#> 10463 Bosnia and Herzegovina
#> 10464 Bosnia and Herzegovina
#> 10465 Bosnia and Herzegovina
#> 10466 Bosnia and Herzegovina
#> 10467 Bosnia and Herzegovina
#> 10468 Bosnia and Herzegovina
#> 10469 Bosnia and Herzegovina
#> 10470 Bosnia and Herzegovina
#> 10471 Bosnia and Herzegovina
#> 10472 Bosnia and Herzegovina
#> 10473 Botswana
#> 10474 Botswana
#> 10475 Botswana
#> 10476 Botswana
#> 10477 Botswana
#> 10478 Botswana
#> 10479 Botswana
#> 10480 Botswana
#> 10481 Botswana
#> 10482 Botswana
#> 10483 Botswana
#> 10484 Botswana
#> 10485 Botswana
#> 10486 Botswana
#> 10487 Brazil
#> 10488 Brazil
#> 10489 Brazil
#> 10490 Brazil
#> 10491 Brazil
#> 10492 Brazil
#> 10493 Brazil
#> 10494 Brazil
#> 10495 Brazil
#> 10496 Brazil
#> 10497 Brazil
#> 10498 Brazil
#> 10499 Brazil
#> 10500 Brazil
#> 10501 Brunei Darussalam
#> 10502 Brunei Darussalam
#> 10503 Brunei Darussalam
#> 10504 Brunei Darussalam
#> 10505 Brunei Darussalam
#> 10506 Brunei Darussalam
#> 10507 Brunei Darussalam
#> 10508 Brunei Darussalam
#> 10509 Brunei Darussalam
#> 10510 Brunei Darussalam
#> 10511 Brunei Darussalam
#> 10512 Brunei Darussalam
#> 10513 Brunei Darussalam
#> 10514 Brunei Darussalam
#> 10515 Bulgaria
#> 10516 Bulgaria
#> 10517 Bulgaria
#> 10518 Bulgaria
#> 10519 Bulgaria
#> 10520 Bulgaria
#> 10521 Bulgaria
#> 10522 Bulgaria
#> 10523 Bulgaria
#> 10524 Bulgaria
#> 10525 Bulgaria
#> 10526 Bulgaria
#> 10527 Bulgaria
#> 10528 Bulgaria
#> 10529 Burkina Faso
#> 10530 Burkina Faso
#> 10531 Burkina Faso
#> 10532 Burkina Faso
#> 10533 Burkina Faso
#> 10534 Burkina Faso
#> 10535 Burkina Faso
#> 10536 Burkina Faso
#> 10537 Burkina Faso
#> 10538 Burkina Faso
#> 10539 Burkina Faso
#> 10540 Burkina Faso
#> 10541 Burkina Faso
#> 10542 Burkina Faso
#> 10543 Burundi
#> 10544 Burundi
#> 10545 Burundi
#> 10546 Burundi
#> 10547 Burundi
#> 10548 Burundi
#> 10549 Burundi
#> 10550 Burundi
#> 10551 Burundi
#> 10552 Burundi
#> 10553 Burundi
#> 10554 Burundi
#> 10555 Burundi
#> 10556 Burundi
#> 10557 Cabo Verde
#> 10558 Cabo Verde
#> 10559 Cabo Verde
#> 10560 Cabo Verde
#> 10561 Cabo Verde
#> 10562 Cabo Verde
#> 10563 Cabo Verde
#> 10564 Cabo Verde
#> 10565 Cabo Verde
#> 10566 Cabo Verde
#> 10567 Cabo Verde
#> 10568 Cabo Verde
#> 10569 Cabo Verde
#> 10570 Cabo Verde
#> 10571 Cambodia
#> 10572 Cambodia
#> 10573 Cambodia
#> 10574 Cambodia
#> 10575 Cambodia
#> 10576 Cambodia
#> 10577 Cambodia
#> 10578 Cambodia
#> 10579 Cambodia
#> 10580 Cambodia
#> 10581 Cambodia
#> 10582 Cambodia
#> 10583 Cambodia
#> 10584 Cambodia
#> 10585 Cameroon
#> 10586 Cameroon
#> 10587 Cameroon
#> 10588 Cameroon
#> 10589 Cameroon
#> 10590 Cameroon
#> 10591 Cameroon
#> 10592 Cameroon
#> 10593 Cameroon
#> 10594 Cameroon
#> 10595 Cameroon
#> 10596 Cameroon
#> 10597 Cameroon
#> 10598 Cameroon
#> 10599 Canada
#> 10600 Canada
#> 10601 Canada
#> 10602 Canada
#> 10603 Canada
#> 10604 Canada
#> 10605 Canada
#> 10606 Canada
#> 10607 Canada
#> 10608 Canada
#> 10609 Canada
#> 10610 Canada
#> 10611 Canada
#> 10612 Canada
#> 10613 Caribbean
#> 10614 Caribbean
#> 10615 Caribbean
#> 10616 Caribbean
#> 10617 Caribbean
#> 10618 Caribbean
#> 10619 Caribbean
#> 10620 Caribbean
#> 10621 Caribbean
#> 10622 Caribbean
#> 10623 Caribbean
#> 10624 Caribbean
#> 10625 Caribbean
#> 10626 Caribbean
#> 10627 Central African Republic
#> 10628 Central African Republic
#> 10629 Central African Republic
#> 10630 Central African Republic
#> 10631 Central African Republic
#> 10632 Central African Republic
#> 10633 Central African Republic
#> 10634 Central African Republic
#> 10635 Central African Republic
#> 10636 Central African Republic
#> 10637 Central African Republic
#> 10638 Central African Republic
#> 10639 Central African Republic
#> 10640 Central African Republic
#> 10641 Central America
#> 10642 Central America
#> 10643 Central America
#> 10644 Central America
#> 10645 Central America
#> 10646 Central America
#> 10647 Central America
#> 10648 Central America
#> 10649 Central America
#> 10650 Central America
#> 10651 Central America
#> 10652 Central America
#> 10653 Central America
#> 10654 Central America
#> 10655 Central Asia
#> 10656 Central Asia
#> 10657 Central Asia
#> 10658 Central Asia
#> 10659 Central Asia
#> 10660 Central Asia
#> 10661 Central Asia
#> 10662 Central Asia
#> 10663 Central Asia
#> 10664 Central Asia
#> 10665 Central Asia
#> 10666 Central Asia
#> 10667 Central Asia
#> 10668 Central Asia
#> 10669 Chad
#> 10670 Chad
#> 10671 Chad
#> 10672 Chad
#> 10673 Chad
#> 10674 Chad
#> 10675 Chad
#> 10676 Chad
#> 10677 Chad
#> 10678 Chad
#> 10679 Chad
#> 10680 Chad
#> 10681 Chad
#> 10682 Chad
#> 10683 Channel Islands
#> 10684 Channel Islands
#> 10685 Channel Islands
#> 10686 Channel Islands
#> 10687 Channel Islands
#> 10688 Channel Islands
#> 10689 Channel Islands
#> 10690 Channel Islands
#> 10691 Channel Islands
#> 10692 Channel Islands
#> 10693 Channel Islands
#> 10694 Channel Islands
#> 10695 Channel Islands
#> 10696 Channel Islands
#> 10697 Chile
#> 10698 Chile
#> 10699 Chile
#> 10700 Chile
#> 10701 Chile
#> 10702 Chile
#> 10703 Chile
#> 10704 Chile
#> 10705 Chile
#> 10706 Chile
#> 10707 Chile
#> 10708 Chile
#> 10709 Chile
#> 10710 Chile
#> 10711 China
#> 10712 China
#> 10713 China
#> 10714 China
#> 10715 China
#> 10716 China
#> 10717 China
#> 10718 China
#> 10719 China
#> 10720 China
#> 10721 China
#> 10722 China
#> 10723 China
#> 10724 China
#> 10725 China, Hong Kong SAR
#> 10726 China, Hong Kong SAR
#> 10727 China, Hong Kong SAR
#> 10728 China, Hong Kong SAR
#> 10729 China, Hong Kong SAR
#> 10730 China, Hong Kong SAR
#> 10731 China, Hong Kong SAR
#> 10732 China, Hong Kong SAR
#> 10733 China, Hong Kong SAR
#> 10734 China, Hong Kong SAR
#> 10735 China, Hong Kong SAR
#> 10736 China, Hong Kong SAR
#> 10737 China, Hong Kong SAR
#> 10738 China, Hong Kong SAR
#> 10739 China, Macao SAR
#> 10740 China, Macao SAR
#> 10741 China, Macao SAR
#> 10742 China, Macao SAR
#> 10743 China, Macao SAR
#> 10744 China, Macao SAR
#> 10745 China, Macao SAR
#> 10746 China, Macao SAR
#> 10747 China, Macao SAR
#> 10748 China, Macao SAR
#> 10749 China, Macao SAR
#> 10750 China, Macao SAR
#> 10751 China, Macao SAR
#> 10752 China, Macao SAR
#> 10753 China, Taiwan Province of China
#> 10754 China, Taiwan Province of China
#> 10755 China, Taiwan Province of China
#> 10756 China, Taiwan Province of China
#> 10757 China, Taiwan Province of China
#> 10758 China, Taiwan Province of China
#> 10759 China, Taiwan Province of China
#> 10760 China, Taiwan Province of China
#> 10761 China, Taiwan Province of China
#> 10762 China, Taiwan Province of China
#> 10763 China, Taiwan Province of China
#> 10764 China, Taiwan Province of China
#> 10765 China, Taiwan Province of China
#> 10766 China, Taiwan Province of China
#> 10767 Colombia
#> 10768 Colombia
#> 10769 Colombia
#> 10770 Colombia
#> 10771 Colombia
#> 10772 Colombia
#> 10773 Colombia
#> 10774 Colombia
#> 10775 Colombia
#> 10776 Colombia
#> 10777 Colombia
#> 10778 Colombia
#> 10779 Colombia
#> 10780 Colombia
#> 10781 Comoros
#> 10782 Comoros
#> 10783 Comoros
#> 10784 Comoros
#> 10785 Comoros
#> 10786 Comoros
#> 10787 Comoros
#> 10788 Comoros
#> 10789 Comoros
#> 10790 Comoros
#> 10791 Comoros
#> 10792 Comoros
#> 10793 Comoros
#> 10794 Comoros
#> 10795 Congo
#> 10796 Congo
#> 10797 Congo
#> 10798 Congo
#> 10799 Congo
#> 10800 Congo
#> 10801 Congo
#> 10802 Congo
#> 10803 Congo
#> 10804 Congo
#> 10805 Congo
#> 10806 Congo
#> 10807 Congo
#> 10808 Congo
#> 10809 Costa Rica
#> 10810 Costa Rica
#> 10811 Costa Rica
#> 10812 Costa Rica
#> 10813 Costa Rica
#> 10814 Costa Rica
#> 10815 Costa Rica
#> 10816 Costa Rica
#> 10817 Costa Rica
#> 10818 Costa Rica
#> 10819 Costa Rica
#> 10820 Costa Rica
#> 10821 Costa Rica
#> 10822 Costa Rica
#> 10823 Cote d'Ivoire
#> 10824 Cote d'Ivoire
#> 10825 Cote d'Ivoire
#> 10826 Cote d'Ivoire
#> 10827 Cote d'Ivoire
#> 10828 Cote d'Ivoire
#> 10829 Cote d'Ivoire
#> 10830 Cote d'Ivoire
#> 10831 Cote d'Ivoire
#> 10832 Cote d'Ivoire
#> 10833 Cote d'Ivoire
#> 10834 Cote d'Ivoire
#> 10835 Cote d'Ivoire
#> 10836 Cote d'Ivoire
#> 10837 Croatia
#> 10838 Croatia
#> 10839 Croatia
#> 10840 Croatia
#> 10841 Croatia
#> 10842 Croatia
#> 10843 Croatia
#> 10844 Croatia
#> 10845 Croatia
#> 10846 Croatia
#> 10847 Croatia
#> 10848 Croatia
#> 10849 Croatia
#> 10850 Croatia
#> 10851 Cuba
#> 10852 Cuba
#> 10853 Cuba
#> 10854 Cuba
#> 10855 Cuba
#> 10856 Cuba
#> 10857 Cuba
#> 10858 Cuba
#> 10859 Cuba
#> 10860 Cuba
#> 10861 Cuba
#> 10862 Cuba
#> 10863 Cuba
#> 10864 Cuba
#> 10865 Curacao
#> 10866 Curacao
#> 10867 Curacao
#> 10868 Curacao
#> 10869 Curacao
#> 10870 Curacao
#> 10871 Curacao
#> 10872 Curacao
#> 10873 Curacao
#> 10874 Curacao
#> 10875 Curacao
#> 10876 Curacao
#> 10877 Curacao
#> 10878 Curacao
#> 10879 Cyprus
#> 10880 Cyprus
#> 10881 Cyprus
#> 10882 Cyprus
#> 10883 Cyprus
#> 10884 Cyprus
#> 10885 Cyprus
#> 10886 Cyprus
#> 10887 Cyprus
#> 10888 Cyprus
#> 10889 Cyprus
#> 10890 Cyprus
#> 10891 Cyprus
#> 10892 Cyprus
#> 10893 Czechia
#> 10894 Czechia
#> 10895 Czechia
#> 10896 Czechia
#> 10897 Czechia
#> 10898 Czechia
#> 10899 Czechia
#> 10900 Czechia
#> 10901 Czechia
#> 10902 Czechia
#> 10903 Czechia
#> 10904 Czechia
#> 10905 Czechia
#> 10906 Czechia
#> 10907 Dem. People's Republic of Korea
#> 10908 Dem. People's Republic of Korea
#> 10909 Dem. People's Republic of Korea
#> 10910 Dem. People's Republic of Korea
#> 10911 Dem. People's Republic of Korea
#> 10912 Dem. People's Republic of Korea
#> 10913 Dem. People's Republic of Korea
#> 10914 Dem. People's Republic of Korea
#> 10915 Dem. People's Republic of Korea
#> 10916 Dem. People's Republic of Korea
#> 10917 Dem. People's Republic of Korea
#> 10918 Dem. People's Republic of Korea
#> 10919 Dem. People's Republic of Korea
#> 10920 Dem. People's Republic of Korea
#> 10921 Democratic Republic of the Congo
#> 10922 Democratic Republic of the Congo
#> 10923 Democratic Republic of the Congo
#> 10924 Democratic Republic of the Congo
#> 10925 Democratic Republic of the Congo
#> 10926 Democratic Republic of the Congo
#> 10927 Democratic Republic of the Congo
#> 10928 Democratic Republic of the Congo
#> 10929 Democratic Republic of the Congo
#> 10930 Democratic Republic of the Congo
#> 10931 Democratic Republic of the Congo
#> 10932 Democratic Republic of the Congo
#> 10933 Democratic Republic of the Congo
#> 10934 Democratic Republic of the Congo
#> 10935 Denmark
#> 10936 Denmark
#> 10937 Denmark
#> 10938 Denmark
#> 10939 Denmark
#> 10940 Denmark
#> 10941 Denmark
#> 10942 Denmark
#> 10943 Denmark
#> 10944 Denmark
#> 10945 Denmark
#> 10946 Denmark
#> 10947 Denmark
#> 10948 Denmark
#> 10949 Djibouti
#> 10950 Djibouti
#> 10951 Djibouti
#> 10952 Djibouti
#> 10953 Djibouti
#> 10954 Djibouti
#> 10955 Djibouti
#> 10956 Djibouti
#> 10957 Djibouti
#> 10958 Djibouti
#> 10959 Djibouti
#> 10960 Djibouti
#> 10961 Djibouti
#> 10962 Djibouti
#> 10963 Dominican Republic
#> 10964 Dominican Republic
#> 10965 Dominican Republic
#> 10966 Dominican Republic
#> 10967 Dominican Republic
#> 10968 Dominican Republic
#> 10969 Dominican Republic
#> 10970 Dominican Republic
#> 10971 Dominican Republic
#> 10972 Dominican Republic
#> 10973 Dominican Republic
#> 10974 Dominican Republic
#> 10975 Dominican Republic
#> 10976 Dominican Republic
#> 10977 EUROPE
#> 10978 EUROPE
#> 10979 EUROPE
#> 10980 EUROPE
#> 10981 EUROPE
#> 10982 EUROPE
#> 10983 EUROPE
#> 10984 EUROPE
#> 10985 EUROPE
#> 10986 EUROPE
#> 10987 EUROPE
#> 10988 EUROPE
#> 10989 EUROPE
#> 10990 EUROPE
#> 10991 Eastern Africa
#> 10992 Eastern Africa
#> 10993 Eastern Africa
#> 10994 Eastern Africa
#> 10995 Eastern Africa
#> 10996 Eastern Africa
#> 10997 Eastern Africa
#> 10998 Eastern Africa
#> 10999 Eastern Africa
#> 11000 Eastern Africa
#> 11001 Eastern Africa
#> 11002 Eastern Africa
#> 11003 Eastern Africa
#> 11004 Eastern Africa
#> 11005 Eastern Asia
#> 11006 Eastern Asia
#> 11007 Eastern Asia
#> 11008 Eastern Asia
#> 11009 Eastern Asia
#> 11010 Eastern Asia
#> 11011 Eastern Asia
#> 11012 Eastern Asia
#> 11013 Eastern Asia
#> 11014 Eastern Asia
#> 11015 Eastern Asia
#> 11016 Eastern Asia
#> 11017 Eastern Asia
#> 11018 Eastern Asia
#> 11019 Eastern Europe
#> 11020 Eastern Europe
#> 11021 Eastern Europe
#> 11022 Eastern Europe
#> 11023 Eastern Europe
#> 11024 Eastern Europe
#> 11025 Eastern Europe
#> 11026 Eastern Europe
#> 11027 Eastern Europe
#> 11028 Eastern Europe
#> 11029 Eastern Europe
#> 11030 Eastern Europe
#> 11031 Eastern Europe
#> 11032 Eastern Europe
#> 11033 Ecuador
#> 11034 Ecuador
#> 11035 Ecuador
#> 11036 Ecuador
#> 11037 Ecuador
#> 11038 Ecuador
#> 11039 Ecuador
#> 11040 Ecuador
#> 11041 Ecuador
#> 11042 Ecuador
#> 11043 Ecuador
#> 11044 Ecuador
#> 11045 Ecuador
#> 11046 Ecuador
#> 11047 Egypt
#> 11048 Egypt
#> 11049 Egypt
#> 11050 Egypt
#> 11051 Egypt
#> 11052 Egypt
#> 11053 Egypt
#> 11054 Egypt
#> 11055 Egypt
#> 11056 Egypt
#> 11057 Egypt
#> 11058 Egypt
#> 11059 Egypt
#> 11060 Egypt
#> 11061 El Salvador
#> 11062 El Salvador
#> 11063 El Salvador
#> 11064 El Salvador
#> 11065 El Salvador
#> 11066 El Salvador
#> 11067 El Salvador
#> 11068 El Salvador
#> 11069 El Salvador
#> 11070 El Salvador
#> 11071 El Salvador
#> 11072 El Salvador
#> 11073 El Salvador
#> 11074 El Salvador
#> 11075 Equatorial Guinea
#> 11076 Equatorial Guinea
#> 11077 Equatorial Guinea
#> 11078 Equatorial Guinea
#> 11079 Equatorial Guinea
#> 11080 Equatorial Guinea
#> 11081 Equatorial Guinea
#> 11082 Equatorial Guinea
#> 11083 Equatorial Guinea
#> 11084 Equatorial Guinea
#> 11085 Equatorial Guinea
#> 11086 Equatorial Guinea
#> 11087 Equatorial Guinea
#> 11088 Equatorial Guinea
#> 11089 Eritrea
#> 11090 Eritrea
#> 11091 Eritrea
#> 11092 Eritrea
#> 11093 Eritrea
#> 11094 Eritrea
#> 11095 Eritrea
#> 11096 Eritrea
#> 11097 Eritrea
#> 11098 Eritrea
#> 11099 Eritrea
#> 11100 Eritrea
#> 11101 Eritrea
#> 11102 Eritrea
#> 11103 Estonia
#> 11104 Estonia
#> 11105 Estonia
#> 11106 Estonia
#> 11107 Estonia
#> 11108 Estonia
#> 11109 Estonia
#> 11110 Estonia
#> 11111 Estonia
#> 11112 Estonia
#> 11113 Estonia
#> 11114 Estonia
#> 11115 Estonia
#> 11116 Estonia
#> 11117 Ethiopia
#> 11118 Ethiopia
#> 11119 Ethiopia
#> 11120 Ethiopia
#> 11121 Ethiopia
#> 11122 Ethiopia
#> 11123 Ethiopia
#> 11124 Ethiopia
#> 11125 Ethiopia
#> 11126 Ethiopia
#> 11127 Ethiopia
#> 11128 Ethiopia
#> 11129 Ethiopia
#> 11130 Ethiopia
#> 11131 Fiji
#> 11132 Fiji
#> 11133 Fiji
#> 11134 Fiji
#> 11135 Fiji
#> 11136 Fiji
#> 11137 Fiji
#> 11138 Fiji
#> 11139 Fiji
#> 11140 Fiji
#> 11141 Fiji
#> 11142 Fiji
#> 11143 Fiji
#> 11144 Fiji
#> 11145 Finland
#> 11146 Finland
#> 11147 Finland
#> 11148 Finland
#> 11149 Finland
#> 11150 Finland
#> 11151 Finland
#> 11152 Finland
#> 11153 Finland
#> 11154 Finland
#> 11155 Finland
#> 11156 Finland
#> 11157 Finland
#> 11158 Finland
#> 11159 France
#> 11160 France
#> 11161 France
#> 11162 France
#> 11163 France
#> 11164 France
#> 11165 France
#> 11166 France
#> 11167 France
#> 11168 France
#> 11169 France
#> 11170 France
#> 11171 France
#> 11172 France
#> 11173 French Guiana
#> 11174 French Guiana
#> 11175 French Guiana
#> 11176 French Guiana
#> 11177 French Guiana
#> 11178 French Guiana
#> 11179 French Guiana
#> 11180 French Guiana
#> 11181 French Guiana
#> 11182 French Guiana
#> 11183 French Guiana
#> 11184 French Guiana
#> 11185 French Guiana
#> 11186 French Guiana
#> 11187 French Polynesia
#> 11188 French Polynesia
#> 11189 French Polynesia
#> 11190 French Polynesia
#> 11191 French Polynesia
#> 11192 French Polynesia
#> 11193 French Polynesia
#> 11194 French Polynesia
#> 11195 French Polynesia
#> 11196 French Polynesia
#> 11197 French Polynesia
#> 11198 French Polynesia
#> 11199 French Polynesia
#> 11200 French Polynesia
#> 11201 Gabon
#> 11202 Gabon
#> 11203 Gabon
#> 11204 Gabon
#> 11205 Gabon
#> 11206 Gabon
#> 11207 Gabon
#> 11208 Gabon
#> 11209 Gabon
#> 11210 Gabon
#> 11211 Gabon
#> 11212 Gabon
#> 11213 Gabon
#> 11214 Gabon
#> 11215 Gambia
#> 11216 Gambia
#> 11217 Gambia
#> 11218 Gambia
#> 11219 Gambia
#> 11220 Gambia
#> 11221 Gambia
#> 11222 Gambia
#> 11223 Gambia
#> 11224 Gambia
#> 11225 Gambia
#> 11226 Gambia
#> 11227 Gambia
#> 11228 Gambia
#> 11229 Georgia
#> 11230 Georgia
#> 11231 Georgia
#> 11232 Georgia
#> 11233 Georgia
#> 11234 Georgia
#> 11235 Georgia
#> 11236 Georgia
#> 11237 Georgia
#> 11238 Georgia
#> 11239 Georgia
#> 11240 Georgia
#> 11241 Georgia
#> 11242 Georgia
#> 11243 Germany
#> 11244 Germany
#> 11245 Germany
#> 11246 Germany
#> 11247 Germany
#> 11248 Germany
#> 11249 Germany
#> 11250 Germany
#> 11251 Germany
#> 11252 Germany
#> 11253 Germany
#> 11254 Germany
#> 11255 Germany
#> 11256 Germany
#> 11257 Ghana
#> 11258 Ghana
#> 11259 Ghana
#> 11260 Ghana
#> 11261 Ghana
#> 11262 Ghana
#> 11263 Ghana
#> 11264 Ghana
#> 11265 Ghana
#> 11266 Ghana
#> 11267 Ghana
#> 11268 Ghana
#> 11269 Ghana
#> 11270 Ghana
#> 11271 Greece
#> 11272 Greece
#> 11273 Greece
#> 11274 Greece
#> 11275 Greece
#> 11276 Greece
#> 11277 Greece
#> 11278 Greece
#> 11279 Greece
#> 11280 Greece
#> 11281 Greece
#> 11282 Greece
#> 11283 Greece
#> 11284 Greece
#> 11285 Grenada
#> 11286 Grenada
#> 11287 Grenada
#> 11288 Grenada
#> 11289 Grenada
#> 11290 Grenada
#> 11291 Grenada
#> 11292 Grenada
#> 11293 Grenada
#> 11294 Grenada
#> 11295 Grenada
#> 11296 Grenada
#> 11297 Grenada
#> 11298 Grenada
#> 11299 Guadeloupe
#> 11300 Guadeloupe
#> 11301 Guadeloupe
#> 11302 Guadeloupe
#> 11303 Guadeloupe
#> 11304 Guadeloupe
#> 11305 Guadeloupe
#> 11306 Guadeloupe
#> 11307 Guadeloupe
#> 11308 Guadeloupe
#> 11309 Guadeloupe
#> 11310 Guadeloupe
#> 11311 Guadeloupe
#> 11312 Guadeloupe
#> 11313 Guam
#> 11314 Guam
#> 11315 Guam
#> 11316 Guam
#> 11317 Guam
#> 11318 Guam
#> 11319 Guam
#> 11320 Guam
#> 11321 Guam
#> 11322 Guam
#> 11323 Guam
#> 11324 Guam
#> 11325 Guam
#> 11326 Guam
#> 11327 Guatemala
#> 11328 Guatemala
#> 11329 Guatemala
#> 11330 Guatemala
#> 11331 Guatemala
#> 11332 Guatemala
#> 11333 Guatemala
#> 11334 Guatemala
#> 11335 Guatemala
#> 11336 Guatemala
#> 11337 Guatemala
#> 11338 Guatemala
#> 11339 Guatemala
#> 11340 Guatemala
#> 11341 Guinea
#> 11342 Guinea
#> 11343 Guinea
#> 11344 Guinea
#> 11345 Guinea
#> 11346 Guinea
#> 11347 Guinea
#> 11348 Guinea
#> 11349 Guinea
#> 11350 Guinea
#> 11351 Guinea
#> 11352 Guinea
#> 11353 Guinea
#> 11354 Guinea
#> 11355 Guinea-Bissau
#> 11356 Guinea-Bissau
#> 11357 Guinea-Bissau
#> 11358 Guinea-Bissau
#> 11359 Guinea-Bissau
#> 11360 Guinea-Bissau
#> 11361 Guinea-Bissau
#> 11362 Guinea-Bissau
#> 11363 Guinea-Bissau
#> 11364 Guinea-Bissau
#> 11365 Guinea-Bissau
#> 11366 Guinea-Bissau
#> 11367 Guinea-Bissau
#> 11368 Guinea-Bissau
#> 11369 Guyana
#> 11370 Guyana
#> 11371 Guyana
#> 11372 Guyana
#> 11373 Guyana
#> 11374 Guyana
#> 11375 Guyana
#> 11376 Guyana
#> 11377 Guyana
#> 11378 Guyana
#> 11379 Guyana
#> 11380 Guyana
#> 11381 Guyana
#> 11382 Guyana
#> 11383 Haiti
#> 11384 Haiti
#> 11385 Haiti
#> 11386 Haiti
#> 11387 Haiti
#> 11388 Haiti
#> 11389 Haiti
#> 11390 Haiti
#> 11391 Haiti
#> 11392 Haiti
#> 11393 Haiti
#> 11394 Haiti
#> 11395 Haiti
#> 11396 Haiti
#> 11397 High-income countries
#> 11398 High-income countries
#> 11399 High-income countries
#> 11400 High-income countries
#> 11401 High-income countries
#> 11402 High-income countries
#> 11403 High-income countries
#> 11404 High-income countries
#> 11405 High-income countries
#> 11406 High-income countries
#> 11407 High-income countries
#> 11408 High-income countries
#> 11409 High-income countries
#> 11410 High-income countries
#> 11411 Honduras
#> 11412 Honduras
#> 11413 Honduras
#> 11414 Honduras
#> 11415 Honduras
#> 11416 Honduras
#> 11417 Honduras
#> 11418 Honduras
#> 11419 Honduras
#> 11420 Honduras
#> 11421 Honduras
#> 11422 Honduras
#> 11423 Honduras
#> 11424 Honduras
#> 11425 Hungary
#> 11426 Hungary
#> 11427 Hungary
#> 11428 Hungary
#> 11429 Hungary
#> 11430 Hungary
#> 11431 Hungary
#> 11432 Hungary
#> 11433 Hungary
#> 11434 Hungary
#> 11435 Hungary
#> 11436 Hungary
#> 11437 Hungary
#> 11438 Hungary
#> 11439 Iceland
#> 11440 Iceland
#> 11441 Iceland
#> 11442 Iceland
#> 11443 Iceland
#> 11444 Iceland
#> 11445 Iceland
#> 11446 Iceland
#> 11447 Iceland
#> 11448 Iceland
#> 11449 Iceland
#> 11450 Iceland
#> 11451 Iceland
#> 11452 Iceland
#> 11453 India
#> 11454 India
#> 11455 India
#> 11456 India
#> 11457 India
#> 11458 India
#> 11459 India
#> 11460 India
#> 11461 India
#> 11462 India
#> 11463 India
#> 11464 India
#> 11465 India
#> 11466 India
#> 11467 Indonesia
#> 11468 Indonesia
#> 11469 Indonesia
#> 11470 Indonesia
#> 11471 Indonesia
#> 11472 Indonesia
#> 11473 Indonesia
#> 11474 Indonesia
#> 11475 Indonesia
#> 11476 Indonesia
#> 11477 Indonesia
#> 11478 Indonesia
#> 11479 Indonesia
#> 11480 Indonesia
#> 11481 Iran (Islamic Republic of)
#> 11482 Iran (Islamic Republic of)
#> 11483 Iran (Islamic Republic of)
#> 11484 Iran (Islamic Republic of)
#> 11485 Iran (Islamic Republic of)
#> 11486 Iran (Islamic Republic of)
#> 11487 Iran (Islamic Republic of)
#> 11488 Iran (Islamic Republic of)
#> 11489 Iran (Islamic Republic of)
#> 11490 Iran (Islamic Republic of)
#> 11491 Iran (Islamic Republic of)
#> 11492 Iran (Islamic Republic of)
#> 11493 Iran (Islamic Republic of)
#> 11494 Iran (Islamic Republic of)
#> 11495 Iraq
#> 11496 Iraq
#> 11497 Iraq
#> 11498 Iraq
#> 11499 Iraq
#> 11500 Iraq
#> 11501 Iraq
#> 11502 Iraq
#> 11503 Iraq
#> 11504 Iraq
#> 11505 Iraq
#> 11506 Iraq
#> 11507 Iraq
#> 11508 Iraq
#> 11509 Ireland
#> 11510 Ireland
#> 11511 Ireland
#> 11512 Ireland
#> 11513 Ireland
#> 11514 Ireland
#> 11515 Ireland
#> 11516 Ireland
#> 11517 Ireland
#> 11518 Ireland
#> 11519 Ireland
#> 11520 Ireland
#> 11521 Ireland
#> 11522 Ireland
#> 11523 Israel
#> 11524 Israel
#> 11525 Israel
#> 11526 Israel
#> 11527 Israel
#> 11528 Israel
#> 11529 Israel
#> 11530 Israel
#> 11531 Israel
#> 11532 Israel
#> 11533 Israel
#> 11534 Israel
#> 11535 Israel
#> 11536 Israel
#> 11537 Italy
#> 11538 Italy
#> 11539 Italy
#> 11540 Italy
#> 11541 Italy
#> 11542 Italy
#> 11543 Italy
#> 11544 Italy
#> 11545 Italy
#> 11546 Italy
#> 11547 Italy
#> 11548 Italy
#> 11549 Italy
#> 11550 Italy
#> 11551 Jamaica
#> 11552 Jamaica
#> 11553 Jamaica
#> 11554 Jamaica
#> 11555 Jamaica
#> 11556 Jamaica
#> 11557 Jamaica
#> 11558 Jamaica
#> 11559 Jamaica
#> 11560 Jamaica
#> 11561 Jamaica
#> 11562 Jamaica
#> 11563 Jamaica
#> 11564 Jamaica
#> 11565 Japan
#> 11566 Japan
#> 11567 Japan
#> 11568 Japan
#> 11569 Japan
#> 11570 Japan
#> 11571 Japan
#> 11572 Japan
#> 11573 Japan
#> 11574 Japan
#> 11575 Japan
#> 11576 Japan
#> 11577 Japan
#> 11578 Japan
#> 11579 Jordan
#> 11580 Jordan
#> 11581 Jordan
#> 11582 Jordan
#> 11583 Jordan
#> 11584 Jordan
#> 11585 Jordan
#> 11586 Jordan
#> 11587 Jordan
#> 11588 Jordan
#> 11589 Jordan
#> 11590 Jordan
#> 11591 Jordan
#> 11592 Jordan
#> 11593 Kazakhstan
#> 11594 Kazakhstan
#> 11595 Kazakhstan
#> 11596 Kazakhstan
#> 11597 Kazakhstan
#> 11598 Kazakhstan
#> 11599 Kazakhstan
#> 11600 Kazakhstan
#> 11601 Kazakhstan
#> 11602 Kazakhstan
#> 11603 Kazakhstan
#> 11604 Kazakhstan
#> 11605 Kazakhstan
#> 11606 Kazakhstan
#> 11607 Kenya
#> 11608 Kenya
#> 11609 Kenya
#> 11610 Kenya
#> 11611 Kenya
#> 11612 Kenya
#> 11613 Kenya
#> 11614 Kenya
#> 11615 Kenya
#> 11616 Kenya
#> 11617 Kenya
#> 11618 Kenya
#> 11619 Kenya
#> 11620 Kenya
#> 11621 Kiribati
#> 11622 Kiribati
#> 11623 Kiribati
#> 11624 Kiribati
#> 11625 Kiribati
#> 11626 Kiribati
#> 11627 Kiribati
#> 11628 Kiribati
#> 11629 Kiribati
#> 11630 Kiribati
#> 11631 Kiribati
#> 11632 Kiribati
#> 11633 Kiribati
#> 11634 Kiribati
#> 11635 Kuwait
#> 11636 Kuwait
#> 11637 Kuwait
#> 11638 Kuwait
#> 11639 Kuwait
#> 11640 Kuwait
#> 11641 Kuwait
#> 11642 Kuwait
#> 11643 Kuwait
#> 11644 Kuwait
#> 11645 Kuwait
#> 11646 Kuwait
#> 11647 Kuwait
#> 11648 Kuwait
#> 11649 Kyrgyzstan
#> 11650 Kyrgyzstan
#> 11651 Kyrgyzstan
#> 11652 Kyrgyzstan
#> 11653 Kyrgyzstan
#> 11654 Kyrgyzstan
#> 11655 Kyrgyzstan
#> 11656 Kyrgyzstan
#> 11657 Kyrgyzstan
#> 11658 Kyrgyzstan
#> 11659 Kyrgyzstan
#> 11660 Kyrgyzstan
#> 11661 Kyrgyzstan
#> 11662 Kyrgyzstan
#> 11663 LATIN AMERICA AND THE CARIBBEAN
#> 11664 LATIN AMERICA AND THE CARIBBEAN
#> 11665 LATIN AMERICA AND THE CARIBBEAN
#> 11666 LATIN AMERICA AND THE CARIBBEAN
#> 11667 LATIN AMERICA AND THE CARIBBEAN
#> 11668 LATIN AMERICA AND THE CARIBBEAN
#> 11669 LATIN AMERICA AND THE CARIBBEAN
#> 11670 LATIN AMERICA AND THE CARIBBEAN
#> 11671 LATIN AMERICA AND THE CARIBBEAN
#> 11672 LATIN AMERICA AND THE CARIBBEAN
#> 11673 LATIN AMERICA AND THE CARIBBEAN
#> 11674 LATIN AMERICA AND THE CARIBBEAN
#> 11675 LATIN AMERICA AND THE CARIBBEAN
#> 11676 LATIN AMERICA AND THE CARIBBEAN
#> 11677 Lao People's Democratic Republic
#> 11678 Lao People's Democratic Republic
#> 11679 Lao People's Democratic Republic
#> 11680 Lao People's Democratic Republic
#> 11681 Lao People's Democratic Republic
#> 11682 Lao People's Democratic Republic
#> 11683 Lao People's Democratic Republic
#> 11684 Lao People's Democratic Republic
#> 11685 Lao People's Democratic Republic
#> 11686 Lao People's Democratic Republic
#> 11687 Lao People's Democratic Republic
#> 11688 Lao People's Democratic Republic
#> 11689 Lao People's Democratic Republic
#> 11690 Lao People's Democratic Republic
#> 11691 Latvia
#> 11692 Latvia
#> 11693 Latvia
#> 11694 Latvia
#> 11695 Latvia
#> 11696 Latvia
#> 11697 Latvia
#> 11698 Latvia
#> 11699 Latvia
#> 11700 Latvia
#> 11701 Latvia
#> 11702 Latvia
#> 11703 Latvia
#> 11704 Latvia
#> 11705 Least developed countries
#> 11706 Least developed countries
#> 11707 Least developed countries
#> 11708 Least developed countries
#> 11709 Least developed countries
#> 11710 Least developed countries
#> 11711 Least developed countries
#> 11712 Least developed countries
#> 11713 Least developed countries
#> 11714 Least developed countries
#> 11715 Least developed countries
#> 11716 Least developed countries
#> 11717 Least developed countries
#> 11718 Least developed countries
#> 11719 Lebanon
#> 11720 Lebanon
#> 11721 Lebanon
#> 11722 Lebanon
#> 11723 Lebanon
#> 11724 Lebanon
#> 11725 Lebanon
#> 11726 Lebanon
#> 11727 Lebanon
#> 11728 Lebanon
#> 11729 Lebanon
#> 11730 Lebanon
#> 11731 Lebanon
#> 11732 Lebanon
#> 11733 Lesotho
#> 11734 Lesotho
#> 11735 Lesotho
#> 11736 Lesotho
#> 11737 Lesotho
#> 11738 Lesotho
#> 11739 Lesotho
#> 11740 Lesotho
#> 11741 Lesotho
#> 11742 Lesotho
#> 11743 Lesotho
#> 11744 Lesotho
#> 11745 Lesotho
#> 11746 Lesotho
#> 11747 Less developed regions
#> 11748 Less developed regions
#> 11749 Less developed regions
#> 11750 Less developed regions
#> 11751 Less developed regions
#> 11752 Less developed regions
#> 11753 Less developed regions
#> 11754 Less developed regions
#> 11755 Less developed regions
#> 11756 Less developed regions
#> 11757 Less developed regions
#> 11758 Less developed regions
#> 11759 Less developed regions
#> 11760 Less developed regions
#> 11761 Less developed regions, excluding China
#> 11762 Less developed regions, excluding China
#> 11763 Less developed regions, excluding China
#> 11764 Less developed regions, excluding China
#> 11765 Less developed regions, excluding China
#> 11766 Less developed regions, excluding China
#> 11767 Less developed regions, excluding China
#> 11768 Less developed regions, excluding China
#> 11769 Less developed regions, excluding China
#> 11770 Less developed regions, excluding China
#> 11771 Less developed regions, excluding China
#> 11772 Less developed regions, excluding China
#> 11773 Less developed regions, excluding China
#> 11774 Less developed regions, excluding China
#> 11775 Less developed regions, excluding least developed countries
#> 11776 Less developed regions, excluding least developed countries
#> 11777 Less developed regions, excluding least developed countries
#> 11778 Less developed regions, excluding least developed countries
#> 11779 Less developed regions, excluding least developed countries
#> 11780 Less developed regions, excluding least developed countries
#> 11781 Less developed regions, excluding least developed countries
#> 11782 Less developed regions, excluding least developed countries
#> 11783 Less developed regions, excluding least developed countries
#> 11784 Less developed regions, excluding least developed countries
#> 11785 Less developed regions, excluding least developed countries
#> 11786 Less developed regions, excluding least developed countries
#> 11787 Less developed regions, excluding least developed countries
#> 11788 Less developed regions, excluding least developed countries
#> 11789 Liberia
#> 11790 Liberia
#> 11791 Liberia
#> 11792 Liberia
#> 11793 Liberia
#> 11794 Liberia
#> 11795 Liberia
#> 11796 Liberia
#> 11797 Liberia
#> 11798 Liberia
#> 11799 Liberia
#> 11800 Liberia
#> 11801 Liberia
#> 11802 Liberia
#> 11803 Libya
#> 11804 Libya
#> 11805 Libya
#> 11806 Libya
#> 11807 Libya
#> 11808 Libya
#> 11809 Libya
#> 11810 Libya
#> 11811 Libya
#> 11812 Libya
#> 11813 Libya
#> 11814 Libya
#> 11815 Libya
#> 11816 Libya
#> 11817 Lithuania
#> 11818 Lithuania
#> 11819 Lithuania
#> 11820 Lithuania
#> 11821 Lithuania
#> 11822 Lithuania
#> 11823 Lithuania
#> 11824 Lithuania
#> 11825 Lithuania
#> 11826 Lithuania
#> 11827 Lithuania
#> 11828 Lithuania
#> 11829 Lithuania
#> 11830 Lithuania
#> 11831 Low-income countries
#> 11832 Low-income countries
#> 11833 Low-income countries
#> 11834 Low-income countries
#> 11835 Low-income countries
#> 11836 Low-income countries
#> 11837 Low-income countries
#> 11838 Low-income countries
#> 11839 Low-income countries
#> 11840 Low-income countries
#> 11841 Low-income countries
#> 11842 Low-income countries
#> 11843 Low-income countries
#> 11844 Low-income countries
#> 11845 Lower-middle-income countries
#> 11846 Lower-middle-income countries
#> 11847 Lower-middle-income countries
#> 11848 Lower-middle-income countries
#> 11849 Lower-middle-income countries
#> 11850 Lower-middle-income countries
#> 11851 Lower-middle-income countries
#> 11852 Lower-middle-income countries
#> 11853 Lower-middle-income countries
#> 11854 Lower-middle-income countries
#> 11855 Lower-middle-income countries
#> 11856 Lower-middle-income countries
#> 11857 Lower-middle-income countries
#> 11858 Lower-middle-income countries
#> 11859 Luxembourg
#> 11860 Luxembourg
#> 11861 Luxembourg
#> 11862 Luxembourg
#> 11863 Luxembourg
#> 11864 Luxembourg
#> 11865 Luxembourg
#> 11866 Luxembourg
#> 11867 Luxembourg
#> 11868 Luxembourg
#> 11869 Luxembourg
#> 11870 Luxembourg
#> 11871 Luxembourg
#> 11872 Luxembourg
#> 11873 Madagascar
#> 11874 Madagascar
#> 11875 Madagascar
#> 11876 Madagascar
#> 11877 Madagascar
#> 11878 Madagascar
#> 11879 Madagascar
#> 11880 Madagascar
#> 11881 Madagascar
#> 11882 Madagascar
#> 11883 Madagascar
#> 11884 Madagascar
#> 11885 Madagascar
#> 11886 Madagascar
#> 11887 Malawi
#> 11888 Malawi
#> 11889 Malawi
#> 11890 Malawi
#> 11891 Malawi
#> 11892 Malawi
#> 11893 Malawi
#> 11894 Malawi
#> 11895 Malawi
#> 11896 Malawi
#> 11897 Malawi
#> 11898 Malawi
#> 11899 Malawi
#> 11900 Malawi
#> 11901 Malaysia
#> 11902 Malaysia
#> 11903 Malaysia
#> 11904 Malaysia
#> 11905 Malaysia
#> 11906 Malaysia
#> 11907 Malaysia
#> 11908 Malaysia
#> 11909 Malaysia
#> 11910 Malaysia
#> 11911 Malaysia
#> 11912 Malaysia
#> 11913 Malaysia
#> 11914 Malaysia
#> 11915 Maldives
#> 11916 Maldives
#> 11917 Maldives
#> 11918 Maldives
#> 11919 Maldives
#> 11920 Maldives
#> 11921 Maldives
#> 11922 Maldives
#> 11923 Maldives
#> 11924 Maldives
#> 11925 Maldives
#> 11926 Maldives
#> 11927 Maldives
#> 11928 Maldives
#> 11929 Mali
#> 11930 Mali
#> 11931 Mali
#> 11932 Mali
#> 11933 Mali
#> 11934 Mali
#> 11935 Mali
#> 11936 Mali
#> 11937 Mali
#> 11938 Mali
#> 11939 Mali
#> 11940 Mali
#> 11941 Mali
#> 11942 Mali
#> 11943 Malta
#> 11944 Malta
#> 11945 Malta
#> 11946 Malta
#> 11947 Malta
#> 11948 Malta
#> 11949 Malta
#> 11950 Malta
#> 11951 Malta
#> 11952 Malta
#> 11953 Malta
#> 11954 Malta
#> 11955 Malta
#> 11956 Malta
#> 11957 Martinique
#> 11958 Martinique
#> 11959 Martinique
#> 11960 Martinique
#> 11961 Martinique
#> 11962 Martinique
#> 11963 Martinique
#> 11964 Martinique
#> 11965 Martinique
#> 11966 Martinique
#> 11967 Martinique
#> 11968 Martinique
#> 11969 Martinique
#> 11970 Martinique
#> 11971 Mauritania
#> 11972 Mauritania
#> 11973 Mauritania
#> 11974 Mauritania
#> 11975 Mauritania
#> 11976 Mauritania
#> 11977 Mauritania
#> 11978 Mauritania
#> 11979 Mauritania
#> 11980 Mauritania
#> 11981 Mauritania
#> 11982 Mauritania
#> 11983 Mauritania
#> 11984 Mauritania
#> 11985 Mauritius
#> 11986 Mauritius
#> 11987 Mauritius
#> 11988 Mauritius
#> 11989 Mauritius
#> 11990 Mauritius
#> 11991 Mauritius
#> 11992 Mauritius
#> 11993 Mauritius
#> 11994 Mauritius
#> 11995 Mauritius
#> 11996 Mauritius
#> 11997 Mauritius
#> 11998 Mauritius
#> 11999 Mayotte
#> 12000 Mayotte
#> 12001 Mayotte
#> 12002 Mayotte
#> 12003 Mayotte
#> 12004 Mayotte
#> 12005 Mayotte
#> 12006 Mayotte
#> 12007 Mayotte
#> 12008 Mayotte
#> 12009 Mayotte
#> 12010 Mayotte
#> 12011 Mayotte
#> 12012 Mayotte
#> 12013 Melanesia
#> 12014 Melanesia
#> 12015 Melanesia
#> 12016 Melanesia
#> 12017 Melanesia
#> 12018 Melanesia
#> 12019 Melanesia
#> 12020 Melanesia
#> 12021 Melanesia
#> 12022 Melanesia
#> 12023 Melanesia
#> 12024 Melanesia
#> 12025 Melanesia
#> 12026 Melanesia
#> 12027 Mexico
#> 12028 Mexico
#> 12029 Mexico
#> 12030 Mexico
#> 12031 Mexico
#> 12032 Mexico
#> 12033 Mexico
#> 12034 Mexico
#> 12035 Mexico
#> 12036 Mexico
#> 12037 Mexico
#> 12038 Mexico
#> 12039 Mexico
#> 12040 Mexico
#> 12041 Micronesia
#> 12042 Micronesia
#> 12043 Micronesia
#> 12044 Micronesia
#> 12045 Micronesia
#> 12046 Micronesia
#> 12047 Micronesia
#> 12048 Micronesia
#> 12049 Micronesia
#> 12050 Micronesia
#> 12051 Micronesia
#> 12052 Micronesia
#> 12053 Micronesia
#> 12054 Micronesia
#> 12055 Micronesia (Fed. States of)
#> 12056 Micronesia (Fed. States of)
#> 12057 Micronesia (Fed. States of)
#> 12058 Micronesia (Fed. States of)
#> 12059 Micronesia (Fed. States of)
#> 12060 Micronesia (Fed. States of)
#> 12061 Micronesia (Fed. States of)
#> 12062 Micronesia (Fed. States of)
#> 12063 Micronesia (Fed. States of)
#> 12064 Micronesia (Fed. States of)
#> 12065 Micronesia (Fed. States of)
#> 12066 Micronesia (Fed. States of)
#> 12067 Micronesia (Fed. States of)
#> 12068 Micronesia (Fed. States of)
#> 12069 Middle Africa
#> 12070 Middle Africa
#> 12071 Middle Africa
#> 12072 Middle Africa
#> 12073 Middle Africa
#> 12074 Middle Africa
#> 12075 Middle Africa
#> 12076 Middle Africa
#> 12077 Middle Africa
#> 12078 Middle Africa
#> 12079 Middle Africa
#> 12080 Middle Africa
#> 12081 Middle Africa
#> 12082 Middle Africa
#> 12083 Middle-income countries
#> 12084 Middle-income countries
#> 12085 Middle-income countries
#> 12086 Middle-income countries
#> 12087 Middle-income countries
#> 12088 Middle-income countries
#> 12089 Middle-income countries
#> 12090 Middle-income countries
#> 12091 Middle-income countries
#> 12092 Middle-income countries
#> 12093 Middle-income countries
#> 12094 Middle-income countries
#> 12095 Middle-income countries
#> 12096 Middle-income countries
#> 12097 Mongolia
#> 12098 Mongolia
#> 12099 Mongolia
#> 12100 Mongolia
#> 12101 Mongolia
#> 12102 Mongolia
#> 12103 Mongolia
#> 12104 Mongolia
#> 12105 Mongolia
#> 12106 Mongolia
#> 12107 Mongolia
#> 12108 Mongolia
#> 12109 Mongolia
#> 12110 Mongolia
#> 12111 Montenegro
#> 12112 Montenegro
#> 12113 Montenegro
#> 12114 Montenegro
#> 12115 Montenegro
#> 12116 Montenegro
#> 12117 Montenegro
#> 12118 Montenegro
#> 12119 Montenegro
#> 12120 Montenegro
#> 12121 Montenegro
#> 12122 Montenegro
#> 12123 Montenegro
#> 12124 Montenegro
#> 12125 More developed regions
#> 12126 More developed regions
#> 12127 More developed regions
#> 12128 More developed regions
#> 12129 More developed regions
#> 12130 More developed regions
#> 12131 More developed regions
#> 12132 More developed regions
#> 12133 More developed regions
#> 12134 More developed regions
#> 12135 More developed regions
#> 12136 More developed regions
#> 12137 More developed regions
#> 12138 More developed regions
#> 12139 Morocco
#> 12140 Morocco
#> 12141 Morocco
#> 12142 Morocco
#> 12143 Morocco
#> 12144 Morocco
#> 12145 Morocco
#> 12146 Morocco
#> 12147 Morocco
#> 12148 Morocco
#> 12149 Morocco
#> 12150 Morocco
#> 12151 Morocco
#> 12152 Morocco
#> 12153 Mozambique
#> 12154 Mozambique
#> 12155 Mozambique
#> 12156 Mozambique
#> 12157 Mozambique
#> 12158 Mozambique
#> 12159 Mozambique
#> 12160 Mozambique
#> 12161 Mozambique
#> 12162 Mozambique
#> 12163 Mozambique
#> 12164 Mozambique
#> 12165 Mozambique
#> 12166 Mozambique
#> 12167 Myanmar
#> 12168 Myanmar
#> 12169 Myanmar
#> 12170 Myanmar
#> 12171 Myanmar
#> 12172 Myanmar
#> 12173 Myanmar
#> 12174 Myanmar
#> 12175 Myanmar
#> 12176 Myanmar
#> 12177 Myanmar
#> 12178 Myanmar
#> 12179 Myanmar
#> 12180 Myanmar
#> 12181 NORTHERN AMERICA
#> 12182 NORTHERN AMERICA
#> 12183 NORTHERN AMERICA
#> 12184 NORTHERN AMERICA
#> 12185 NORTHERN AMERICA
#> 12186 NORTHERN AMERICA
#> 12187 NORTHERN AMERICA
#> 12188 NORTHERN AMERICA
#> 12189 NORTHERN AMERICA
#> 12190 NORTHERN AMERICA
#> 12191 NORTHERN AMERICA
#> 12192 NORTHERN AMERICA
#> 12193 NORTHERN AMERICA
#> 12194 NORTHERN AMERICA
#> 12195 Namibia
#> 12196 Namibia
#> 12197 Namibia
#> 12198 Namibia
#> 12199 Namibia
#> 12200 Namibia
#> 12201 Namibia
#> 12202 Namibia
#> 12203 Namibia
#> 12204 Namibia
#> 12205 Namibia
#> 12206 Namibia
#> 12207 Namibia
#> 12208 Namibia
#> 12209 Nepal
#> 12210 Nepal
#> 12211 Nepal
#> 12212 Nepal
#> 12213 Nepal
#> 12214 Nepal
#> 12215 Nepal
#> 12216 Nepal
#> 12217 Nepal
#> 12218 Nepal
#> 12219 Nepal
#> 12220 Nepal
#> 12221 Nepal
#> 12222 Nepal
#> 12223 Netherlands
#> 12224 Netherlands
#> 12225 Netherlands
#> 12226 Netherlands
#> 12227 Netherlands
#> 12228 Netherlands
#> 12229 Netherlands
#> 12230 Netherlands
#> 12231 Netherlands
#> 12232 Netherlands
#> 12233 Netherlands
#> 12234 Netherlands
#> 12235 Netherlands
#> 12236 Netherlands
#> 12237 New Caledonia
#> 12238 New Caledonia
#> 12239 New Caledonia
#> 12240 New Caledonia
#> 12241 New Caledonia
#> 12242 New Caledonia
#> 12243 New Caledonia
#> 12244 New Caledonia
#> 12245 New Caledonia
#> 12246 New Caledonia
#> 12247 New Caledonia
#> 12248 New Caledonia
#> 12249 New Caledonia
#> 12250 New Caledonia
#> 12251 New Zealand
#> 12252 New Zealand
#> 12253 New Zealand
#> 12254 New Zealand
#> 12255 New Zealand
#> 12256 New Zealand
#> 12257 New Zealand
#> 12258 New Zealand
#> 12259 New Zealand
#> 12260 New Zealand
#> 12261 New Zealand
#> 12262 New Zealand
#> 12263 New Zealand
#> 12264 New Zealand
#> 12265 Nicaragua
#> 12266 Nicaragua
#> 12267 Nicaragua
#> 12268 Nicaragua
#> 12269 Nicaragua
#> 12270 Nicaragua
#> 12271 Nicaragua
#> 12272 Nicaragua
#> 12273 Nicaragua
#> 12274 Nicaragua
#> 12275 Nicaragua
#> 12276 Nicaragua
#> 12277 Nicaragua
#> 12278 Nicaragua
#> 12279 Niger
#> 12280 Niger
#> 12281 Niger
#> 12282 Niger
#> 12283 Niger
#> 12284 Niger
#> 12285 Niger
#> 12286 Niger
#> 12287 Niger
#> 12288 Niger
#> 12289 Niger
#> 12290 Niger
#> 12291 Niger
#> 12292 Niger
#> 12293 Nigeria
#> 12294 Nigeria
#> 12295 Nigeria
#> 12296 Nigeria
#> 12297 Nigeria
#> 12298 Nigeria
#> 12299 Nigeria
#> 12300 Nigeria
#> 12301 Nigeria
#> 12302 Nigeria
#> 12303 Nigeria
#> 12304 Nigeria
#> 12305 Nigeria
#> 12306 Nigeria
#> 12307 Northern Africa
#> 12308 Northern Africa
#> 12309 Northern Africa
#> 12310 Northern Africa
#> 12311 Northern Africa
#> 12312 Northern Africa
#> 12313 Northern Africa
#> 12314 Northern Africa
#> 12315 Northern Africa
#> 12316 Northern Africa
#> 12317 Northern Africa
#> 12318 Northern Africa
#> 12319 Northern Africa
#> 12320 Northern Africa
#> 12321 Northern Europe
#> 12322 Northern Europe
#> 12323 Northern Europe
#> 12324 Northern Europe
#> 12325 Northern Europe
#> 12326 Northern Europe
#> 12327 Northern Europe
#> 12328 Northern Europe
#> 12329 Northern Europe
#> 12330 Northern Europe
#> 12331 Northern Europe
#> 12332 Northern Europe
#> 12333 Northern Europe
#> 12334 Northern Europe
#> 12335 Norway
#> 12336 Norway
#> 12337 Norway
#> 12338 Norway
#> 12339 Norway
#> 12340 Norway
#> 12341 Norway
#> 12342 Norway
#> 12343 Norway
#> 12344 Norway
#> 12345 Norway
#> 12346 Norway
#> 12347 Norway
#> 12348 Norway
#> 12349 OCEANIA
#> 12350 OCEANIA
#> 12351 OCEANIA
#> 12352 OCEANIA
#> 12353 OCEANIA
#> 12354 OCEANIA
#> 12355 OCEANIA
#> 12356 OCEANIA
#> 12357 OCEANIA
#> 12358 OCEANIA
#> 12359 OCEANIA
#> 12360 OCEANIA
#> 12361 OCEANIA
#> 12362 OCEANIA
#> 12363 Oman
#> 12364 Oman
#> 12365 Oman
#> 12366 Oman
#> 12367 Oman
#> 12368 Oman
#> 12369 Oman
#> 12370 Oman
#> 12371 Oman
#> 12372 Oman
#> 12373 Oman
#> 12374 Oman
#> 12375 Oman
#> 12376 Oman
#> 12377 Pakistan
#> 12378 Pakistan
#> 12379 Pakistan
#> 12380 Pakistan
#> 12381 Pakistan
#> 12382 Pakistan
#> 12383 Pakistan
#> 12384 Pakistan
#> 12385 Pakistan
#> 12386 Pakistan
#> 12387 Pakistan
#> 12388 Pakistan
#> 12389 Pakistan
#> 12390 Pakistan
#> 12391 Panama
#> 12392 Panama
#> 12393 Panama
#> 12394 Panama
#> 12395 Panama
#> 12396 Panama
#> 12397 Panama
#> 12398 Panama
#> 12399 Panama
#> 12400 Panama
#> 12401 Panama
#> 12402 Panama
#> 12403 Panama
#> 12404 Panama
#> 12405 Papua New Guinea
#> 12406 Papua New Guinea
#> 12407 Papua New Guinea
#> 12408 Papua New Guinea
#> 12409 Papua New Guinea
#> 12410 Papua New Guinea
#> 12411 Papua New Guinea
#> 12412 Papua New Guinea
#> 12413 Papua New Guinea
#> 12414 Papua New Guinea
#> 12415 Papua New Guinea
#> 12416 Papua New Guinea
#> 12417 Papua New Guinea
#> 12418 Papua New Guinea
#> 12419 Paraguay
#> 12420 Paraguay
#> 12421 Paraguay
#> 12422 Paraguay
#> 12423 Paraguay
#> 12424 Paraguay
#> 12425 Paraguay
#> 12426 Paraguay
#> 12427 Paraguay
#> 12428 Paraguay
#> 12429 Paraguay
#> 12430 Paraguay
#> 12431 Paraguay
#> 12432 Paraguay
#> 12433 Peru
#> 12434 Peru
#> 12435 Peru
#> 12436 Peru
#> 12437 Peru
#> 12438 Peru
#> 12439 Peru
#> 12440 Peru
#> 12441 Peru
#> 12442 Peru
#> 12443 Peru
#> 12444 Peru
#> 12445 Peru
#> 12446 Peru
#> 12447 Philippines
#> 12448 Philippines
#> 12449 Philippines
#> 12450 Philippines
#> 12451 Philippines
#> 12452 Philippines
#> 12453 Philippines
#> 12454 Philippines
#> 12455 Philippines
#> 12456 Philippines
#> 12457 Philippines
#> 12458 Philippines
#> 12459 Philippines
#> 12460 Philippines
#> 12461 Poland
#> 12462 Poland
#> 12463 Poland
#> 12464 Poland
#> 12465 Poland
#> 12466 Poland
#> 12467 Poland
#> 12468 Poland
#> 12469 Poland
#> 12470 Poland
#> 12471 Poland
#> 12472 Poland
#> 12473 Poland
#> 12474 Poland
#> 12475 Polynesia
#> 12476 Polynesia
#> 12477 Polynesia
#> 12478 Polynesia
#> 12479 Polynesia
#> 12480 Polynesia
#> 12481 Polynesia
#> 12482 Polynesia
#> 12483 Polynesia
#> 12484 Polynesia
#> 12485 Polynesia
#> 12486 Polynesia
#> 12487 Polynesia
#> 12488 Polynesia
#> 12489 Portugal
#> 12490 Portugal
#> 12491 Portugal
#> 12492 Portugal
#> 12493 Portugal
#> 12494 Portugal
#> 12495 Portugal
#> 12496 Portugal
#> 12497 Portugal
#> 12498 Portugal
#> 12499 Portugal
#> 12500 Portugal
#> 12501 Portugal
#> 12502 Portugal
#> 12503 Puerto Rico
#> 12504 Puerto Rico
#> 12505 Puerto Rico
#> 12506 Puerto Rico
#> 12507 Puerto Rico
#> 12508 Puerto Rico
#> 12509 Puerto Rico
#> 12510 Puerto Rico
#> 12511 Puerto Rico
#> 12512 Puerto Rico
#> 12513 Puerto Rico
#> 12514 Puerto Rico
#> 12515 Puerto Rico
#> 12516 Puerto Rico
#> 12517 Qatar
#> 12518 Qatar
#> 12519 Qatar
#> 12520 Qatar
#> 12521 Qatar
#> 12522 Qatar
#> 12523 Qatar
#> 12524 Qatar
#> 12525 Qatar
#> 12526 Qatar
#> 12527 Qatar
#> 12528 Qatar
#> 12529 Qatar
#> 12530 Qatar
#> 12531 Republic of Korea
#> 12532 Republic of Korea
#> 12533 Republic of Korea
#> 12534 Republic of Korea
#> 12535 Republic of Korea
#> 12536 Republic of Korea
#> 12537 Republic of Korea
#> 12538 Republic of Korea
#> 12539 Republic of Korea
#> 12540 Republic of Korea
#> 12541 Republic of Korea
#> 12542 Republic of Korea
#> 12543 Republic of Korea
#> 12544 Republic of Korea
#> 12545 Republic of Moldova
#> 12546 Republic of Moldova
#> 12547 Republic of Moldova
#> 12548 Republic of Moldova
#> 12549 Republic of Moldova
#> 12550 Republic of Moldova
#> 12551 Republic of Moldova
#> 12552 Republic of Moldova
#> 12553 Republic of Moldova
#> 12554 Republic of Moldova
#> 12555 Republic of Moldova
#> 12556 Republic of Moldova
#> 12557 Republic of Moldova
#> 12558 Republic of Moldova
#> 12559 Reunion
#> 12560 Reunion
#> 12561 Reunion
#> 12562 Reunion
#> 12563 Reunion
#> 12564 Reunion
#> 12565 Reunion
#> 12566 Reunion
#> 12567 Reunion
#> 12568 Reunion
#> 12569 Reunion
#> 12570 Reunion
#> 12571 Reunion
#> 12572 Reunion
#> 12573 Romania
#> 12574 Romania
#> 12575 Romania
#> 12576 Romania
#> 12577 Romania
#> 12578 Romania
#> 12579 Romania
#> 12580 Romania
#> 12581 Romania
#> 12582 Romania
#> 12583 Romania
#> 12584 Romania
#> 12585 Romania
#> 12586 Romania
#> 12587 Russian Federation
#> 12588 Russian Federation
#> 12589 Russian Federation
#> 12590 Russian Federation
#> 12591 Russian Federation
#> 12592 Russian Federation
#> 12593 Russian Federation
#> 12594 Russian Federation
#> 12595 Russian Federation
#> 12596 Russian Federation
#> 12597 Russian Federation
#> 12598 Russian Federation
#> 12599 Russian Federation
#> 12600 Russian Federation
#> 12601 Rwanda
#> 12602 Rwanda
#> 12603 Rwanda
#> 12604 Rwanda
#> 12605 Rwanda
#> 12606 Rwanda
#> 12607 Rwanda
#> 12608 Rwanda
#> 12609 Rwanda
#> 12610 Rwanda
#> 12611 Rwanda
#> 12612 Rwanda
#> 12613 Rwanda
#> 12614 Rwanda
#> 12615 Saint Lucia
#> 12616 Saint Lucia
#> 12617 Saint Lucia
#> 12618 Saint Lucia
#> 12619 Saint Lucia
#> 12620 Saint Lucia
#> 12621 Saint Lucia
#> 12622 Saint Lucia
#> 12623 Saint Lucia
#> 12624 Saint Lucia
#> 12625 Saint Lucia
#> 12626 Saint Lucia
#> 12627 Saint Lucia
#> 12628 Saint Lucia
#> 12629 Saint Vincent and the Grenadines
#> 12630 Saint Vincent and the Grenadines
#> 12631 Saint Vincent and the Grenadines
#> 12632 Saint Vincent and the Grenadines
#> 12633 Saint Vincent and the Grenadines
#> 12634 Saint Vincent and the Grenadines
#> 12635 Saint Vincent and the Grenadines
#> 12636 Saint Vincent and the Grenadines
#> 12637 Saint Vincent and the Grenadines
#> 12638 Saint Vincent and the Grenadines
#> 12639 Saint Vincent and the Grenadines
#> 12640 Saint Vincent and the Grenadines
#> 12641 Saint Vincent and the Grenadines
#> 12642 Saint Vincent and the Grenadines
#> 12643 Samoa
#> 12644 Samoa
#> 12645 Samoa
#> 12646 Samoa
#> 12647 Samoa
#> 12648 Samoa
#> 12649 Samoa
#> 12650 Samoa
#> 12651 Samoa
#> 12652 Samoa
#> 12653 Samoa
#> 12654 Samoa
#> 12655 Samoa
#> 12656 Samoa
#> 12657 Sao Tome and Principe
#> 12658 Sao Tome and Principe
#> 12659 Sao Tome and Principe
#> 12660 Sao Tome and Principe
#> 12661 Sao Tome and Principe
#> 12662 Sao Tome and Principe
#> 12663 Sao Tome and Principe
#> 12664 Sao Tome and Principe
#> 12665 Sao Tome and Principe
#> 12666 Sao Tome and Principe
#> 12667 Sao Tome and Principe
#> 12668 Sao Tome and Principe
#> 12669 Sao Tome and Principe
#> 12670 Sao Tome and Principe
#> 12671 Saudi Arabia
#> 12672 Saudi Arabia
#> 12673 Saudi Arabia
#> 12674 Saudi Arabia
#> 12675 Saudi Arabia
#> 12676 Saudi Arabia
#> 12677 Saudi Arabia
#> 12678 Saudi Arabia
#> 12679 Saudi Arabia
#> 12680 Saudi Arabia
#> 12681 Saudi Arabia
#> 12682 Saudi Arabia
#> 12683 Saudi Arabia
#> 12684 Saudi Arabia
#> 12685 Senegal
#> 12686 Senegal
#> 12687 Senegal
#> 12688 Senegal
#> 12689 Senegal
#> 12690 Senegal
#> 12691 Senegal
#> 12692 Senegal
#> 12693 Senegal
#> 12694 Senegal
#> 12695 Senegal
#> 12696 Senegal
#> 12697 Senegal
#> 12698 Senegal
#> 12699 Serbia
#> 12700 Serbia
#> 12701 Serbia
#> 12702 Serbia
#> 12703 Serbia
#> 12704 Serbia
#> 12705 Serbia
#> 12706 Serbia
#> 12707 Serbia
#> 12708 Serbia
#> 12709 Serbia
#> 12710 Serbia
#> 12711 Serbia
#> 12712 Serbia
#> 12713 Seychelles
#> 12714 Seychelles
#> 12715 Seychelles
#> 12716 Seychelles
#> 12717 Seychelles
#> 12718 Seychelles
#> 12719 Seychelles
#> 12720 Seychelles
#> 12721 Seychelles
#> 12722 Seychelles
#> 12723 Seychelles
#> 12724 Seychelles
#> 12725 Seychelles
#> 12726 Seychelles
#> 12727 Sierra Leone
#> 12728 Sierra Leone
#> 12729 Sierra Leone
#> 12730 Sierra Leone
#> 12731 Sierra Leone
#> 12732 Sierra Leone
#> 12733 Sierra Leone
#> 12734 Sierra Leone
#> 12735 Sierra Leone
#> 12736 Sierra Leone
#> 12737 Sierra Leone
#> 12738 Sierra Leone
#> 12739 Sierra Leone
#> 12740 Sierra Leone
#> 12741 Singapore
#> 12742 Singapore
#> 12743 Singapore
#> 12744 Singapore
#> 12745 Singapore
#> 12746 Singapore
#> 12747 Singapore
#> 12748 Singapore
#> 12749 Singapore
#> 12750 Singapore
#> 12751 Singapore
#> 12752 Singapore
#> 12753 Singapore
#> 12754 Singapore
#> 12755 Slovakia
#> 12756 Slovakia
#> 12757 Slovakia
#> 12758 Slovakia
#> 12759 Slovakia
#> 12760 Slovakia
#> 12761 Slovakia
#> 12762 Slovakia
#> 12763 Slovakia
#> 12764 Slovakia
#> 12765 Slovakia
#> 12766 Slovakia
#> 12767 Slovakia
#> 12768 Slovakia
#> 12769 Slovenia
#> 12770 Slovenia
#> 12771 Slovenia
#> 12772 Slovenia
#> 12773 Slovenia
#> 12774 Slovenia
#> 12775 Slovenia
#> 12776 Slovenia
#> 12777 Slovenia
#> 12778 Slovenia
#> 12779 Slovenia
#> 12780 Slovenia
#> 12781 Slovenia
#> 12782 Slovenia
#> 12783 Solomon Islands
#> 12784 Solomon Islands
#> 12785 Solomon Islands
#> 12786 Solomon Islands
#> 12787 Solomon Islands
#> 12788 Solomon Islands
#> 12789 Solomon Islands
#> 12790 Solomon Islands
#> 12791 Solomon Islands
#> 12792 Solomon Islands
#> 12793 Solomon Islands
#> 12794 Solomon Islands
#> 12795 Solomon Islands
#> 12796 Solomon Islands
#> 12797 Somalia
#> 12798 Somalia
#> 12799 Somalia
#> 12800 Somalia
#> 12801 Somalia
#> 12802 Somalia
#> 12803 Somalia
#> 12804 Somalia
#> 12805 Somalia
#> 12806 Somalia
#> 12807 Somalia
#> 12808 Somalia
#> 12809 Somalia
#> 12810 Somalia
#> 12811 South Africa
#> 12812 South Africa
#> 12813 South Africa
#> 12814 South Africa
#> 12815 South Africa
#> 12816 South Africa
#> 12817 South Africa
#> 12818 South Africa
#> 12819 South Africa
#> 12820 South Africa
#> 12821 South Africa
#> 12822 South Africa
#> 12823 South Africa
#> 12824 South Africa
#> 12825 South America
#> 12826 South America
#> 12827 South America
#> 12828 South America
#> 12829 South America
#> 12830 South America
#> 12831 South America
#> 12832 South America
#> 12833 South America
#> 12834 South America
#> 12835 South America
#> 12836 South America
#> 12837 South America
#> 12838 South America
#> 12839 South Sudan
#> 12840 South Sudan
#> 12841 South Sudan
#> 12842 South Sudan
#> 12843 South Sudan
#> 12844 South Sudan
#> 12845 South Sudan
#> 12846 South Sudan
#> 12847 South Sudan
#> 12848 South Sudan
#> 12849 South Sudan
#> 12850 South Sudan
#> 12851 South Sudan
#> 12852 South Sudan
#> 12853 South-Central Asia
#> 12854 South-Central Asia
#> 12855 South-Central Asia
#> 12856 South-Central Asia
#> 12857 South-Central Asia
#> 12858 South-Central Asia
#> 12859 South-Central Asia
#> 12860 South-Central Asia
#> 12861 South-Central Asia
#> 12862 South-Central Asia
#> 12863 South-Central Asia
#> 12864 South-Central Asia
#> 12865 South-Central Asia
#> 12866 South-Central Asia
#> 12867 South-Eastern Asia
#> 12868 South-Eastern Asia
#> 12869 South-Eastern Asia
#> 12870 South-Eastern Asia
#> 12871 South-Eastern Asia
#> 12872 South-Eastern Asia
#> 12873 South-Eastern Asia
#> 12874 South-Eastern Asia
#> 12875 South-Eastern Asia
#> 12876 South-Eastern Asia
#> 12877 South-Eastern Asia
#> 12878 South-Eastern Asia
#> 12879 South-Eastern Asia
#> 12880 South-Eastern Asia
#> 12881 Southern Africa
#> 12882 Southern Africa
#> 12883 Southern Africa
#> 12884 Southern Africa
#> 12885 Southern Africa
#> 12886 Southern Africa
#> 12887 Southern Africa
#> 12888 Southern Africa
#> 12889 Southern Africa
#> 12890 Southern Africa
#> 12891 Southern Africa
#> 12892 Southern Africa
#> 12893 Southern Africa
#> 12894 Southern Africa
#> 12895 Southern Asia
#> 12896 Southern Asia
#> 12897 Southern Asia
#> 12898 Southern Asia
#> 12899 Southern Asia
#> 12900 Southern Asia
#> 12901 Southern Asia
#> 12902 Southern Asia
#> 12903 Southern Asia
#> 12904 Southern Asia
#> 12905 Southern Asia
#> 12906 Southern Asia
#> 12907 Southern Asia
#> 12908 Southern Asia
#> 12909 Southern Europe
#> 12910 Southern Europe
#> 12911 Southern Europe
#> 12912 Southern Europe
#> 12913 Southern Europe
#> 12914 Southern Europe
#> 12915 Southern Europe
#> 12916 Southern Europe
#> 12917 Southern Europe
#> 12918 Southern Europe
#> 12919 Southern Europe
#> 12920 Southern Europe
#> 12921 Southern Europe
#> 12922 Southern Europe
#> 12923 Spain
#> 12924 Spain
#> 12925 Spain
#> 12926 Spain
#> 12927 Spain
#> 12928 Spain
#> 12929 Spain
#> 12930 Spain
#> 12931 Spain
#> 12932 Spain
#> 12933 Spain
#> 12934 Spain
#> 12935 Spain
#> 12936 Spain
#> 12937 Sri Lanka
#> 12938 Sri Lanka
#> 12939 Sri Lanka
#> 12940 Sri Lanka
#> 12941 Sri Lanka
#> 12942 Sri Lanka
#> 12943 Sri Lanka
#> 12944 Sri Lanka
#> 12945 Sri Lanka
#> 12946 Sri Lanka
#> 12947 Sri Lanka
#> 12948 Sri Lanka
#> 12949 Sri Lanka
#> 12950 Sri Lanka
#> 12951 State of Palestine
#> 12952 State of Palestine
#> 12953 State of Palestine
#> 12954 State of Palestine
#> 12955 State of Palestine
#> 12956 State of Palestine
#> 12957 State of Palestine
#> 12958 State of Palestine
#> 12959 State of Palestine
#> 12960 State of Palestine
#> 12961 State of Palestine
#> 12962 State of Palestine
#> 12963 State of Palestine
#> 12964 State of Palestine
#> 12965 Sub-Saharan Africa
#> 12966 Sub-Saharan Africa
#> 12967 Sub-Saharan Africa
#> 12968 Sub-Saharan Africa
#> 12969 Sub-Saharan Africa
#> 12970 Sub-Saharan Africa
#> 12971 Sub-Saharan Africa
#> 12972 Sub-Saharan Africa
#> 12973 Sub-Saharan Africa
#> 12974 Sub-Saharan Africa
#> 12975 Sub-Saharan Africa
#> 12976 Sub-Saharan Africa
#> 12977 Sub-Saharan Africa
#> 12978 Sub-Saharan Africa
#> 12979 Sudan
#> 12980 Sudan
#> 12981 Sudan
#> 12982 Sudan
#> 12983 Sudan
#> 12984 Sudan
#> 12985 Sudan
#> 12986 Sudan
#> 12987 Sudan
#> 12988 Sudan
#> 12989 Sudan
#> 12990 Sudan
#> 12991 Sudan
#> 12992 Sudan
#> 12993 Suriname
#> 12994 Suriname
#> 12995 Suriname
#> 12996 Suriname
#> 12997 Suriname
#> 12998 Suriname
#> 12999 Suriname
#> 13000 Suriname
#> 13001 Suriname
#> 13002 Suriname
#> 13003 Suriname
#> 13004 Suriname
#> 13005 Suriname
#> 13006 Suriname
#> 13007 Swaziland
#> 13008 Swaziland
#> 13009 Swaziland
#> 13010 Swaziland
#> 13011 Swaziland
#> 13012 Swaziland
#> 13013 Swaziland
#> 13014 Swaziland
#> 13015 Swaziland
#> 13016 Swaziland
#> 13017 Swaziland
#> 13018 Swaziland
#> 13019 Swaziland
#> 13020 Swaziland
#> 13021 Sweden
#> 13022 Sweden
#> 13023 Sweden
#> 13024 Sweden
#> 13025 Sweden
#> 13026 Sweden
#> 13027 Sweden
#> 13028 Sweden
#> 13029 Sweden
#> 13030 Sweden
#> 13031 Sweden
#> 13032 Sweden
#> 13033 Sweden
#> 13034 Sweden
#> 13035 Switzerland
#> 13036 Switzerland
#> 13037 Switzerland
#> 13038 Switzerland
#> 13039 Switzerland
#> 13040 Switzerland
#> 13041 Switzerland
#> 13042 Switzerland
#> 13043 Switzerland
#> 13044 Switzerland
#> 13045 Switzerland
#> 13046 Switzerland
#> 13047 Switzerland
#> 13048 Switzerland
#> 13049 Syrian Arab Republic
#> 13050 Syrian Arab Republic
#> 13051 Syrian Arab Republic
#> 13052 Syrian Arab Republic
#> 13053 Syrian Arab Republic
#> 13054 Syrian Arab Republic
#> 13055 Syrian Arab Republic
#> 13056 Syrian Arab Republic
#> 13057 Syrian Arab Republic
#> 13058 Syrian Arab Republic
#> 13059 Syrian Arab Republic
#> 13060 Syrian Arab Republic
#> 13061 Syrian Arab Republic
#> 13062 Syrian Arab Republic
#> 13063 TFYR Macedonia
#> 13064 TFYR Macedonia
#> 13065 TFYR Macedonia
#> 13066 TFYR Macedonia
#> 13067 TFYR Macedonia
#> 13068 TFYR Macedonia
#> 13069 TFYR Macedonia
#> 13070 TFYR Macedonia
#> 13071 TFYR Macedonia
#> 13072 TFYR Macedonia
#> 13073 TFYR Macedonia
#> 13074 TFYR Macedonia
#> 13075 TFYR Macedonia
#> 13076 TFYR Macedonia
#> 13077 Tajikistan
#> 13078 Tajikistan
#> 13079 Tajikistan
#> 13080 Tajikistan
#> 13081 Tajikistan
#> 13082 Tajikistan
#> 13083 Tajikistan
#> 13084 Tajikistan
#> 13085 Tajikistan
#> 13086 Tajikistan
#> 13087 Tajikistan
#> 13088 Tajikistan
#> 13089 Tajikistan
#> 13090 Tajikistan
#> 13091 Thailand
#> 13092 Thailand
#> 13093 Thailand
#> 13094 Thailand
#> 13095 Thailand
#> 13096 Thailand
#> 13097 Thailand
#> 13098 Thailand
#> 13099 Thailand
#> 13100 Thailand
#> 13101 Thailand
#> 13102 Thailand
#> 13103 Thailand
#> 13104 Thailand
#> 13105 Timor-Leste
#> 13106 Timor-Leste
#> 13107 Timor-Leste
#> 13108 Timor-Leste
#> 13109 Timor-Leste
#> 13110 Timor-Leste
#> 13111 Timor-Leste
#> 13112 Timor-Leste
#> 13113 Timor-Leste
#> 13114 Timor-Leste
#> 13115 Timor-Leste
#> 13116 Timor-Leste
#> 13117 Timor-Leste
#> 13118 Timor-Leste
#> 13119 Togo
#> 13120 Togo
#> 13121 Togo
#> 13122 Togo
#> 13123 Togo
#> 13124 Togo
#> 13125 Togo
#> 13126 Togo
#> 13127 Togo
#> 13128 Togo
#> 13129 Togo
#> 13130 Togo
#> 13131 Togo
#> 13132 Togo
#> 13133 Tonga
#> 13134 Tonga
#> 13135 Tonga
#> 13136 Tonga
#> 13137 Tonga
#> 13138 Tonga
#> 13139 Tonga
#> 13140 Tonga
#> 13141 Tonga
#> 13142 Tonga
#> 13143 Tonga
#> 13144 Tonga
#> 13145 Tonga
#> 13146 Tonga
#> 13147 Trinidad and Tobago
#> 13148 Trinidad and Tobago
#> 13149 Trinidad and Tobago
#> 13150 Trinidad and Tobago
#> 13151 Trinidad and Tobago
#> 13152 Trinidad and Tobago
#> 13153 Trinidad and Tobago
#> 13154 Trinidad and Tobago
#> 13155 Trinidad and Tobago
#> 13156 Trinidad and Tobago
#> 13157 Trinidad and Tobago
#> 13158 Trinidad and Tobago
#> 13159 Trinidad and Tobago
#> 13160 Trinidad and Tobago
#> 13161 Tunisia
#> 13162 Tunisia
#> 13163 Tunisia
#> 13164 Tunisia
#> 13165 Tunisia
#> 13166 Tunisia
#> 13167 Tunisia
#> 13168 Tunisia
#> 13169 Tunisia
#> 13170 Tunisia
#> 13171 Tunisia
#> 13172 Tunisia
#> 13173 Tunisia
#> 13174 Tunisia
#> 13175 Turkey
#> 13176 Turkey
#> 13177 Turkey
#> 13178 Turkey
#> 13179 Turkey
#> 13180 Turkey
#> 13181 Turkey
#> 13182 Turkey
#> 13183 Turkey
#> 13184 Turkey
#> 13185 Turkey
#> 13186 Turkey
#> 13187 Turkey
#> 13188 Turkey
#> 13189 Turkmenistan
#> 13190 Turkmenistan
#> 13191 Turkmenistan
#> 13192 Turkmenistan
#> 13193 Turkmenistan
#> 13194 Turkmenistan
#> 13195 Turkmenistan
#> 13196 Turkmenistan
#> 13197 Turkmenistan
#> 13198 Turkmenistan
#> 13199 Turkmenistan
#> 13200 Turkmenistan
#> 13201 Turkmenistan
#> 13202 Turkmenistan
#> 13203 Uganda
#> 13204 Uganda
#> 13205 Uganda
#> 13206 Uganda
#> 13207 Uganda
#> 13208 Uganda
#> 13209 Uganda
#> 13210 Uganda
#> 13211 Uganda
#> 13212 Uganda
#> 13213 Uganda
#> 13214 Uganda
#> 13215 Uganda
#> 13216 Uganda
#> 13217 Ukraine
#> 13218 Ukraine
#> 13219 Ukraine
#> 13220 Ukraine
#> 13221 Ukraine
#> 13222 Ukraine
#> 13223 Ukraine
#> 13224 Ukraine
#> 13225 Ukraine
#> 13226 Ukraine
#> 13227 Ukraine
#> 13228 Ukraine
#> 13229 Ukraine
#> 13230 Ukraine
#> 13231 United Arab Emirates
#> 13232 United Arab Emirates
#> 13233 United Arab Emirates
#> 13234 United Arab Emirates
#> 13235 United Arab Emirates
#> 13236 United Arab Emirates
#> 13237 United Arab Emirates
#> 13238 United Arab Emirates
#> 13239 United Arab Emirates
#> 13240 United Arab Emirates
#> 13241 United Arab Emirates
#> 13242 United Arab Emirates
#> 13243 United Arab Emirates
#> 13244 United Arab Emirates
#> 13245 United Kingdom
#> 13246 United Kingdom
#> 13247 United Kingdom
#> 13248 United Kingdom
#> 13249 United Kingdom
#> 13250 United Kingdom
#> 13251 United Kingdom
#> 13252 United Kingdom
#> 13253 United Kingdom
#> 13254 United Kingdom
#> 13255 United Kingdom
#> 13256 United Kingdom
#> 13257 United Kingdom
#> 13258 United Kingdom
#> 13259 United Republic of Tanzania
#> 13260 United Republic of Tanzania
#> 13261 United Republic of Tanzania
#> 13262 United Republic of Tanzania
#> 13263 United Republic of Tanzania
#> 13264 United Republic of Tanzania
#> 13265 United Republic of Tanzania
#> 13266 United Republic of Tanzania
#> 13267 United Republic of Tanzania
#> 13268 United Republic of Tanzania
#> 13269 United Republic of Tanzania
#> 13270 United Republic of Tanzania
#> 13271 United Republic of Tanzania
#> 13272 United Republic of Tanzania
#> 13273 United States Virgin Islands
#> 13274 United States Virgin Islands
#> 13275 United States Virgin Islands
#> 13276 United States Virgin Islands
#> 13277 United States Virgin Islands
#> 13278 United States Virgin Islands
#> 13279 United States Virgin Islands
#> 13280 United States Virgin Islands
#> 13281 United States Virgin Islands
#> 13282 United States Virgin Islands
#> 13283 United States Virgin Islands
#> 13284 United States Virgin Islands
#> 13285 United States Virgin Islands
#> 13286 United States Virgin Islands
#> 13287 United States of America
#> 13288 United States of America
#> 13289 United States of America
#> 13290 United States of America
#> 13291 United States of America
#> 13292 United States of America
#> 13293 United States of America
#> 13294 United States of America
#> 13295 United States of America
#> 13296 United States of America
#> 13297 United States of America
#> 13298 United States of America
#> 13299 United States of America
#> 13300 United States of America
#> 13301 Upper-middle-income countries
#> 13302 Upper-middle-income countries
#> 13303 Upper-middle-income countries
#> 13304 Upper-middle-income countries
#> 13305 Upper-middle-income countries
#> 13306 Upper-middle-income countries
#> 13307 Upper-middle-income countries
#> 13308 Upper-middle-income countries
#> 13309 Upper-middle-income countries
#> 13310 Upper-middle-income countries
#> 13311 Upper-middle-income countries
#> 13312 Upper-middle-income countries
#> 13313 Upper-middle-income countries
#> 13314 Upper-middle-income countries
#> 13315 Uruguay
#> 13316 Uruguay
#> 13317 Uruguay
#> 13318 Uruguay
#> 13319 Uruguay
#> 13320 Uruguay
#> 13321 Uruguay
#> 13322 Uruguay
#> 13323 Uruguay
#> 13324 Uruguay
#> 13325 Uruguay
#> 13326 Uruguay
#> 13327 Uruguay
#> 13328 Uruguay
#> 13329 Uzbekistan
#> 13330 Uzbekistan
#> 13331 Uzbekistan
#> 13332 Uzbekistan
#> 13333 Uzbekistan
#> 13334 Uzbekistan
#> 13335 Uzbekistan
#> 13336 Uzbekistan
#> 13337 Uzbekistan
#> 13338 Uzbekistan
#> 13339 Uzbekistan
#> 13340 Uzbekistan
#> 13341 Uzbekistan
#> 13342 Uzbekistan
#> 13343 Vanuatu
#> 13344 Vanuatu
#> 13345 Vanuatu
#> 13346 Vanuatu
#> 13347 Vanuatu
#> 13348 Vanuatu
#> 13349 Vanuatu
#> 13350 Vanuatu
#> 13351 Vanuatu
#> 13352 Vanuatu
#> 13353 Vanuatu
#> 13354 Vanuatu
#> 13355 Vanuatu
#> 13356 Vanuatu
#> 13357 Venezuela (Bolivarian Republic of)
#> 13358 Venezuela (Bolivarian Republic of)
#> 13359 Venezuela (Bolivarian Republic of)
#> 13360 Venezuela (Bolivarian Republic of)
#> 13361 Venezuela (Bolivarian Republic of)
#> 13362 Venezuela (Bolivarian Republic of)
#> 13363 Venezuela (Bolivarian Republic of)
#> 13364 Venezuela (Bolivarian Republic of)
#> 13365 Venezuela (Bolivarian Republic of)
#> 13366 Venezuela (Bolivarian Republic of)
#> 13367 Venezuela (Bolivarian Republic of)
#> 13368 Venezuela (Bolivarian Republic of)
#> 13369 Venezuela (Bolivarian Republic of)
#> 13370 Venezuela (Bolivarian Republic of)
#> 13371 Viet Nam
#> 13372 Viet Nam
#> 13373 Viet Nam
#> 13374 Viet Nam
#> 13375 Viet Nam
#> 13376 Viet Nam
#> 13377 Viet Nam
#> 13378 Viet Nam
#> 13379 Viet Nam
#> 13380 Viet Nam
#> 13381 Viet Nam
#> 13382 Viet Nam
#> 13383 Viet Nam
#> 13384 Viet Nam
#> 13385 WORLD
#> 13386 WORLD
#> 13387 WORLD
#> 13388 WORLD
#> 13389 WORLD
#> 13390 WORLD
#> 13391 WORLD
#> 13392 WORLD
#> 13393 WORLD
#> 13394 WORLD
#> 13395 WORLD
#> 13396 WORLD
#> 13397 WORLD
#> 13398 WORLD
#> 13399 Western Africa
#> 13400 Western Africa
#> 13401 Western Africa
#> 13402 Western Africa
#> 13403 Western Africa
#> 13404 Western Africa
#> 13405 Western Africa
#> 13406 Western Africa
#> 13407 Western Africa
#> 13408 Western Africa
#> 13409 Western Africa
#> 13410 Western Africa
#> 13411 Western Africa
#> 13412 Western Africa
#> 13413 Western Asia
#> 13414 Western Asia
#> 13415 Western Asia
#> 13416 Western Asia
#> 13417 Western Asia
#> 13418 Western Asia
#> 13419 Western Asia
#> 13420 Western Asia
#> 13421 Western Asia
#> 13422 Western Asia
#> 13423 Western Asia
#> 13424 Western Asia
#> 13425 Western Asia
#> 13426 Western Asia
#> 13427 Western Europe
#> 13428 Western Europe
#> 13429 Western Europe
#> 13430 Western Europe
#> 13431 Western Europe
#> 13432 Western Europe
#> 13433 Western Europe
#> 13434 Western Europe
#> 13435 Western Europe
#> 13436 Western Europe
#> 13437 Western Europe
#> 13438 Western Europe
#> 13439 Western Europe
#> 13440 Western Europe
#> 13441 Western Sahara
#> 13442 Western Sahara
#> 13443 Western Sahara
#> 13444 Western Sahara
#> 13445 Western Sahara
#> 13446 Western Sahara
#> 13447 Western Sahara
#> 13448 Western Sahara
#> 13449 Western Sahara
#> 13450 Western Sahara
#> 13451 Western Sahara
#> 13452 Western Sahara
#> 13453 Western Sahara
#> 13454 Western Sahara
#> 13455 Yemen
#> 13456 Yemen
#> 13457 Yemen
#> 13458 Yemen
#> 13459 Yemen
#> 13460 Yemen
#> 13461 Yemen
#> 13462 Yemen
#> 13463 Yemen
#> 13464 Yemen
#> 13465 Yemen
#> 13466 Yemen
#> 13467 Yemen
#> 13468 Yemen
#> 13469 Zambia
#> 13470 Zambia
#> 13471 Zambia
#> 13472 Zambia
#> 13473 Zambia
#> 13474 Zambia
#> 13475 Zambia
#> 13476 Zambia
#> 13477 Zambia
#> 13478 Zambia
#> 13479 Zambia
#> 13480 Zambia
#> 13481 Zambia
#> 13482 Zambia
#> 13483 Zimbabwe
#> 13484 Zimbabwe
#> 13485 Zimbabwe
#> 13486 Zimbabwe
#> 13487 Zimbabwe
#> 13488 Zimbabwe
#> 13489 Zimbabwe
#> 13490 Zimbabwe
#> 13491 Zimbabwe
#> 13492 Zimbabwe
#> 13493 Zimbabwe
#> 13494 Zimbabwe
#> 13495 Zimbabwe
#> 13496 Zimbabwe
#> 13497 AFRICA
#> 13498 AFRICA
#> 13499 AFRICA
#> 13500 AFRICA
#> 13501 AFRICA
#> 13502 AFRICA
#> 13503 AFRICA
#> 13504 AFRICA
#> 13505 AFRICA
#> 13506 AFRICA
#> 13507 AFRICA
#> 13508 AFRICA
#> 13509 AFRICA
#> 13510 AFRICA
#> 13511 ASIA
#> 13512 ASIA
#> 13513 ASIA
#> 13514 ASIA
#> 13515 ASIA
#> 13516 ASIA
#> 13517 ASIA
#> 13518 ASIA
#> 13519 ASIA
#> 13520 ASIA
#> 13521 ASIA
#> 13522 ASIA
#> 13523 ASIA
#> 13524 ASIA
#> 13525 Afghanistan
#> 13526 Afghanistan
#> 13527 Afghanistan
#> 13528 Afghanistan
#> 13529 Afghanistan
#> 13530 Afghanistan
#> 13531 Afghanistan
#> 13532 Afghanistan
#> 13533 Afghanistan
#> 13534 Afghanistan
#> 13535 Afghanistan
#> 13536 Afghanistan
#> 13537 Afghanistan
#> 13538 Afghanistan
#> 13539 Albania
#> 13540 Albania
#> 13541 Albania
#> 13542 Albania
#> 13543 Albania
#> 13544 Albania
#> 13545 Albania
#> 13546 Albania
#> 13547 Albania
#> 13548 Albania
#> 13549 Albania
#> 13550 Albania
#> 13551 Albania
#> 13552 Albania
#> 13553 Algeria
#> 13554 Algeria
#> 13555 Algeria
#> 13556 Algeria
#> 13557 Algeria
#> 13558 Algeria
#> 13559 Algeria
#> 13560 Algeria
#> 13561 Algeria
#> 13562 Algeria
#> 13563 Algeria
#> 13564 Algeria
#> 13565 Algeria
#> 13566 Algeria
#> 13567 Angola
#> 13568 Angola
#> 13569 Angola
#> 13570 Angola
#> 13571 Angola
#> 13572 Angola
#> 13573 Angola
#> 13574 Angola
#> 13575 Angola
#> 13576 Angola
#> 13577 Angola
#> 13578 Angola
#> 13579 Angola
#> 13580 Angola
#> 13581 Antigua and Barbuda
#> 13582 Antigua and Barbuda
#> 13583 Antigua and Barbuda
#> 13584 Antigua and Barbuda
#> 13585 Antigua and Barbuda
#> 13586 Antigua and Barbuda
#> 13587 Antigua and Barbuda
#> 13588 Antigua and Barbuda
#> 13589 Antigua and Barbuda
#> 13590 Antigua and Barbuda
#> 13591 Antigua and Barbuda
#> 13592 Antigua and Barbuda
#> 13593 Antigua and Barbuda
#> 13594 Antigua and Barbuda
#> 13595 Argentina
#> 13596 Argentina
#> 13597 Argentina
#> 13598 Argentina
#> 13599 Argentina
#> 13600 Argentina
#> 13601 Argentina
#> 13602 Argentina
#> 13603 Argentina
#> 13604 Argentina
#> 13605 Argentina
#> 13606 Argentina
#> 13607 Argentina
#> 13608 Argentina
#> 13609 Armenia
#> 13610 Armenia
#> 13611 Armenia
#> 13612 Armenia
#> 13613 Armenia
#> 13614 Armenia
#> 13615 Armenia
#> 13616 Armenia
#> 13617 Armenia
#> 13618 Armenia
#> 13619 Armenia
#> 13620 Armenia
#> 13621 Armenia
#> 13622 Armenia
#> 13623 Aruba
#> 13624 Aruba
#> 13625 Aruba
#> 13626 Aruba
#> 13627 Aruba
#> 13628 Aruba
#> 13629 Aruba
#> 13630 Aruba
#> 13631 Aruba
#> 13632 Aruba
#> 13633 Aruba
#> 13634 Aruba
#> 13635 Aruba
#> 13636 Aruba
#> 13637 Australia
#> 13638 Australia
#> 13639 Australia
#> 13640 Australia
#> 13641 Australia
#> 13642 Australia
#> 13643 Australia
#> 13644 Australia
#> 13645 Australia
#> 13646 Australia
#> 13647 Australia
#> 13648 Australia
#> 13649 Australia
#> 13650 Australia
#> 13651 Australia/New Zealand
#> 13652 Australia/New Zealand
#> 13653 Australia/New Zealand
#> 13654 Australia/New Zealand
#> 13655 Australia/New Zealand
#> 13656 Australia/New Zealand
#> 13657 Australia/New Zealand
#> 13658 Australia/New Zealand
#> 13659 Australia/New Zealand
#> 13660 Australia/New Zealand
#> 13661 Australia/New Zealand
#> 13662 Australia/New Zealand
#> 13663 Australia/New Zealand
#> 13664 Australia/New Zealand
#> 13665 Austria
#> 13666 Austria
#> 13667 Austria
#> 13668 Austria
#> 13669 Austria
#> 13670 Austria
#> 13671 Austria
#> 13672 Austria
#> 13673 Austria
#> 13674 Austria
#> 13675 Austria
#> 13676 Austria
#> 13677 Austria
#> 13678 Austria
#> 13679 Azerbaijan
#> 13680 Azerbaijan
#> 13681 Azerbaijan
#> 13682 Azerbaijan
#> 13683 Azerbaijan
#> 13684 Azerbaijan
#> 13685 Azerbaijan
#> 13686 Azerbaijan
#> 13687 Azerbaijan
#> 13688 Azerbaijan
#> 13689 Azerbaijan
#> 13690 Azerbaijan
#> 13691 Azerbaijan
#> 13692 Azerbaijan
#> 13693 Bahamas
#> 13694 Bahamas
#> 13695 Bahamas
#> 13696 Bahamas
#> 13697 Bahamas
#> 13698 Bahamas
#> 13699 Bahamas
#> 13700 Bahamas
#> 13701 Bahamas
#> 13702 Bahamas
#> 13703 Bahamas
#> 13704 Bahamas
#> 13705 Bahamas
#> 13706 Bahamas
#> 13707 Bahrain
#> 13708 Bahrain
#> 13709 Bahrain
#> 13710 Bahrain
#> 13711 Bahrain
#> 13712 Bahrain
#> 13713 Bahrain
#> 13714 Bahrain
#> 13715 Bahrain
#> 13716 Bahrain
#> 13717 Bahrain
#> 13718 Bahrain
#> 13719 Bahrain
#> 13720 Bahrain
#> 13721 Bangladesh
#> 13722 Bangladesh
#> 13723 Bangladesh
#> 13724 Bangladesh
#> 13725 Bangladesh
#> 13726 Bangladesh
#> 13727 Bangladesh
#> 13728 Bangladesh
#> 13729 Bangladesh
#> 13730 Bangladesh
#> 13731 Bangladesh
#> 13732 Bangladesh
#> 13733 Bangladesh
#> 13734 Bangladesh
#> 13735 Barbados
#> 13736 Barbados
#> 13737 Barbados
#> 13738 Barbados
#> 13739 Barbados
#> 13740 Barbados
#> 13741 Barbados
#> 13742 Barbados
#> 13743 Barbados
#> 13744 Barbados
#> 13745 Barbados
#> 13746 Barbados
#> 13747 Barbados
#> 13748 Barbados
#> 13749 Belarus
#> 13750 Belarus
#> 13751 Belarus
#> 13752 Belarus
#> 13753 Belarus
#> 13754 Belarus
#> 13755 Belarus
#> 13756 Belarus
#> 13757 Belarus
#> 13758 Belarus
#> 13759 Belarus
#> 13760 Belarus
#> 13761 Belarus
#> 13762 Belarus
#> 13763 Belgium
#> 13764 Belgium
#> 13765 Belgium
#> 13766 Belgium
#> 13767 Belgium
#> 13768 Belgium
#> 13769 Belgium
#> 13770 Belgium
#> 13771 Belgium
#> 13772 Belgium
#> 13773 Belgium
#> 13774 Belgium
#> 13775 Belgium
#> 13776 Belgium
#> 13777 Belize
#> 13778 Belize
#> 13779 Belize
#> 13780 Belize
#> 13781 Belize
#> 13782 Belize
#> 13783 Belize
#> 13784 Belize
#> 13785 Belize
#> 13786 Belize
#> 13787 Belize
#> 13788 Belize
#> 13789 Belize
#> 13790 Belize
#> 13791 Benin
#> 13792 Benin
#> 13793 Benin
#> 13794 Benin
#> 13795 Benin
#> 13796 Benin
#> 13797 Benin
#> 13798 Benin
#> 13799 Benin
#> 13800 Benin
#> 13801 Benin
#> 13802 Benin
#> 13803 Benin
#> 13804 Benin
#> 13805 Bhutan
#> 13806 Bhutan
#> 13807 Bhutan
#> 13808 Bhutan
#> 13809 Bhutan
#> 13810 Bhutan
#> 13811 Bhutan
#> 13812 Bhutan
#> 13813 Bhutan
#> 13814 Bhutan
#> 13815 Bhutan
#> 13816 Bhutan
#> 13817 Bhutan
#> 13818 Bhutan
#> 13819 Bolivia (Plurinational State of)
#> 13820 Bolivia (Plurinational State of)
#> 13821 Bolivia (Plurinational State of)
#> 13822 Bolivia (Plurinational State of)
#> 13823 Bolivia (Plurinational State of)
#> 13824 Bolivia (Plurinational State of)
#> 13825 Bolivia (Plurinational State of)
#> 13826 Bolivia (Plurinational State of)
#> 13827 Bolivia (Plurinational State of)
#> 13828 Bolivia (Plurinational State of)
#> 13829 Bolivia (Plurinational State of)
#> 13830 Bolivia (Plurinational State of)
#> 13831 Bolivia (Plurinational State of)
#> 13832 Bolivia (Plurinational State of)
#> 13833 Bosnia and Herzegovina
#> 13834 Bosnia and Herzegovina
#> 13835 Bosnia and Herzegovina
#> 13836 Bosnia and Herzegovina
#> 13837 Bosnia and Herzegovina
#> 13838 Bosnia and Herzegovina
#> 13839 Bosnia and Herzegovina
#> 13840 Bosnia and Herzegovina
#> 13841 Bosnia and Herzegovina
#> 13842 Bosnia and Herzegovina
#> 13843 Bosnia and Herzegovina
#> 13844 Bosnia and Herzegovina
#> 13845 Bosnia and Herzegovina
#> 13846 Bosnia and Herzegovina
#> 13847 Botswana
#> 13848 Botswana
#> 13849 Botswana
#> 13850 Botswana
#> 13851 Botswana
#> 13852 Botswana
#> 13853 Botswana
#> 13854 Botswana
#> 13855 Botswana
#> 13856 Botswana
#> 13857 Botswana
#> 13858 Botswana
#> 13859 Botswana
#> 13860 Botswana
#> 13861 Brazil
#> 13862 Brazil
#> 13863 Brazil
#> 13864 Brazil
#> 13865 Brazil
#> 13866 Brazil
#> 13867 Brazil
#> 13868 Brazil
#> 13869 Brazil
#> 13870 Brazil
#> 13871 Brazil
#> 13872 Brazil
#> 13873 Brazil
#> 13874 Brazil
#> 13875 Brunei Darussalam
#> 13876 Brunei Darussalam
#> 13877 Brunei Darussalam
#> 13878 Brunei Darussalam
#> 13879 Brunei Darussalam
#> 13880 Brunei Darussalam
#> 13881 Brunei Darussalam
#> 13882 Brunei Darussalam
#> 13883 Brunei Darussalam
#> 13884 Brunei Darussalam
#> 13885 Brunei Darussalam
#> 13886 Brunei Darussalam
#> 13887 Brunei Darussalam
#> 13888 Brunei Darussalam
#> 13889 Bulgaria
#> 13890 Bulgaria
#> 13891 Bulgaria
#> 13892 Bulgaria
#> 13893 Bulgaria
#> 13894 Bulgaria
#> 13895 Bulgaria
#> 13896 Bulgaria
#> 13897 Bulgaria
#> 13898 Bulgaria
#> 13899 Bulgaria
#> 13900 Bulgaria
#> 13901 Bulgaria
#> 13902 Bulgaria
#> 13903 Burkina Faso
#> 13904 Burkina Faso
#> 13905 Burkina Faso
#> 13906 Burkina Faso
#> 13907 Burkina Faso
#> 13908 Burkina Faso
#> 13909 Burkina Faso
#> 13910 Burkina Faso
#> 13911 Burkina Faso
#> 13912 Burkina Faso
#> 13913 Burkina Faso
#> 13914 Burkina Faso
#> 13915 Burkina Faso
#> 13916 Burkina Faso
#> 13917 Burundi
#> 13918 Burundi
#> 13919 Burundi
#> 13920 Burundi
#> 13921 Burundi
#> 13922 Burundi
#> 13923 Burundi
#> 13924 Burundi
#> 13925 Burundi
#> 13926 Burundi
#> 13927 Burundi
#> 13928 Burundi
#> 13929 Burundi
#> 13930 Burundi
#> 13931 Cabo Verde
#> 13932 Cabo Verde
#> 13933 Cabo Verde
#> 13934 Cabo Verde
#> 13935 Cabo Verde
#> 13936 Cabo Verde
#> 13937 Cabo Verde
#> 13938 Cabo Verde
#> 13939 Cabo Verde
#> 13940 Cabo Verde
#> 13941 Cabo Verde
#> 13942 Cabo Verde
#> 13943 Cabo Verde
#> 13944 Cabo Verde
#> 13945 Cambodia
#> 13946 Cambodia
#> 13947 Cambodia
#> 13948 Cambodia
#> 13949 Cambodia
#> 13950 Cambodia
#> 13951 Cambodia
#> 13952 Cambodia
#> 13953 Cambodia
#> 13954 Cambodia
#> 13955 Cambodia
#> 13956 Cambodia
#> 13957 Cambodia
#> 13958 Cambodia
#> 13959 Cameroon
#> 13960 Cameroon
#> 13961 Cameroon
#> 13962 Cameroon
#> 13963 Cameroon
#> 13964 Cameroon
#> 13965 Cameroon
#> 13966 Cameroon
#> 13967 Cameroon
#> 13968 Cameroon
#> 13969 Cameroon
#> 13970 Cameroon
#> 13971 Cameroon
#> 13972 Cameroon
#> 13973 Canada
#> 13974 Canada
#> 13975 Canada
#> 13976 Canada
#> 13977 Canada
#> 13978 Canada
#> 13979 Canada
#> 13980 Canada
#> 13981 Canada
#> 13982 Canada
#> 13983 Canada
#> 13984 Canada
#> 13985 Canada
#> 13986 Canada
#> 13987 Caribbean
#> 13988 Caribbean
#> 13989 Caribbean
#> 13990 Caribbean
#> 13991 Caribbean
#> 13992 Caribbean
#> 13993 Caribbean
#> 13994 Caribbean
#> 13995 Caribbean
#> 13996 Caribbean
#> 13997 Caribbean
#> 13998 Caribbean
#> 13999 Caribbean
#> 14000 Caribbean
#> 14001 Central African Republic
#> 14002 Central African Republic
#> 14003 Central African Republic
#> 14004 Central African Republic
#> 14005 Central African Republic
#> 14006 Central African Republic
#> 14007 Central African Republic
#> 14008 Central African Republic
#> 14009 Central African Republic
#> 14010 Central African Republic
#> 14011 Central African Republic
#> 14012 Central African Republic
#> 14013 Central African Republic
#> 14014 Central African Republic
#> 14015 Central America
#> 14016 Central America
#> 14017 Central America
#> 14018 Central America
#> 14019 Central America
#> 14020 Central America
#> 14021 Central America
#> 14022 Central America
#> 14023 Central America
#> 14024 Central America
#> 14025 Central America
#> 14026 Central America
#> 14027 Central America
#> 14028 Central America
#> 14029 Central Asia
#> 14030 Central Asia
#> 14031 Central Asia
#> 14032 Central Asia
#> 14033 Central Asia
#> 14034 Central Asia
#> 14035 Central Asia
#> 14036 Central Asia
#> 14037 Central Asia
#> 14038 Central Asia
#> 14039 Central Asia
#> 14040 Central Asia
#> 14041 Central Asia
#> 14042 Central Asia
#> 14043 Chad
#> 14044 Chad
#> 14045 Chad
#> 14046 Chad
#> 14047 Chad
#> 14048 Chad
#> 14049 Chad
#> 14050 Chad
#> 14051 Chad
#> 14052 Chad
#> 14053 Chad
#> 14054 Chad
#> 14055 Chad
#> 14056 Chad
#> 14057 Channel Islands
#> 14058 Channel Islands
#> 14059 Channel Islands
#> 14060 Channel Islands
#> 14061 Channel Islands
#> 14062 Channel Islands
#> 14063 Channel Islands
#> 14064 Channel Islands
#> 14065 Channel Islands
#> 14066 Channel Islands
#> 14067 Channel Islands
#> 14068 Channel Islands
#> 14069 Channel Islands
#> 14070 Channel Islands
#> 14071 Chile
#> 14072 Chile
#> 14073 Chile
#> 14074 Chile
#> 14075 Chile
#> 14076 Chile
#> 14077 Chile
#> 14078 Chile
#> 14079 Chile
#> 14080 Chile
#> 14081 Chile
#> 14082 Chile
#> 14083 Chile
#> 14084 Chile
#> 14085 China
#> 14086 China
#> 14087 China
#> 14088 China
#> 14089 China
#> 14090 China
#> 14091 China
#> 14092 China
#> 14093 China
#> 14094 China
#> 14095 China
#> 14096 China
#> 14097 China
#> 14098 China
#> 14099 China, Hong Kong SAR
#> 14100 China, Hong Kong SAR
#> 14101 China, Hong Kong SAR
#> 14102 China, Hong Kong SAR
#> 14103 China, Hong Kong SAR
#> 14104 China, Hong Kong SAR
#> 14105 China, Hong Kong SAR
#> 14106 China, Hong Kong SAR
#> 14107 China, Hong Kong SAR
#> 14108 China, Hong Kong SAR
#> 14109 China, Hong Kong SAR
#> 14110 China, Hong Kong SAR
#> 14111 China, Hong Kong SAR
#> 14112 China, Hong Kong SAR
#> 14113 China, Macao SAR
#> 14114 China, Macao SAR
#> 14115 China, Macao SAR
#> 14116 China, Macao SAR
#> 14117 China, Macao SAR
#> 14118 China, Macao SAR
#> 14119 China, Macao SAR
#> 14120 China, Macao SAR
#> 14121 China, Macao SAR
#> 14122 China, Macao SAR
#> 14123 China, Macao SAR
#> 14124 China, Macao SAR
#> 14125 China, Macao SAR
#> 14126 China, Macao SAR
#> 14127 China, Taiwan Province of China
#> 14128 China, Taiwan Province of China
#> 14129 China, Taiwan Province of China
#> 14130 China, Taiwan Province of China
#> 14131 China, Taiwan Province of China
#> 14132 China, Taiwan Province of China
#> 14133 China, Taiwan Province of China
#> 14134 China, Taiwan Province of China
#> 14135 China, Taiwan Province of China
#> 14136 China, Taiwan Province of China
#> 14137 China, Taiwan Province of China
#> 14138 China, Taiwan Province of China
#> 14139 China, Taiwan Province of China
#> 14140 China, Taiwan Province of China
#> 14141 Colombia
#> 14142 Colombia
#> 14143 Colombia
#> 14144 Colombia
#> 14145 Colombia
#> 14146 Colombia
#> 14147 Colombia
#> 14148 Colombia
#> 14149 Colombia
#> 14150 Colombia
#> 14151 Colombia
#> 14152 Colombia
#> 14153 Colombia
#> 14154 Colombia
#> 14155 Comoros
#> 14156 Comoros
#> 14157 Comoros
#> 14158 Comoros
#> 14159 Comoros
#> 14160 Comoros
#> 14161 Comoros
#> 14162 Comoros
#> 14163 Comoros
#> 14164 Comoros
#> 14165 Comoros
#> 14166 Comoros
#> 14167 Comoros
#> 14168 Comoros
#> 14169 Congo
#> 14170 Congo
#> 14171 Congo
#> 14172 Congo
#> 14173 Congo
#> 14174 Congo
#> 14175 Congo
#> 14176 Congo
#> 14177 Congo
#> 14178 Congo
#> 14179 Congo
#> 14180 Congo
#> 14181 Congo
#> 14182 Congo
#> 14183 Costa Rica
#> 14184 Costa Rica
#> 14185 Costa Rica
#> 14186 Costa Rica
#> 14187 Costa Rica
#> 14188 Costa Rica
#> 14189 Costa Rica
#> 14190 Costa Rica
#> 14191 Costa Rica
#> 14192 Costa Rica
#> 14193 Costa Rica
#> 14194 Costa Rica
#> 14195 Costa Rica
#> 14196 Costa Rica
#> 14197 Cote d'Ivoire
#> 14198 Cote d'Ivoire
#> 14199 Cote d'Ivoire
#> 14200 Cote d'Ivoire
#> 14201 Cote d'Ivoire
#> 14202 Cote d'Ivoire
#> 14203 Cote d'Ivoire
#> 14204 Cote d'Ivoire
#> 14205 Cote d'Ivoire
#> 14206 Cote d'Ivoire
#> 14207 Cote d'Ivoire
#> 14208 Cote d'Ivoire
#> 14209 Cote d'Ivoire
#> 14210 Cote d'Ivoire
#> 14211 Croatia
#> 14212 Croatia
#> 14213 Croatia
#> 14214 Croatia
#> 14215 Croatia
#> 14216 Croatia
#> 14217 Croatia
#> 14218 Croatia
#> 14219 Croatia
#> 14220 Croatia
#> 14221 Croatia
#> 14222 Croatia
#> 14223 Croatia
#> 14224 Croatia
#> 14225 Cuba
#> 14226 Cuba
#> 14227 Cuba
#> 14228 Cuba
#> 14229 Cuba
#> 14230 Cuba
#> 14231 Cuba
#> 14232 Cuba
#> 14233 Cuba
#> 14234 Cuba
#> 14235 Cuba
#> 14236 Cuba
#> 14237 Cuba
#> 14238 Cuba
#> 14239 Curacao
#> 14240 Curacao
#> 14241 Curacao
#> 14242 Curacao
#> 14243 Curacao
#> 14244 Curacao
#> 14245 Curacao
#> 14246 Curacao
#> 14247 Curacao
#> 14248 Curacao
#> 14249 Curacao
#> 14250 Curacao
#> 14251 Curacao
#> 14252 Curacao
#> 14253 Cyprus
#> 14254 Cyprus
#> 14255 Cyprus
#> 14256 Cyprus
#> 14257 Cyprus
#> 14258 Cyprus
#> 14259 Cyprus
#> 14260 Cyprus
#> 14261 Cyprus
#> 14262 Cyprus
#> 14263 Cyprus
#> 14264 Cyprus
#> 14265 Cyprus
#> 14266 Cyprus
#> 14267 Czechia
#> 14268 Czechia
#> 14269 Czechia
#> 14270 Czechia
#> 14271 Czechia
#> 14272 Czechia
#> 14273 Czechia
#> 14274 Czechia
#> 14275 Czechia
#> 14276 Czechia
#> 14277 Czechia
#> 14278 Czechia
#> 14279 Czechia
#> 14280 Czechia
#> 14281 Dem. People's Republic of Korea
#> 14282 Dem. People's Republic of Korea
#> 14283 Dem. People's Republic of Korea
#> 14284 Dem. People's Republic of Korea
#> 14285 Dem. People's Republic of Korea
#> 14286 Dem. People's Republic of Korea
#> 14287 Dem. People's Republic of Korea
#> 14288 Dem. People's Republic of Korea
#> 14289 Dem. People's Republic of Korea
#> 14290 Dem. People's Republic of Korea
#> 14291 Dem. People's Republic of Korea
#> 14292 Dem. People's Republic of Korea
#> 14293 Dem. People's Republic of Korea
#> 14294 Dem. People's Republic of Korea
#> 14295 Democratic Republic of the Congo
#> 14296 Democratic Republic of the Congo
#> 14297 Democratic Republic of the Congo
#> 14298 Democratic Republic of the Congo
#> 14299 Democratic Republic of the Congo
#> 14300 Democratic Republic of the Congo
#> 14301 Democratic Republic of the Congo
#> 14302 Democratic Republic of the Congo
#> 14303 Democratic Republic of the Congo
#> 14304 Democratic Republic of the Congo
#> 14305 Democratic Republic of the Congo
#> 14306 Democratic Republic of the Congo
#> 14307 Democratic Republic of the Congo
#> 14308 Democratic Republic of the Congo
#> 14309 Denmark
#> 14310 Denmark
#> 14311 Denmark
#> 14312 Denmark
#> 14313 Denmark
#> 14314 Denmark
#> 14315 Denmark
#> 14316 Denmark
#> 14317 Denmark
#> 14318 Denmark
#> 14319 Denmark
#> 14320 Denmark
#> 14321 Denmark
#> 14322 Denmark
#> 14323 Djibouti
#> 14324 Djibouti
#> 14325 Djibouti
#> 14326 Djibouti
#> 14327 Djibouti
#> 14328 Djibouti
#> 14329 Djibouti
#> 14330 Djibouti
#> 14331 Djibouti
#> 14332 Djibouti
#> 14333 Djibouti
#> 14334 Djibouti
#> 14335 Djibouti
#> 14336 Djibouti
#> 14337 Dominican Republic
#> 14338 Dominican Republic
#> 14339 Dominican Republic
#> 14340 Dominican Republic
#> 14341 Dominican Republic
#> 14342 Dominican Republic
#> 14343 Dominican Republic
#> 14344 Dominican Republic
#> 14345 Dominican Republic
#> 14346 Dominican Republic
#> 14347 Dominican Republic
#> 14348 Dominican Republic
#> 14349 Dominican Republic
#> 14350 Dominican Republic
#> 14351 EUROPE
#> 14352 EUROPE
#> 14353 EUROPE
#> 14354 EUROPE
#> 14355 EUROPE
#> 14356 EUROPE
#> 14357 EUROPE
#> 14358 EUROPE
#> 14359 EUROPE
#> 14360 EUROPE
#> 14361 EUROPE
#> 14362 EUROPE
#> 14363 EUROPE
#> 14364 EUROPE
#> 14365 Eastern Africa
#> 14366 Eastern Africa
#> 14367 Eastern Africa
#> 14368 Eastern Africa
#> 14369 Eastern Africa
#> 14370 Eastern Africa
#> 14371 Eastern Africa
#> 14372 Eastern Africa
#> 14373 Eastern Africa
#> 14374 Eastern Africa
#> 14375 Eastern Africa
#> 14376 Eastern Africa
#> 14377 Eastern Africa
#> 14378 Eastern Africa
#> 14379 Eastern Asia
#> 14380 Eastern Asia
#> 14381 Eastern Asia
#> 14382 Eastern Asia
#> 14383 Eastern Asia
#> 14384 Eastern Asia
#> 14385 Eastern Asia
#> 14386 Eastern Asia
#> 14387 Eastern Asia
#> 14388 Eastern Asia
#> 14389 Eastern Asia
#> 14390 Eastern Asia
#> 14391 Eastern Asia
#> 14392 Eastern Asia
#> 14393 Eastern Europe
#> 14394 Eastern Europe
#> 14395 Eastern Europe
#> 14396 Eastern Europe
#> 14397 Eastern Europe
#> 14398 Eastern Europe
#> 14399 Eastern Europe
#> 14400 Eastern Europe
#> 14401 Eastern Europe
#> 14402 Eastern Europe
#> 14403 Eastern Europe
#> 14404 Eastern Europe
#> 14405 Eastern Europe
#> 14406 Eastern Europe
#> 14407 Ecuador
#> 14408 Ecuador
#> 14409 Ecuador
#> 14410 Ecuador
#> 14411 Ecuador
#> 14412 Ecuador
#> 14413 Ecuador
#> 14414 Ecuador
#> 14415 Ecuador
#> 14416 Ecuador
#> 14417 Ecuador
#> 14418 Ecuador
#> 14419 Ecuador
#> 14420 Ecuador
#> 14421 Egypt
#> 14422 Egypt
#> 14423 Egypt
#> 14424 Egypt
#> 14425 Egypt
#> 14426 Egypt
#> 14427 Egypt
#> 14428 Egypt
#> 14429 Egypt
#> 14430 Egypt
#> 14431 Egypt
#> 14432 Egypt
#> 14433 Egypt
#> 14434 Egypt
#> 14435 El Salvador
#> 14436 El Salvador
#> 14437 El Salvador
#> 14438 El Salvador
#> 14439 El Salvador
#> 14440 El Salvador
#> 14441 El Salvador
#> 14442 El Salvador
#> 14443 El Salvador
#> 14444 El Salvador
#> 14445 El Salvador
#> 14446 El Salvador
#> 14447 El Salvador
#> 14448 El Salvador
#> 14449 Equatorial Guinea
#> 14450 Equatorial Guinea
#> 14451 Equatorial Guinea
#> 14452 Equatorial Guinea
#> 14453 Equatorial Guinea
#> 14454 Equatorial Guinea
#> 14455 Equatorial Guinea
#> 14456 Equatorial Guinea
#> 14457 Equatorial Guinea
#> 14458 Equatorial Guinea
#> 14459 Equatorial Guinea
#> 14460 Equatorial Guinea
#> 14461 Equatorial Guinea
#> 14462 Equatorial Guinea
#> 14463 Eritrea
#> 14464 Eritrea
#> 14465 Eritrea
#> 14466 Eritrea
#> 14467 Eritrea
#> 14468 Eritrea
#> 14469 Eritrea
#> 14470 Eritrea
#> 14471 Eritrea
#> 14472 Eritrea
#> 14473 Eritrea
#> 14474 Eritrea
#> 14475 Eritrea
#> 14476 Eritrea
#> 14477 Estonia
#> 14478 Estonia
#> 14479 Estonia
#> 14480 Estonia
#> 14481 Estonia
#> 14482 Estonia
#> 14483 Estonia
#> 14484 Estonia
#> 14485 Estonia
#> 14486 Estonia
#> 14487 Estonia
#> 14488 Estonia
#> 14489 Estonia
#> 14490 Estonia
#> 14491 Ethiopia
#> 14492 Ethiopia
#> 14493 Ethiopia
#> 14494 Ethiopia
#> 14495 Ethiopia
#> 14496 Ethiopia
#> 14497 Ethiopia
#> 14498 Ethiopia
#> 14499 Ethiopia
#> 14500 Ethiopia
#> 14501 Ethiopia
#> 14502 Ethiopia
#> 14503 Ethiopia
#> 14504 Ethiopia
#> 14505 Fiji
#> 14506 Fiji
#> 14507 Fiji
#> 14508 Fiji
#> 14509 Fiji
#> 14510 Fiji
#> 14511 Fiji
#> 14512 Fiji
#> 14513 Fiji
#> 14514 Fiji
#> 14515 Fiji
#> 14516 Fiji
#> 14517 Fiji
#> 14518 Fiji
#> 14519 Finland
#> 14520 Finland
#> 14521 Finland
#> 14522 Finland
#> 14523 Finland
#> 14524 Finland
#> 14525 Finland
#> 14526 Finland
#> 14527 Finland
#> 14528 Finland
#> 14529 Finland
#> 14530 Finland
#> 14531 Finland
#> 14532 Finland
#> 14533 France
#> 14534 France
#> 14535 France
#> 14536 France
#> 14537 France
#> 14538 France
#> 14539 France
#> 14540 France
#> 14541 France
#> 14542 France
#> 14543 France
#> 14544 France
#> 14545 France
#> 14546 France
#> 14547 French Guiana
#> 14548 French Guiana
#> 14549 French Guiana
#> 14550 French Guiana
#> 14551 French Guiana
#> 14552 French Guiana
#> 14553 French Guiana
#> 14554 French Guiana
#> 14555 French Guiana
#> 14556 French Guiana
#> 14557 French Guiana
#> 14558 French Guiana
#> 14559 French Guiana
#> 14560 French Guiana
#> 14561 French Polynesia
#> 14562 French Polynesia
#> 14563 French Polynesia
#> 14564 French Polynesia
#> 14565 French Polynesia
#> 14566 French Polynesia
#> 14567 French Polynesia
#> 14568 French Polynesia
#> 14569 French Polynesia
#> 14570 French Polynesia
#> 14571 French Polynesia
#> 14572 French Polynesia
#> 14573 French Polynesia
#> 14574 French Polynesia
#> 14575 Gabon
#> 14576 Gabon
#> 14577 Gabon
#> 14578 Gabon
#> 14579 Gabon
#> 14580 Gabon
#> 14581 Gabon
#> 14582 Gabon
#> 14583 Gabon
#> 14584 Gabon
#> 14585 Gabon
#> 14586 Gabon
#> 14587 Gabon
#> 14588 Gabon
#> 14589 Gambia
#> 14590 Gambia
#> 14591 Gambia
#> 14592 Gambia
#> 14593 Gambia
#> 14594 Gambia
#> 14595 Gambia
#> 14596 Gambia
#> 14597 Gambia
#> 14598 Gambia
#> 14599 Gambia
#> 14600 Gambia
#> 14601 Gambia
#> 14602 Gambia
#> 14603 Georgia
#> 14604 Georgia
#> 14605 Georgia
#> 14606 Georgia
#> 14607 Georgia
#> 14608 Georgia
#> 14609 Georgia
#> 14610 Georgia
#> 14611 Georgia
#> 14612 Georgia
#> 14613 Georgia
#> 14614 Georgia
#> 14615 Georgia
#> 14616 Georgia
#> 14617 Germany
#> 14618 Germany
#> 14619 Germany
#> 14620 Germany
#> 14621 Germany
#> 14622 Germany
#> 14623 Germany
#> 14624 Germany
#> 14625 Germany
#> 14626 Germany
#> 14627 Germany
#> 14628 Germany
#> 14629 Germany
#> 14630 Germany
#> 14631 Ghana
#> 14632 Ghana
#> 14633 Ghana
#> 14634 Ghana
#> 14635 Ghana
#> 14636 Ghana
#> 14637 Ghana
#> 14638 Ghana
#> 14639 Ghana
#> 14640 Ghana
#> 14641 Ghana
#> 14642 Ghana
#> 14643 Ghana
#> 14644 Ghana
#> 14645 Greece
#> 14646 Greece
#> 14647 Greece
#> 14648 Greece
#> 14649 Greece
#> 14650 Greece
#> 14651 Greece
#> 14652 Greece
#> 14653 Greece
#> 14654 Greece
#> 14655 Greece
#> 14656 Greece
#> 14657 Greece
#> 14658 Greece
#> 14659 Grenada
#> 14660 Grenada
#> 14661 Grenada
#> 14662 Grenada
#> 14663 Grenada
#> 14664 Grenada
#> 14665 Grenada
#> 14666 Grenada
#> 14667 Grenada
#> 14668 Grenada
#> 14669 Grenada
#> 14670 Grenada
#> 14671 Grenada
#> 14672 Grenada
#> 14673 Guadeloupe
#> 14674 Guadeloupe
#> 14675 Guadeloupe
#> 14676 Guadeloupe
#> 14677 Guadeloupe
#> 14678 Guadeloupe
#> 14679 Guadeloupe
#> 14680 Guadeloupe
#> 14681 Guadeloupe
#> 14682 Guadeloupe
#> 14683 Guadeloupe
#> 14684 Guadeloupe
#> 14685 Guadeloupe
#> 14686 Guadeloupe
#> 14687 Guam
#> 14688 Guam
#> 14689 Guam
#> 14690 Guam
#> 14691 Guam
#> 14692 Guam
#> 14693 Guam
#> 14694 Guam
#> 14695 Guam
#> 14696 Guam
#> 14697 Guam
#> 14698 Guam
#> 14699 Guam
#> 14700 Guam
#> 14701 Guatemala
#> 14702 Guatemala
#> 14703 Guatemala
#> 14704 Guatemala
#> 14705 Guatemala
#> 14706 Guatemala
#> 14707 Guatemala
#> 14708 Guatemala
#> 14709 Guatemala
#> 14710 Guatemala
#> 14711 Guatemala
#> 14712 Guatemala
#> 14713 Guatemala
#> 14714 Guatemala
#> 14715 Guinea
#> 14716 Guinea
#> 14717 Guinea
#> 14718 Guinea
#> 14719 Guinea
#> 14720 Guinea
#> 14721 Guinea
#> 14722 Guinea
#> 14723 Guinea
#> 14724 Guinea
#> 14725 Guinea
#> 14726 Guinea
#> 14727 Guinea
#> 14728 Guinea
#> 14729 Guinea-Bissau
#> 14730 Guinea-Bissau
#> 14731 Guinea-Bissau
#> 14732 Guinea-Bissau
#> 14733 Guinea-Bissau
#> 14734 Guinea-Bissau
#> 14735 Guinea-Bissau
#> 14736 Guinea-Bissau
#> 14737 Guinea-Bissau
#> 14738 Guinea-Bissau
#> 14739 Guinea-Bissau
#> 14740 Guinea-Bissau
#> 14741 Guinea-Bissau
#> 14742 Guinea-Bissau
#> 14743 Guyana
#> 14744 Guyana
#> 14745 Guyana
#> 14746 Guyana
#> 14747 Guyana
#> 14748 Guyana
#> 14749 Guyana
#> 14750 Guyana
#> 14751 Guyana
#> 14752 Guyana
#> 14753 Guyana
#> 14754 Guyana
#> 14755 Guyana
#> 14756 Guyana
#> 14757 Haiti
#> 14758 Haiti
#> 14759 Haiti
#> 14760 Haiti
#> 14761 Haiti
#> 14762 Haiti
#> 14763 Haiti
#> 14764 Haiti
#> 14765 Haiti
#> 14766 Haiti
#> 14767 Haiti
#> 14768 Haiti
#> 14769 Haiti
#> 14770 Haiti
#> 14771 High-income countries
#> 14772 High-income countries
#> 14773 High-income countries
#> 14774 High-income countries
#> 14775 High-income countries
#> 14776 High-income countries
#> 14777 High-income countries
#> 14778 High-income countries
#> 14779 High-income countries
#> 14780 High-income countries
#> 14781 High-income countries
#> 14782 High-income countries
#> 14783 High-income countries
#> 14784 High-income countries
#> 14785 Honduras
#> 14786 Honduras
#> 14787 Honduras
#> 14788 Honduras
#> 14789 Honduras
#> 14790 Honduras
#> 14791 Honduras
#> 14792 Honduras
#> 14793 Honduras
#> 14794 Honduras
#> 14795 Honduras
#> 14796 Honduras
#> 14797 Honduras
#> 14798 Honduras
#> 14799 Hungary
#> 14800 Hungary
#> 14801 Hungary
#> 14802 Hungary
#> 14803 Hungary
#> 14804 Hungary
#> 14805 Hungary
#> 14806 Hungary
#> 14807 Hungary
#> 14808 Hungary
#> 14809 Hungary
#> 14810 Hungary
#> 14811 Hungary
#> 14812 Hungary
#> 14813 Iceland
#> 14814 Iceland
#> 14815 Iceland
#> 14816 Iceland
#> 14817 Iceland
#> 14818 Iceland
#> 14819 Iceland
#> 14820 Iceland
#> 14821 Iceland
#> 14822 Iceland
#> 14823 Iceland
#> 14824 Iceland
#> 14825 Iceland
#> 14826 Iceland
#> 14827 India
#> 14828 India
#> 14829 India
#> 14830 India
#> 14831 India
#> 14832 India
#> 14833 India
#> 14834 India
#> 14835 India
#> 14836 India
#> 14837 India
#> 14838 India
#> 14839 India
#> 14840 India
#> 14841 Indonesia
#> 14842 Indonesia
#> 14843 Indonesia
#> 14844 Indonesia
#> 14845 Indonesia
#> 14846 Indonesia
#> 14847 Indonesia
#> 14848 Indonesia
#> 14849 Indonesia
#> 14850 Indonesia
#> 14851 Indonesia
#> 14852 Indonesia
#> 14853 Indonesia
#> 14854 Indonesia
#> 14855 Iran (Islamic Republic of)
#> 14856 Iran (Islamic Republic of)
#> 14857 Iran (Islamic Republic of)
#> 14858 Iran (Islamic Republic of)
#> 14859 Iran (Islamic Republic of)
#> 14860 Iran (Islamic Republic of)
#> 14861 Iran (Islamic Republic of)
#> 14862 Iran (Islamic Republic of)
#> 14863 Iran (Islamic Republic of)
#> 14864 Iran (Islamic Republic of)
#> 14865 Iran (Islamic Republic of)
#> 14866 Iran (Islamic Republic of)
#> 14867 Iran (Islamic Republic of)
#> 14868 Iran (Islamic Republic of)
#> 14869 Iraq
#> 14870 Iraq
#> 14871 Iraq
#> 14872 Iraq
#> 14873 Iraq
#> 14874 Iraq
#> 14875 Iraq
#> 14876 Iraq
#> 14877 Iraq
#> 14878 Iraq
#> 14879 Iraq
#> 14880 Iraq
#> 14881 Iraq
#> 14882 Iraq
#> 14883 Ireland
#> 14884 Ireland
#> 14885 Ireland
#> 14886 Ireland
#> 14887 Ireland
#> 14888 Ireland
#> 14889 Ireland
#> 14890 Ireland
#> 14891 Ireland
#> 14892 Ireland
#> 14893 Ireland
#> 14894 Ireland
#> 14895 Ireland
#> 14896 Ireland
#> 14897 Israel
#> 14898 Israel
#> 14899 Israel
#> 14900 Israel
#> 14901 Israel
#> 14902 Israel
#> 14903 Israel
#> 14904 Israel
#> 14905 Israel
#> 14906 Israel
#> 14907 Israel
#> 14908 Israel
#> 14909 Israel
#> 14910 Israel
#> 14911 Italy
#> 14912 Italy
#> 14913 Italy
#> 14914 Italy
#> 14915 Italy
#> 14916 Italy
#> 14917 Italy
#> 14918 Italy
#> 14919 Italy
#> 14920 Italy
#> 14921 Italy
#> 14922 Italy
#> 14923 Italy
#> 14924 Italy
#> 14925 Jamaica
#> 14926 Jamaica
#> 14927 Jamaica
#> 14928 Jamaica
#> 14929 Jamaica
#> 14930 Jamaica
#> 14931 Jamaica
#> 14932 Jamaica
#> 14933 Jamaica
#> 14934 Jamaica
#> 14935 Jamaica
#> 14936 Jamaica
#> 14937 Jamaica
#> 14938 Jamaica
#> 14939 Japan
#> 14940 Japan
#> 14941 Japan
#> 14942 Japan
#> 14943 Japan
#> 14944 Japan
#> 14945 Japan
#> 14946 Japan
#> 14947 Japan
#> 14948 Japan
#> 14949 Japan
#> 14950 Japan
#> 14951 Japan
#> 14952 Japan
#> 14953 Jordan
#> 14954 Jordan
#> 14955 Jordan
#> 14956 Jordan
#> 14957 Jordan
#> 14958 Jordan
#> 14959 Jordan
#> 14960 Jordan
#> 14961 Jordan
#> 14962 Jordan
#> 14963 Jordan
#> 14964 Jordan
#> 14965 Jordan
#> 14966 Jordan
#> 14967 Kazakhstan
#> 14968 Kazakhstan
#> 14969 Kazakhstan
#> 14970 Kazakhstan
#> 14971 Kazakhstan
#> 14972 Kazakhstan
#> 14973 Kazakhstan
#> 14974 Kazakhstan
#> 14975 Kazakhstan
#> 14976 Kazakhstan
#> 14977 Kazakhstan
#> 14978 Kazakhstan
#> 14979 Kazakhstan
#> 14980 Kazakhstan
#> 14981 Kenya
#> 14982 Kenya
#> 14983 Kenya
#> 14984 Kenya
#> 14985 Kenya
#> 14986 Kenya
#> 14987 Kenya
#> 14988 Kenya
#> 14989 Kenya
#> 14990 Kenya
#> 14991 Kenya
#> 14992 Kenya
#> 14993 Kenya
#> 14994 Kenya
#> 14995 Kiribati
#> 14996 Kiribati
#> 14997 Kiribati
#> 14998 Kiribati
#> 14999 Kiribati
#> 15000 Kiribati
#> 15001 Kiribati
#> 15002 Kiribati
#> 15003 Kiribati
#> 15004 Kiribati
#> 15005 Kiribati
#> 15006 Kiribati
#> 15007 Kiribati
#> 15008 Kiribati
#> 15009 Kuwait
#> 15010 Kuwait
#> 15011 Kuwait
#> 15012 Kuwait
#> 15013 Kuwait
#> 15014 Kuwait
#> 15015 Kuwait
#> 15016 Kuwait
#> 15017 Kuwait
#> 15018 Kuwait
#> 15019 Kuwait
#> 15020 Kuwait
#> 15021 Kuwait
#> 15022 Kuwait
#> 15023 Kyrgyzstan
#> 15024 Kyrgyzstan
#> 15025 Kyrgyzstan
#> 15026 Kyrgyzstan
#> 15027 Kyrgyzstan
#> 15028 Kyrgyzstan
#> 15029 Kyrgyzstan
#> 15030 Kyrgyzstan
#> 15031 Kyrgyzstan
#> 15032 Kyrgyzstan
#> 15033 Kyrgyzstan
#> 15034 Kyrgyzstan
#> 15035 Kyrgyzstan
#> 15036 Kyrgyzstan
#> 15037 LATIN AMERICA AND THE CARIBBEAN
#> 15038 LATIN AMERICA AND THE CARIBBEAN
#> 15039 LATIN AMERICA AND THE CARIBBEAN
#> 15040 LATIN AMERICA AND THE CARIBBEAN
#> 15041 LATIN AMERICA AND THE CARIBBEAN
#> 15042 LATIN AMERICA AND THE CARIBBEAN
#> 15043 LATIN AMERICA AND THE CARIBBEAN
#> 15044 LATIN AMERICA AND THE CARIBBEAN
#> 15045 LATIN AMERICA AND THE CARIBBEAN
#> 15046 LATIN AMERICA AND THE CARIBBEAN
#> 15047 LATIN AMERICA AND THE CARIBBEAN
#> 15048 LATIN AMERICA AND THE CARIBBEAN
#> 15049 LATIN AMERICA AND THE CARIBBEAN
#> 15050 LATIN AMERICA AND THE CARIBBEAN
#> 15051 Lao People's Democratic Republic
#> 15052 Lao People's Democratic Republic
#> 15053 Lao People's Democratic Republic
#> 15054 Lao People's Democratic Republic
#> 15055 Lao People's Democratic Republic
#> 15056 Lao People's Democratic Republic
#> 15057 Lao People's Democratic Republic
#> 15058 Lao People's Democratic Republic
#> 15059 Lao People's Democratic Republic
#> 15060 Lao People's Democratic Republic
#> 15061 Lao People's Democratic Republic
#> 15062 Lao People's Democratic Republic
#> 15063 Lao People's Democratic Republic
#> 15064 Lao People's Democratic Republic
#> 15065 Latvia
#> 15066 Latvia
#> 15067 Latvia
#> 15068 Latvia
#> 15069 Latvia
#> 15070 Latvia
#> 15071 Latvia
#> 15072 Latvia
#> 15073 Latvia
#> 15074 Latvia
#> 15075 Latvia
#> 15076 Latvia
#> 15077 Latvia
#> 15078 Latvia
#> 15079 Least developed countries
#> 15080 Least developed countries
#> 15081 Least developed countries
#> 15082 Least developed countries
#> 15083 Least developed countries
#> 15084 Least developed countries
#> 15085 Least developed countries
#> 15086 Least developed countries
#> 15087 Least developed countries
#> 15088 Least developed countries
#> 15089 Least developed countries
#> 15090 Least developed countries
#> 15091 Least developed countries
#> 15092 Least developed countries
#> 15093 Lebanon
#> 15094 Lebanon
#> 15095 Lebanon
#> 15096 Lebanon
#> 15097 Lebanon
#> 15098 Lebanon
#> 15099 Lebanon
#> 15100 Lebanon
#> 15101 Lebanon
#> 15102 Lebanon
#> 15103 Lebanon
#> 15104 Lebanon
#> 15105 Lebanon
#> 15106 Lebanon
#> 15107 Lesotho
#> 15108 Lesotho
#> 15109 Lesotho
#> 15110 Lesotho
#> 15111 Lesotho
#> 15112 Lesotho
#> 15113 Lesotho
#> 15114 Lesotho
#> 15115 Lesotho
#> 15116 Lesotho
#> 15117 Lesotho
#> 15118 Lesotho
#> 15119 Lesotho
#> 15120 Lesotho
#> 15121 Less developed regions
#> 15122 Less developed regions
#> 15123 Less developed regions
#> 15124 Less developed regions
#> 15125 Less developed regions
#> 15126 Less developed regions
#> 15127 Less developed regions
#> 15128 Less developed regions
#> 15129 Less developed regions
#> 15130 Less developed regions
#> 15131 Less developed regions
#> 15132 Less developed regions
#> 15133 Less developed regions
#> 15134 Less developed regions
#> 15135 Less developed regions, excluding China
#> 15136 Less developed regions, excluding China
#> 15137 Less developed regions, excluding China
#> 15138 Less developed regions, excluding China
#> 15139 Less developed regions, excluding China
#> 15140 Less developed regions, excluding China
#> 15141 Less developed regions, excluding China
#> 15142 Less developed regions, excluding China
#> 15143 Less developed regions, excluding China
#> 15144 Less developed regions, excluding China
#> 15145 Less developed regions, excluding China
#> 15146 Less developed regions, excluding China
#> 15147 Less developed regions, excluding China
#> 15148 Less developed regions, excluding China
#> 15149 Less developed regions, excluding least developed countries
#> 15150 Less developed regions, excluding least developed countries
#> 15151 Less developed regions, excluding least developed countries
#> 15152 Less developed regions, excluding least developed countries
#> 15153 Less developed regions, excluding least developed countries
#> 15154 Less developed regions, excluding least developed countries
#> 15155 Less developed regions, excluding least developed countries
#> 15156 Less developed regions, excluding least developed countries
#> 15157 Less developed regions, excluding least developed countries
#> 15158 Less developed regions, excluding least developed countries
#> 15159 Less developed regions, excluding least developed countries
#> 15160 Less developed regions, excluding least developed countries
#> 15161 Less developed regions, excluding least developed countries
#> 15162 Less developed regions, excluding least developed countries
#> 15163 Liberia
#> 15164 Liberia
#> 15165 Liberia
#> 15166 Liberia
#> 15167 Liberia
#> 15168 Liberia
#> 15169 Liberia
#> 15170 Liberia
#> 15171 Liberia
#> 15172 Liberia
#> 15173 Liberia
#> 15174 Liberia
#> 15175 Liberia
#> 15176 Liberia
#> 15177 Libya
#> 15178 Libya
#> 15179 Libya
#> 15180 Libya
#> 15181 Libya
#> 15182 Libya
#> 15183 Libya
#> 15184 Libya
#> 15185 Libya
#> 15186 Libya
#> 15187 Libya
#> 15188 Libya
#> 15189 Libya
#> 15190 Libya
#> 15191 Lithuania
#> 15192 Lithuania
#> 15193 Lithuania
#> 15194 Lithuania
#> 15195 Lithuania
#> 15196 Lithuania
#> 15197 Lithuania
#> 15198 Lithuania
#> 15199 Lithuania
#> 15200 Lithuania
#> 15201 Lithuania
#> 15202 Lithuania
#> 15203 Lithuania
#> 15204 Lithuania
#> 15205 Low-income countries
#> 15206 Low-income countries
#> 15207 Low-income countries
#> 15208 Low-income countries
#> 15209 Low-income countries
#> 15210 Low-income countries
#> 15211 Low-income countries
#> 15212 Low-income countries
#> 15213 Low-income countries
#> 15214 Low-income countries
#> 15215 Low-income countries
#> 15216 Low-income countries
#> 15217 Low-income countries
#> 15218 Low-income countries
#> 15219 Lower-middle-income countries
#> 15220 Lower-middle-income countries
#> 15221 Lower-middle-income countries
#> 15222 Lower-middle-income countries
#> 15223 Lower-middle-income countries
#> 15224 Lower-middle-income countries
#> 15225 Lower-middle-income countries
#> 15226 Lower-middle-income countries
#> 15227 Lower-middle-income countries
#> 15228 Lower-middle-income countries
#> 15229 Lower-middle-income countries
#> 15230 Lower-middle-income countries
#> 15231 Lower-middle-income countries
#> 15232 Lower-middle-income countries
#> 15233 Luxembourg
#> 15234 Luxembourg
#> 15235 Luxembourg
#> 15236 Luxembourg
#> 15237 Luxembourg
#> 15238 Luxembourg
#> 15239 Luxembourg
#> 15240 Luxembourg
#> 15241 Luxembourg
#> 15242 Luxembourg
#> 15243 Luxembourg
#> 15244 Luxembourg
#> 15245 Luxembourg
#> 15246 Luxembourg
#> 15247 Madagascar
#> 15248 Madagascar
#> 15249 Madagascar
#> 15250 Madagascar
#> 15251 Madagascar
#> 15252 Madagascar
#> 15253 Madagascar
#> 15254 Madagascar
#> 15255 Madagascar
#> 15256 Madagascar
#> 15257 Madagascar
#> 15258 Madagascar
#> 15259 Madagascar
#> 15260 Madagascar
#> 15261 Malawi
#> 15262 Malawi
#> 15263 Malawi
#> 15264 Malawi
#> 15265 Malawi
#> 15266 Malawi
#> 15267 Malawi
#> 15268 Malawi
#> 15269 Malawi
#> 15270 Malawi
#> 15271 Malawi
#> 15272 Malawi
#> 15273 Malawi
#> 15274 Malawi
#> 15275 Malaysia
#> 15276 Malaysia
#> 15277 Malaysia
#> 15278 Malaysia
#> 15279 Malaysia
#> 15280 Malaysia
#> 15281 Malaysia
#> 15282 Malaysia
#> 15283 Malaysia
#> 15284 Malaysia
#> 15285 Malaysia
#> 15286 Malaysia
#> 15287 Malaysia
#> 15288 Malaysia
#> 15289 Maldives
#> 15290 Maldives
#> 15291 Maldives
#> 15292 Maldives
#> 15293 Maldives
#> 15294 Maldives
#> 15295 Maldives
#> 15296 Maldives
#> 15297 Maldives
#> 15298 Maldives
#> 15299 Maldives
#> 15300 Maldives
#> 15301 Maldives
#> 15302 Maldives
#> 15303 Mali
#> 15304 Mali
#> 15305 Mali
#> 15306 Mali
#> 15307 Mali
#> 15308 Mali
#> 15309 Mali
#> 15310 Mali
#> 15311 Mali
#> 15312 Mali
#> 15313 Mali
#> 15314 Mali
#> 15315 Mali
#> 15316 Mali
#> 15317 Malta
#> 15318 Malta
#> 15319 Malta
#> 15320 Malta
#> 15321 Malta
#> 15322 Malta
#> 15323 Malta
#> 15324 Malta
#> 15325 Malta
#> 15326 Malta
#> 15327 Malta
#> 15328 Malta
#> 15329 Malta
#> 15330 Malta
#> 15331 Martinique
#> 15332 Martinique
#> 15333 Martinique
#> 15334 Martinique
#> 15335 Martinique
#> 15336 Martinique
#> 15337 Martinique
#> 15338 Martinique
#> 15339 Martinique
#> 15340 Martinique
#> 15341 Martinique
#> 15342 Martinique
#> 15343 Martinique
#> 15344 Martinique
#> 15345 Mauritania
#> 15346 Mauritania
#> 15347 Mauritania
#> 15348 Mauritania
#> 15349 Mauritania
#> 15350 Mauritania
#> 15351 Mauritania
#> 15352 Mauritania
#> 15353 Mauritania
#> 15354 Mauritania
#> 15355 Mauritania
#> 15356 Mauritania
#> 15357 Mauritania
#> 15358 Mauritania
#> 15359 Mauritius
#> 15360 Mauritius
#> 15361 Mauritius
#> 15362 Mauritius
#> 15363 Mauritius
#> 15364 Mauritius
#> 15365 Mauritius
#> 15366 Mauritius
#> 15367 Mauritius
#> 15368 Mauritius
#> 15369 Mauritius
#> 15370 Mauritius
#> 15371 Mauritius
#> 15372 Mauritius
#> 15373 Mayotte
#> 15374 Mayotte
#> 15375 Mayotte
#> 15376 Mayotte
#> 15377 Mayotte
#> 15378 Mayotte
#> 15379 Mayotte
#> 15380 Mayotte
#> 15381 Mayotte
#> 15382 Mayotte
#> 15383 Mayotte
#> 15384 Mayotte
#> 15385 Mayotte
#> 15386 Mayotte
#> 15387 Melanesia
#> 15388 Melanesia
#> 15389 Melanesia
#> 15390 Melanesia
#> 15391 Melanesia
#> 15392 Melanesia
#> 15393 Melanesia
#> 15394 Melanesia
#> 15395 Melanesia
#> 15396 Melanesia
#> 15397 Melanesia
#> 15398 Melanesia
#> 15399 Melanesia
#> 15400 Melanesia
#> 15401 Mexico
#> 15402 Mexico
#> 15403 Mexico
#> 15404 Mexico
#> 15405 Mexico
#> 15406 Mexico
#> 15407 Mexico
#> 15408 Mexico
#> 15409 Mexico
#> 15410 Mexico
#> 15411 Mexico
#> 15412 Mexico
#> 15413 Mexico
#> 15414 Mexico
#> 15415 Micronesia
#> 15416 Micronesia
#> 15417 Micronesia
#> 15418 Micronesia
#> 15419 Micronesia
#> 15420 Micronesia
#> 15421 Micronesia
#> 15422 Micronesia
#> 15423 Micronesia
#> 15424 Micronesia
#> 15425 Micronesia
#> 15426 Micronesia
#> 15427 Micronesia
#> 15428 Micronesia
#> 15429 Micronesia (Fed. States of)
#> 15430 Micronesia (Fed. States of)
#> 15431 Micronesia (Fed. States of)
#> 15432 Micronesia (Fed. States of)
#> 15433 Micronesia (Fed. States of)
#> 15434 Micronesia (Fed. States of)
#> 15435 Micronesia (Fed. States of)
#> 15436 Micronesia (Fed. States of)
#> 15437 Micronesia (Fed. States of)
#> 15438 Micronesia (Fed. States of)
#> 15439 Micronesia (Fed. States of)
#> 15440 Micronesia (Fed. States of)
#> 15441 Micronesia (Fed. States of)
#> 15442 Micronesia (Fed. States of)
#> 15443 Middle Africa
#> 15444 Middle Africa
#> 15445 Middle Africa
#> 15446 Middle Africa
#> 15447 Middle Africa
#> 15448 Middle Africa
#> 15449 Middle Africa
#> 15450 Middle Africa
#> 15451 Middle Africa
#> 15452 Middle Africa
#> 15453 Middle Africa
#> 15454 Middle Africa
#> 15455 Middle Africa
#> 15456 Middle Africa
#> 15457 Middle-income countries
#> 15458 Middle-income countries
#> 15459 Middle-income countries
#> 15460 Middle-income countries
#> 15461 Middle-income countries
#> 15462 Middle-income countries
#> 15463 Middle-income countries
#> 15464 Middle-income countries
#> 15465 Middle-income countries
#> 15466 Middle-income countries
#> 15467 Middle-income countries
#> 15468 Middle-income countries
#> 15469 Middle-income countries
#> 15470 Middle-income countries
#> 15471 Mongolia
#> 15472 Mongolia
#> 15473 Mongolia
#> 15474 Mongolia
#> 15475 Mongolia
#> 15476 Mongolia
#> 15477 Mongolia
#> 15478 Mongolia
#> 15479 Mongolia
#> 15480 Mongolia
#> 15481 Mongolia
#> 15482 Mongolia
#> 15483 Mongolia
#> 15484 Mongolia
#> 15485 Montenegro
#> 15486 Montenegro
#> 15487 Montenegro
#> 15488 Montenegro
#> 15489 Montenegro
#> 15490 Montenegro
#> 15491 Montenegro
#> 15492 Montenegro
#> 15493 Montenegro
#> 15494 Montenegro
#> 15495 Montenegro
#> 15496 Montenegro
#> 15497 Montenegro
#> 15498 Montenegro
#> 15499 More developed regions
#> 15500 More developed regions
#> 15501 More developed regions
#> 15502 More developed regions
#> 15503 More developed regions
#> 15504 More developed regions
#> 15505 More developed regions
#> 15506 More developed regions
#> 15507 More developed regions
#> 15508 More developed regions
#> 15509 More developed regions
#> 15510 More developed regions
#> 15511 More developed regions
#> 15512 More developed regions
#> 15513 Morocco
#> 15514 Morocco
#> 15515 Morocco
#> 15516 Morocco
#> 15517 Morocco
#> 15518 Morocco
#> 15519 Morocco
#> 15520 Morocco
#> 15521 Morocco
#> 15522 Morocco
#> 15523 Morocco
#> 15524 Morocco
#> 15525 Morocco
#> 15526 Morocco
#> 15527 Mozambique
#> 15528 Mozambique
#> 15529 Mozambique
#> 15530 Mozambique
#> 15531 Mozambique
#> 15532 Mozambique
#> 15533 Mozambique
#> 15534 Mozambique
#> 15535 Mozambique
#> 15536 Mozambique
#> 15537 Mozambique
#> 15538 Mozambique
#> 15539 Mozambique
#> 15540 Mozambique
#> 15541 Myanmar
#> 15542 Myanmar
#> 15543 Myanmar
#> 15544 Myanmar
#> 15545 Myanmar
#> 15546 Myanmar
#> 15547 Myanmar
#> 15548 Myanmar
#> 15549 Myanmar
#> 15550 Myanmar
#> 15551 Myanmar
#> 15552 Myanmar
#> 15553 Myanmar
#> 15554 Myanmar
#> 15555 NORTHERN AMERICA
#> 15556 NORTHERN AMERICA
#> 15557 NORTHERN AMERICA
#> 15558 NORTHERN AMERICA
#> 15559 NORTHERN AMERICA
#> 15560 NORTHERN AMERICA
#> 15561 NORTHERN AMERICA
#> 15562 NORTHERN AMERICA
#> 15563 NORTHERN AMERICA
#> 15564 NORTHERN AMERICA
#> 15565 NORTHERN AMERICA
#> 15566 NORTHERN AMERICA
#> 15567 NORTHERN AMERICA
#> 15568 NORTHERN AMERICA
#> 15569 Namibia
#> 15570 Namibia
#> 15571 Namibia
#> 15572 Namibia
#> 15573 Namibia
#> 15574 Namibia
#> 15575 Namibia
#> 15576 Namibia
#> 15577 Namibia
#> 15578 Namibia
#> 15579 Namibia
#> 15580 Namibia
#> 15581 Namibia
#> 15582 Namibia
#> 15583 Nepal
#> 15584 Nepal
#> 15585 Nepal
#> 15586 Nepal
#> 15587 Nepal
#> 15588 Nepal
#> 15589 Nepal
#> 15590 Nepal
#> 15591 Nepal
#> 15592 Nepal
#> 15593 Nepal
#> 15594 Nepal
#> 15595 Nepal
#> 15596 Nepal
#> 15597 Netherlands
#> 15598 Netherlands
#> 15599 Netherlands
#> 15600 Netherlands
#> 15601 Netherlands
#> 15602 Netherlands
#> 15603 Netherlands
#> 15604 Netherlands
#> 15605 Netherlands
#> 15606 Netherlands
#> 15607 Netherlands
#> 15608 Netherlands
#> 15609 Netherlands
#> 15610 Netherlands
#> 15611 New Caledonia
#> 15612 New Caledonia
#> 15613 New Caledonia
#> 15614 New Caledonia
#> 15615 New Caledonia
#> 15616 New Caledonia
#> 15617 New Caledonia
#> 15618 New Caledonia
#> 15619 New Caledonia
#> 15620 New Caledonia
#> 15621 New Caledonia
#> 15622 New Caledonia
#> 15623 New Caledonia
#> 15624 New Caledonia
#> 15625 New Zealand
#> 15626 New Zealand
#> 15627 New Zealand
#> 15628 New Zealand
#> 15629 New Zealand
#> 15630 New Zealand
#> 15631 New Zealand
#> 15632 New Zealand
#> 15633 New Zealand
#> 15634 New Zealand
#> 15635 New Zealand
#> 15636 New Zealand
#> 15637 New Zealand
#> 15638 New Zealand
#> 15639 Nicaragua
#> 15640 Nicaragua
#> 15641 Nicaragua
#> 15642 Nicaragua
#> 15643 Nicaragua
#> 15644 Nicaragua
#> 15645 Nicaragua
#> 15646 Nicaragua
#> 15647 Nicaragua
#> 15648 Nicaragua
#> 15649 Nicaragua
#> 15650 Nicaragua
#> 15651 Nicaragua
#> 15652 Nicaragua
#> 15653 Niger
#> 15654 Niger
#> 15655 Niger
#> 15656 Niger
#> 15657 Niger
#> 15658 Niger
#> 15659 Niger
#> 15660 Niger
#> 15661 Niger
#> 15662 Niger
#> 15663 Niger
#> 15664 Niger
#> 15665 Niger
#> 15666 Niger
#> 15667 Nigeria
#> 15668 Nigeria
#> 15669 Nigeria
#> 15670 Nigeria
#> 15671 Nigeria
#> 15672 Nigeria
#> 15673 Nigeria
#> 15674 Nigeria
#> 15675 Nigeria
#> 15676 Nigeria
#> 15677 Nigeria
#> 15678 Nigeria
#> 15679 Nigeria
#> 15680 Nigeria
#> 15681 Northern Africa
#> 15682 Northern Africa
#> 15683 Northern Africa
#> 15684 Northern Africa
#> 15685 Northern Africa
#> 15686 Northern Africa
#> 15687 Northern Africa
#> 15688 Northern Africa
#> 15689 Northern Africa
#> 15690 Northern Africa
#> 15691 Northern Africa
#> 15692 Northern Africa
#> 15693 Northern Africa
#> 15694 Northern Africa
#> 15695 Northern Europe
#> 15696 Northern Europe
#> 15697 Northern Europe
#> 15698 Northern Europe
#> 15699 Northern Europe
#> 15700 Northern Europe
#> 15701 Northern Europe
#> 15702 Northern Europe
#> 15703 Northern Europe
#> 15704 Northern Europe
#> 15705 Northern Europe
#> 15706 Northern Europe
#> 15707 Northern Europe
#> 15708 Northern Europe
#> 15709 Norway
#> 15710 Norway
#> 15711 Norway
#> 15712 Norway
#> 15713 Norway
#> 15714 Norway
#> 15715 Norway
#> 15716 Norway
#> 15717 Norway
#> 15718 Norway
#> 15719 Norway
#> 15720 Norway
#> 15721 Norway
#> 15722 Norway
#> 15723 OCEANIA
#> 15724 OCEANIA
#> 15725 OCEANIA
#> 15726 OCEANIA
#> 15727 OCEANIA
#> 15728 OCEANIA
#> 15729 OCEANIA
#> 15730 OCEANIA
#> 15731 OCEANIA
#> 15732 OCEANIA
#> 15733 OCEANIA
#> 15734 OCEANIA
#> 15735 OCEANIA
#> 15736 OCEANIA
#> 15737 Oman
#> 15738 Oman
#> 15739 Oman
#> 15740 Oman
#> 15741 Oman
#> 15742 Oman
#> 15743 Oman
#> 15744 Oman
#> 15745 Oman
#> 15746 Oman
#> 15747 Oman
#> 15748 Oman
#> 15749 Oman
#> 15750 Oman
#> 15751 Pakistan
#> 15752 Pakistan
#> 15753 Pakistan
#> 15754 Pakistan
#> 15755 Pakistan
#> 15756 Pakistan
#> 15757 Pakistan
#> 15758 Pakistan
#> 15759 Pakistan
#> 15760 Pakistan
#> 15761 Pakistan
#> 15762 Pakistan
#> 15763 Pakistan
#> 15764 Pakistan
#> 15765 Panama
#> 15766 Panama
#> 15767 Panama
#> 15768 Panama
#> 15769 Panama
#> 15770 Panama
#> 15771 Panama
#> 15772 Panama
#> 15773 Panama
#> 15774 Panama
#> 15775 Panama
#> 15776 Panama
#> 15777 Panama
#> 15778 Panama
#> 15779 Papua New Guinea
#> 15780 Papua New Guinea
#> 15781 Papua New Guinea
#> 15782 Papua New Guinea
#> 15783 Papua New Guinea
#> 15784 Papua New Guinea
#> 15785 Papua New Guinea
#> 15786 Papua New Guinea
#> 15787 Papua New Guinea
#> 15788 Papua New Guinea
#> 15789 Papua New Guinea
#> 15790 Papua New Guinea
#> 15791 Papua New Guinea
#> 15792 Papua New Guinea
#> 15793 Paraguay
#> 15794 Paraguay
#> 15795 Paraguay
#> 15796 Paraguay
#> 15797 Paraguay
#> 15798 Paraguay
#> 15799 Paraguay
#> 15800 Paraguay
#> 15801 Paraguay
#> 15802 Paraguay
#> 15803 Paraguay
#> 15804 Paraguay
#> 15805 Paraguay
#> 15806 Paraguay
#> 15807 Peru
#> 15808 Peru
#> 15809 Peru
#> 15810 Peru
#> 15811 Peru
#> 15812 Peru
#> 15813 Peru
#> 15814 Peru
#> 15815 Peru
#> 15816 Peru
#> 15817 Peru
#> 15818 Peru
#> 15819 Peru
#> 15820 Peru
#> 15821 Philippines
#> 15822 Philippines
#> 15823 Philippines
#> 15824 Philippines
#> 15825 Philippines
#> 15826 Philippines
#> 15827 Philippines
#> 15828 Philippines
#> 15829 Philippines
#> 15830 Philippines
#> 15831 Philippines
#> 15832 Philippines
#> 15833 Philippines
#> 15834 Philippines
#> 15835 Poland
#> 15836 Poland
#> 15837 Poland
#> 15838 Poland
#> 15839 Poland
#> 15840 Poland
#> 15841 Poland
#> 15842 Poland
#> 15843 Poland
#> 15844 Poland
#> 15845 Poland
#> 15846 Poland
#> 15847 Poland
#> 15848 Poland
#> 15849 Polynesia
#> 15850 Polynesia
#> 15851 Polynesia
#> 15852 Polynesia
#> 15853 Polynesia
#> 15854 Polynesia
#> 15855 Polynesia
#> 15856 Polynesia
#> 15857 Polynesia
#> 15858 Polynesia
#> 15859 Polynesia
#> 15860 Polynesia
#> 15861 Polynesia
#> 15862 Polynesia
#> 15863 Portugal
#> 15864 Portugal
#> 15865 Portugal
#> 15866 Portugal
#> 15867 Portugal
#> 15868 Portugal
#> 15869 Portugal
#> 15870 Portugal
#> 15871 Portugal
#> 15872 Portugal
#> 15873 Portugal
#> 15874 Portugal
#> 15875 Portugal
#> 15876 Portugal
#> 15877 Puerto Rico
#> 15878 Puerto Rico
#> 15879 Puerto Rico
#> 15880 Puerto Rico
#> 15881 Puerto Rico
#> 15882 Puerto Rico
#> 15883 Puerto Rico
#> 15884 Puerto Rico
#> 15885 Puerto Rico
#> 15886 Puerto Rico
#> 15887 Puerto Rico
#> 15888 Puerto Rico
#> 15889 Puerto Rico
#> 15890 Puerto Rico
#> 15891 Qatar
#> 15892 Qatar
#> 15893 Qatar
#> 15894 Qatar
#> 15895 Qatar
#> 15896 Qatar
#> 15897 Qatar
#> 15898 Qatar
#> 15899 Qatar
#> 15900 Qatar
#> 15901 Qatar
#> 15902 Qatar
#> 15903 Qatar
#> 15904 Qatar
#> 15905 Republic of Korea
#> 15906 Republic of Korea
#> 15907 Republic of Korea
#> 15908 Republic of Korea
#> 15909 Republic of Korea
#> 15910 Republic of Korea
#> 15911 Republic of Korea
#> 15912 Republic of Korea
#> 15913 Republic of Korea
#> 15914 Republic of Korea
#> 15915 Republic of Korea
#> 15916 Republic of Korea
#> 15917 Republic of Korea
#> 15918 Republic of Korea
#> 15919 Republic of Moldova
#> 15920 Republic of Moldova
#> 15921 Republic of Moldova
#> 15922 Republic of Moldova
#> 15923 Republic of Moldova
#> 15924 Republic of Moldova
#> 15925 Republic of Moldova
#> 15926 Republic of Moldova
#> 15927 Republic of Moldova
#> 15928 Republic of Moldova
#> 15929 Republic of Moldova
#> 15930 Republic of Moldova
#> 15931 Republic of Moldova
#> 15932 Republic of Moldova
#> 15933 Reunion
#> 15934 Reunion
#> 15935 Reunion
#> 15936 Reunion
#> 15937 Reunion
#> 15938 Reunion
#> 15939 Reunion
#> 15940 Reunion
#> 15941 Reunion
#> 15942 Reunion
#> 15943 Reunion
#> 15944 Reunion
#> 15945 Reunion
#> 15946 Reunion
#> 15947 Romania
#> 15948 Romania
#> 15949 Romania
#> 15950 Romania
#> 15951 Romania
#> 15952 Romania
#> 15953 Romania
#> 15954 Romania
#> 15955 Romania
#> 15956 Romania
#> 15957 Romania
#> 15958 Romania
#> 15959 Romania
#> 15960 Romania
#> 15961 Russian Federation
#> 15962 Russian Federation
#> 15963 Russian Federation
#> 15964 Russian Federation
#> 15965 Russian Federation
#> 15966 Russian Federation
#> 15967 Russian Federation
#> 15968 Russian Federation
#> 15969 Russian Federation
#> 15970 Russian Federation
#> 15971 Russian Federation
#> 15972 Russian Federation
#> 15973 Russian Federation
#> 15974 Russian Federation
#> 15975 Rwanda
#> 15976 Rwanda
#> 15977 Rwanda
#> 15978 Rwanda
#> 15979 Rwanda
#> 15980 Rwanda
#> 15981 Rwanda
#> 15982 Rwanda
#> 15983 Rwanda
#> 15984 Rwanda
#> 15985 Rwanda
#> 15986 Rwanda
#> 15987 Rwanda
#> 15988 Rwanda
#> 15989 Saint Lucia
#> 15990 Saint Lucia
#> 15991 Saint Lucia
#> 15992 Saint Lucia
#> 15993 Saint Lucia
#> 15994 Saint Lucia
#> 15995 Saint Lucia
#> 15996 Saint Lucia
#> 15997 Saint Lucia
#> 15998 Saint Lucia
#> 15999 Saint Lucia
#> 16000 Saint Lucia
#> 16001 Saint Lucia
#> 16002 Saint Lucia
#> 16003 Saint Vincent and the Grenadines
#> 16004 Saint Vincent and the Grenadines
#> 16005 Saint Vincent and the Grenadines
#> 16006 Saint Vincent and the Grenadines
#> 16007 Saint Vincent and the Grenadines
#> 16008 Saint Vincent and the Grenadines
#> 16009 Saint Vincent and the Grenadines
#> 16010 Saint Vincent and the Grenadines
#> 16011 Saint Vincent and the Grenadines
#> 16012 Saint Vincent and the Grenadines
#> 16013 Saint Vincent and the Grenadines
#> 16014 Saint Vincent and the Grenadines
#> 16015 Saint Vincent and the Grenadines
#> 16016 Saint Vincent and the Grenadines
#> 16017 Samoa
#> 16018 Samoa
#> 16019 Samoa
#> 16020 Samoa
#> 16021 Samoa
#> 16022 Samoa
#> 16023 Samoa
#> 16024 Samoa
#> 16025 Samoa
#> 16026 Samoa
#> 16027 Samoa
#> 16028 Samoa
#> 16029 Samoa
#> 16030 Samoa
#> 16031 Sao Tome and Principe
#> 16032 Sao Tome and Principe
#> 16033 Sao Tome and Principe
#> 16034 Sao Tome and Principe
#> 16035 Sao Tome and Principe
#> 16036 Sao Tome and Principe
#> 16037 Sao Tome and Principe
#> 16038 Sao Tome and Principe
#> 16039 Sao Tome and Principe
#> 16040 Sao Tome and Principe
#> 16041 Sao Tome and Principe
#> 16042 Sao Tome and Principe
#> 16043 Sao Tome and Principe
#> 16044 Sao Tome and Principe
#> 16045 Saudi Arabia
#> 16046 Saudi Arabia
#> 16047 Saudi Arabia
#> 16048 Saudi Arabia
#> 16049 Saudi Arabia
#> 16050 Saudi Arabia
#> 16051 Saudi Arabia
#> 16052 Saudi Arabia
#> 16053 Saudi Arabia
#> 16054 Saudi Arabia
#> 16055 Saudi Arabia
#> 16056 Saudi Arabia
#> 16057 Saudi Arabia
#> 16058 Saudi Arabia
#> 16059 Senegal
#> 16060 Senegal
#> 16061 Senegal
#> 16062 Senegal
#> 16063 Senegal
#> 16064 Senegal
#> 16065 Senegal
#> 16066 Senegal
#> 16067 Senegal
#> 16068 Senegal
#> 16069 Senegal
#> 16070 Senegal
#> 16071 Senegal
#> 16072 Senegal
#> 16073 Serbia
#> 16074 Serbia
#> 16075 Serbia
#> 16076 Serbia
#> 16077 Serbia
#> 16078 Serbia
#> 16079 Serbia
#> 16080 Serbia
#> 16081 Serbia
#> 16082 Serbia
#> 16083 Serbia
#> 16084 Serbia
#> 16085 Serbia
#> 16086 Serbia
#> 16087 Seychelles
#> 16088 Seychelles
#> 16089 Seychelles
#> 16090 Seychelles
#> 16091 Seychelles
#> 16092 Seychelles
#> 16093 Seychelles
#> 16094 Seychelles
#> 16095 Seychelles
#> 16096 Seychelles
#> 16097 Seychelles
#> 16098 Seychelles
#> 16099 Seychelles
#> 16100 Seychelles
#> 16101 Sierra Leone
#> 16102 Sierra Leone
#> 16103 Sierra Leone
#> 16104 Sierra Leone
#> 16105 Sierra Leone
#> 16106 Sierra Leone
#> 16107 Sierra Leone
#> 16108 Sierra Leone
#> 16109 Sierra Leone
#> 16110 Sierra Leone
#> 16111 Sierra Leone
#> 16112 Sierra Leone
#> 16113 Sierra Leone
#> 16114 Sierra Leone
#> 16115 Singapore
#> 16116 Singapore
#> 16117 Singapore
#> 16118 Singapore
#> 16119 Singapore
#> 16120 Singapore
#> 16121 Singapore
#> 16122 Singapore
#> 16123 Singapore
#> 16124 Singapore
#> 16125 Singapore
#> 16126 Singapore
#> 16127 Singapore
#> 16128 Singapore
#> 16129 Slovakia
#> 16130 Slovakia
#> 16131 Slovakia
#> 16132 Slovakia
#> 16133 Slovakia
#> 16134 Slovakia
#> 16135 Slovakia
#> 16136 Slovakia
#> 16137 Slovakia
#> 16138 Slovakia
#> 16139 Slovakia
#> 16140 Slovakia
#> 16141 Slovakia
#> 16142 Slovakia
#> 16143 Slovenia
#> 16144 Slovenia
#> 16145 Slovenia
#> 16146 Slovenia
#> 16147 Slovenia
#> 16148 Slovenia
#> 16149 Slovenia
#> 16150 Slovenia
#> 16151 Slovenia
#> 16152 Slovenia
#> 16153 Slovenia
#> 16154 Slovenia
#> 16155 Slovenia
#> 16156 Slovenia
#> 16157 Solomon Islands
#> 16158 Solomon Islands
#> 16159 Solomon Islands
#> 16160 Solomon Islands
#> 16161 Solomon Islands
#> 16162 Solomon Islands
#> 16163 Solomon Islands
#> 16164 Solomon Islands
#> 16165 Solomon Islands
#> 16166 Solomon Islands
#> 16167 Solomon Islands
#> 16168 Solomon Islands
#> 16169 Solomon Islands
#> 16170 Solomon Islands
#> 16171 Somalia
#> 16172 Somalia
#> 16173 Somalia
#> 16174 Somalia
#> 16175 Somalia
#> 16176 Somalia
#> 16177 Somalia
#> 16178 Somalia
#> 16179 Somalia
#> 16180 Somalia
#> 16181 Somalia
#> 16182 Somalia
#> 16183 Somalia
#> 16184 Somalia
#> 16185 South Africa
#> 16186 South Africa
#> 16187 South Africa
#> 16188 South Africa
#> 16189 South Africa
#> 16190 South Africa
#> 16191 South Africa
#> 16192 South Africa
#> 16193 South Africa
#> 16194 South Africa
#> 16195 South Africa
#> 16196 South Africa
#> 16197 South Africa
#> 16198 South Africa
#> 16199 South America
#> 16200 South America
#> 16201 South America
#> 16202 South America
#> 16203 South America
#> 16204 South America
#> 16205 South America
#> 16206 South America
#> 16207 South America
#> 16208 South America
#> 16209 South America
#> 16210 South America
#> 16211 South America
#> 16212 South America
#> 16213 South Sudan
#> 16214 South Sudan
#> 16215 South Sudan
#> 16216 South Sudan
#> 16217 South Sudan
#> 16218 South Sudan
#> 16219 South Sudan
#> 16220 South Sudan
#> 16221 South Sudan
#> 16222 South Sudan
#> 16223 South Sudan
#> 16224 South Sudan
#> 16225 South Sudan
#> 16226 South Sudan
#> 16227 South-Central Asia
#> 16228 South-Central Asia
#> 16229 South-Central Asia
#> 16230 South-Central Asia
#> 16231 South-Central Asia
#> 16232 South-Central Asia
#> 16233 South-Central Asia
#> 16234 South-Central Asia
#> 16235 South-Central Asia
#> 16236 South-Central Asia
#> 16237 South-Central Asia
#> 16238 South-Central Asia
#> 16239 South-Central Asia
#> 16240 South-Central Asia
#> 16241 South-Eastern Asia
#> 16242 South-Eastern Asia
#> 16243 South-Eastern Asia
#> 16244 South-Eastern Asia
#> 16245 South-Eastern Asia
#> 16246 South-Eastern Asia
#> 16247 South-Eastern Asia
#> 16248 South-Eastern Asia
#> 16249 South-Eastern Asia
#> 16250 South-Eastern Asia
#> 16251 South-Eastern Asia
#> 16252 South-Eastern Asia
#> 16253 South-Eastern Asia
#> 16254 South-Eastern Asia
#> 16255 Southern Africa
#> 16256 Southern Africa
#> 16257 Southern Africa
#> 16258 Southern Africa
#> 16259 Southern Africa
#> 16260 Southern Africa
#> 16261 Southern Africa
#> 16262 Southern Africa
#> 16263 Southern Africa
#> 16264 Southern Africa
#> 16265 Southern Africa
#> 16266 Southern Africa
#> 16267 Southern Africa
#> 16268 Southern Africa
#> 16269 Southern Asia
#> 16270 Southern Asia
#> 16271 Southern Asia
#> 16272 Southern Asia
#> 16273 Southern Asia
#> 16274 Southern Asia
#> 16275 Southern Asia
#> 16276 Southern Asia
#> 16277 Southern Asia
#> 16278 Southern Asia
#> 16279 Southern Asia
#> 16280 Southern Asia
#> 16281 Southern Asia
#> 16282 Southern Asia
#> 16283 Southern Europe
#> 16284 Southern Europe
#> 16285 Southern Europe
#> 16286 Southern Europe
#> 16287 Southern Europe
#> 16288 Southern Europe
#> 16289 Southern Europe
#> 16290 Southern Europe
#> 16291 Southern Europe
#> 16292 Southern Europe
#> 16293 Southern Europe
#> 16294 Southern Europe
#> 16295 Southern Europe
#> 16296 Southern Europe
#> 16297 Spain
#> 16298 Spain
#> 16299 Spain
#> 16300 Spain
#> 16301 Spain
#> 16302 Spain
#> 16303 Spain
#> 16304 Spain
#> 16305 Spain
#> 16306 Spain
#> 16307 Spain
#> 16308 Spain
#> 16309 Spain
#> 16310 Spain
#> 16311 Sri Lanka
#> 16312 Sri Lanka
#> 16313 Sri Lanka
#> 16314 Sri Lanka
#> 16315 Sri Lanka
#> 16316 Sri Lanka
#> 16317 Sri Lanka
#> 16318 Sri Lanka
#> 16319 Sri Lanka
#> 16320 Sri Lanka
#> 16321 Sri Lanka
#> 16322 Sri Lanka
#> 16323 Sri Lanka
#> 16324 Sri Lanka
#> 16325 State of Palestine
#> 16326 State of Palestine
#> 16327 State of Palestine
#> 16328 State of Palestine
#> 16329 State of Palestine
#> 16330 State of Palestine
#> 16331 State of Palestine
#> 16332 State of Palestine
#> 16333 State of Palestine
#> 16334 State of Palestine
#> 16335 State of Palestine
#> 16336 State of Palestine
#> 16337 State of Palestine
#> 16338 State of Palestine
#> 16339 Sub-Saharan Africa
#> 16340 Sub-Saharan Africa
#> 16341 Sub-Saharan Africa
#> 16342 Sub-Saharan Africa
#> 16343 Sub-Saharan Africa
#> 16344 Sub-Saharan Africa
#> 16345 Sub-Saharan Africa
#> 16346 Sub-Saharan Africa
#> 16347 Sub-Saharan Africa
#> 16348 Sub-Saharan Africa
#> 16349 Sub-Saharan Africa
#> 16350 Sub-Saharan Africa
#> 16351 Sub-Saharan Africa
#> 16352 Sub-Saharan Africa
#> 16353 Sudan
#> 16354 Sudan
#> 16355 Sudan
#> 16356 Sudan
#> 16357 Sudan
#> 16358 Sudan
#> 16359 Sudan
#> 16360 Sudan
#> 16361 Sudan
#> 16362 Sudan
#> 16363 Sudan
#> 16364 Sudan
#> 16365 Sudan
#> 16366 Sudan
#> 16367 Suriname
#> 16368 Suriname
#> 16369 Suriname
#> 16370 Suriname
#> 16371 Suriname
#> 16372 Suriname
#> 16373 Suriname
#> 16374 Suriname
#> 16375 Suriname
#> 16376 Suriname
#> 16377 Suriname
#> 16378 Suriname
#> 16379 Suriname
#> 16380 Suriname
#> 16381 Swaziland
#> 16382 Swaziland
#> 16383 Swaziland
#> 16384 Swaziland
#> 16385 Swaziland
#> 16386 Swaziland
#> 16387 Swaziland
#> 16388 Swaziland
#> 16389 Swaziland
#> 16390 Swaziland
#> 16391 Swaziland
#> 16392 Swaziland
#> 16393 Swaziland
#> 16394 Swaziland
#> 16395 Sweden
#> 16396 Sweden
#> 16397 Sweden
#> 16398 Sweden
#> 16399 Sweden
#> 16400 Sweden
#> 16401 Sweden
#> 16402 Sweden
#> 16403 Sweden
#> 16404 Sweden
#> 16405 Sweden
#> 16406 Sweden
#> 16407 Sweden
#> 16408 Sweden
#> 16409 Switzerland
#> 16410 Switzerland
#> 16411 Switzerland
#> 16412 Switzerland
#> 16413 Switzerland
#> 16414 Switzerland
#> 16415 Switzerland
#> 16416 Switzerland
#> 16417 Switzerland
#> 16418 Switzerland
#> 16419 Switzerland
#> 16420 Switzerland
#> 16421 Switzerland
#> 16422 Switzerland
#> 16423 Syrian Arab Republic
#> 16424 Syrian Arab Republic
#> 16425 Syrian Arab Republic
#> 16426 Syrian Arab Republic
#> 16427 Syrian Arab Republic
#> 16428 Syrian Arab Republic
#> 16429 Syrian Arab Republic
#> 16430 Syrian Arab Republic
#> 16431 Syrian Arab Republic
#> 16432 Syrian Arab Republic
#> 16433 Syrian Arab Republic
#> 16434 Syrian Arab Republic
#> 16435 Syrian Arab Republic
#> 16436 Syrian Arab Republic
#> 16437 TFYR Macedonia
#> 16438 TFYR Macedonia
#> 16439 TFYR Macedonia
#> 16440 TFYR Macedonia
#> 16441 TFYR Macedonia
#> 16442 TFYR Macedonia
#> 16443 TFYR Macedonia
#> 16444 TFYR Macedonia
#> 16445 TFYR Macedonia
#> 16446 TFYR Macedonia
#> 16447 TFYR Macedonia
#> 16448 TFYR Macedonia
#> 16449 TFYR Macedonia
#> 16450 TFYR Macedonia
#> 16451 Tajikistan
#> 16452 Tajikistan
#> 16453 Tajikistan
#> 16454 Tajikistan
#> 16455 Tajikistan
#> 16456 Tajikistan
#> 16457 Tajikistan
#> 16458 Tajikistan
#> 16459 Tajikistan
#> 16460 Tajikistan
#> 16461 Tajikistan
#> 16462 Tajikistan
#> 16463 Tajikistan
#> 16464 Tajikistan
#> 16465 Thailand
#> 16466 Thailand
#> 16467 Thailand
#> 16468 Thailand
#> 16469 Thailand
#> 16470 Thailand
#> 16471 Thailand
#> 16472 Thailand
#> 16473 Thailand
#> 16474 Thailand
#> 16475 Thailand
#> 16476 Thailand
#> 16477 Thailand
#> 16478 Thailand
#> 16479 Timor-Leste
#> 16480 Timor-Leste
#> 16481 Timor-Leste
#> 16482 Timor-Leste
#> 16483 Timor-Leste
#> 16484 Timor-Leste
#> 16485 Timor-Leste
#> 16486 Timor-Leste
#> 16487 Timor-Leste
#> 16488 Timor-Leste
#> 16489 Timor-Leste
#> 16490 Timor-Leste
#> 16491 Timor-Leste
#> 16492 Timor-Leste
#> 16493 Togo
#> 16494 Togo
#> 16495 Togo
#> 16496 Togo
#> 16497 Togo
#> 16498 Togo
#> 16499 Togo
#> 16500 Togo
#> 16501 Togo
#> 16502 Togo
#> 16503 Togo
#> 16504 Togo
#> 16505 Togo
#> 16506 Togo
#> 16507 Tonga
#> 16508 Tonga
#> 16509 Tonga
#> 16510 Tonga
#> 16511 Tonga
#> 16512 Tonga
#> 16513 Tonga
#> 16514 Tonga
#> 16515 Tonga
#> 16516 Tonga
#> 16517 Tonga
#> 16518 Tonga
#> 16519 Tonga
#> 16520 Tonga
#> 16521 Trinidad and Tobago
#> 16522 Trinidad and Tobago
#> 16523 Trinidad and Tobago
#> 16524 Trinidad and Tobago
#> 16525 Trinidad and Tobago
#> 16526 Trinidad and Tobago
#> 16527 Trinidad and Tobago
#> 16528 Trinidad and Tobago
#> 16529 Trinidad and Tobago
#> 16530 Trinidad and Tobago
#> 16531 Trinidad and Tobago
#> 16532 Trinidad and Tobago
#> 16533 Trinidad and Tobago
#> 16534 Trinidad and Tobago
#> 16535 Tunisia
#> 16536 Tunisia
#> 16537 Tunisia
#> 16538 Tunisia
#> 16539 Tunisia
#> 16540 Tunisia
#> 16541 Tunisia
#> 16542 Tunisia
#> 16543 Tunisia
#> 16544 Tunisia
#> 16545 Tunisia
#> 16546 Tunisia
#> 16547 Tunisia
#> 16548 Tunisia
#> 16549 Turkey
#> 16550 Turkey
#> 16551 Turkey
#> 16552 Turkey
#> 16553 Turkey
#> 16554 Turkey
#> 16555 Turkey
#> 16556 Turkey
#> 16557 Turkey
#> 16558 Turkey
#> 16559 Turkey
#> 16560 Turkey
#> 16561 Turkey
#> 16562 Turkey
#> 16563 Turkmenistan
#> 16564 Turkmenistan
#> 16565 Turkmenistan
#> 16566 Turkmenistan
#> 16567 Turkmenistan
#> 16568 Turkmenistan
#> 16569 Turkmenistan
#> 16570 Turkmenistan
#> 16571 Turkmenistan
#> 16572 Turkmenistan
#> 16573 Turkmenistan
#> 16574 Turkmenistan
#> 16575 Turkmenistan
#> 16576 Turkmenistan
#> 16577 Uganda
#> 16578 Uganda
#> 16579 Uganda
#> 16580 Uganda
#> 16581 Uganda
#> 16582 Uganda
#> 16583 Uganda
#> 16584 Uganda
#> 16585 Uganda
#> 16586 Uganda
#> 16587 Uganda
#> 16588 Uganda
#> 16589 Uganda
#> 16590 Uganda
#> 16591 Ukraine
#> 16592 Ukraine
#> 16593 Ukraine
#> 16594 Ukraine
#> 16595 Ukraine
#> 16596 Ukraine
#> 16597 Ukraine
#> 16598 Ukraine
#> 16599 Ukraine
#> 16600 Ukraine
#> 16601 Ukraine
#> 16602 Ukraine
#> 16603 Ukraine
#> 16604 Ukraine
#> 16605 United Arab Emirates
#> 16606 United Arab Emirates
#> 16607 United Arab Emirates
#> 16608 United Arab Emirates
#> 16609 United Arab Emirates
#> 16610 United Arab Emirates
#> 16611 United Arab Emirates
#> 16612 United Arab Emirates
#> 16613 United Arab Emirates
#> 16614 United Arab Emirates
#> 16615 United Arab Emirates
#> 16616 United Arab Emirates
#> 16617 United Arab Emirates
#> 16618 United Arab Emirates
#> 16619 United Kingdom
#> 16620 United Kingdom
#> 16621 United Kingdom
#> 16622 United Kingdom
#> 16623 United Kingdom
#> 16624 United Kingdom
#> 16625 United Kingdom
#> 16626 United Kingdom
#> 16627 United Kingdom
#> 16628 United Kingdom
#> 16629 United Kingdom
#> 16630 United Kingdom
#> 16631 United Kingdom
#> 16632 United Kingdom
#> 16633 United Republic of Tanzania
#> 16634 United Republic of Tanzania
#> 16635 United Republic of Tanzania
#> 16636 United Republic of Tanzania
#> 16637 United Republic of Tanzania
#> 16638 United Republic of Tanzania
#> 16639 United Republic of Tanzania
#> 16640 United Republic of Tanzania
#> 16641 United Republic of Tanzania
#> 16642 United Republic of Tanzania
#> 16643 United Republic of Tanzania
#> 16644 United Republic of Tanzania
#> 16645 United Republic of Tanzania
#> 16646 United Republic of Tanzania
#> 16647 United States Virgin Islands
#> 16648 United States Virgin Islands
#> 16649 United States Virgin Islands
#> 16650 United States Virgin Islands
#> 16651 United States Virgin Islands
#> 16652 United States Virgin Islands
#> 16653 United States Virgin Islands
#> 16654 United States Virgin Islands
#> 16655 United States Virgin Islands
#> 16656 United States Virgin Islands
#> 16657 United States Virgin Islands
#> 16658 United States Virgin Islands
#> 16659 United States Virgin Islands
#> 16660 United States Virgin Islands
#> 16661 United States of America
#> 16662 United States of America
#> 16663 United States of America
#> 16664 United States of America
#> 16665 United States of America
#> 16666 United States of America
#> 16667 United States of America
#> 16668 United States of America
#> 16669 United States of America
#> 16670 United States of America
#> 16671 United States of America
#> 16672 United States of America
#> 16673 United States of America
#> 16674 United States of America
#> 16675 Upper-middle-income countries
#> 16676 Upper-middle-income countries
#> 16677 Upper-middle-income countries
#> 16678 Upper-middle-income countries
#> 16679 Upper-middle-income countries
#> 16680 Upper-middle-income countries
#> 16681 Upper-middle-income countries
#> 16682 Upper-middle-income countries
#> 16683 Upper-middle-income countries
#> 16684 Upper-middle-income countries
#> 16685 Upper-middle-income countries
#> 16686 Upper-middle-income countries
#> 16687 Upper-middle-income countries
#> 16688 Upper-middle-income countries
#> 16689 Uruguay
#> 16690 Uruguay
#> 16691 Uruguay
#> 16692 Uruguay
#> 16693 Uruguay
#> 16694 Uruguay
#> 16695 Uruguay
#> 16696 Uruguay
#> 16697 Uruguay
#> 16698 Uruguay
#> 16699 Uruguay
#> 16700 Uruguay
#> 16701 Uruguay
#> 16702 Uruguay
#> 16703 Uzbekistan
#> 16704 Uzbekistan
#> 16705 Uzbekistan
#> 16706 Uzbekistan
#> 16707 Uzbekistan
#> 16708 Uzbekistan
#> 16709 Uzbekistan
#> 16710 Uzbekistan
#> 16711 Uzbekistan
#> 16712 Uzbekistan
#> 16713 Uzbekistan
#> 16714 Uzbekistan
#> 16715 Uzbekistan
#> 16716 Uzbekistan
#> 16717 Vanuatu
#> 16718 Vanuatu
#> 16719 Vanuatu
#> 16720 Vanuatu
#> 16721 Vanuatu
#> 16722 Vanuatu
#> 16723 Vanuatu
#> 16724 Vanuatu
#> 16725 Vanuatu
#> 16726 Vanuatu
#> 16727 Vanuatu
#> 16728 Vanuatu
#> 16729 Vanuatu
#> 16730 Vanuatu
#> 16731 Venezuela (Bolivarian Republic of)
#> 16732 Venezuela (Bolivarian Republic of)
#> 16733 Venezuela (Bolivarian Republic of)
#> 16734 Venezuela (Bolivarian Republic of)
#> 16735 Venezuela (Bolivarian Republic of)
#> 16736 Venezuela (Bolivarian Republic of)
#> 16737 Venezuela (Bolivarian Republic of)
#> 16738 Venezuela (Bolivarian Republic of)
#> 16739 Venezuela (Bolivarian Republic of)
#> 16740 Venezuela (Bolivarian Republic of)
#> 16741 Venezuela (Bolivarian Republic of)
#> 16742 Venezuela (Bolivarian Republic of)
#> 16743 Venezuela (Bolivarian Republic of)
#> 16744 Venezuela (Bolivarian Republic of)
#> 16745 Viet Nam
#> 16746 Viet Nam
#> 16747 Viet Nam
#> 16748 Viet Nam
#> 16749 Viet Nam
#> 16750 Viet Nam
#> 16751 Viet Nam
#> 16752 Viet Nam
#> 16753 Viet Nam
#> 16754 Viet Nam
#> 16755 Viet Nam
#> 16756 Viet Nam
#> 16757 Viet Nam
#> 16758 Viet Nam
#> 16759 WORLD
#> 16760 WORLD
#> 16761 WORLD
#> 16762 WORLD
#> 16763 WORLD
#> 16764 WORLD
#> 16765 WORLD
#> 16766 WORLD
#> 16767 WORLD
#> 16768 WORLD
#> 16769 WORLD
#> 16770 WORLD
#> 16771 WORLD
#> 16772 WORLD
#> 16773 Western Africa
#> 16774 Western Africa
#> 16775 Western Africa
#> 16776 Western Africa
#> 16777 Western Africa
#> 16778 Western Africa
#> 16779 Western Africa
#> 16780 Western Africa
#> 16781 Western Africa
#> 16782 Western Africa
#> 16783 Western Africa
#> 16784 Western Africa
#> 16785 Western Africa
#> 16786 Western Africa
#> 16787 Western Asia
#> 16788 Western Asia
#> 16789 Western Asia
#> 16790 Western Asia
#> 16791 Western Asia
#> 16792 Western Asia
#> 16793 Western Asia
#> 16794 Western Asia
#> 16795 Western Asia
#> 16796 Western Asia
#> 16797 Western Asia
#> 16798 Western Asia
#> 16799 Western Asia
#> 16800 Western Asia
#> 16801 Western Europe
#> 16802 Western Europe
#> 16803 Western Europe
#> 16804 Western Europe
#> 16805 Western Europe
#> 16806 Western Europe
#> 16807 Western Europe
#> 16808 Western Europe
#> 16809 Western Europe
#> 16810 Western Europe
#> 16811 Western Europe
#> 16812 Western Europe
#> 16813 Western Europe
#> 16814 Western Europe
#> 16815 Western Sahara
#> 16816 Western Sahara
#> 16817 Western Sahara
#> 16818 Western Sahara
#> 16819 Western Sahara
#> 16820 Western Sahara
#> 16821 Western Sahara
#> 16822 Western Sahara
#> 16823 Western Sahara
#> 16824 Western Sahara
#> 16825 Western Sahara
#> 16826 Western Sahara
#> 16827 Western Sahara
#> 16828 Western Sahara
#> 16829 Yemen
#> 16830 Yemen
#> 16831 Yemen
#> 16832 Yemen
#> 16833 Yemen
#> 16834 Yemen
#> 16835 Yemen
#> 16836 Yemen
#> 16837 Yemen
#> 16838 Yemen
#> 16839 Yemen
#> 16840 Yemen
#> 16841 Yemen
#> 16842 Yemen
#> 16843 Zambia
#> 16844 Zambia
#> 16845 Zambia
#> 16846 Zambia
#> 16847 Zambia
#> 16848 Zambia
#> 16849 Zambia
#> 16850 Zambia
#> 16851 Zambia
#> 16852 Zambia
#> 16853 Zambia
#> 16854 Zambia
#> 16855 Zambia
#> 16856 Zambia
#> 16857 Zimbabwe
#> 16858 Zimbabwe
#> 16859 Zimbabwe
#> 16860 Zimbabwe
#> 16861 Zimbabwe
#> 16862 Zimbabwe
#> 16863 Zimbabwe
#> 16864 Zimbabwe
#> 16865 Zimbabwe
#> 16866 Zimbabwe
#> 16867 Zimbabwe
#> 16868 Zimbabwe
#> 16869 Zimbabwe
#> 16870 Zimbabwe
#> 16871 AFRICA
#> 16872 AFRICA
#> 16873 AFRICA
#> 16874 AFRICA
#> 16875 AFRICA
#> 16876 AFRICA
#> 16877 AFRICA
#> 16878 AFRICA
#> 16879 AFRICA
#> 16880 AFRICA
#> 16881 AFRICA
#> 16882 AFRICA
#> 16883 AFRICA
#> 16884 AFRICA
#> 16885 ASIA
#> 16886 ASIA
#> 16887 ASIA
#> 16888 ASIA
#> 16889 ASIA
#> 16890 ASIA
#> 16891 ASIA
#> 16892 ASIA
#> 16893 ASIA
#> 16894 ASIA
#> 16895 ASIA
#> 16896 ASIA
#> 16897 ASIA
#> 16898 ASIA
#> 16899 Afghanistan
#> 16900 Afghanistan
#> 16901 Afghanistan
#> 16902 Afghanistan
#> 16903 Afghanistan
#> 16904 Afghanistan
#> 16905 Afghanistan
#> 16906 Afghanistan
#> 16907 Afghanistan
#> 16908 Afghanistan
#> 16909 Afghanistan
#> 16910 Afghanistan
#> 16911 Afghanistan
#> 16912 Afghanistan
#> 16913 Albania
#> 16914 Albania
#> 16915 Albania
#> 16916 Albania
#> 16917 Albania
#> 16918 Albania
#> 16919 Albania
#> 16920 Albania
#> 16921 Albania
#> 16922 Albania
#> 16923 Albania
#> 16924 Albania
#> 16925 Albania
#> 16926 Albania
#> 16927 Algeria
#> 16928 Algeria
#> 16929 Algeria
#> 16930 Algeria
#> 16931 Algeria
#> 16932 Algeria
#> 16933 Algeria
#> 16934 Algeria
#> 16935 Algeria
#> 16936 Algeria
#> 16937 Algeria
#> 16938 Algeria
#> 16939 Algeria
#> 16940 Algeria
#> 16941 Angola
#> 16942 Angola
#> 16943 Angola
#> 16944 Angola
#> 16945 Angola
#> 16946 Angola
#> 16947 Angola
#> 16948 Angola
#> 16949 Angola
#> 16950 Angola
#> 16951 Angola
#> 16952 Angola
#> 16953 Angola
#> 16954 Angola
#> 16955 Antigua and Barbuda
#> 16956 Antigua and Barbuda
#> 16957 Antigua and Barbuda
#> 16958 Antigua and Barbuda
#> 16959 Antigua and Barbuda
#> 16960 Antigua and Barbuda
#> 16961 Antigua and Barbuda
#> 16962 Antigua and Barbuda
#> 16963 Antigua and Barbuda
#> 16964 Antigua and Barbuda
#> 16965 Antigua and Barbuda
#> 16966 Antigua and Barbuda
#> 16967 Antigua and Barbuda
#> 16968 Antigua and Barbuda
#> 16969 Argentina
#> 16970 Argentina
#> 16971 Argentina
#> 16972 Argentina
#> 16973 Argentina
#> 16974 Argentina
#> 16975 Argentina
#> 16976 Argentina
#> 16977 Argentina
#> 16978 Argentina
#> 16979 Argentina
#> 16980 Argentina
#> 16981 Argentina
#> 16982 Argentina
#> 16983 Armenia
#> 16984 Armenia
#> 16985 Armenia
#> 16986 Armenia
#> 16987 Armenia
#> 16988 Armenia
#> 16989 Armenia
#> 16990 Armenia
#> 16991 Armenia
#> 16992 Armenia
#> 16993 Armenia
#> 16994 Armenia
#> 16995 Armenia
#> 16996 Armenia
#> 16997 Aruba
#> 16998 Aruba
#> 16999 Aruba
#> 17000 Aruba
#> 17001 Aruba
#> 17002 Aruba
#> 17003 Aruba
#> 17004 Aruba
#> 17005 Aruba
#> 17006 Aruba
#> 17007 Aruba
#> 17008 Aruba
#> 17009 Aruba
#> 17010 Aruba
#> 17011 Australia
#> 17012 Australia
#> 17013 Australia
#> 17014 Australia
#> 17015 Australia
#> 17016 Australia
#> 17017 Australia
#> 17018 Australia
#> 17019 Australia
#> 17020 Australia
#> 17021 Australia
#> 17022 Australia
#> 17023 Australia
#> 17024 Australia
#> 17025 Australia/New Zealand
#> 17026 Australia/New Zealand
#> 17027 Australia/New Zealand
#> 17028 Australia/New Zealand
#> 17029 Australia/New Zealand
#> 17030 Australia/New Zealand
#> 17031 Australia/New Zealand
#> 17032 Australia/New Zealand
#> 17033 Australia/New Zealand
#> 17034 Australia/New Zealand
#> 17035 Australia/New Zealand
#> 17036 Australia/New Zealand
#> 17037 Australia/New Zealand
#> 17038 Australia/New Zealand
#> 17039 Austria
#> 17040 Austria
#> 17041 Austria
#> 17042 Austria
#> 17043 Austria
#> 17044 Austria
#> 17045 Austria
#> 17046 Austria
#> 17047 Austria
#> 17048 Austria
#> 17049 Austria
#> 17050 Austria
#> 17051 Austria
#> 17052 Austria
#> 17053 Azerbaijan
#> 17054 Azerbaijan
#> 17055 Azerbaijan
#> 17056 Azerbaijan
#> 17057 Azerbaijan
#> 17058 Azerbaijan
#> 17059 Azerbaijan
#> 17060 Azerbaijan
#> 17061 Azerbaijan
#> 17062 Azerbaijan
#> 17063 Azerbaijan
#> 17064 Azerbaijan
#> 17065 Azerbaijan
#> 17066 Azerbaijan
#> 17067 Bahamas
#> 17068 Bahamas
#> 17069 Bahamas
#> 17070 Bahamas
#> 17071 Bahamas
#> 17072 Bahamas
#> 17073 Bahamas
#> 17074 Bahamas
#> 17075 Bahamas
#> 17076 Bahamas
#> 17077 Bahamas
#> 17078 Bahamas
#> 17079 Bahamas
#> 17080 Bahamas
#> 17081 Bahrain
#> 17082 Bahrain
#> 17083 Bahrain
#> 17084 Bahrain
#> 17085 Bahrain
#> 17086 Bahrain
#> 17087 Bahrain
#> 17088 Bahrain
#> 17089 Bahrain
#> 17090 Bahrain
#> 17091 Bahrain
#> 17092 Bahrain
#> 17093 Bahrain
#> 17094 Bahrain
#> 17095 Bangladesh
#> 17096 Bangladesh
#> 17097 Bangladesh
#> 17098 Bangladesh
#> 17099 Bangladesh
#> 17100 Bangladesh
#> 17101 Bangladesh
#> 17102 Bangladesh
#> 17103 Bangladesh
#> 17104 Bangladesh
#> 17105 Bangladesh
#> 17106 Bangladesh
#> 17107 Bangladesh
#> 17108 Bangladesh
#> 17109 Barbados
#> 17110 Barbados
#> 17111 Barbados
#> 17112 Barbados
#> 17113 Barbados
#> 17114 Barbados
#> 17115 Barbados
#> 17116 Barbados
#> 17117 Barbados
#> 17118 Barbados
#> 17119 Barbados
#> 17120 Barbados
#> 17121 Barbados
#> 17122 Barbados
#> 17123 Belarus
#> 17124 Belarus
#> 17125 Belarus
#> 17126 Belarus
#> 17127 Belarus
#> 17128 Belarus
#> 17129 Belarus
#> 17130 Belarus
#> 17131 Belarus
#> 17132 Belarus
#> 17133 Belarus
#> 17134 Belarus
#> 17135 Belarus
#> 17136 Belarus
#> 17137 Belgium
#> 17138 Belgium
#> 17139 Belgium
#> 17140 Belgium
#> 17141 Belgium
#> 17142 Belgium
#> 17143 Belgium
#> 17144 Belgium
#> 17145 Belgium
#> 17146 Belgium
#> 17147 Belgium
#> 17148 Belgium
#> 17149 Belgium
#> 17150 Belgium
#> 17151 Belize
#> 17152 Belize
#> 17153 Belize
#> 17154 Belize
#> 17155 Belize
#> 17156 Belize
#> 17157 Belize
#> 17158 Belize
#> 17159 Belize
#> 17160 Belize
#> 17161 Belize
#> 17162 Belize
#> 17163 Belize
#> 17164 Belize
#> 17165 Benin
#> 17166 Benin
#> 17167 Benin
#> 17168 Benin
#> 17169 Benin
#> 17170 Benin
#> 17171 Benin
#> 17172 Benin
#> 17173 Benin
#> 17174 Benin
#> 17175 Benin
#> 17176 Benin
#> 17177 Benin
#> 17178 Benin
#> 17179 Bhutan
#> 17180 Bhutan
#> 17181 Bhutan
#> 17182 Bhutan
#> 17183 Bhutan
#> 17184 Bhutan
#> 17185 Bhutan
#> 17186 Bhutan
#> 17187 Bhutan
#> 17188 Bhutan
#> 17189 Bhutan
#> 17190 Bhutan
#> 17191 Bhutan
#> 17192 Bhutan
#> 17193 Bolivia (Plurinational State of)
#> 17194 Bolivia (Plurinational State of)
#> 17195 Bolivia (Plurinational State of)
#> 17196 Bolivia (Plurinational State of)
#> 17197 Bolivia (Plurinational State of)
#> 17198 Bolivia (Plurinational State of)
#> 17199 Bolivia (Plurinational State of)
#> 17200 Bolivia (Plurinational State of)
#> 17201 Bolivia (Plurinational State of)
#> 17202 Bolivia (Plurinational State of)
#> 17203 Bolivia (Plurinational State of)
#> 17204 Bolivia (Plurinational State of)
#> 17205 Bolivia (Plurinational State of)
#> 17206 Bolivia (Plurinational State of)
#> 17207 Bosnia and Herzegovina
#> 17208 Bosnia and Herzegovina
#> 17209 Bosnia and Herzegovina
#> 17210 Bosnia and Herzegovina
#> 17211 Bosnia and Herzegovina
#> 17212 Bosnia and Herzegovina
#> 17213 Bosnia and Herzegovina
#> 17214 Bosnia and Herzegovina
#> 17215 Bosnia and Herzegovina
#> 17216 Bosnia and Herzegovina
#> 17217 Bosnia and Herzegovina
#> 17218 Bosnia and Herzegovina
#> 17219 Bosnia and Herzegovina
#> 17220 Bosnia and Herzegovina
#> 17221 Botswana
#> 17222 Botswana
#> 17223 Botswana
#> 17224 Botswana
#> 17225 Botswana
#> 17226 Botswana
#> 17227 Botswana
#> 17228 Botswana
#> 17229 Botswana
#> 17230 Botswana
#> 17231 Botswana
#> 17232 Botswana
#> 17233 Botswana
#> 17234 Botswana
#> 17235 Brazil
#> 17236 Brazil
#> 17237 Brazil
#> 17238 Brazil
#> 17239 Brazil
#> 17240 Brazil
#> 17241 Brazil
#> 17242 Brazil
#> 17243 Brazil
#> 17244 Brazil
#> 17245 Brazil
#> 17246 Brazil
#> 17247 Brazil
#> 17248 Brazil
#> 17249 Brunei Darussalam
#> 17250 Brunei Darussalam
#> 17251 Brunei Darussalam
#> 17252 Brunei Darussalam
#> 17253 Brunei Darussalam
#> 17254 Brunei Darussalam
#> 17255 Brunei Darussalam
#> 17256 Brunei Darussalam
#> 17257 Brunei Darussalam
#> 17258 Brunei Darussalam
#> 17259 Brunei Darussalam
#> 17260 Brunei Darussalam
#> 17261 Brunei Darussalam
#> 17262 Brunei Darussalam
#> 17263 Bulgaria
#> 17264 Bulgaria
#> 17265 Bulgaria
#> 17266 Bulgaria
#> 17267 Bulgaria
#> 17268 Bulgaria
#> 17269 Bulgaria
#> 17270 Bulgaria
#> 17271 Bulgaria
#> 17272 Bulgaria
#> 17273 Bulgaria
#> 17274 Bulgaria
#> 17275 Bulgaria
#> 17276 Bulgaria
#> 17277 Burkina Faso
#> 17278 Burkina Faso
#> 17279 Burkina Faso
#> 17280 Burkina Faso
#> 17281 Burkina Faso
#> 17282 Burkina Faso
#> 17283 Burkina Faso
#> 17284 Burkina Faso
#> 17285 Burkina Faso
#> 17286 Burkina Faso
#> 17287 Burkina Faso
#> 17288 Burkina Faso
#> 17289 Burkina Faso
#> 17290 Burkina Faso
#> 17291 Burundi
#> 17292 Burundi
#> 17293 Burundi
#> 17294 Burundi
#> 17295 Burundi
#> 17296 Burundi
#> 17297 Burundi
#> 17298 Burundi
#> 17299 Burundi
#> 17300 Burundi
#> 17301 Burundi
#> 17302 Burundi
#> 17303 Burundi
#> 17304 Burundi
#> 17305 Cabo Verde
#> 17306 Cabo Verde
#> 17307 Cabo Verde
#> 17308 Cabo Verde
#> 17309 Cabo Verde
#> 17310 Cabo Verde
#> 17311 Cabo Verde
#> 17312 Cabo Verde
#> 17313 Cabo Verde
#> 17314 Cabo Verde
#> 17315 Cabo Verde
#> 17316 Cabo Verde
#> 17317 Cabo Verde
#> 17318 Cabo Verde
#> 17319 Cambodia
#> 17320 Cambodia
#> 17321 Cambodia
#> 17322 Cambodia
#> 17323 Cambodia
#> 17324 Cambodia
#> 17325 Cambodia
#> 17326 Cambodia
#> 17327 Cambodia
#> 17328 Cambodia
#> 17329 Cambodia
#> 17330 Cambodia
#> 17331 Cambodia
#> 17332 Cambodia
#> 17333 Cameroon
#> 17334 Cameroon
#> 17335 Cameroon
#> 17336 Cameroon
#> 17337 Cameroon
#> 17338 Cameroon
#> 17339 Cameroon
#> 17340 Cameroon
#> 17341 Cameroon
#> 17342 Cameroon
#> 17343 Cameroon
#> 17344 Cameroon
#> 17345 Cameroon
#> 17346 Cameroon
#> 17347 Canada
#> 17348 Canada
#> 17349 Canada
#> 17350 Canada
#> 17351 Canada
#> 17352 Canada
#> 17353 Canada
#> 17354 Canada
#> 17355 Canada
#> 17356 Canada
#> 17357 Canada
#> 17358 Canada
#> 17359 Canada
#> 17360 Canada
#> 17361 Caribbean
#> 17362 Caribbean
#> 17363 Caribbean
#> 17364 Caribbean
#> 17365 Caribbean
#> 17366 Caribbean
#> 17367 Caribbean
#> 17368 Caribbean
#> 17369 Caribbean
#> 17370 Caribbean
#> 17371 Caribbean
#> 17372 Caribbean
#> 17373 Caribbean
#> 17374 Caribbean
#> 17375 Central African Republic
#> 17376 Central African Republic
#> 17377 Central African Republic
#> 17378 Central African Republic
#> 17379 Central African Republic
#> 17380 Central African Republic
#> 17381 Central African Republic
#> 17382 Central African Republic
#> 17383 Central African Republic
#> 17384 Central African Republic
#> 17385 Central African Republic
#> 17386 Central African Republic
#> 17387 Central African Republic
#> 17388 Central African Republic
#> 17389 Central America
#> 17390 Central America
#> 17391 Central America
#> 17392 Central America
#> 17393 Central America
#> 17394 Central America
#> 17395 Central America
#> 17396 Central America
#> 17397 Central America
#> 17398 Central America
#> 17399 Central America
#> 17400 Central America
#> 17401 Central America
#> 17402 Central America
#> 17403 Central Asia
#> 17404 Central Asia
#> 17405 Central Asia
#> 17406 Central Asia
#> 17407 Central Asia
#> 17408 Central Asia
#> 17409 Central Asia
#> 17410 Central Asia
#> 17411 Central Asia
#> 17412 Central Asia
#> 17413 Central Asia
#> 17414 Central Asia
#> 17415 Central Asia
#> 17416 Central Asia
#> 17417 Chad
#> 17418 Chad
#> 17419 Chad
#> 17420 Chad
#> 17421 Chad
#> 17422 Chad
#> 17423 Chad
#> 17424 Chad
#> 17425 Chad
#> 17426 Chad
#> 17427 Chad
#> 17428 Chad
#> 17429 Chad
#> 17430 Chad
#> 17431 Channel Islands
#> 17432 Channel Islands
#> 17433 Channel Islands
#> 17434 Channel Islands
#> 17435 Channel Islands
#> 17436 Channel Islands
#> 17437 Channel Islands
#> 17438 Channel Islands
#> 17439 Channel Islands
#> 17440 Channel Islands
#> 17441 Channel Islands
#> 17442 Channel Islands
#> 17443 Channel Islands
#> 17444 Channel Islands
#> 17445 Chile
#> 17446 Chile
#> 17447 Chile
#> 17448 Chile
#> 17449 Chile
#> 17450 Chile
#> 17451 Chile
#> 17452 Chile
#> 17453 Chile
#> 17454 Chile
#> 17455 Chile
#> 17456 Chile
#> 17457 Chile
#> 17458 Chile
#> 17459 China
#> 17460 China
#> 17461 China
#> 17462 China
#> 17463 China
#> 17464 China
#> 17465 China
#> 17466 China
#> 17467 China
#> 17468 China
#> 17469 China
#> 17470 China
#> 17471 China
#> 17472 China
#> 17473 China, Hong Kong SAR
#> 17474 China, Hong Kong SAR
#> 17475 China, Hong Kong SAR
#> 17476 China, Hong Kong SAR
#> 17477 China, Hong Kong SAR
#> 17478 China, Hong Kong SAR
#> 17479 China, Hong Kong SAR
#> 17480 China, Hong Kong SAR
#> 17481 China, Hong Kong SAR
#> 17482 China, Hong Kong SAR
#> 17483 China, Hong Kong SAR
#> 17484 China, Hong Kong SAR
#> 17485 China, Hong Kong SAR
#> 17486 China, Hong Kong SAR
#> 17487 China, Macao SAR
#> 17488 China, Macao SAR
#> 17489 China, Macao SAR
#> 17490 China, Macao SAR
#> 17491 China, Macao SAR
#> 17492 China, Macao SAR
#> 17493 China, Macao SAR
#> 17494 China, Macao SAR
#> 17495 China, Macao SAR
#> 17496 China, Macao SAR
#> 17497 China, Macao SAR
#> 17498 China, Macao SAR
#> 17499 China, Macao SAR
#> 17500 China, Macao SAR
#> 17501 China, Taiwan Province of China
#> 17502 China, Taiwan Province of China
#> 17503 China, Taiwan Province of China
#> 17504 China, Taiwan Province of China
#> 17505 China, Taiwan Province of China
#> 17506 China, Taiwan Province of China
#> 17507 China, Taiwan Province of China
#> 17508 China, Taiwan Province of China
#> 17509 China, Taiwan Province of China
#> 17510 China, Taiwan Province of China
#> 17511 China, Taiwan Province of China
#> 17512 China, Taiwan Province of China
#> 17513 China, Taiwan Province of China
#> 17514 China, Taiwan Province of China
#> 17515 Colombia
#> 17516 Colombia
#> 17517 Colombia
#> 17518 Colombia
#> 17519 Colombia
#> 17520 Colombia
#> 17521 Colombia
#> 17522 Colombia
#> 17523 Colombia
#> 17524 Colombia
#> 17525 Colombia
#> 17526 Colombia
#> 17527 Colombia
#> 17528 Colombia
#> 17529 Comoros
#> 17530 Comoros
#> 17531 Comoros
#> 17532 Comoros
#> 17533 Comoros
#> 17534 Comoros
#> 17535 Comoros
#> 17536 Comoros
#> 17537 Comoros
#> 17538 Comoros
#> 17539 Comoros
#> 17540 Comoros
#> 17541 Comoros
#> 17542 Comoros
#> 17543 Congo
#> 17544 Congo
#> 17545 Congo
#> 17546 Congo
#> 17547 Congo
#> 17548 Congo
#> 17549 Congo
#> 17550 Congo
#> 17551 Congo
#> 17552 Congo
#> 17553 Congo
#> 17554 Congo
#> 17555 Congo
#> 17556 Congo
#> 17557 Costa Rica
#> 17558 Costa Rica
#> 17559 Costa Rica
#> 17560 Costa Rica
#> 17561 Costa Rica
#> 17562 Costa Rica
#> 17563 Costa Rica
#> 17564 Costa Rica
#> 17565 Costa Rica
#> 17566 Costa Rica
#> 17567 Costa Rica
#> 17568 Costa Rica
#> 17569 Costa Rica
#> 17570 Costa Rica
#> 17571 Cote d'Ivoire
#> 17572 Cote d'Ivoire
#> 17573 Cote d'Ivoire
#> 17574 Cote d'Ivoire
#> 17575 Cote d'Ivoire
#> 17576 Cote d'Ivoire
#> 17577 Cote d'Ivoire
#> 17578 Cote d'Ivoire
#> 17579 Cote d'Ivoire
#> 17580 Cote d'Ivoire
#> 17581 Cote d'Ivoire
#> 17582 Cote d'Ivoire
#> 17583 Cote d'Ivoire
#> 17584 Cote d'Ivoire
#> 17585 Croatia
#> 17586 Croatia
#> 17587 Croatia
#> 17588 Croatia
#> 17589 Croatia
#> 17590 Croatia
#> 17591 Croatia
#> 17592 Croatia
#> 17593 Croatia
#> 17594 Croatia
#> 17595 Croatia
#> 17596 Croatia
#> 17597 Croatia
#> 17598 Croatia
#> 17599 Cuba
#> 17600 Cuba
#> 17601 Cuba
#> 17602 Cuba
#> 17603 Cuba
#> 17604 Cuba
#> 17605 Cuba
#> 17606 Cuba
#> 17607 Cuba
#> 17608 Cuba
#> 17609 Cuba
#> 17610 Cuba
#> 17611 Cuba
#> 17612 Cuba
#> 17613 Curacao
#> 17614 Curacao
#> 17615 Curacao
#> 17616 Curacao
#> 17617 Curacao
#> 17618 Curacao
#> 17619 Curacao
#> 17620 Curacao
#> 17621 Curacao
#> 17622 Curacao
#> 17623 Curacao
#> 17624 Curacao
#> 17625 Curacao
#> 17626 Curacao
#> 17627 Cyprus
#> 17628 Cyprus
#> 17629 Cyprus
#> 17630 Cyprus
#> 17631 Cyprus
#> 17632 Cyprus
#> 17633 Cyprus
#> 17634 Cyprus
#> 17635 Cyprus
#> 17636 Cyprus
#> 17637 Cyprus
#> 17638 Cyprus
#> 17639 Cyprus
#> 17640 Cyprus
#> 17641 Czechia
#> 17642 Czechia
#> 17643 Czechia
#> 17644 Czechia
#> 17645 Czechia
#> 17646 Czechia
#> 17647 Czechia
#> 17648 Czechia
#> 17649 Czechia
#> 17650 Czechia
#> 17651 Czechia
#> 17652 Czechia
#> 17653 Czechia
#> 17654 Czechia
#> 17655 Dem. People's Republic of Korea
#> 17656 Dem. People's Republic of Korea
#> 17657 Dem. People's Republic of Korea
#> 17658 Dem. People's Republic of Korea
#> 17659 Dem. People's Republic of Korea
#> 17660 Dem. People's Republic of Korea
#> 17661 Dem. People's Republic of Korea
#> 17662 Dem. People's Republic of Korea
#> 17663 Dem. People's Republic of Korea
#> 17664 Dem. People's Republic of Korea
#> 17665 Dem. People's Republic of Korea
#> 17666 Dem. People's Republic of Korea
#> 17667 Dem. People's Republic of Korea
#> 17668 Dem. People's Republic of Korea
#> 17669 Democratic Republic of the Congo
#> 17670 Democratic Republic of the Congo
#> 17671 Democratic Republic of the Congo
#> 17672 Democratic Republic of the Congo
#> 17673 Democratic Republic of the Congo
#> 17674 Democratic Republic of the Congo
#> 17675 Democratic Republic of the Congo
#> 17676 Democratic Republic of the Congo
#> 17677 Democratic Republic of the Congo
#> 17678 Democratic Republic of the Congo
#> 17679 Democratic Republic of the Congo
#> 17680 Democratic Republic of the Congo
#> 17681 Democratic Republic of the Congo
#> 17682 Democratic Republic of the Congo
#> 17683 Denmark
#> 17684 Denmark
#> 17685 Denmark
#> 17686 Denmark
#> 17687 Denmark
#> 17688 Denmark
#> 17689 Denmark
#> 17690 Denmark
#> 17691 Denmark
#> 17692 Denmark
#> 17693 Denmark
#> 17694 Denmark
#> 17695 Denmark
#> 17696 Denmark
#> 17697 Djibouti
#> 17698 Djibouti
#> 17699 Djibouti
#> 17700 Djibouti
#> 17701 Djibouti
#> 17702 Djibouti
#> 17703 Djibouti
#> 17704 Djibouti
#> 17705 Djibouti
#> 17706 Djibouti
#> 17707 Djibouti
#> 17708 Djibouti
#> 17709 Djibouti
#> 17710 Djibouti
#> 17711 Dominican Republic
#> 17712 Dominican Republic
#> 17713 Dominican Republic
#> 17714 Dominican Republic
#> 17715 Dominican Republic
#> 17716 Dominican Republic
#> 17717 Dominican Republic
#> 17718 Dominican Republic
#> 17719 Dominican Republic
#> 17720 Dominican Republic
#> 17721 Dominican Republic
#> 17722 Dominican Republic
#> 17723 Dominican Republic
#> 17724 Dominican Republic
#> 17725 EUROPE
#> 17726 EUROPE
#> 17727 EUROPE
#> 17728 EUROPE
#> 17729 EUROPE
#> 17730 EUROPE
#> 17731 EUROPE
#> 17732 EUROPE
#> 17733 EUROPE
#> 17734 EUROPE
#> 17735 EUROPE
#> 17736 EUROPE
#> 17737 EUROPE
#> 17738 EUROPE
#> 17739 Eastern Africa
#> 17740 Eastern Africa
#> 17741 Eastern Africa
#> 17742 Eastern Africa
#> 17743 Eastern Africa
#> 17744 Eastern Africa
#> 17745 Eastern Africa
#> 17746 Eastern Africa
#> 17747 Eastern Africa
#> 17748 Eastern Africa
#> 17749 Eastern Africa
#> 17750 Eastern Africa
#> 17751 Eastern Africa
#> 17752 Eastern Africa
#> 17753 Eastern Asia
#> 17754 Eastern Asia
#> 17755 Eastern Asia
#> 17756 Eastern Asia
#> 17757 Eastern Asia
#> 17758 Eastern Asia
#> 17759 Eastern Asia
#> 17760 Eastern Asia
#> 17761 Eastern Asia
#> 17762 Eastern Asia
#> 17763 Eastern Asia
#> 17764 Eastern Asia
#> 17765 Eastern Asia
#> 17766 Eastern Asia
#> 17767 Eastern Europe
#> 17768 Eastern Europe
#> 17769 Eastern Europe
#> 17770 Eastern Europe
#> 17771 Eastern Europe
#> 17772 Eastern Europe
#> 17773 Eastern Europe
#> 17774 Eastern Europe
#> 17775 Eastern Europe
#> 17776 Eastern Europe
#> 17777 Eastern Europe
#> 17778 Eastern Europe
#> 17779 Eastern Europe
#> 17780 Eastern Europe
#> 17781 Ecuador
#> 17782 Ecuador
#> 17783 Ecuador
#> 17784 Ecuador
#> 17785 Ecuador
#> 17786 Ecuador
#> 17787 Ecuador
#> 17788 Ecuador
#> 17789 Ecuador
#> 17790 Ecuador
#> 17791 Ecuador
#> 17792 Ecuador
#> 17793 Ecuador
#> 17794 Ecuador
#> 17795 Egypt
#> 17796 Egypt
#> 17797 Egypt
#> 17798 Egypt
#> 17799 Egypt
#> 17800 Egypt
#> 17801 Egypt
#> 17802 Egypt
#> 17803 Egypt
#> 17804 Egypt
#> 17805 Egypt
#> 17806 Egypt
#> 17807 Egypt
#> 17808 Egypt
#> 17809 El Salvador
#> 17810 El Salvador
#> 17811 El Salvador
#> 17812 El Salvador
#> 17813 El Salvador
#> 17814 El Salvador
#> 17815 El Salvador
#> 17816 El Salvador
#> 17817 El Salvador
#> 17818 El Salvador
#> 17819 El Salvador
#> 17820 El Salvador
#> 17821 El Salvador
#> 17822 El Salvador
#> 17823 Equatorial Guinea
#> 17824 Equatorial Guinea
#> 17825 Equatorial Guinea
#> 17826 Equatorial Guinea
#> 17827 Equatorial Guinea
#> 17828 Equatorial Guinea
#> 17829 Equatorial Guinea
#> 17830 Equatorial Guinea
#> 17831 Equatorial Guinea
#> 17832 Equatorial Guinea
#> 17833 Equatorial Guinea
#> 17834 Equatorial Guinea
#> 17835 Equatorial Guinea
#> 17836 Equatorial Guinea
#> 17837 Eritrea
#> 17838 Eritrea
#> 17839 Eritrea
#> 17840 Eritrea
#> 17841 Eritrea
#> 17842 Eritrea
#> 17843 Eritrea
#> 17844 Eritrea
#> 17845 Eritrea
#> 17846 Eritrea
#> 17847 Eritrea
#> 17848 Eritrea
#> 17849 Eritrea
#> 17850 Eritrea
#> 17851 Estonia
#> 17852 Estonia
#> 17853 Estonia
#> 17854 Estonia
#> 17855 Estonia
#> 17856 Estonia
#> 17857 Estonia
#> 17858 Estonia
#> 17859 Estonia
#> 17860 Estonia
#> 17861 Estonia
#> 17862 Estonia
#> 17863 Estonia
#> 17864 Estonia
#> 17865 Ethiopia
#> 17866 Ethiopia
#> 17867 Ethiopia
#> 17868 Ethiopia
#> 17869 Ethiopia
#> 17870 Ethiopia
#> 17871 Ethiopia
#> 17872 Ethiopia
#> 17873 Ethiopia
#> 17874 Ethiopia
#> 17875 Ethiopia
#> 17876 Ethiopia
#> 17877 Ethiopia
#> 17878 Ethiopia
#> 17879 Fiji
#> 17880 Fiji
#> 17881 Fiji
#> 17882 Fiji
#> 17883 Fiji
#> 17884 Fiji
#> 17885 Fiji
#> 17886 Fiji
#> 17887 Fiji
#> 17888 Fiji
#> 17889 Fiji
#> 17890 Fiji
#> 17891 Fiji
#> 17892 Fiji
#> 17893 Finland
#> 17894 Finland
#> 17895 Finland
#> 17896 Finland
#> 17897 Finland
#> 17898 Finland
#> 17899 Finland
#> 17900 Finland
#> 17901 Finland
#> 17902 Finland
#> 17903 Finland
#> 17904 Finland
#> 17905 Finland
#> 17906 Finland
#> 17907 France
#> 17908 France
#> 17909 France
#> 17910 France
#> 17911 France
#> 17912 France
#> 17913 France
#> 17914 France
#> 17915 France
#> 17916 France
#> 17917 France
#> 17918 France
#> 17919 France
#> 17920 France
#> 17921 French Guiana
#> 17922 French Guiana
#> 17923 French Guiana
#> 17924 French Guiana
#> 17925 French Guiana
#> 17926 French Guiana
#> 17927 French Guiana
#> 17928 French Guiana
#> 17929 French Guiana
#> 17930 French Guiana
#> 17931 French Guiana
#> 17932 French Guiana
#> 17933 French Guiana
#> 17934 French Guiana
#> 17935 French Polynesia
#> 17936 French Polynesia
#> 17937 French Polynesia
#> 17938 French Polynesia
#> 17939 French Polynesia
#> 17940 French Polynesia
#> 17941 French Polynesia
#> 17942 French Polynesia
#> 17943 French Polynesia
#> 17944 French Polynesia
#> 17945 French Polynesia
#> 17946 French Polynesia
#> 17947 French Polynesia
#> 17948 French Polynesia
#> 17949 Gabon
#> 17950 Gabon
#> 17951 Gabon
#> 17952 Gabon
#> 17953 Gabon
#> 17954 Gabon
#> 17955 Gabon
#> 17956 Gabon
#> 17957 Gabon
#> 17958 Gabon
#> 17959 Gabon
#> 17960 Gabon
#> 17961 Gabon
#> 17962 Gabon
#> 17963 Gambia
#> 17964 Gambia
#> 17965 Gambia
#> 17966 Gambia
#> 17967 Gambia
#> 17968 Gambia
#> 17969 Gambia
#> 17970 Gambia
#> 17971 Gambia
#> 17972 Gambia
#> 17973 Gambia
#> 17974 Gambia
#> 17975 Gambia
#> 17976 Gambia
#> 17977 Georgia
#> 17978 Georgia
#> 17979 Georgia
#> 17980 Georgia
#> 17981 Georgia
#> 17982 Georgia
#> 17983 Georgia
#> 17984 Georgia
#> 17985 Georgia
#> 17986 Georgia
#> 17987 Georgia
#> 17988 Georgia
#> 17989 Georgia
#> 17990 Georgia
#> 17991 Germany
#> 17992 Germany
#> 17993 Germany
#> 17994 Germany
#> 17995 Germany
#> 17996 Germany
#> 17997 Germany
#> 17998 Germany
#> 17999 Germany
#> 18000 Germany
#> 18001 Germany
#> 18002 Germany
#> 18003 Germany
#> 18004 Germany
#> 18005 Ghana
#> 18006 Ghana
#> 18007 Ghana
#> 18008 Ghana
#> 18009 Ghana
#> 18010 Ghana
#> 18011 Ghana
#> 18012 Ghana
#> 18013 Ghana
#> 18014 Ghana
#> 18015 Ghana
#> 18016 Ghana
#> 18017 Ghana
#> 18018 Ghana
#> 18019 Greece
#> 18020 Greece
#> 18021 Greece
#> 18022 Greece
#> 18023 Greece
#> 18024 Greece
#> 18025 Greece
#> 18026 Greece
#> 18027 Greece
#> 18028 Greece
#> 18029 Greece
#> 18030 Greece
#> 18031 Greece
#> 18032 Greece
#> 18033 Grenada
#> 18034 Grenada
#> 18035 Grenada
#> 18036 Grenada
#> 18037 Grenada
#> 18038 Grenada
#> 18039 Grenada
#> 18040 Grenada
#> 18041 Grenada
#> 18042 Grenada
#> 18043 Grenada
#> 18044 Grenada
#> 18045 Grenada
#> 18046 Grenada
#> 18047 Guadeloupe
#> 18048 Guadeloupe
#> 18049 Guadeloupe
#> 18050 Guadeloupe
#> 18051 Guadeloupe
#> 18052 Guadeloupe
#> 18053 Guadeloupe
#> 18054 Guadeloupe
#> 18055 Guadeloupe
#> 18056 Guadeloupe
#> 18057 Guadeloupe
#> 18058 Guadeloupe
#> 18059 Guadeloupe
#> 18060 Guadeloupe
#> 18061 Guam
#> 18062 Guam
#> 18063 Guam
#> 18064 Guam
#> 18065 Guam
#> 18066 Guam
#> 18067 Guam
#> 18068 Guam
#> 18069 Guam
#> 18070 Guam
#> 18071 Guam
#> 18072 Guam
#> 18073 Guam
#> 18074 Guam
#> 18075 Guatemala
#> 18076 Guatemala
#> 18077 Guatemala
#> 18078 Guatemala
#> 18079 Guatemala
#> 18080 Guatemala
#> 18081 Guatemala
#> 18082 Guatemala
#> 18083 Guatemala
#> 18084 Guatemala
#> 18085 Guatemala
#> 18086 Guatemala
#> 18087 Guatemala
#> 18088 Guatemala
#> 18089 Guinea
#> 18090 Guinea
#> 18091 Guinea
#> 18092 Guinea
#> 18093 Guinea
#> 18094 Guinea
#> 18095 Guinea
#> 18096 Guinea
#> 18097 Guinea
#> 18098 Guinea
#> 18099 Guinea
#> 18100 Guinea
#> 18101 Guinea
#> 18102 Guinea
#> 18103 Guinea-Bissau
#> 18104 Guinea-Bissau
#> 18105 Guinea-Bissau
#> 18106 Guinea-Bissau
#> 18107 Guinea-Bissau
#> 18108 Guinea-Bissau
#> 18109 Guinea-Bissau
#> 18110 Guinea-Bissau
#> 18111 Guinea-Bissau
#> 18112 Guinea-Bissau
#> 18113 Guinea-Bissau
#> 18114 Guinea-Bissau
#> 18115 Guinea-Bissau
#> 18116 Guinea-Bissau
#> 18117 Guyana
#> 18118 Guyana
#> 18119 Guyana
#> 18120 Guyana
#> 18121 Guyana
#> 18122 Guyana
#> 18123 Guyana
#> 18124 Guyana
#> 18125 Guyana
#> 18126 Guyana
#> 18127 Guyana
#> 18128 Guyana
#> 18129 Guyana
#> 18130 Guyana
#> 18131 Haiti
#> 18132 Haiti
#> 18133 Haiti
#> 18134 Haiti
#> 18135 Haiti
#> 18136 Haiti
#> 18137 Haiti
#> 18138 Haiti
#> 18139 Haiti
#> 18140 Haiti
#> 18141 Haiti
#> 18142 Haiti
#> 18143 Haiti
#> 18144 Haiti
#> 18145 High-income countries
#> 18146 High-income countries
#> 18147 High-income countries
#> 18148 High-income countries
#> 18149 High-income countries
#> 18150 High-income countries
#> 18151 High-income countries
#> 18152 High-income countries
#> 18153 High-income countries
#> 18154 High-income countries
#> 18155 High-income countries
#> 18156 High-income countries
#> 18157 High-income countries
#> 18158 High-income countries
#> 18159 Honduras
#> 18160 Honduras
#> 18161 Honduras
#> 18162 Honduras
#> 18163 Honduras
#> 18164 Honduras
#> 18165 Honduras
#> 18166 Honduras
#> 18167 Honduras
#> 18168 Honduras
#> 18169 Honduras
#> 18170 Honduras
#> 18171 Honduras
#> 18172 Honduras
#> 18173 Hungary
#> 18174 Hungary
#> 18175 Hungary
#> 18176 Hungary
#> 18177 Hungary
#> 18178 Hungary
#> 18179 Hungary
#> 18180 Hungary
#> 18181 Hungary
#> 18182 Hungary
#> 18183 Hungary
#> 18184 Hungary
#> 18185 Hungary
#> 18186 Hungary
#> 18187 Iceland
#> 18188 Iceland
#> 18189 Iceland
#> 18190 Iceland
#> 18191 Iceland
#> 18192 Iceland
#> 18193 Iceland
#> 18194 Iceland
#> 18195 Iceland
#> 18196 Iceland
#> 18197 Iceland
#> 18198 Iceland
#> 18199 Iceland
#> 18200 Iceland
#> 18201 India
#> 18202 India
#> 18203 India
#> 18204 India
#> 18205 India
#> 18206 India
#> 18207 India
#> 18208 India
#> 18209 India
#> 18210 India
#> 18211 India
#> 18212 India
#> 18213 India
#> 18214 India
#> 18215 Indonesia
#> 18216 Indonesia
#> 18217 Indonesia
#> 18218 Indonesia
#> 18219 Indonesia
#> 18220 Indonesia
#> 18221 Indonesia
#> 18222 Indonesia
#> 18223 Indonesia
#> 18224 Indonesia
#> 18225 Indonesia
#> 18226 Indonesia
#> 18227 Indonesia
#> 18228 Indonesia
#> 18229 Iran (Islamic Republic of)
#> 18230 Iran (Islamic Republic of)
#> 18231 Iran (Islamic Republic of)
#> 18232 Iran (Islamic Republic of)
#> 18233 Iran (Islamic Republic of)
#> 18234 Iran (Islamic Republic of)
#> 18235 Iran (Islamic Republic of)
#> 18236 Iran (Islamic Republic of)
#> 18237 Iran (Islamic Republic of)
#> 18238 Iran (Islamic Republic of)
#> 18239 Iran (Islamic Republic of)
#> 18240 Iran (Islamic Republic of)
#> 18241 Iran (Islamic Republic of)
#> 18242 Iran (Islamic Republic of)
#> 18243 Iraq
#> 18244 Iraq
#> 18245 Iraq
#> 18246 Iraq
#> 18247 Iraq
#> 18248 Iraq
#> 18249 Iraq
#> 18250 Iraq
#> 18251 Iraq
#> 18252 Iraq
#> 18253 Iraq
#> 18254 Iraq
#> 18255 Iraq
#> 18256 Iraq
#> 18257 Ireland
#> 18258 Ireland
#> 18259 Ireland
#> 18260 Ireland
#> 18261 Ireland
#> 18262 Ireland
#> 18263 Ireland
#> 18264 Ireland
#> 18265 Ireland
#> 18266 Ireland
#> 18267 Ireland
#> 18268 Ireland
#> 18269 Ireland
#> 18270 Ireland
#> 18271 Israel
#> 18272 Israel
#> 18273 Israel
#> 18274 Israel
#> 18275 Israel
#> 18276 Israel
#> 18277 Israel
#> 18278 Israel
#> 18279 Israel
#> 18280 Israel
#> 18281 Israel
#> 18282 Israel
#> 18283 Israel
#> 18284 Israel
#> 18285 Italy
#> 18286 Italy
#> 18287 Italy
#> 18288 Italy
#> 18289 Italy
#> 18290 Italy
#> 18291 Italy
#> 18292 Italy
#> 18293 Italy
#> 18294 Italy
#> 18295 Italy
#> 18296 Italy
#> 18297 Italy
#> 18298 Italy
#> 18299 Jamaica
#> 18300 Jamaica
#> 18301 Jamaica
#> 18302 Jamaica
#> 18303 Jamaica
#> 18304 Jamaica
#> 18305 Jamaica
#> 18306 Jamaica
#> 18307 Jamaica
#> 18308 Jamaica
#> 18309 Jamaica
#> 18310 Jamaica
#> 18311 Jamaica
#> 18312 Jamaica
#> 18313 Japan
#> 18314 Japan
#> 18315 Japan
#> 18316 Japan
#> 18317 Japan
#> 18318 Japan
#> 18319 Japan
#> 18320 Japan
#> 18321 Japan
#> 18322 Japan
#> 18323 Japan
#> 18324 Japan
#> 18325 Japan
#> 18326 Japan
#> 18327 Jordan
#> 18328 Jordan
#> 18329 Jordan
#> 18330 Jordan
#> 18331 Jordan
#> 18332 Jordan
#> 18333 Jordan
#> 18334 Jordan
#> 18335 Jordan
#> 18336 Jordan
#> 18337 Jordan
#> 18338 Jordan
#> 18339 Jordan
#> 18340 Jordan
#> 18341 Kazakhstan
#> 18342 Kazakhstan
#> 18343 Kazakhstan
#> 18344 Kazakhstan
#> 18345 Kazakhstan
#> 18346 Kazakhstan
#> 18347 Kazakhstan
#> 18348 Kazakhstan
#> 18349 Kazakhstan
#> 18350 Kazakhstan
#> 18351 Kazakhstan
#> 18352 Kazakhstan
#> 18353 Kazakhstan
#> 18354 Kazakhstan
#> 18355 Kenya
#> 18356 Kenya
#> 18357 Kenya
#> 18358 Kenya
#> 18359 Kenya
#> 18360 Kenya
#> 18361 Kenya
#> 18362 Kenya
#> 18363 Kenya
#> 18364 Kenya
#> 18365 Kenya
#> 18366 Kenya
#> 18367 Kenya
#> 18368 Kenya
#> 18369 Kiribati
#> 18370 Kiribati
#> 18371 Kiribati
#> 18372 Kiribati
#> 18373 Kiribati
#> 18374 Kiribati
#> 18375 Kiribati
#> 18376 Kiribati
#> 18377 Kiribati
#> 18378 Kiribati
#> 18379 Kiribati
#> 18380 Kiribati
#> 18381 Kiribati
#> 18382 Kiribati
#> 18383 Kuwait
#> 18384 Kuwait
#> 18385 Kuwait
#> 18386 Kuwait
#> 18387 Kuwait
#> 18388 Kuwait
#> 18389 Kuwait
#> 18390 Kuwait
#> 18391 Kuwait
#> 18392 Kuwait
#> 18393 Kuwait
#> 18394 Kuwait
#> 18395 Kuwait
#> 18396 Kuwait
#> 18397 Kyrgyzstan
#> 18398 Kyrgyzstan
#> 18399 Kyrgyzstan
#> 18400 Kyrgyzstan
#> 18401 Kyrgyzstan
#> 18402 Kyrgyzstan
#> 18403 Kyrgyzstan
#> 18404 Kyrgyzstan
#> 18405 Kyrgyzstan
#> 18406 Kyrgyzstan
#> 18407 Kyrgyzstan
#> 18408 Kyrgyzstan
#> 18409 Kyrgyzstan
#> 18410 Kyrgyzstan
#> 18411 LATIN AMERICA AND THE CARIBBEAN
#> 18412 LATIN AMERICA AND THE CARIBBEAN
#> 18413 LATIN AMERICA AND THE CARIBBEAN
#> 18414 LATIN AMERICA AND THE CARIBBEAN
#> 18415 LATIN AMERICA AND THE CARIBBEAN
#> 18416 LATIN AMERICA AND THE CARIBBEAN
#> 18417 LATIN AMERICA AND THE CARIBBEAN
#> 18418 LATIN AMERICA AND THE CARIBBEAN
#> 18419 LATIN AMERICA AND THE CARIBBEAN
#> 18420 LATIN AMERICA AND THE CARIBBEAN
#> 18421 LATIN AMERICA AND THE CARIBBEAN
#> 18422 LATIN AMERICA AND THE CARIBBEAN
#> 18423 LATIN AMERICA AND THE CARIBBEAN
#> 18424 LATIN AMERICA AND THE CARIBBEAN
#> 18425 Lao People's Democratic Republic
#> 18426 Lao People's Democratic Republic
#> 18427 Lao People's Democratic Republic
#> 18428 Lao People's Democratic Republic
#> 18429 Lao People's Democratic Republic
#> 18430 Lao People's Democratic Republic
#> 18431 Lao People's Democratic Republic
#> 18432 Lao People's Democratic Republic
#> 18433 Lao People's Democratic Republic
#> 18434 Lao People's Democratic Republic
#> 18435 Lao People's Democratic Republic
#> 18436 Lao People's Democratic Republic
#> 18437 Lao People's Democratic Republic
#> 18438 Lao People's Democratic Republic
#> 18439 Latvia
#> 18440 Latvia
#> 18441 Latvia
#> 18442 Latvia
#> 18443 Latvia
#> 18444 Latvia
#> 18445 Latvia
#> 18446 Latvia
#> 18447 Latvia
#> 18448 Latvia
#> 18449 Latvia
#> 18450 Latvia
#> 18451 Latvia
#> 18452 Latvia
#> 18453 Least developed countries
#> 18454 Least developed countries
#> 18455 Least developed countries
#> 18456 Least developed countries
#> 18457 Least developed countries
#> 18458 Least developed countries
#> 18459 Least developed countries
#> 18460 Least developed countries
#> 18461 Least developed countries
#> 18462 Least developed countries
#> 18463 Least developed countries
#> 18464 Least developed countries
#> 18465 Least developed countries
#> 18466 Least developed countries
#> 18467 Lebanon
#> 18468 Lebanon
#> 18469 Lebanon
#> 18470 Lebanon
#> 18471 Lebanon
#> 18472 Lebanon
#> 18473 Lebanon
#> 18474 Lebanon
#> 18475 Lebanon
#> 18476 Lebanon
#> 18477 Lebanon
#> 18478 Lebanon
#> 18479 Lebanon
#> 18480 Lebanon
#> 18481 Lesotho
#> 18482 Lesotho
#> 18483 Lesotho
#> 18484 Lesotho
#> 18485 Lesotho
#> 18486 Lesotho
#> 18487 Lesotho
#> 18488 Lesotho
#> 18489 Lesotho
#> 18490 Lesotho
#> 18491 Lesotho
#> 18492 Lesotho
#> 18493 Lesotho
#> 18494 Lesotho
#> 18495 Less developed regions
#> 18496 Less developed regions
#> 18497 Less developed regions
#> 18498 Less developed regions
#> 18499 Less developed regions
#> 18500 Less developed regions
#> 18501 Less developed regions
#> 18502 Less developed regions
#> 18503 Less developed regions
#> 18504 Less developed regions
#> 18505 Less developed regions
#> 18506 Less developed regions
#> 18507 Less developed regions
#> 18508 Less developed regions
#> 18509 Less developed regions, excluding China
#> 18510 Less developed regions, excluding China
#> 18511 Less developed regions, excluding China
#> 18512 Less developed regions, excluding China
#> 18513 Less developed regions, excluding China
#> 18514 Less developed regions, excluding China
#> 18515 Less developed regions, excluding China
#> 18516 Less developed regions, excluding China
#> 18517 Less developed regions, excluding China
#> 18518 Less developed regions, excluding China
#> 18519 Less developed regions, excluding China
#> 18520 Less developed regions, excluding China
#> 18521 Less developed regions, excluding China
#> 18522 Less developed regions, excluding China
#> 18523 Less developed regions, excluding least developed countries
#> 18524 Less developed regions, excluding least developed countries
#> 18525 Less developed regions, excluding least developed countries
#> 18526 Less developed regions, excluding least developed countries
#> 18527 Less developed regions, excluding least developed countries
#> 18528 Less developed regions, excluding least developed countries
#> 18529 Less developed regions, excluding least developed countries
#> 18530 Less developed regions, excluding least developed countries
#> 18531 Less developed regions, excluding least developed countries
#> 18532 Less developed regions, excluding least developed countries
#> 18533 Less developed regions, excluding least developed countries
#> 18534 Less developed regions, excluding least developed countries
#> 18535 Less developed regions, excluding least developed countries
#> 18536 Less developed regions, excluding least developed countries
#> 18537 Liberia
#> 18538 Liberia
#> 18539 Liberia
#> 18540 Liberia
#> 18541 Liberia
#> 18542 Liberia
#> 18543 Liberia
#> 18544 Liberia
#> 18545 Liberia
#> 18546 Liberia
#> 18547 Liberia
#> 18548 Liberia
#> 18549 Liberia
#> 18550 Liberia
#> 18551 Libya
#> 18552 Libya
#> 18553 Libya
#> 18554 Libya
#> 18555 Libya
#> 18556 Libya
#> 18557 Libya
#> 18558 Libya
#> 18559 Libya
#> 18560 Libya
#> 18561 Libya
#> 18562 Libya
#> 18563 Libya
#> 18564 Libya
#> 18565 Lithuania
#> 18566 Lithuania
#> 18567 Lithuania
#> 18568 Lithuania
#> 18569 Lithuania
#> 18570 Lithuania
#> 18571 Lithuania
#> 18572 Lithuania
#> 18573 Lithuania
#> 18574 Lithuania
#> 18575 Lithuania
#> 18576 Lithuania
#> 18577 Lithuania
#> 18578 Lithuania
#> 18579 Low-income countries
#> 18580 Low-income countries
#> 18581 Low-income countries
#> 18582 Low-income countries
#> 18583 Low-income countries
#> 18584 Low-income countries
#> 18585 Low-income countries
#> 18586 Low-income countries
#> 18587 Low-income countries
#> 18588 Low-income countries
#> 18589 Low-income countries
#> 18590 Low-income countries
#> 18591 Low-income countries
#> 18592 Low-income countries
#> 18593 Lower-middle-income countries
#> 18594 Lower-middle-income countries
#> 18595 Lower-middle-income countries
#> 18596 Lower-middle-income countries
#> 18597 Lower-middle-income countries
#> 18598 Lower-middle-income countries
#> 18599 Lower-middle-income countries
#> 18600 Lower-middle-income countries
#> 18601 Lower-middle-income countries
#> 18602 Lower-middle-income countries
#> 18603 Lower-middle-income countries
#> 18604 Lower-middle-income countries
#> 18605 Lower-middle-income countries
#> 18606 Lower-middle-income countries
#> 18607 Luxembourg
#> 18608 Luxembourg
#> 18609 Luxembourg
#> 18610 Luxembourg
#> 18611 Luxembourg
#> 18612 Luxembourg
#> 18613 Luxembourg
#> 18614 Luxembourg
#> 18615 Luxembourg
#> 18616 Luxembourg
#> 18617 Luxembourg
#> 18618 Luxembourg
#> 18619 Luxembourg
#> 18620 Luxembourg
#> 18621 Madagascar
#> 18622 Madagascar
#> 18623 Madagascar
#> 18624 Madagascar
#> 18625 Madagascar
#> 18626 Madagascar
#> 18627 Madagascar
#> 18628 Madagascar
#> 18629 Madagascar
#> 18630 Madagascar
#> 18631 Madagascar
#> 18632 Madagascar
#> 18633 Madagascar
#> 18634 Madagascar
#> 18635 Malawi
#> 18636 Malawi
#> 18637 Malawi
#> 18638 Malawi
#> 18639 Malawi
#> 18640 Malawi
#> 18641 Malawi
#> 18642 Malawi
#> 18643 Malawi
#> 18644 Malawi
#> 18645 Malawi
#> 18646 Malawi
#> 18647 Malawi
#> 18648 Malawi
#> 18649 Malaysia
#> 18650 Malaysia
#> 18651 Malaysia
#> 18652 Malaysia
#> 18653 Malaysia
#> 18654 Malaysia
#> 18655 Malaysia
#> 18656 Malaysia
#> 18657 Malaysia
#> 18658 Malaysia
#> 18659 Malaysia
#> 18660 Malaysia
#> 18661 Malaysia
#> 18662 Malaysia
#> 18663 Maldives
#> 18664 Maldives
#> 18665 Maldives
#> 18666 Maldives
#> 18667 Maldives
#> 18668 Maldives
#> 18669 Maldives
#> 18670 Maldives
#> 18671 Maldives
#> 18672 Maldives
#> 18673 Maldives
#> 18674 Maldives
#> 18675 Maldives
#> 18676 Maldives
#> 18677 Mali
#> 18678 Mali
#> 18679 Mali
#> 18680 Mali
#> 18681 Mali
#> 18682 Mali
#> 18683 Mali
#> 18684 Mali
#> 18685 Mali
#> 18686 Mali
#> 18687 Mali
#> 18688 Mali
#> 18689 Mali
#> 18690 Mali
#> 18691 Malta
#> 18692 Malta
#> 18693 Malta
#> 18694 Malta
#> 18695 Malta
#> 18696 Malta
#> 18697 Malta
#> 18698 Malta
#> 18699 Malta
#> 18700 Malta
#> 18701 Malta
#> 18702 Malta
#> 18703 Malta
#> 18704 Malta
#> 18705 Martinique
#> 18706 Martinique
#> 18707 Martinique
#> 18708 Martinique
#> 18709 Martinique
#> 18710 Martinique
#> 18711 Martinique
#> 18712 Martinique
#> 18713 Martinique
#> 18714 Martinique
#> 18715 Martinique
#> 18716 Martinique
#> 18717 Martinique
#> 18718 Martinique
#> 18719 Mauritania
#> 18720 Mauritania
#> 18721 Mauritania
#> 18722 Mauritania
#> 18723 Mauritania
#> 18724 Mauritania
#> 18725 Mauritania
#> 18726 Mauritania
#> 18727 Mauritania
#> 18728 Mauritania
#> 18729 Mauritania
#> 18730 Mauritania
#> 18731 Mauritania
#> 18732 Mauritania
#> 18733 Mauritius
#> 18734 Mauritius
#> 18735 Mauritius
#> 18736 Mauritius
#> 18737 Mauritius
#> 18738 Mauritius
#> 18739 Mauritius
#> 18740 Mauritius
#> 18741 Mauritius
#> 18742 Mauritius
#> 18743 Mauritius
#> 18744 Mauritius
#> 18745 Mauritius
#> 18746 Mauritius
#> 18747 Mayotte
#> 18748 Mayotte
#> 18749 Mayotte
#> 18750 Mayotte
#> 18751 Mayotte
#> 18752 Mayotte
#> 18753 Mayotte
#> 18754 Mayotte
#> 18755 Mayotte
#> 18756 Mayotte
#> 18757 Mayotte
#> 18758 Mayotte
#> 18759 Mayotte
#> 18760 Mayotte
#> 18761 Melanesia
#> 18762 Melanesia
#> 18763 Melanesia
#> 18764 Melanesia
#> 18765 Melanesia
#> 18766 Melanesia
#> 18767 Melanesia
#> 18768 Melanesia
#> 18769 Melanesia
#> 18770 Melanesia
#> 18771 Melanesia
#> 18772 Melanesia
#> 18773 Melanesia
#> 18774 Melanesia
#> 18775 Mexico
#> 18776 Mexico
#> 18777 Mexico
#> 18778 Mexico
#> 18779 Mexico
#> 18780 Mexico
#> 18781 Mexico
#> 18782 Mexico
#> 18783 Mexico
#> 18784 Mexico
#> 18785 Mexico
#> 18786 Mexico
#> 18787 Mexico
#> 18788 Mexico
#> 18789 Micronesia
#> 18790 Micronesia
#> 18791 Micronesia
#> 18792 Micronesia
#> 18793 Micronesia
#> 18794 Micronesia
#> 18795 Micronesia
#> 18796 Micronesia
#> 18797 Micronesia
#> 18798 Micronesia
#> 18799 Micronesia
#> 18800 Micronesia
#> 18801 Micronesia
#> 18802 Micronesia
#> 18803 Micronesia (Fed. States of)
#> 18804 Micronesia (Fed. States of)
#> 18805 Micronesia (Fed. States of)
#> 18806 Micronesia (Fed. States of)
#> 18807 Micronesia (Fed. States of)
#> 18808 Micronesia (Fed. States of)
#> 18809 Micronesia (Fed. States of)
#> 18810 Micronesia (Fed. States of)
#> 18811 Micronesia (Fed. States of)
#> 18812 Micronesia (Fed. States of)
#> 18813 Micronesia (Fed. States of)
#> 18814 Micronesia (Fed. States of)
#> 18815 Micronesia (Fed. States of)
#> 18816 Micronesia (Fed. States of)
#> 18817 Middle Africa
#> 18818 Middle Africa
#> 18819 Middle Africa
#> 18820 Middle Africa
#> 18821 Middle Africa
#> 18822 Middle Africa
#> 18823 Middle Africa
#> 18824 Middle Africa
#> 18825 Middle Africa
#> 18826 Middle Africa
#> 18827 Middle Africa
#> 18828 Middle Africa
#> 18829 Middle Africa
#> 18830 Middle Africa
#> 18831 Middle-income countries
#> 18832 Middle-income countries
#> 18833 Middle-income countries
#> 18834 Middle-income countries
#> 18835 Middle-income countries
#> 18836 Middle-income countries
#> 18837 Middle-income countries
#> 18838 Middle-income countries
#> 18839 Middle-income countries
#> 18840 Middle-income countries
#> 18841 Middle-income countries
#> 18842 Middle-income countries
#> 18843 Middle-income countries
#> 18844 Middle-income countries
#> 18845 Mongolia
#> 18846 Mongolia
#> 18847 Mongolia
#> 18848 Mongolia
#> 18849 Mongolia
#> 18850 Mongolia
#> 18851 Mongolia
#> 18852 Mongolia
#> 18853 Mongolia
#> 18854 Mongolia
#> 18855 Mongolia
#> 18856 Mongolia
#> 18857 Mongolia
#> 18858 Mongolia
#> 18859 Montenegro
#> 18860 Montenegro
#> 18861 Montenegro
#> 18862 Montenegro
#> 18863 Montenegro
#> 18864 Montenegro
#> 18865 Montenegro
#> 18866 Montenegro
#> 18867 Montenegro
#> 18868 Montenegro
#> 18869 Montenegro
#> 18870 Montenegro
#> 18871 Montenegro
#> 18872 Montenegro
#> 18873 More developed regions
#> 18874 More developed regions
#> 18875 More developed regions
#> 18876 More developed regions
#> 18877 More developed regions
#> 18878 More developed regions
#> 18879 More developed regions
#> 18880 More developed regions
#> 18881 More developed regions
#> 18882 More developed regions
#> 18883 More developed regions
#> 18884 More developed regions
#> 18885 More developed regions
#> 18886 More developed regions
#> 18887 Morocco
#> 18888 Morocco
#> 18889 Morocco
#> 18890 Morocco
#> 18891 Morocco
#> 18892 Morocco
#> 18893 Morocco
#> 18894 Morocco
#> 18895 Morocco
#> 18896 Morocco
#> 18897 Morocco
#> 18898 Morocco
#> 18899 Morocco
#> 18900 Morocco
#> 18901 Mozambique
#> 18902 Mozambique
#> 18903 Mozambique
#> 18904 Mozambique
#> 18905 Mozambique
#> 18906 Mozambique
#> 18907 Mozambique
#> 18908 Mozambique
#> 18909 Mozambique
#> 18910 Mozambique
#> 18911 Mozambique
#> 18912 Mozambique
#> 18913 Mozambique
#> 18914 Mozambique
#> 18915 Myanmar
#> 18916 Myanmar
#> 18917 Myanmar
#> 18918 Myanmar
#> 18919 Myanmar
#> 18920 Myanmar
#> 18921 Myanmar
#> 18922 Myanmar
#> 18923 Myanmar
#> 18924 Myanmar
#> 18925 Myanmar
#> 18926 Myanmar
#> 18927 Myanmar
#> 18928 Myanmar
#> 18929 NORTHERN AMERICA
#> 18930 NORTHERN AMERICA
#> 18931 NORTHERN AMERICA
#> 18932 NORTHERN AMERICA
#> 18933 NORTHERN AMERICA
#> 18934 NORTHERN AMERICA
#> 18935 NORTHERN AMERICA
#> 18936 NORTHERN AMERICA
#> 18937 NORTHERN AMERICA
#> 18938 NORTHERN AMERICA
#> 18939 NORTHERN AMERICA
#> 18940 NORTHERN AMERICA
#> 18941 NORTHERN AMERICA
#> 18942 NORTHERN AMERICA
#> 18943 Namibia
#> 18944 Namibia
#> 18945 Namibia
#> 18946 Namibia
#> 18947 Namibia
#> 18948 Namibia
#> 18949 Namibia
#> 18950 Namibia
#> 18951 Namibia
#> 18952 Namibia
#> 18953 Namibia
#> 18954 Namibia
#> 18955 Namibia
#> 18956 Namibia
#> 18957 Nepal
#> 18958 Nepal
#> 18959 Nepal
#> 18960 Nepal
#> 18961 Nepal
#> 18962 Nepal
#> 18963 Nepal
#> 18964 Nepal
#> 18965 Nepal
#> 18966 Nepal
#> 18967 Nepal
#> 18968 Nepal
#> 18969 Nepal
#> 18970 Nepal
#> 18971 Netherlands
#> 18972 Netherlands
#> 18973 Netherlands
#> 18974 Netherlands
#> 18975 Netherlands
#> 18976 Netherlands
#> 18977 Netherlands
#> 18978 Netherlands
#> 18979 Netherlands
#> 18980 Netherlands
#> 18981 Netherlands
#> 18982 Netherlands
#> 18983 Netherlands
#> 18984 Netherlands
#> 18985 New Caledonia
#> 18986 New Caledonia
#> 18987 New Caledonia
#> 18988 New Caledonia
#> 18989 New Caledonia
#> 18990 New Caledonia
#> 18991 New Caledonia
#> 18992 New Caledonia
#> 18993 New Caledonia
#> 18994 New Caledonia
#> 18995 New Caledonia
#> 18996 New Caledonia
#> 18997 New Caledonia
#> 18998 New Caledonia
#> 18999 New Zealand
#> 19000 New Zealand
#> 19001 New Zealand
#> 19002 New Zealand
#> 19003 New Zealand
#> 19004 New Zealand
#> 19005 New Zealand
#> 19006 New Zealand
#> 19007 New Zealand
#> 19008 New Zealand
#> 19009 New Zealand
#> 19010 New Zealand
#> 19011 New Zealand
#> 19012 New Zealand
#> 19013 Nicaragua
#> 19014 Nicaragua
#> 19015 Nicaragua
#> 19016 Nicaragua
#> 19017 Nicaragua
#> 19018 Nicaragua
#> 19019 Nicaragua
#> 19020 Nicaragua
#> 19021 Nicaragua
#> 19022 Nicaragua
#> 19023 Nicaragua
#> 19024 Nicaragua
#> 19025 Nicaragua
#> 19026 Nicaragua
#> 19027 Niger
#> 19028 Niger
#> 19029 Niger
#> 19030 Niger
#> 19031 Niger
#> 19032 Niger
#> 19033 Niger
#> 19034 Niger
#> 19035 Niger
#> 19036 Niger
#> 19037 Niger
#> 19038 Niger
#> 19039 Niger
#> 19040 Niger
#> 19041 Nigeria
#> 19042 Nigeria
#> 19043 Nigeria
#> 19044 Nigeria
#> 19045 Nigeria
#> 19046 Nigeria
#> 19047 Nigeria
#> 19048 Nigeria
#> 19049 Nigeria
#> 19050 Nigeria
#> 19051 Nigeria
#> 19052 Nigeria
#> 19053 Nigeria
#> 19054 Nigeria
#> 19055 Northern Africa
#> 19056 Northern Africa
#> 19057 Northern Africa
#> 19058 Northern Africa
#> 19059 Northern Africa
#> 19060 Northern Africa
#> 19061 Northern Africa
#> 19062 Northern Africa
#> 19063 Northern Africa
#> 19064 Northern Africa
#> 19065 Northern Africa
#> 19066 Northern Africa
#> 19067 Northern Africa
#> 19068 Northern Africa
#> 19069 Northern Europe
#> 19070 Northern Europe
#> 19071 Northern Europe
#> 19072 Northern Europe
#> 19073 Northern Europe
#> 19074 Northern Europe
#> 19075 Northern Europe
#> 19076 Northern Europe
#> 19077 Northern Europe
#> 19078 Northern Europe
#> 19079 Northern Europe
#> 19080 Northern Europe
#> 19081 Northern Europe
#> 19082 Northern Europe
#> 19083 Norway
#> 19084 Norway
#> 19085 Norway
#> 19086 Norway
#> 19087 Norway
#> 19088 Norway
#> 19089 Norway
#> 19090 Norway
#> 19091 Norway
#> 19092 Norway
#> 19093 Norway
#> 19094 Norway
#> 19095 Norway
#> 19096 Norway
#> 19097 OCEANIA
#> 19098 OCEANIA
#> 19099 OCEANIA
#> 19100 OCEANIA
#> 19101 OCEANIA
#> 19102 OCEANIA
#> 19103 OCEANIA
#> 19104 OCEANIA
#> 19105 OCEANIA
#> 19106 OCEANIA
#> 19107 OCEANIA
#> 19108 OCEANIA
#> 19109 OCEANIA
#> 19110 OCEANIA
#> 19111 Oman
#> 19112 Oman
#> 19113 Oman
#> 19114 Oman
#> 19115 Oman
#> 19116 Oman
#> 19117 Oman
#> 19118 Oman
#> 19119 Oman
#> 19120 Oman
#> 19121 Oman
#> 19122 Oman
#> 19123 Oman
#> 19124 Oman
#> 19125 Pakistan
#> 19126 Pakistan
#> 19127 Pakistan
#> 19128 Pakistan
#> 19129 Pakistan
#> 19130 Pakistan
#> 19131 Pakistan
#> 19132 Pakistan
#> 19133 Pakistan
#> 19134 Pakistan
#> 19135 Pakistan
#> 19136 Pakistan
#> 19137 Pakistan
#> 19138 Pakistan
#> 19139 Panama
#> 19140 Panama
#> 19141 Panama
#> 19142 Panama
#> 19143 Panama
#> 19144 Panama
#> 19145 Panama
#> 19146 Panama
#> 19147 Panama
#> 19148 Panama
#> 19149 Panama
#> 19150 Panama
#> 19151 Panama
#> 19152 Panama
#> 19153 Papua New Guinea
#> 19154 Papua New Guinea
#> 19155 Papua New Guinea
#> 19156 Papua New Guinea
#> 19157 Papua New Guinea
#> 19158 Papua New Guinea
#> 19159 Papua New Guinea
#> 19160 Papua New Guinea
#> 19161 Papua New Guinea
#> 19162 Papua New Guinea
#> 19163 Papua New Guinea
#> 19164 Papua New Guinea
#> 19165 Papua New Guinea
#> 19166 Papua New Guinea
#> 19167 Paraguay
#> 19168 Paraguay
#> 19169 Paraguay
#> 19170 Paraguay
#> 19171 Paraguay
#> 19172 Paraguay
#> 19173 Paraguay
#> 19174 Paraguay
#> 19175 Paraguay
#> 19176 Paraguay
#> 19177 Paraguay
#> 19178 Paraguay
#> 19179 Paraguay
#> 19180 Paraguay
#> 19181 Peru
#> 19182 Peru
#> 19183 Peru
#> 19184 Peru
#> 19185 Peru
#> 19186 Peru
#> 19187 Peru
#> 19188 Peru
#> 19189 Peru
#> 19190 Peru
#> 19191 Peru
#> 19192 Peru
#> 19193 Peru
#> 19194 Peru
#> 19195 Philippines
#> 19196 Philippines
#> 19197 Philippines
#> 19198 Philippines
#> 19199 Philippines
#> 19200 Philippines
#> 19201 Philippines
#> 19202 Philippines
#> 19203 Philippines
#> 19204 Philippines
#> 19205 Philippines
#> 19206 Philippines
#> 19207 Philippines
#> 19208 Philippines
#> 19209 Poland
#> 19210 Poland
#> 19211 Poland
#> 19212 Poland
#> 19213 Poland
#> 19214 Poland
#> 19215 Poland
#> 19216 Poland
#> 19217 Poland
#> 19218 Poland
#> 19219 Poland
#> 19220 Poland
#> 19221 Poland
#> 19222 Poland
#> 19223 Polynesia
#> 19224 Polynesia
#> 19225 Polynesia
#> 19226 Polynesia
#> 19227 Polynesia
#> 19228 Polynesia
#> 19229 Polynesia
#> 19230 Polynesia
#> 19231 Polynesia
#> 19232 Polynesia
#> 19233 Polynesia
#> 19234 Polynesia
#> 19235 Polynesia
#> 19236 Polynesia
#> 19237 Portugal
#> 19238 Portugal
#> 19239 Portugal
#> 19240 Portugal
#> 19241 Portugal
#> 19242 Portugal
#> 19243 Portugal
#> 19244 Portugal
#> 19245 Portugal
#> 19246 Portugal
#> 19247 Portugal
#> 19248 Portugal
#> 19249 Portugal
#> 19250 Portugal
#> 19251 Puerto Rico
#> 19252 Puerto Rico
#> 19253 Puerto Rico
#> 19254 Puerto Rico
#> 19255 Puerto Rico
#> 19256 Puerto Rico
#> 19257 Puerto Rico
#> 19258 Puerto Rico
#> 19259 Puerto Rico
#> 19260 Puerto Rico
#> 19261 Puerto Rico
#> 19262 Puerto Rico
#> 19263 Puerto Rico
#> 19264 Puerto Rico
#> 19265 Qatar
#> 19266 Qatar
#> 19267 Qatar
#> 19268 Qatar
#> 19269 Qatar
#> 19270 Qatar
#> 19271 Qatar
#> 19272 Qatar
#> 19273 Qatar
#> 19274 Qatar
#> 19275 Qatar
#> 19276 Qatar
#> 19277 Qatar
#> 19278 Qatar
#> 19279 Republic of Korea
#> 19280 Republic of Korea
#> 19281 Republic of Korea
#> 19282 Republic of Korea
#> 19283 Republic of Korea
#> 19284 Republic of Korea
#> 19285 Republic of Korea
#> 19286 Republic of Korea
#> 19287 Republic of Korea
#> 19288 Republic of Korea
#> 19289 Republic of Korea
#> 19290 Republic of Korea
#> 19291 Republic of Korea
#> 19292 Republic of Korea
#> 19293 Republic of Moldova
#> 19294 Republic of Moldova
#> 19295 Republic of Moldova
#> 19296 Republic of Moldova
#> 19297 Republic of Moldova
#> 19298 Republic of Moldova
#> 19299 Republic of Moldova
#> 19300 Republic of Moldova
#> 19301 Republic of Moldova
#> 19302 Republic of Moldova
#> 19303 Republic of Moldova
#> 19304 Republic of Moldova
#> 19305 Republic of Moldova
#> 19306 Republic of Moldova
#> 19307 Reunion
#> 19308 Reunion
#> 19309 Reunion
#> 19310 Reunion
#> 19311 Reunion
#> 19312 Reunion
#> 19313 Reunion
#> 19314 Reunion
#> 19315 Reunion
#> 19316 Reunion
#> 19317 Reunion
#> 19318 Reunion
#> 19319 Reunion
#> 19320 Reunion
#> 19321 Romania
#> 19322 Romania
#> 19323 Romania
#> 19324 Romania
#> 19325 Romania
#> 19326 Romania
#> 19327 Romania
#> 19328 Romania
#> 19329 Romania
#> 19330 Romania
#> 19331 Romania
#> 19332 Romania
#> 19333 Romania
#> 19334 Romania
#> 19335 Russian Federation
#> 19336 Russian Federation
#> 19337 Russian Federation
#> 19338 Russian Federation
#> 19339 Russian Federation
#> 19340 Russian Federation
#> 19341 Russian Federation
#> 19342 Russian Federation
#> 19343 Russian Federation
#> 19344 Russian Federation
#> 19345 Russian Federation
#> 19346 Russian Federation
#> 19347 Russian Federation
#> 19348 Russian Federation
#> 19349 Rwanda
#> 19350 Rwanda
#> 19351 Rwanda
#> 19352 Rwanda
#> 19353 Rwanda
#> 19354 Rwanda
#> 19355 Rwanda
#> 19356 Rwanda
#> 19357 Rwanda
#> 19358 Rwanda
#> 19359 Rwanda
#> 19360 Rwanda
#> 19361 Rwanda
#> 19362 Rwanda
#> 19363 Saint Lucia
#> 19364 Saint Lucia
#> 19365 Saint Lucia
#> 19366 Saint Lucia
#> 19367 Saint Lucia
#> 19368 Saint Lucia
#> 19369 Saint Lucia
#> 19370 Saint Lucia
#> 19371 Saint Lucia
#> 19372 Saint Lucia
#> 19373 Saint Lucia
#> 19374 Saint Lucia
#> 19375 Saint Lucia
#> 19376 Saint Lucia
#> 19377 Saint Vincent and the Grenadines
#> 19378 Saint Vincent and the Grenadines
#> 19379 Saint Vincent and the Grenadines
#> 19380 Saint Vincent and the Grenadines
#> 19381 Saint Vincent and the Grenadines
#> 19382 Saint Vincent and the Grenadines
#> 19383 Saint Vincent and the Grenadines
#> 19384 Saint Vincent and the Grenadines
#> 19385 Saint Vincent and the Grenadines
#> 19386 Saint Vincent and the Grenadines
#> 19387 Saint Vincent and the Grenadines
#> 19388 Saint Vincent and the Grenadines
#> 19389 Saint Vincent and the Grenadines
#> 19390 Saint Vincent and the Grenadines
#> 19391 Samoa
#> 19392 Samoa
#> 19393 Samoa
#> 19394 Samoa
#> 19395 Samoa
#> 19396 Samoa
#> 19397 Samoa
#> 19398 Samoa
#> 19399 Samoa
#> 19400 Samoa
#> 19401 Samoa
#> 19402 Samoa
#> 19403 Samoa
#> 19404 Samoa
#> 19405 Sao Tome and Principe
#> 19406 Sao Tome and Principe
#> 19407 Sao Tome and Principe
#> 19408 Sao Tome and Principe
#> 19409 Sao Tome and Principe
#> 19410 Sao Tome and Principe
#> 19411 Sao Tome and Principe
#> 19412 Sao Tome and Principe
#> 19413 Sao Tome and Principe
#> 19414 Sao Tome and Principe
#> 19415 Sao Tome and Principe
#> 19416 Sao Tome and Principe
#> 19417 Sao Tome and Principe
#> 19418 Sao Tome and Principe
#> 19419 Saudi Arabia
#> 19420 Saudi Arabia
#> 19421 Saudi Arabia
#> 19422 Saudi Arabia
#> 19423 Saudi Arabia
#> 19424 Saudi Arabia
#> 19425 Saudi Arabia
#> 19426 Saudi Arabia
#> 19427 Saudi Arabia
#> 19428 Saudi Arabia
#> 19429 Saudi Arabia
#> 19430 Saudi Arabia
#> 19431 Saudi Arabia
#> 19432 Saudi Arabia
#> 19433 Senegal
#> 19434 Senegal
#> 19435 Senegal
#> 19436 Senegal
#> 19437 Senegal
#> 19438 Senegal
#> 19439 Senegal
#> 19440 Senegal
#> 19441 Senegal
#> 19442 Senegal
#> 19443 Senegal
#> 19444 Senegal
#> 19445 Senegal
#> 19446 Senegal
#> 19447 Serbia
#> 19448 Serbia
#> 19449 Serbia
#> 19450 Serbia
#> 19451 Serbia
#> 19452 Serbia
#> 19453 Serbia
#> 19454 Serbia
#> 19455 Serbia
#> 19456 Serbia
#> 19457 Serbia
#> 19458 Serbia
#> 19459 Serbia
#> 19460 Serbia
#> 19461 Seychelles
#> 19462 Seychelles
#> 19463 Seychelles
#> 19464 Seychelles
#> 19465 Seychelles
#> 19466 Seychelles
#> 19467 Seychelles
#> 19468 Seychelles
#> 19469 Seychelles
#> 19470 Seychelles
#> 19471 Seychelles
#> 19472 Seychelles
#> 19473 Seychelles
#> 19474 Seychelles
#> 19475 Sierra Leone
#> 19476 Sierra Leone
#> 19477 Sierra Leone
#> 19478 Sierra Leone
#> 19479 Sierra Leone
#> 19480 Sierra Leone
#> 19481 Sierra Leone
#> 19482 Sierra Leone
#> 19483 Sierra Leone
#> 19484 Sierra Leone
#> 19485 Sierra Leone
#> 19486 Sierra Leone
#> 19487 Sierra Leone
#> 19488 Sierra Leone
#> 19489 Singapore
#> 19490 Singapore
#> 19491 Singapore
#> 19492 Singapore
#> 19493 Singapore
#> 19494 Singapore
#> 19495 Singapore
#> 19496 Singapore
#> 19497 Singapore
#> 19498 Singapore
#> 19499 Singapore
#> 19500 Singapore
#> 19501 Singapore
#> 19502 Singapore
#> 19503 Slovakia
#> 19504 Slovakia
#> 19505 Slovakia
#> 19506 Slovakia
#> 19507 Slovakia
#> 19508 Slovakia
#> 19509 Slovakia
#> 19510 Slovakia
#> 19511 Slovakia
#> 19512 Slovakia
#> 19513 Slovakia
#> 19514 Slovakia
#> 19515 Slovakia
#> 19516 Slovakia
#> 19517 Slovenia
#> 19518 Slovenia
#> 19519 Slovenia
#> 19520 Slovenia
#> 19521 Slovenia
#> 19522 Slovenia
#> 19523 Slovenia
#> 19524 Slovenia
#> 19525 Slovenia
#> 19526 Slovenia
#> 19527 Slovenia
#> 19528 Slovenia
#> 19529 Slovenia
#> 19530 Slovenia
#> 19531 Solomon Islands
#> 19532 Solomon Islands
#> 19533 Solomon Islands
#> 19534 Solomon Islands
#> 19535 Solomon Islands
#> 19536 Solomon Islands
#> 19537 Solomon Islands
#> 19538 Solomon Islands
#> 19539 Solomon Islands
#> 19540 Solomon Islands
#> 19541 Solomon Islands
#> 19542 Solomon Islands
#> 19543 Solomon Islands
#> 19544 Solomon Islands
#> 19545 Somalia
#> 19546 Somalia
#> 19547 Somalia
#> 19548 Somalia
#> 19549 Somalia
#> 19550 Somalia
#> 19551 Somalia
#> 19552 Somalia
#> 19553 Somalia
#> 19554 Somalia
#> 19555 Somalia
#> 19556 Somalia
#> 19557 Somalia
#> 19558 Somalia
#> 19559 South Africa
#> 19560 South Africa
#> 19561 South Africa
#> 19562 South Africa
#> 19563 South Africa
#> 19564 South Africa
#> 19565 South Africa
#> 19566 South Africa
#> 19567 South Africa
#> 19568 South Africa
#> 19569 South Africa
#> 19570 South Africa
#> 19571 South Africa
#> 19572 South Africa
#> 19573 South America
#> 19574 South America
#> 19575 South America
#> 19576 South America
#> 19577 South America
#> 19578 South America
#> 19579 South America
#> 19580 South America
#> 19581 South America
#> 19582 South America
#> 19583 South America
#> 19584 South America
#> 19585 South America
#> 19586 South America
#> 19587 South Sudan
#> 19588 South Sudan
#> 19589 South Sudan
#> 19590 South Sudan
#> 19591 South Sudan
#> 19592 South Sudan
#> 19593 South Sudan
#> 19594 South Sudan
#> 19595 South Sudan
#> 19596 South Sudan
#> 19597 South Sudan
#> 19598 South Sudan
#> 19599 South Sudan
#> 19600 South Sudan
#> 19601 South-Central Asia
#> 19602 South-Central Asia
#> 19603 South-Central Asia
#> 19604 South-Central Asia
#> 19605 South-Central Asia
#> 19606 South-Central Asia
#> 19607 South-Central Asia
#> 19608 South-Central Asia
#> 19609 South-Central Asia
#> 19610 South-Central Asia
#> 19611 South-Central Asia
#> 19612 South-Central Asia
#> 19613 South-Central Asia
#> 19614 South-Central Asia
#> 19615 South-Eastern Asia
#> 19616 South-Eastern Asia
#> 19617 South-Eastern Asia
#> 19618 South-Eastern Asia
#> 19619 South-Eastern Asia
#> 19620 South-Eastern Asia
#> 19621 South-Eastern Asia
#> 19622 South-Eastern Asia
#> 19623 South-Eastern Asia
#> 19624 South-Eastern Asia
#> 19625 South-Eastern Asia
#> 19626 South-Eastern Asia
#> 19627 South-Eastern Asia
#> 19628 South-Eastern Asia
#> 19629 Southern Africa
#> 19630 Southern Africa
#> 19631 Southern Africa
#> 19632 Southern Africa
#> 19633 Southern Africa
#> 19634 Southern Africa
#> 19635 Southern Africa
#> 19636 Southern Africa
#> 19637 Southern Africa
#> 19638 Southern Africa
#> 19639 Southern Africa
#> 19640 Southern Africa
#> 19641 Southern Africa
#> 19642 Southern Africa
#> 19643 Southern Asia
#> 19644 Southern Asia
#> 19645 Southern Asia
#> 19646 Southern Asia
#> 19647 Southern Asia
#> 19648 Southern Asia
#> 19649 Southern Asia
#> 19650 Southern Asia
#> 19651 Southern Asia
#> 19652 Southern Asia
#> 19653 Southern Asia
#> 19654 Southern Asia
#> 19655 Southern Asia
#> 19656 Southern Asia
#> 19657 Southern Europe
#> 19658 Southern Europe
#> 19659 Southern Europe
#> 19660 Southern Europe
#> 19661 Southern Europe
#> 19662 Southern Europe
#> 19663 Southern Europe
#> 19664 Southern Europe
#> 19665 Southern Europe
#> 19666 Southern Europe
#> 19667 Southern Europe
#> 19668 Southern Europe
#> 19669 Southern Europe
#> 19670 Southern Europe
#> 19671 Spain
#> 19672 Spain
#> 19673 Spain
#> 19674 Spain
#> 19675 Spain
#> 19676 Spain
#> 19677 Spain
#> 19678 Spain
#> 19679 Spain
#> 19680 Spain
#> 19681 Spain
#> 19682 Spain
#> 19683 Spain
#> 19684 Spain
#> 19685 Sri Lanka
#> 19686 Sri Lanka
#> 19687 Sri Lanka
#> 19688 Sri Lanka
#> 19689 Sri Lanka
#> 19690 Sri Lanka
#> 19691 Sri Lanka
#> 19692 Sri Lanka
#> 19693 Sri Lanka
#> 19694 Sri Lanka
#> 19695 Sri Lanka
#> 19696 Sri Lanka
#> 19697 Sri Lanka
#> 19698 Sri Lanka
#> 19699 State of Palestine
#> 19700 State of Palestine
#> 19701 State of Palestine
#> 19702 State of Palestine
#> 19703 State of Palestine
#> 19704 State of Palestine
#> 19705 State of Palestine
#> 19706 State of Palestine
#> 19707 State of Palestine
#> 19708 State of Palestine
#> 19709 State of Palestine
#> 19710 State of Palestine
#> 19711 State of Palestine
#> 19712 State of Palestine
#> 19713 Sub-Saharan Africa
#> 19714 Sub-Saharan Africa
#> 19715 Sub-Saharan Africa
#> 19716 Sub-Saharan Africa
#> 19717 Sub-Saharan Africa
#> 19718 Sub-Saharan Africa
#> 19719 Sub-Saharan Africa
#> 19720 Sub-Saharan Africa
#> 19721 Sub-Saharan Africa
#> 19722 Sub-Saharan Africa
#> 19723 Sub-Saharan Africa
#> 19724 Sub-Saharan Africa
#> 19725 Sub-Saharan Africa
#> 19726 Sub-Saharan Africa
#> 19727 Sudan
#> 19728 Sudan
#> 19729 Sudan
#> 19730 Sudan
#> 19731 Sudan
#> 19732 Sudan
#> 19733 Sudan
#> 19734 Sudan
#> 19735 Sudan
#> 19736 Sudan
#> 19737 Sudan
#> 19738 Sudan
#> 19739 Sudan
#> 19740 Sudan
#> 19741 Suriname
#> 19742 Suriname
#> 19743 Suriname
#> 19744 Suriname
#> 19745 Suriname
#> 19746 Suriname
#> 19747 Suriname
#> 19748 Suriname
#> 19749 Suriname
#> 19750 Suriname
#> 19751 Suriname
#> 19752 Suriname
#> 19753 Suriname
#> 19754 Suriname
#> 19755 Swaziland
#> 19756 Swaziland
#> 19757 Swaziland
#> 19758 Swaziland
#> 19759 Swaziland
#> 19760 Swaziland
#> 19761 Swaziland
#> 19762 Swaziland
#> 19763 Swaziland
#> 19764 Swaziland
#> 19765 Swaziland
#> 19766 Swaziland
#> 19767 Swaziland
#> 19768 Swaziland
#> 19769 Sweden
#> 19770 Sweden
#> 19771 Sweden
#> 19772 Sweden
#> 19773 Sweden
#> 19774 Sweden
#> 19775 Sweden
#> 19776 Sweden
#> 19777 Sweden
#> 19778 Sweden
#> 19779 Sweden
#> 19780 Sweden
#> 19781 Sweden
#> 19782 Sweden
#> 19783 Switzerland
#> 19784 Switzerland
#> 19785 Switzerland
#> 19786 Switzerland
#> 19787 Switzerland
#> 19788 Switzerland
#> 19789 Switzerland
#> 19790 Switzerland
#> 19791 Switzerland
#> 19792 Switzerland
#> 19793 Switzerland
#> 19794 Switzerland
#> 19795 Switzerland
#> 19796 Switzerland
#> 19797 Syrian Arab Republic
#> 19798 Syrian Arab Republic
#> 19799 Syrian Arab Republic
#> 19800 Syrian Arab Republic
#> 19801 Syrian Arab Republic
#> 19802 Syrian Arab Republic
#> 19803 Syrian Arab Republic
#> 19804 Syrian Arab Republic
#> 19805 Syrian Arab Republic
#> 19806 Syrian Arab Republic
#> 19807 Syrian Arab Republic
#> 19808 Syrian Arab Republic
#> 19809 Syrian Arab Republic
#> 19810 Syrian Arab Republic
#> 19811 TFYR Macedonia
#> 19812 TFYR Macedonia
#> 19813 TFYR Macedonia
#> 19814 TFYR Macedonia
#> 19815 TFYR Macedonia
#> 19816 TFYR Macedonia
#> 19817 TFYR Macedonia
#> 19818 TFYR Macedonia
#> 19819 TFYR Macedonia
#> 19820 TFYR Macedonia
#> 19821 TFYR Macedonia
#> 19822 TFYR Macedonia
#> 19823 TFYR Macedonia
#> 19824 TFYR Macedonia
#> 19825 Tajikistan
#> 19826 Tajikistan
#> 19827 Tajikistan
#> 19828 Tajikistan
#> 19829 Tajikistan
#> 19830 Tajikistan
#> 19831 Tajikistan
#> 19832 Tajikistan
#> 19833 Tajikistan
#> 19834 Tajikistan
#> 19835 Tajikistan
#> 19836 Tajikistan
#> 19837 Tajikistan
#> 19838 Tajikistan
#> 19839 Thailand
#> 19840 Thailand
#> 19841 Thailand
#> 19842 Thailand
#> 19843 Thailand
#> 19844 Thailand
#> 19845 Thailand
#> 19846 Thailand
#> 19847 Thailand
#> 19848 Thailand
#> 19849 Thailand
#> 19850 Thailand
#> 19851 Thailand
#> 19852 Thailand
#> 19853 Timor-Leste
#> 19854 Timor-Leste
#> 19855 Timor-Leste
#> 19856 Timor-Leste
#> 19857 Timor-Leste
#> 19858 Timor-Leste
#> 19859 Timor-Leste
#> 19860 Timor-Leste
#> 19861 Timor-Leste
#> 19862 Timor-Leste
#> 19863 Timor-Leste
#> 19864 Timor-Leste
#> 19865 Timor-Leste
#> 19866 Timor-Leste
#> 19867 Togo
#> 19868 Togo
#> 19869 Togo
#> 19870 Togo
#> 19871 Togo
#> 19872 Togo
#> 19873 Togo
#> 19874 Togo
#> 19875 Togo
#> 19876 Togo
#> 19877 Togo
#> 19878 Togo
#> 19879 Togo
#> 19880 Togo
#> 19881 Tonga
#> 19882 Tonga
#> 19883 Tonga
#> 19884 Tonga
#> 19885 Tonga
#> 19886 Tonga
#> 19887 Tonga
#> 19888 Tonga
#> 19889 Tonga
#> 19890 Tonga
#> 19891 Tonga
#> 19892 Tonga
#> 19893 Tonga
#> 19894 Tonga
#> 19895 Trinidad and Tobago
#> 19896 Trinidad and Tobago
#> 19897 Trinidad and Tobago
#> 19898 Trinidad and Tobago
#> 19899 Trinidad and Tobago
#> 19900 Trinidad and Tobago
#> 19901 Trinidad and Tobago
#> 19902 Trinidad and Tobago
#> 19903 Trinidad and Tobago
#> 19904 Trinidad and Tobago
#> 19905 Trinidad and Tobago
#> 19906 Trinidad and Tobago
#> 19907 Trinidad and Tobago
#> 19908 Trinidad and Tobago
#> 19909 Tunisia
#> 19910 Tunisia
#> 19911 Tunisia
#> 19912 Tunisia
#> 19913 Tunisia
#> 19914 Tunisia
#> 19915 Tunisia
#> 19916 Tunisia
#> 19917 Tunisia
#> 19918 Tunisia
#> 19919 Tunisia
#> 19920 Tunisia
#> 19921 Tunisia
#> 19922 Tunisia
#> 19923 Turkey
#> 19924 Turkey
#> 19925 Turkey
#> 19926 Turkey
#> 19927 Turkey
#> 19928 Turkey
#> 19929 Turkey
#> 19930 Turkey
#> 19931 Turkey
#> 19932 Turkey
#> 19933 Turkey
#> 19934 Turkey
#> 19935 Turkey
#> 19936 Turkey
#> 19937 Turkmenistan
#> 19938 Turkmenistan
#> 19939 Turkmenistan
#> 19940 Turkmenistan
#> 19941 Turkmenistan
#> 19942 Turkmenistan
#> 19943 Turkmenistan
#> 19944 Turkmenistan
#> 19945 Turkmenistan
#> 19946 Turkmenistan
#> 19947 Turkmenistan
#> 19948 Turkmenistan
#> 19949 Turkmenistan
#> 19950 Turkmenistan
#> 19951 Uganda
#> 19952 Uganda
#> 19953 Uganda
#> 19954 Uganda
#> 19955 Uganda
#> 19956 Uganda
#> 19957 Uganda
#> 19958 Uganda
#> 19959 Uganda
#> 19960 Uganda
#> 19961 Uganda
#> 19962 Uganda
#> 19963 Uganda
#> 19964 Uganda
#> 19965 Ukraine
#> 19966 Ukraine
#> 19967 Ukraine
#> 19968 Ukraine
#> 19969 Ukraine
#> 19970 Ukraine
#> 19971 Ukraine
#> 19972 Ukraine
#> 19973 Ukraine
#> 19974 Ukraine
#> 19975 Ukraine
#> 19976 Ukraine
#> 19977 Ukraine
#> 19978 Ukraine
#> 19979 United Arab Emirates
#> 19980 United Arab Emirates
#> 19981 United Arab Emirates
#> 19982 United Arab Emirates
#> 19983 United Arab Emirates
#> 19984 United Arab Emirates
#> 19985 United Arab Emirates
#> 19986 United Arab Emirates
#> 19987 United Arab Emirates
#> 19988 United Arab Emirates
#> 19989 United Arab Emirates
#> 19990 United Arab Emirates
#> 19991 United Arab Emirates
#> 19992 United Arab Emirates
#> 19993 United Kingdom
#> 19994 United Kingdom
#> 19995 United Kingdom
#> 19996 United Kingdom
#> 19997 United Kingdom
#> 19998 United Kingdom
#> 19999 United Kingdom
#> 20000 United Kingdom
#> 20001 United Kingdom
#> 20002 United Kingdom
#> 20003 United Kingdom
#> 20004 United Kingdom
#> 20005 United Kingdom
#> 20006 United Kingdom
#> 20007 United Republic of Tanzania
#> 20008 United Republic of Tanzania
#> 20009 United Republic of Tanzania
#> 20010 United Republic of Tanzania
#> 20011 United Republic of Tanzania
#> 20012 United Republic of Tanzania
#> 20013 United Republic of Tanzania
#> 20014 United Republic of Tanzania
#> 20015 United Republic of Tanzania
#> 20016 United Republic of Tanzania
#> 20017 United Republic of Tanzania
#> 20018 United Republic of Tanzania
#> 20019 United Republic of Tanzania
#> 20020 United Republic of Tanzania
#> 20021 United States Virgin Islands
#> 20022 United States Virgin Islands
#> 20023 United States Virgin Islands
#> 20024 United States Virgin Islands
#> 20025 United States Virgin Islands
#> 20026 United States Virgin Islands
#> 20027 United States Virgin Islands
#> 20028 United States Virgin Islands
#> 20029 United States Virgin Islands
#> 20030 United States Virgin Islands
#> 20031 United States Virgin Islands
#> 20032 United States Virgin Islands
#> 20033 United States Virgin Islands
#> 20034 United States Virgin Islands
#> 20035 United States of America
#> 20036 United States of America
#> 20037 United States of America
#> 20038 United States of America
#> 20039 United States of America
#> 20040 United States of America
#> 20041 United States of America
#> 20042 United States of America
#> 20043 United States of America
#> 20044 United States of America
#> 20045 United States of America
#> 20046 United States of America
#> 20047 United States of America
#> 20048 United States of America
#> 20049 Upper-middle-income countries
#> 20050 Upper-middle-income countries
#> 20051 Upper-middle-income countries
#> 20052 Upper-middle-income countries
#> 20053 Upper-middle-income countries
#> 20054 Upper-middle-income countries
#> 20055 Upper-middle-income countries
#> 20056 Upper-middle-income countries
#> 20057 Upper-middle-income countries
#> 20058 Upper-middle-income countries
#> 20059 Upper-middle-income countries
#> 20060 Upper-middle-income countries
#> 20061 Upper-middle-income countries
#> 20062 Upper-middle-income countries
#> 20063 Uruguay
#> 20064 Uruguay
#> 20065 Uruguay
#> 20066 Uruguay
#> 20067 Uruguay
#> 20068 Uruguay
#> 20069 Uruguay
#> 20070 Uruguay
#> 20071 Uruguay
#> 20072 Uruguay
#> 20073 Uruguay
#> 20074 Uruguay
#> 20075 Uruguay
#> 20076 Uruguay
#> 20077 Uzbekistan
#> 20078 Uzbekistan
#> 20079 Uzbekistan
#> 20080 Uzbekistan
#> 20081 Uzbekistan
#> 20082 Uzbekistan
#> 20083 Uzbekistan
#> 20084 Uzbekistan
#> 20085 Uzbekistan
#> 20086 Uzbekistan
#> 20087 Uzbekistan
#> 20088 Uzbekistan
#> 20089 Uzbekistan
#> 20090 Uzbekistan
#> 20091 Vanuatu
#> 20092 Vanuatu
#> 20093 Vanuatu
#> 20094 Vanuatu
#> 20095 Vanuatu
#> 20096 Vanuatu
#> 20097 Vanuatu
#> 20098 Vanuatu
#> 20099 Vanuatu
#> 20100 Vanuatu
#> 20101 Vanuatu
#> 20102 Vanuatu
#> 20103 Vanuatu
#> 20104 Vanuatu
#> 20105 Venezuela (Bolivarian Republic of)
#> 20106 Venezuela (Bolivarian Republic of)
#> 20107 Venezuela (Bolivarian Republic of)
#> 20108 Venezuela (Bolivarian Republic of)
#> 20109 Venezuela (Bolivarian Republic of)
#> 20110 Venezuela (Bolivarian Republic of)
#> 20111 Venezuela (Bolivarian Republic of)
#> 20112 Venezuela (Bolivarian Republic of)
#> 20113 Venezuela (Bolivarian Republic of)
#> 20114 Venezuela (Bolivarian Republic of)
#> 20115 Venezuela (Bolivarian Republic of)
#> 20116 Venezuela (Bolivarian Republic of)
#> 20117 Venezuela (Bolivarian Republic of)
#> 20118 Venezuela (Bolivarian Republic of)
#> 20119 Viet Nam
#> 20120 Viet Nam
#> 20121 Viet Nam
#> 20122 Viet Nam
#> 20123 Viet Nam
#> 20124 Viet Nam
#> 20125 Viet Nam
#> 20126 Viet Nam
#> 20127 Viet Nam
#> 20128 Viet Nam
#> 20129 Viet Nam
#> 20130 Viet Nam
#> 20131 Viet Nam
#> 20132 Viet Nam
#> 20133 WORLD
#> 20134 WORLD
#> 20135 WORLD
#> 20136 WORLD
#> 20137 WORLD
#> 20138 WORLD
#> 20139 WORLD
#> 20140 WORLD
#> 20141 WORLD
#> 20142 WORLD
#> 20143 WORLD
#> 20144 WORLD
#> 20145 WORLD
#> 20146 WORLD
#> 20147 Western Africa
#> 20148 Western Africa
#> 20149 Western Africa
#> 20150 Western Africa
#> 20151 Western Africa
#> 20152 Western Africa
#> 20153 Western Africa
#> 20154 Western Africa
#> 20155 Western Africa
#> 20156 Western Africa
#> 20157 Western Africa
#> 20158 Western Africa
#> 20159 Western Africa
#> 20160 Western Africa
#> 20161 Western Asia
#> 20162 Western Asia
#> 20163 Western Asia
#> 20164 Western Asia
#> 20165 Western Asia
#> 20166 Western Asia
#> 20167 Western Asia
#> 20168 Western Asia
#> 20169 Western Asia
#> 20170 Western Asia
#> 20171 Western Asia
#> 20172 Western Asia
#> 20173 Western Asia
#> 20174 Western Asia
#> 20175 Western Europe
#> 20176 Western Europe
#> 20177 Western Europe
#> 20178 Western Europe
#> 20179 Western Europe
#> 20180 Western Europe
#> 20181 Western Europe
#> 20182 Western Europe
#> 20183 Western Europe
#> 20184 Western Europe
#> 20185 Western Europe
#> 20186 Western Europe
#> 20187 Western Europe
#> 20188 Western Europe
#> 20189 Western Sahara
#> 20190 Western Sahara
#> 20191 Western Sahara
#> 20192 Western Sahara
#> 20193 Western Sahara
#> 20194 Western Sahara
#> 20195 Western Sahara
#> 20196 Western Sahara
#> 20197 Western Sahara
#> 20198 Western Sahara
#> 20199 Western Sahara
#> 20200 Western Sahara
#> 20201 Western Sahara
#> 20202 Western Sahara
#> 20203 Yemen
#> 20204 Yemen
#> 20205 Yemen
#> 20206 Yemen
#> 20207 Yemen
#> 20208 Yemen
#> 20209 Yemen
#> 20210 Yemen
#> 20211 Yemen
#> 20212 Yemen
#> 20213 Yemen
#> 20214 Yemen
#> 20215 Yemen
#> 20216 Yemen
#> 20217 Zambia
#> 20218 Zambia
#> 20219 Zambia
#> 20220 Zambia
#> 20221 Zambia
#> 20222 Zambia
#> 20223 Zambia
#> 20224 Zambia
#> 20225 Zambia
#> 20226 Zambia
#> 20227 Zambia
#> 20228 Zambia
#> 20229 Zambia
#> 20230 Zambia
#> 20231 Zimbabwe
#> 20232 Zimbabwe
#> 20233 Zimbabwe
#> 20234 Zimbabwe
#> 20235 Zimbabwe
#> 20236 Zimbabwe
#> 20237 Zimbabwe
#> 20238 Zimbabwe
#> 20239 Zimbabwe
#> 20240 Zimbabwe
#> 20241 Zimbabwe
#> 20242 Zimbabwe
#> 20243 Zimbabwe
#> 20244 Zimbabwe
#> 20245 AFRICA
#> 20246 AFRICA
#> 20247 AFRICA
#> 20248 AFRICA
#> 20249 AFRICA
#> 20250 AFRICA
#> 20251 AFRICA
#> 20252 AFRICA
#> 20253 AFRICA
#> 20254 AFRICA
#> 20255 AFRICA
#> 20256 AFRICA
#> 20257 AFRICA
#> 20258 AFRICA
#> 20259 ASIA
#> 20260 ASIA
#> 20261 ASIA
#> 20262 ASIA
#> 20263 ASIA
#> 20264 ASIA
#> 20265 ASIA
#> 20266 ASIA
#> 20267 ASIA
#> 20268 ASIA
#> 20269 ASIA
#> 20270 ASIA
#> 20271 ASIA
#> 20272 ASIA
#> 20273 Afghanistan
#> 20274 Afghanistan
#> 20275 Afghanistan
#> 20276 Afghanistan
#> 20277 Afghanistan
#> 20278 Afghanistan
#> 20279 Afghanistan
#> 20280 Afghanistan
#> 20281 Afghanistan
#> 20282 Afghanistan
#> 20283 Afghanistan
#> 20284 Afghanistan
#> 20285 Afghanistan
#> 20286 Afghanistan
#> 20287 Albania
#> 20288 Albania
#> 20289 Albania
#> 20290 Albania
#> 20291 Albania
#> 20292 Albania
#> 20293 Albania
#> 20294 Albania
#> 20295 Albania
#> 20296 Albania
#> 20297 Albania
#> 20298 Albania
#> 20299 Albania
#> 20300 Albania
#> 20301 Algeria
#> 20302 Algeria
#> 20303 Algeria
#> 20304 Algeria
#> 20305 Algeria
#> 20306 Algeria
#> 20307 Algeria
#> 20308 Algeria
#> 20309 Algeria
#> 20310 Algeria
#> 20311 Algeria
#> 20312 Algeria
#> 20313 Algeria
#> 20314 Algeria
#> 20315 Angola
#> 20316 Angola
#> 20317 Angola
#> 20318 Angola
#> 20319 Angola
#> 20320 Angola
#> 20321 Angola
#> 20322 Angola
#> 20323 Angola
#> 20324 Angola
#> 20325 Angola
#> 20326 Angola
#> 20327 Angola
#> 20328 Angola
#> 20329 Antigua and Barbuda
#> 20330 Antigua and Barbuda
#> 20331 Antigua and Barbuda
#> 20332 Antigua and Barbuda
#> 20333 Antigua and Barbuda
#> 20334 Antigua and Barbuda
#> 20335 Antigua and Barbuda
#> 20336 Antigua and Barbuda
#> 20337 Antigua and Barbuda
#> 20338 Antigua and Barbuda
#> 20339 Antigua and Barbuda
#> 20340 Antigua and Barbuda
#> 20341 Antigua and Barbuda
#> 20342 Antigua and Barbuda
#> 20343 Argentina
#> 20344 Argentina
#> 20345 Argentina
#> 20346 Argentina
#> 20347 Argentina
#> 20348 Argentina
#> 20349 Argentina
#> 20350 Argentina
#> 20351 Argentina
#> 20352 Argentina
#> 20353 Argentina
#> 20354 Argentina
#> 20355 Argentina
#> 20356 Argentina
#> 20357 Armenia
#> 20358 Armenia
#> 20359 Armenia
#> 20360 Armenia
#> 20361 Armenia
#> 20362 Armenia
#> 20363 Armenia
#> 20364 Armenia
#> 20365 Armenia
#> 20366 Armenia
#> 20367 Armenia
#> 20368 Armenia
#> 20369 Armenia
#> 20370 Armenia
#> 20371 Aruba
#> 20372 Aruba
#> 20373 Aruba
#> 20374 Aruba
#> 20375 Aruba
#> 20376 Aruba
#> 20377 Aruba
#> 20378 Aruba
#> 20379 Aruba
#> 20380 Aruba
#> 20381 Aruba
#> 20382 Aruba
#> 20383 Aruba
#> 20384 Aruba
#> 20385 Australia
#> 20386 Australia
#> 20387 Australia
#> 20388 Australia
#> 20389 Australia
#> 20390 Australia
#> 20391 Australia
#> 20392 Australia
#> 20393 Australia
#> 20394 Australia
#> 20395 Australia
#> 20396 Australia
#> 20397 Australia
#> 20398 Australia
#> 20399 Australia/New Zealand
#> 20400 Australia/New Zealand
#> 20401 Australia/New Zealand
#> 20402 Australia/New Zealand
#> 20403 Australia/New Zealand
#> 20404 Australia/New Zealand
#> 20405 Australia/New Zealand
#> 20406 Australia/New Zealand
#> 20407 Australia/New Zealand
#> 20408 Australia/New Zealand
#> 20409 Australia/New Zealand
#> 20410 Australia/New Zealand
#> 20411 Australia/New Zealand
#> 20412 Australia/New Zealand
#> 20413 Austria
#> 20414 Austria
#> 20415 Austria
#> 20416 Austria
#> 20417 Austria
#> 20418 Austria
#> 20419 Austria
#> 20420 Austria
#> 20421 Austria
#> 20422 Austria
#> 20423 Austria
#> 20424 Austria
#> 20425 Austria
#> 20426 Austria
#> 20427 Azerbaijan
#> 20428 Azerbaijan
#> 20429 Azerbaijan
#> 20430 Azerbaijan
#> 20431 Azerbaijan
#> 20432 Azerbaijan
#> 20433 Azerbaijan
#> 20434 Azerbaijan
#> 20435 Azerbaijan
#> 20436 Azerbaijan
#> 20437 Azerbaijan
#> 20438 Azerbaijan
#> 20439 Azerbaijan
#> 20440 Azerbaijan
#> 20441 Bahamas
#> 20442 Bahamas
#> 20443 Bahamas
#> 20444 Bahamas
#> 20445 Bahamas
#> 20446 Bahamas
#> 20447 Bahamas
#> 20448 Bahamas
#> 20449 Bahamas
#> 20450 Bahamas
#> 20451 Bahamas
#> 20452 Bahamas
#> 20453 Bahamas
#> 20454 Bahamas
#> 20455 Bahrain
#> 20456 Bahrain
#> 20457 Bahrain
#> 20458 Bahrain
#> 20459 Bahrain
#> 20460 Bahrain
#> 20461 Bahrain
#> 20462 Bahrain
#> 20463 Bahrain
#> 20464 Bahrain
#> 20465 Bahrain
#> 20466 Bahrain
#> 20467 Bahrain
#> 20468 Bahrain
#> 20469 Bangladesh
#> 20470 Bangladesh
#> 20471 Bangladesh
#> 20472 Bangladesh
#> 20473 Bangladesh
#> 20474 Bangladesh
#> 20475 Bangladesh
#> 20476 Bangladesh
#> 20477 Bangladesh
#> 20478 Bangladesh
#> 20479 Bangladesh
#> 20480 Bangladesh
#> 20481 Bangladesh
#> 20482 Bangladesh
#> 20483 Barbados
#> 20484 Barbados
#> 20485 Barbados
#> 20486 Barbados
#> 20487 Barbados
#> 20488 Barbados
#> 20489 Barbados
#> 20490 Barbados
#> 20491 Barbados
#> 20492 Barbados
#> 20493 Barbados
#> 20494 Barbados
#> 20495 Barbados
#> 20496 Barbados
#> 20497 Belarus
#> 20498 Belarus
#> 20499 Belarus
#> 20500 Belarus
#> 20501 Belarus
#> 20502 Belarus
#> 20503 Belarus
#> 20504 Belarus
#> 20505 Belarus
#> 20506 Belarus
#> 20507 Belarus
#> 20508 Belarus
#> 20509 Belarus
#> 20510 Belarus
#> 20511 Belgium
#> 20512 Belgium
#> 20513 Belgium
#> 20514 Belgium
#> 20515 Belgium
#> 20516 Belgium
#> 20517 Belgium
#> 20518 Belgium
#> 20519 Belgium
#> 20520 Belgium
#> 20521 Belgium
#> 20522 Belgium
#> 20523 Belgium
#> 20524 Belgium
#> 20525 Belize
#> 20526 Belize
#> 20527 Belize
#> 20528 Belize
#> 20529 Belize
#> 20530 Belize
#> 20531 Belize
#> 20532 Belize
#> 20533 Belize
#> 20534 Belize
#> 20535 Belize
#> 20536 Belize
#> 20537 Belize
#> 20538 Belize
#> 20539 Benin
#> 20540 Benin
#> 20541 Benin
#> 20542 Benin
#> 20543 Benin
#> 20544 Benin
#> 20545 Benin
#> 20546 Benin
#> 20547 Benin
#> 20548 Benin
#> 20549 Benin
#> 20550 Benin
#> 20551 Benin
#> 20552 Benin
#> 20553 Bhutan
#> 20554 Bhutan
#> 20555 Bhutan
#> 20556 Bhutan
#> 20557 Bhutan
#> 20558 Bhutan
#> 20559 Bhutan
#> 20560 Bhutan
#> 20561 Bhutan
#> 20562 Bhutan
#> 20563 Bhutan
#> 20564 Bhutan
#> 20565 Bhutan
#> 20566 Bhutan
#> 20567 Bolivia (Plurinational State of)
#> 20568 Bolivia (Plurinational State of)
#> 20569 Bolivia (Plurinational State of)
#> 20570 Bolivia (Plurinational State of)
#> 20571 Bolivia (Plurinational State of)
#> 20572 Bolivia (Plurinational State of)
#> 20573 Bolivia (Plurinational State of)
#> 20574 Bolivia (Plurinational State of)
#> 20575 Bolivia (Plurinational State of)
#> 20576 Bolivia (Plurinational State of)
#> 20577 Bolivia (Plurinational State of)
#> 20578 Bolivia (Plurinational State of)
#> 20579 Bolivia (Plurinational State of)
#> 20580 Bolivia (Plurinational State of)
#> 20581 Bosnia and Herzegovina
#> 20582 Bosnia and Herzegovina
#> 20583 Bosnia and Herzegovina
#> 20584 Bosnia and Herzegovina
#> 20585 Bosnia and Herzegovina
#> 20586 Bosnia and Herzegovina
#> 20587 Bosnia and Herzegovina
#> 20588 Bosnia and Herzegovina
#> 20589 Bosnia and Herzegovina
#> 20590 Bosnia and Herzegovina
#> 20591 Bosnia and Herzegovina
#> 20592 Bosnia and Herzegovina
#> 20593 Bosnia and Herzegovina
#> 20594 Bosnia and Herzegovina
#> 20595 Botswana
#> 20596 Botswana
#> 20597 Botswana
#> 20598 Botswana
#> 20599 Botswana
#> 20600 Botswana
#> 20601 Botswana
#> 20602 Botswana
#> 20603 Botswana
#> 20604 Botswana
#> 20605 Botswana
#> 20606 Botswana
#> 20607 Botswana
#> 20608 Botswana
#> 20609 Brazil
#> 20610 Brazil
#> 20611 Brazil
#> 20612 Brazil
#> 20613 Brazil
#> 20614 Brazil
#> 20615 Brazil
#> 20616 Brazil
#> 20617 Brazil
#> 20618 Brazil
#> 20619 Brazil
#> 20620 Brazil
#> 20621 Brazil
#> 20622 Brazil
#> 20623 Brunei Darussalam
#> 20624 Brunei Darussalam
#> 20625 Brunei Darussalam
#> 20626 Brunei Darussalam
#> 20627 Brunei Darussalam
#> 20628 Brunei Darussalam
#> 20629 Brunei Darussalam
#> 20630 Brunei Darussalam
#> 20631 Brunei Darussalam
#> 20632 Brunei Darussalam
#> 20633 Brunei Darussalam
#> 20634 Brunei Darussalam
#> 20635 Brunei Darussalam
#> 20636 Brunei Darussalam
#> 20637 Bulgaria
#> 20638 Bulgaria
#> 20639 Bulgaria
#> 20640 Bulgaria
#> 20641 Bulgaria
#> 20642 Bulgaria
#> 20643 Bulgaria
#> 20644 Bulgaria
#> 20645 Bulgaria
#> 20646 Bulgaria
#> 20647 Bulgaria
#> 20648 Bulgaria
#> 20649 Bulgaria
#> 20650 Bulgaria
#> 20651 Burkina Faso
#> 20652 Burkina Faso
#> 20653 Burkina Faso
#> 20654 Burkina Faso
#> 20655 Burkina Faso
#> 20656 Burkina Faso
#> 20657 Burkina Faso
#> 20658 Burkina Faso
#> 20659 Burkina Faso
#> 20660 Burkina Faso
#> 20661 Burkina Faso
#> 20662 Burkina Faso
#> 20663 Burkina Faso
#> 20664 Burkina Faso
#> 20665 Burundi
#> 20666 Burundi
#> 20667 Burundi
#> 20668 Burundi
#> 20669 Burundi
#> 20670 Burundi
#> 20671 Burundi
#> 20672 Burundi
#> 20673 Burundi
#> 20674 Burundi
#> 20675 Burundi
#> 20676 Burundi
#> 20677 Burundi
#> 20678 Burundi
#> 20679 Cabo Verde
#> 20680 Cabo Verde
#> 20681 Cabo Verde
#> 20682 Cabo Verde
#> 20683 Cabo Verde
#> 20684 Cabo Verde
#> 20685 Cabo Verde
#> 20686 Cabo Verde
#> 20687 Cabo Verde
#> 20688 Cabo Verde
#> 20689 Cabo Verde
#> 20690 Cabo Verde
#> 20691 Cabo Verde
#> 20692 Cabo Verde
#> 20693 Cambodia
#> 20694 Cambodia
#> 20695 Cambodia
#> 20696 Cambodia
#> 20697 Cambodia
#> 20698 Cambodia
#> 20699 Cambodia
#> 20700 Cambodia
#> 20701 Cambodia
#> 20702 Cambodia
#> 20703 Cambodia
#> 20704 Cambodia
#> 20705 Cambodia
#> 20706 Cambodia
#> 20707 Cameroon
#> 20708 Cameroon
#> 20709 Cameroon
#> 20710 Cameroon
#> 20711 Cameroon
#> 20712 Cameroon
#> 20713 Cameroon
#> 20714 Cameroon
#> 20715 Cameroon
#> 20716 Cameroon
#> 20717 Cameroon
#> 20718 Cameroon
#> 20719 Cameroon
#> 20720 Cameroon
#> 20721 Canada
#> 20722 Canada
#> 20723 Canada
#> 20724 Canada
#> 20725 Canada
#> 20726 Canada
#> 20727 Canada
#> 20728 Canada
#> 20729 Canada
#> 20730 Canada
#> 20731 Canada
#> 20732 Canada
#> 20733 Canada
#> 20734 Canada
#> 20735 Caribbean
#> 20736 Caribbean
#> 20737 Caribbean
#> 20738 Caribbean
#> 20739 Caribbean
#> 20740 Caribbean
#> 20741 Caribbean
#> 20742 Caribbean
#> 20743 Caribbean
#> 20744 Caribbean
#> 20745 Caribbean
#> 20746 Caribbean
#> 20747 Caribbean
#> 20748 Caribbean
#> 20749 Central African Republic
#> 20750 Central African Republic
#> 20751 Central African Republic
#> 20752 Central African Republic
#> 20753 Central African Republic
#> 20754 Central African Republic
#> 20755 Central African Republic
#> 20756 Central African Republic
#> 20757 Central African Republic
#> 20758 Central African Republic
#> 20759 Central African Republic
#> 20760 Central African Republic
#> 20761 Central African Republic
#> 20762 Central African Republic
#> 20763 Central America
#> 20764 Central America
#> 20765 Central America
#> 20766 Central America
#> 20767 Central America
#> 20768 Central America
#> 20769 Central America
#> 20770 Central America
#> 20771 Central America
#> 20772 Central America
#> 20773 Central America
#> 20774 Central America
#> 20775 Central America
#> 20776 Central America
#> 20777 Central Asia
#> 20778 Central Asia
#> 20779 Central Asia
#> 20780 Central Asia
#> 20781 Central Asia
#> 20782 Central Asia
#> 20783 Central Asia
#> 20784 Central Asia
#> 20785 Central Asia
#> 20786 Central Asia
#> 20787 Central Asia
#> 20788 Central Asia
#> 20789 Central Asia
#> 20790 Central Asia
#> 20791 Chad
#> 20792 Chad
#> 20793 Chad
#> 20794 Chad
#> 20795 Chad
#> 20796 Chad
#> 20797 Chad
#> 20798 Chad
#> 20799 Chad
#> 20800 Chad
#> 20801 Chad
#> 20802 Chad
#> 20803 Chad
#> 20804 Chad
#> 20805 Channel Islands
#> 20806 Channel Islands
#> 20807 Channel Islands
#> 20808 Channel Islands
#> 20809 Channel Islands
#> 20810 Channel Islands
#> 20811 Channel Islands
#> 20812 Channel Islands
#> 20813 Channel Islands
#> 20814 Channel Islands
#> 20815 Channel Islands
#> 20816 Channel Islands
#> 20817 Channel Islands
#> 20818 Channel Islands
#> 20819 Chile
#> 20820 Chile
#> 20821 Chile
#> 20822 Chile
#> 20823 Chile
#> 20824 Chile
#> 20825 Chile
#> 20826 Chile
#> 20827 Chile
#> 20828 Chile
#> 20829 Chile
#> 20830 Chile
#> 20831 Chile
#> 20832 Chile
#> 20833 China
#> 20834 China
#> 20835 China
#> 20836 China
#> 20837 China
#> 20838 China
#> 20839 China
#> 20840 China
#> 20841 China
#> 20842 China
#> 20843 China
#> 20844 China
#> 20845 China
#> 20846 China
#> 20847 China, Hong Kong SAR
#> 20848 China, Hong Kong SAR
#> 20849 China, Hong Kong SAR
#> 20850 China, Hong Kong SAR
#> 20851 China, Hong Kong SAR
#> 20852 China, Hong Kong SAR
#> 20853 China, Hong Kong SAR
#> 20854 China, Hong Kong SAR
#> 20855 China, Hong Kong SAR
#> 20856 China, Hong Kong SAR
#> 20857 China, Hong Kong SAR
#> 20858 China, Hong Kong SAR
#> 20859 China, Hong Kong SAR
#> 20860 China, Hong Kong SAR
#> 20861 China, Macao SAR
#> 20862 China, Macao SAR
#> 20863 China, Macao SAR
#> 20864 China, Macao SAR
#> 20865 China, Macao SAR
#> 20866 China, Macao SAR
#> 20867 China, Macao SAR
#> 20868 China, Macao SAR
#> 20869 China, Macao SAR
#> 20870 China, Macao SAR
#> 20871 China, Macao SAR
#> 20872 China, Macao SAR
#> 20873 China, Macao SAR
#> 20874 China, Macao SAR
#> 20875 China, Taiwan Province of China
#> 20876 China, Taiwan Province of China
#> 20877 China, Taiwan Province of China
#> 20878 China, Taiwan Province of China
#> 20879 China, Taiwan Province of China
#> 20880 China, Taiwan Province of China
#> 20881 China, Taiwan Province of China
#> 20882 China, Taiwan Province of China
#> 20883 China, Taiwan Province of China
#> 20884 China, Taiwan Province of China
#> 20885 China, Taiwan Province of China
#> 20886 China, Taiwan Province of China
#> 20887 China, Taiwan Province of China
#> 20888 China, Taiwan Province of China
#> 20889 Colombia
#> 20890 Colombia
#> 20891 Colombia
#> 20892 Colombia
#> 20893 Colombia
#> 20894 Colombia
#> 20895 Colombia
#> 20896 Colombia
#> 20897 Colombia
#> 20898 Colombia
#> 20899 Colombia
#> 20900 Colombia
#> 20901 Colombia
#> 20902 Colombia
#> 20903 Comoros
#> 20904 Comoros
#> 20905 Comoros
#> 20906 Comoros
#> 20907 Comoros
#> 20908 Comoros
#> 20909 Comoros
#> 20910 Comoros
#> 20911 Comoros
#> 20912 Comoros
#> 20913 Comoros
#> 20914 Comoros
#> 20915 Comoros
#> 20916 Comoros
#> 20917 Congo
#> 20918 Congo
#> 20919 Congo
#> 20920 Congo
#> 20921 Congo
#> 20922 Congo
#> 20923 Congo
#> 20924 Congo
#> 20925 Congo
#> 20926 Congo
#> 20927 Congo
#> 20928 Congo
#> 20929 Congo
#> 20930 Congo
#> 20931 Costa Rica
#> 20932 Costa Rica
#> 20933 Costa Rica
#> 20934 Costa Rica
#> 20935 Costa Rica
#> 20936 Costa Rica
#> 20937 Costa Rica
#> 20938 Costa Rica
#> 20939 Costa Rica
#> 20940 Costa Rica
#> 20941 Costa Rica
#> 20942 Costa Rica
#> 20943 Costa Rica
#> 20944 Costa Rica
#> 20945 Cote d'Ivoire
#> 20946 Cote d'Ivoire
#> 20947 Cote d'Ivoire
#> 20948 Cote d'Ivoire
#> 20949 Cote d'Ivoire
#> 20950 Cote d'Ivoire
#> 20951 Cote d'Ivoire
#> 20952 Cote d'Ivoire
#> 20953 Cote d'Ivoire
#> 20954 Cote d'Ivoire
#> 20955 Cote d'Ivoire
#> 20956 Cote d'Ivoire
#> 20957 Cote d'Ivoire
#> 20958 Cote d'Ivoire
#> 20959 Croatia
#> 20960 Croatia
#> 20961 Croatia
#> 20962 Croatia
#> 20963 Croatia
#> 20964 Croatia
#> 20965 Croatia
#> 20966 Croatia
#> 20967 Croatia
#> 20968 Croatia
#> 20969 Croatia
#> 20970 Croatia
#> 20971 Croatia
#> 20972 Croatia
#> 20973 Cuba
#> 20974 Cuba
#> 20975 Cuba
#> 20976 Cuba
#> 20977 Cuba
#> 20978 Cuba
#> 20979 Cuba
#> 20980 Cuba
#> 20981 Cuba
#> 20982 Cuba
#> 20983 Cuba
#> 20984 Cuba
#> 20985 Cuba
#> 20986 Cuba
#> 20987 Curacao
#> 20988 Curacao
#> 20989 Curacao
#> 20990 Curacao
#> 20991 Curacao
#> 20992 Curacao
#> 20993 Curacao
#> 20994 Curacao
#> 20995 Curacao
#> 20996 Curacao
#> 20997 Curacao
#> 20998 Curacao
#> 20999 Curacao
#> 21000 Curacao
#> 21001 Cyprus
#> 21002 Cyprus
#> 21003 Cyprus
#> 21004 Cyprus
#> 21005 Cyprus
#> 21006 Cyprus
#> 21007 Cyprus
#> 21008 Cyprus
#> 21009 Cyprus
#> 21010 Cyprus
#> 21011 Cyprus
#> 21012 Cyprus
#> 21013 Cyprus
#> 21014 Cyprus
#> 21015 Czechia
#> 21016 Czechia
#> 21017 Czechia
#> 21018 Czechia
#> 21019 Czechia
#> 21020 Czechia
#> 21021 Czechia
#> 21022 Czechia
#> 21023 Czechia
#> 21024 Czechia
#> 21025 Czechia
#> 21026 Czechia
#> 21027 Czechia
#> 21028 Czechia
#> 21029 Dem. People's Republic of Korea
#> 21030 Dem. People's Republic of Korea
#> 21031 Dem. People's Republic of Korea
#> 21032 Dem. People's Republic of Korea
#> 21033 Dem. People's Republic of Korea
#> 21034 Dem. People's Republic of Korea
#> 21035 Dem. People's Republic of Korea
#> 21036 Dem. People's Republic of Korea
#> 21037 Dem. People's Republic of Korea
#> 21038 Dem. People's Republic of Korea
#> 21039 Dem. People's Republic of Korea
#> 21040 Dem. People's Republic of Korea
#> 21041 Dem. People's Republic of Korea
#> 21042 Dem. People's Republic of Korea
#> 21043 Democratic Republic of the Congo
#> 21044 Democratic Republic of the Congo
#> 21045 Democratic Republic of the Congo
#> 21046 Democratic Republic of the Congo
#> 21047 Democratic Republic of the Congo
#> 21048 Democratic Republic of the Congo
#> 21049 Democratic Republic of the Congo
#> 21050 Democratic Republic of the Congo
#> 21051 Democratic Republic of the Congo
#> 21052 Democratic Republic of the Congo
#> 21053 Democratic Republic of the Congo
#> 21054 Democratic Republic of the Congo
#> 21055 Democratic Republic of the Congo
#> 21056 Democratic Republic of the Congo
#> 21057 Denmark
#> 21058 Denmark
#> 21059 Denmark
#> 21060 Denmark
#> 21061 Denmark
#> 21062 Denmark
#> 21063 Denmark
#> 21064 Denmark
#> 21065 Denmark
#> 21066 Denmark
#> 21067 Denmark
#> 21068 Denmark
#> 21069 Denmark
#> 21070 Denmark
#> 21071 Djibouti
#> 21072 Djibouti
#> 21073 Djibouti
#> 21074 Djibouti
#> 21075 Djibouti
#> 21076 Djibouti
#> 21077 Djibouti
#> 21078 Djibouti
#> 21079 Djibouti
#> 21080 Djibouti
#> 21081 Djibouti
#> 21082 Djibouti
#> 21083 Djibouti
#> 21084 Djibouti
#> 21085 Dominican Republic
#> 21086 Dominican Republic
#> 21087 Dominican Republic
#> 21088 Dominican Republic
#> 21089 Dominican Republic
#> 21090 Dominican Republic
#> 21091 Dominican Republic
#> 21092 Dominican Republic
#> 21093 Dominican Republic
#> 21094 Dominican Republic
#> 21095 Dominican Republic
#> 21096 Dominican Republic
#> 21097 Dominican Republic
#> 21098 Dominican Republic
#> 21099 EUROPE
#> 21100 EUROPE
#> 21101 EUROPE
#> 21102 EUROPE
#> 21103 EUROPE
#> 21104 EUROPE
#> 21105 EUROPE
#> 21106 EUROPE
#> 21107 EUROPE
#> 21108 EUROPE
#> 21109 EUROPE
#> 21110 EUROPE
#> 21111 EUROPE
#> 21112 EUROPE
#> 21113 Eastern Africa
#> 21114 Eastern Africa
#> 21115 Eastern Africa
#> 21116 Eastern Africa
#> 21117 Eastern Africa
#> 21118 Eastern Africa
#> 21119 Eastern Africa
#> 21120 Eastern Africa
#> 21121 Eastern Africa
#> 21122 Eastern Africa
#> 21123 Eastern Africa
#> 21124 Eastern Africa
#> 21125 Eastern Africa
#> 21126 Eastern Africa
#> 21127 Eastern Asia
#> 21128 Eastern Asia
#> 21129 Eastern Asia
#> 21130 Eastern Asia
#> 21131 Eastern Asia
#> 21132 Eastern Asia
#> 21133 Eastern Asia
#> 21134 Eastern Asia
#> 21135 Eastern Asia
#> 21136 Eastern Asia
#> 21137 Eastern Asia
#> 21138 Eastern Asia
#> 21139 Eastern Asia
#> 21140 Eastern Asia
#> 21141 Eastern Europe
#> 21142 Eastern Europe
#> 21143 Eastern Europe
#> 21144 Eastern Europe
#> 21145 Eastern Europe
#> 21146 Eastern Europe
#> 21147 Eastern Europe
#> 21148 Eastern Europe
#> 21149 Eastern Europe
#> 21150 Eastern Europe
#> 21151 Eastern Europe
#> 21152 Eastern Europe
#> 21153 Eastern Europe
#> 21154 Eastern Europe
#> 21155 Ecuador
#> 21156 Ecuador
#> 21157 Ecuador
#> 21158 Ecuador
#> 21159 Ecuador
#> 21160 Ecuador
#> 21161 Ecuador
#> 21162 Ecuador
#> 21163 Ecuador
#> 21164 Ecuador
#> 21165 Ecuador
#> 21166 Ecuador
#> 21167 Ecuador
#> 21168 Ecuador
#> 21169 Egypt
#> 21170 Egypt
#> 21171 Egypt
#> 21172 Egypt
#> 21173 Egypt
#> 21174 Egypt
#> 21175 Egypt
#> 21176 Egypt
#> 21177 Egypt
#> 21178 Egypt
#> 21179 Egypt
#> 21180 Egypt
#> 21181 Egypt
#> 21182 Egypt
#> 21183 El Salvador
#> 21184 El Salvador
#> 21185 El Salvador
#> 21186 El Salvador
#> 21187 El Salvador
#> 21188 El Salvador
#> 21189 El Salvador
#> 21190 El Salvador
#> 21191 El Salvador
#> 21192 El Salvador
#> 21193 El Salvador
#> 21194 El Salvador
#> 21195 El Salvador
#> 21196 El Salvador
#> 21197 Equatorial Guinea
#> 21198 Equatorial Guinea
#> 21199 Equatorial Guinea
#> 21200 Equatorial Guinea
#> 21201 Equatorial Guinea
#> 21202 Equatorial Guinea
#> 21203 Equatorial Guinea
#> 21204 Equatorial Guinea
#> 21205 Equatorial Guinea
#> 21206 Equatorial Guinea
#> 21207 Equatorial Guinea
#> 21208 Equatorial Guinea
#> 21209 Equatorial Guinea
#> 21210 Equatorial Guinea
#> 21211 Eritrea
#> 21212 Eritrea
#> 21213 Eritrea
#> 21214 Eritrea
#> 21215 Eritrea
#> 21216 Eritrea
#> 21217 Eritrea
#> 21218 Eritrea
#> 21219 Eritrea
#> 21220 Eritrea
#> 21221 Eritrea
#> 21222 Eritrea
#> 21223 Eritrea
#> 21224 Eritrea
#> 21225 Estonia
#> 21226 Estonia
#> 21227 Estonia
#> 21228 Estonia
#> 21229 Estonia
#> 21230 Estonia
#> 21231 Estonia
#> 21232 Estonia
#> 21233 Estonia
#> 21234 Estonia
#> 21235 Estonia
#> 21236 Estonia
#> 21237 Estonia
#> 21238 Estonia
#> 21239 Ethiopia
#> 21240 Ethiopia
#> 21241 Ethiopia
#> 21242 Ethiopia
#> 21243 Ethiopia
#> 21244 Ethiopia
#> 21245 Ethiopia
#> 21246 Ethiopia
#> 21247 Ethiopia
#> 21248 Ethiopia
#> 21249 Ethiopia
#> 21250 Ethiopia
#> 21251 Ethiopia
#> 21252 Ethiopia
#> 21253 Fiji
#> 21254 Fiji
#> 21255 Fiji
#> 21256 Fiji
#> 21257 Fiji
#> 21258 Fiji
#> 21259 Fiji
#> 21260 Fiji
#> 21261 Fiji
#> 21262 Fiji
#> 21263 Fiji
#> 21264 Fiji
#> 21265 Fiji
#> 21266 Fiji
#> 21267 Finland
#> 21268 Finland
#> 21269 Finland
#> 21270 Finland
#> 21271 Finland
#> 21272 Finland
#> 21273 Finland
#> 21274 Finland
#> 21275 Finland
#> 21276 Finland
#> 21277 Finland
#> 21278 Finland
#> 21279 Finland
#> 21280 Finland
#> 21281 France
#> 21282 France
#> 21283 France
#> 21284 France
#> 21285 France
#> 21286 France
#> 21287 France
#> 21288 France
#> 21289 France
#> 21290 France
#> 21291 France
#> 21292 France
#> 21293 France
#> 21294 France
#> 21295 French Guiana
#> 21296 French Guiana
#> 21297 French Guiana
#> 21298 French Guiana
#> 21299 French Guiana
#> 21300 French Guiana
#> 21301 French Guiana
#> 21302 French Guiana
#> 21303 French Guiana
#> 21304 French Guiana
#> 21305 French Guiana
#> 21306 French Guiana
#> 21307 French Guiana
#> 21308 French Guiana
#> 21309 French Polynesia
#> 21310 French Polynesia
#> 21311 French Polynesia
#> 21312 French Polynesia
#> 21313 French Polynesia
#> 21314 French Polynesia
#> 21315 French Polynesia
#> 21316 French Polynesia
#> 21317 French Polynesia
#> 21318 French Polynesia
#> 21319 French Polynesia
#> 21320 French Polynesia
#> 21321 French Polynesia
#> 21322 French Polynesia
#> 21323 Gabon
#> 21324 Gabon
#> 21325 Gabon
#> 21326 Gabon
#> 21327 Gabon
#> 21328 Gabon
#> 21329 Gabon
#> 21330 Gabon
#> 21331 Gabon
#> 21332 Gabon
#> 21333 Gabon
#> 21334 Gabon
#> 21335 Gabon
#> 21336 Gabon
#> 21337 Gambia
#> 21338 Gambia
#> 21339 Gambia
#> 21340 Gambia
#> 21341 Gambia
#> 21342 Gambia
#> 21343 Gambia
#> 21344 Gambia
#> 21345 Gambia
#> 21346 Gambia
#> 21347 Gambia
#> 21348 Gambia
#> 21349 Gambia
#> 21350 Gambia
#> 21351 Georgia
#> 21352 Georgia
#> 21353 Georgia
#> 21354 Georgia
#> 21355 Georgia
#> 21356 Georgia
#> 21357 Georgia
#> 21358 Georgia
#> 21359 Georgia
#> 21360 Georgia
#> 21361 Georgia
#> 21362 Georgia
#> 21363 Georgia
#> 21364 Georgia
#> 21365 Germany
#> 21366 Germany
#> 21367 Germany
#> 21368 Germany
#> 21369 Germany
#> 21370 Germany
#> 21371 Germany
#> 21372 Germany
#> 21373 Germany
#> 21374 Germany
#> 21375 Germany
#> 21376 Germany
#> 21377 Germany
#> 21378 Germany
#> 21379 Ghana
#> 21380 Ghana
#> 21381 Ghana
#> 21382 Ghana
#> 21383 Ghana
#> 21384 Ghana
#> 21385 Ghana
#> 21386 Ghana
#> 21387 Ghana
#> 21388 Ghana
#> 21389 Ghana
#> 21390 Ghana
#> 21391 Ghana
#> 21392 Ghana
#> 21393 Greece
#> 21394 Greece
#> 21395 Greece
#> 21396 Greece
#> 21397 Greece
#> 21398 Greece
#> 21399 Greece
#> 21400 Greece
#> 21401 Greece
#> 21402 Greece
#> 21403 Greece
#> 21404 Greece
#> 21405 Greece
#> 21406 Greece
#> 21407 Grenada
#> 21408 Grenada
#> 21409 Grenada
#> 21410 Grenada
#> 21411 Grenada
#> 21412 Grenada
#> 21413 Grenada
#> 21414 Grenada
#> 21415 Grenada
#> 21416 Grenada
#> 21417 Grenada
#> 21418 Grenada
#> 21419 Grenada
#> 21420 Grenada
#> 21421 Guadeloupe
#> 21422 Guadeloupe
#> 21423 Guadeloupe
#> 21424 Guadeloupe
#> 21425 Guadeloupe
#> 21426 Guadeloupe
#> 21427 Guadeloupe
#> 21428 Guadeloupe
#> 21429 Guadeloupe
#> 21430 Guadeloupe
#> 21431 Guadeloupe
#> 21432 Guadeloupe
#> 21433 Guadeloupe
#> 21434 Guadeloupe
#> 21435 Guam
#> 21436 Guam
#> 21437 Guam
#> 21438 Guam
#> 21439 Guam
#> 21440 Guam
#> 21441 Guam
#> 21442 Guam
#> 21443 Guam
#> 21444 Guam
#> 21445 Guam
#> 21446 Guam
#> 21447 Guam
#> 21448 Guam
#> 21449 Guatemala
#> 21450 Guatemala
#> 21451 Guatemala
#> 21452 Guatemala
#> 21453 Guatemala
#> 21454 Guatemala
#> 21455 Guatemala
#> 21456 Guatemala
#> 21457 Guatemala
#> 21458 Guatemala
#> 21459 Guatemala
#> 21460 Guatemala
#> 21461 Guatemala
#> 21462 Guatemala
#> 21463 Guinea
#> 21464 Guinea
#> 21465 Guinea
#> 21466 Guinea
#> 21467 Guinea
#> 21468 Guinea
#> 21469 Guinea
#> 21470 Guinea
#> 21471 Guinea
#> 21472 Guinea
#> 21473 Guinea
#> 21474 Guinea
#> 21475 Guinea
#> 21476 Guinea
#> 21477 Guinea-Bissau
#> 21478 Guinea-Bissau
#> 21479 Guinea-Bissau
#> 21480 Guinea-Bissau
#> 21481 Guinea-Bissau
#> 21482 Guinea-Bissau
#> 21483 Guinea-Bissau
#> 21484 Guinea-Bissau
#> 21485 Guinea-Bissau
#> 21486 Guinea-Bissau
#> 21487 Guinea-Bissau
#> 21488 Guinea-Bissau
#> 21489 Guinea-Bissau
#> 21490 Guinea-Bissau
#> 21491 Guyana
#> 21492 Guyana
#> 21493 Guyana
#> 21494 Guyana
#> 21495 Guyana
#> 21496 Guyana
#> 21497 Guyana
#> 21498 Guyana
#> 21499 Guyana
#> 21500 Guyana
#> 21501 Guyana
#> 21502 Guyana
#> 21503 Guyana
#> 21504 Guyana
#> 21505 Haiti
#> 21506 Haiti
#> 21507 Haiti
#> 21508 Haiti
#> 21509 Haiti
#> 21510 Haiti
#> 21511 Haiti
#> 21512 Haiti
#> 21513 Haiti
#> 21514 Haiti
#> 21515 Haiti
#> 21516 Haiti
#> 21517 Haiti
#> 21518 Haiti
#> 21519 High-income countries
#> 21520 High-income countries
#> 21521 High-income countries
#> 21522 High-income countries
#> 21523 High-income countries
#> 21524 High-income countries
#> 21525 High-income countries
#> 21526 High-income countries
#> 21527 High-income countries
#> 21528 High-income countries
#> 21529 High-income countries
#> 21530 High-income countries
#> 21531 High-income countries
#> 21532 High-income countries
#> 21533 Honduras
#> 21534 Honduras
#> 21535 Honduras
#> 21536 Honduras
#> 21537 Honduras
#> 21538 Honduras
#> 21539 Honduras
#> 21540 Honduras
#> 21541 Honduras
#> 21542 Honduras
#> 21543 Honduras
#> 21544 Honduras
#> 21545 Honduras
#> 21546 Honduras
#> 21547 Hungary
#> 21548 Hungary
#> 21549 Hungary
#> 21550 Hungary
#> 21551 Hungary
#> 21552 Hungary
#> 21553 Hungary
#> 21554 Hungary
#> 21555 Hungary
#> 21556 Hungary
#> 21557 Hungary
#> 21558 Hungary
#> 21559 Hungary
#> 21560 Hungary
#> 21561 Iceland
#> 21562 Iceland
#> 21563 Iceland
#> 21564 Iceland
#> 21565 Iceland
#> 21566 Iceland
#> 21567 Iceland
#> 21568 Iceland
#> 21569 Iceland
#> 21570 Iceland
#> 21571 Iceland
#> 21572 Iceland
#> 21573 Iceland
#> 21574 Iceland
#> 21575 India
#> 21576 India
#> 21577 India
#> 21578 India
#> 21579 India
#> 21580 India
#> 21581 India
#> 21582 India
#> 21583 India
#> 21584 India
#> 21585 India
#> 21586 India
#> 21587 India
#> 21588 India
#> 21589 Indonesia
#> 21590 Indonesia
#> 21591 Indonesia
#> 21592 Indonesia
#> 21593 Indonesia
#> 21594 Indonesia
#> 21595 Indonesia
#> 21596 Indonesia
#> 21597 Indonesia
#> 21598 Indonesia
#> 21599 Indonesia
#> 21600 Indonesia
#> 21601 Indonesia
#> 21602 Indonesia
#> 21603 Iran (Islamic Republic of)
#> 21604 Iran (Islamic Republic of)
#> 21605 Iran (Islamic Republic of)
#> 21606 Iran (Islamic Republic of)
#> 21607 Iran (Islamic Republic of)
#> 21608 Iran (Islamic Republic of)
#> 21609 Iran (Islamic Republic of)
#> 21610 Iran (Islamic Republic of)
#> 21611 Iran (Islamic Republic of)
#> 21612 Iran (Islamic Republic of)
#> 21613 Iran (Islamic Republic of)
#> 21614 Iran (Islamic Republic of)
#> 21615 Iran (Islamic Republic of)
#> 21616 Iran (Islamic Republic of)
#> 21617 Iraq
#> 21618 Iraq
#> 21619 Iraq
#> 21620 Iraq
#> 21621 Iraq
#> 21622 Iraq
#> 21623 Iraq
#> 21624 Iraq
#> 21625 Iraq
#> 21626 Iraq
#> 21627 Iraq
#> 21628 Iraq
#> 21629 Iraq
#> 21630 Iraq
#> 21631 Ireland
#> 21632 Ireland
#> 21633 Ireland
#> 21634 Ireland
#> 21635 Ireland
#> 21636 Ireland
#> 21637 Ireland
#> 21638 Ireland
#> 21639 Ireland
#> 21640 Ireland
#> 21641 Ireland
#> 21642 Ireland
#> 21643 Ireland
#> 21644 Ireland
#> 21645 Israel
#> 21646 Israel
#> 21647 Israel
#> 21648 Israel
#> 21649 Israel
#> 21650 Israel
#> 21651 Israel
#> 21652 Israel
#> 21653 Israel
#> 21654 Israel
#> 21655 Israel
#> 21656 Israel
#> 21657 Israel
#> 21658 Israel
#> 21659 Italy
#> 21660 Italy
#> 21661 Italy
#> 21662 Italy
#> 21663 Italy
#> 21664 Italy
#> 21665 Italy
#> 21666 Italy
#> 21667 Italy
#> 21668 Italy
#> 21669 Italy
#> 21670 Italy
#> 21671 Italy
#> 21672 Italy
#> 21673 Jamaica
#> 21674 Jamaica
#> 21675 Jamaica
#> 21676 Jamaica
#> 21677 Jamaica
#> 21678 Jamaica
#> 21679 Jamaica
#> 21680 Jamaica
#> 21681 Jamaica
#> 21682 Jamaica
#> 21683 Jamaica
#> 21684 Jamaica
#> 21685 Jamaica
#> 21686 Jamaica
#> 21687 Japan
#> 21688 Japan
#> 21689 Japan
#> 21690 Japan
#> 21691 Japan
#> 21692 Japan
#> 21693 Japan
#> 21694 Japan
#> 21695 Japan
#> 21696 Japan
#> 21697 Japan
#> 21698 Japan
#> 21699 Japan
#> 21700 Japan
#> 21701 Jordan
#> 21702 Jordan
#> 21703 Jordan
#> 21704 Jordan
#> 21705 Jordan
#> 21706 Jordan
#> 21707 Jordan
#> 21708 Jordan
#> 21709 Jordan
#> 21710 Jordan
#> 21711 Jordan
#> 21712 Jordan
#> 21713 Jordan
#> 21714 Jordan
#> 21715 Kazakhstan
#> 21716 Kazakhstan
#> 21717 Kazakhstan
#> 21718 Kazakhstan
#> 21719 Kazakhstan
#> 21720 Kazakhstan
#> 21721 Kazakhstan
#> 21722 Kazakhstan
#> 21723 Kazakhstan
#> 21724 Kazakhstan
#> 21725 Kazakhstan
#> 21726 Kazakhstan
#> 21727 Kazakhstan
#> 21728 Kazakhstan
#> 21729 Kenya
#> 21730 Kenya
#> 21731 Kenya
#> 21732 Kenya
#> 21733 Kenya
#> 21734 Kenya
#> 21735 Kenya
#> 21736 Kenya
#> 21737 Kenya
#> 21738 Kenya
#> 21739 Kenya
#> 21740 Kenya
#> 21741 Kenya
#> 21742 Kenya
#> 21743 Kiribati
#> 21744 Kiribati
#> 21745 Kiribati
#> 21746 Kiribati
#> 21747 Kiribati
#> 21748 Kiribati
#> 21749 Kiribati
#> 21750 Kiribati
#> 21751 Kiribati
#> 21752 Kiribati
#> 21753 Kiribati
#> 21754 Kiribati
#> 21755 Kiribati
#> 21756 Kiribati
#> 21757 Kuwait
#> 21758 Kuwait
#> 21759 Kuwait
#> 21760 Kuwait
#> 21761 Kuwait
#> 21762 Kuwait
#> 21763 Kuwait
#> 21764 Kuwait
#> 21765 Kuwait
#> 21766 Kuwait
#> 21767 Kuwait
#> 21768 Kuwait
#> 21769 Kuwait
#> 21770 Kuwait
#> 21771 Kyrgyzstan
#> 21772 Kyrgyzstan
#> 21773 Kyrgyzstan
#> 21774 Kyrgyzstan
#> 21775 Kyrgyzstan
#> 21776 Kyrgyzstan
#> 21777 Kyrgyzstan
#> 21778 Kyrgyzstan
#> 21779 Kyrgyzstan
#> 21780 Kyrgyzstan
#> 21781 Kyrgyzstan
#> 21782 Kyrgyzstan
#> 21783 Kyrgyzstan
#> 21784 Kyrgyzstan
#> 21785 LATIN AMERICA AND THE CARIBBEAN
#> 21786 LATIN AMERICA AND THE CARIBBEAN
#> 21787 LATIN AMERICA AND THE CARIBBEAN
#> 21788 LATIN AMERICA AND THE CARIBBEAN
#> 21789 LATIN AMERICA AND THE CARIBBEAN
#> 21790 LATIN AMERICA AND THE CARIBBEAN
#> 21791 LATIN AMERICA AND THE CARIBBEAN
#> 21792 LATIN AMERICA AND THE CARIBBEAN
#> 21793 LATIN AMERICA AND THE CARIBBEAN
#> 21794 LATIN AMERICA AND THE CARIBBEAN
#> 21795 LATIN AMERICA AND THE CARIBBEAN
#> 21796 LATIN AMERICA AND THE CARIBBEAN
#> 21797 LATIN AMERICA AND THE CARIBBEAN
#> 21798 LATIN AMERICA AND THE CARIBBEAN
#> 21799 Lao People's Democratic Republic
#> 21800 Lao People's Democratic Republic
#> 21801 Lao People's Democratic Republic
#> 21802 Lao People's Democratic Republic
#> 21803 Lao People's Democratic Republic
#> 21804 Lao People's Democratic Republic
#> 21805 Lao People's Democratic Republic
#> 21806 Lao People's Democratic Republic
#> 21807 Lao People's Democratic Republic
#> 21808 Lao People's Democratic Republic
#> 21809 Lao People's Democratic Republic
#> 21810 Lao People's Democratic Republic
#> 21811 Lao People's Democratic Republic
#> 21812 Lao People's Democratic Republic
#> 21813 Latvia
#> 21814 Latvia
#> 21815 Latvia
#> 21816 Latvia
#> 21817 Latvia
#> 21818 Latvia
#> 21819 Latvia
#> 21820 Latvia
#> 21821 Latvia
#> 21822 Latvia
#> 21823 Latvia
#> 21824 Latvia
#> 21825 Latvia
#> 21826 Latvia
#> 21827 Least developed countries
#> 21828 Least developed countries
#> 21829 Least developed countries
#> 21830 Least developed countries
#> 21831 Least developed countries
#> 21832 Least developed countries
#> 21833 Least developed countries
#> 21834 Least developed countries
#> 21835 Least developed countries
#> 21836 Least developed countries
#> 21837 Least developed countries
#> 21838 Least developed countries
#> 21839 Least developed countries
#> 21840 Least developed countries
#> 21841 Lebanon
#> 21842 Lebanon
#> 21843 Lebanon
#> 21844 Lebanon
#> 21845 Lebanon
#> 21846 Lebanon
#> 21847 Lebanon
#> 21848 Lebanon
#> 21849 Lebanon
#> 21850 Lebanon
#> 21851 Lebanon
#> 21852 Lebanon
#> 21853 Lebanon
#> 21854 Lebanon
#> 21855 Lesotho
#> 21856 Lesotho
#> 21857 Lesotho
#> 21858 Lesotho
#> 21859 Lesotho
#> 21860 Lesotho
#> 21861 Lesotho
#> 21862 Lesotho
#> 21863 Lesotho
#> 21864 Lesotho
#> 21865 Lesotho
#> 21866 Lesotho
#> 21867 Lesotho
#> 21868 Lesotho
#> 21869 Less developed regions
#> 21870 Less developed regions
#> 21871 Less developed regions
#> 21872 Less developed regions
#> 21873 Less developed regions
#> 21874 Less developed regions
#> 21875 Less developed regions
#> 21876 Less developed regions
#> 21877 Less developed regions
#> 21878 Less developed regions
#> 21879 Less developed regions
#> 21880 Less developed regions
#> 21881 Less developed regions
#> 21882 Less developed regions
#> 21883 Less developed regions, excluding China
#> 21884 Less developed regions, excluding China
#> 21885 Less developed regions, excluding China
#> 21886 Less developed regions, excluding China
#> 21887 Less developed regions, excluding China
#> 21888 Less developed regions, excluding China
#> 21889 Less developed regions, excluding China
#> 21890 Less developed regions, excluding China
#> 21891 Less developed regions, excluding China
#> 21892 Less developed regions, excluding China
#> 21893 Less developed regions, excluding China
#> 21894 Less developed regions, excluding China
#> 21895 Less developed regions, excluding China
#> 21896 Less developed regions, excluding China
#> 21897 Less developed regions, excluding least developed countries
#> 21898 Less developed regions, excluding least developed countries
#> 21899 Less developed regions, excluding least developed countries
#> 21900 Less developed regions, excluding least developed countries
#> 21901 Less developed regions, excluding least developed countries
#> 21902 Less developed regions, excluding least developed countries
#> 21903 Less developed regions, excluding least developed countries
#> 21904 Less developed regions, excluding least developed countries
#> 21905 Less developed regions, excluding least developed countries
#> 21906 Less developed regions, excluding least developed countries
#> 21907 Less developed regions, excluding least developed countries
#> 21908 Less developed regions, excluding least developed countries
#> 21909 Less developed regions, excluding least developed countries
#> 21910 Less developed regions, excluding least developed countries
#> 21911 Liberia
#> 21912 Liberia
#> 21913 Liberia
#> 21914 Liberia
#> 21915 Liberia
#> 21916 Liberia
#> 21917 Liberia
#> 21918 Liberia
#> 21919 Liberia
#> 21920 Liberia
#> 21921 Liberia
#> 21922 Liberia
#> 21923 Liberia
#> 21924 Liberia
#> 21925 Libya
#> 21926 Libya
#> 21927 Libya
#> 21928 Libya
#> 21929 Libya
#> 21930 Libya
#> 21931 Libya
#> 21932 Libya
#> 21933 Libya
#> 21934 Libya
#> 21935 Libya
#> 21936 Libya
#> 21937 Libya
#> 21938 Libya
#> 21939 Lithuania
#> 21940 Lithuania
#> 21941 Lithuania
#> 21942 Lithuania
#> 21943 Lithuania
#> 21944 Lithuania
#> 21945 Lithuania
#> 21946 Lithuania
#> 21947 Lithuania
#> 21948 Lithuania
#> 21949 Lithuania
#> 21950 Lithuania
#> 21951 Lithuania
#> 21952 Lithuania
#> 21953 Low-income countries
#> 21954 Low-income countries
#> 21955 Low-income countries
#> 21956 Low-income countries
#> 21957 Low-income countries
#> 21958 Low-income countries
#> 21959 Low-income countries
#> 21960 Low-income countries
#> 21961 Low-income countries
#> 21962 Low-income countries
#> 21963 Low-income countries
#> 21964 Low-income countries
#> 21965 Low-income countries
#> 21966 Low-income countries
#> 21967 Lower-middle-income countries
#> 21968 Lower-middle-income countries
#> 21969 Lower-middle-income countries
#> 21970 Lower-middle-income countries
#> 21971 Lower-middle-income countries
#> 21972 Lower-middle-income countries
#> 21973 Lower-middle-income countries
#> 21974 Lower-middle-income countries
#> 21975 Lower-middle-income countries
#> 21976 Lower-middle-income countries
#> 21977 Lower-middle-income countries
#> 21978 Lower-middle-income countries
#> 21979 Lower-middle-income countries
#> 21980 Lower-middle-income countries
#> 21981 Luxembourg
#> 21982 Luxembourg
#> 21983 Luxembourg
#> 21984 Luxembourg
#> 21985 Luxembourg
#> 21986 Luxembourg
#> 21987 Luxembourg
#> 21988 Luxembourg
#> 21989 Luxembourg
#> 21990 Luxembourg
#> 21991 Luxembourg
#> 21992 Luxembourg
#> 21993 Luxembourg
#> 21994 Luxembourg
#> 21995 Madagascar
#> 21996 Madagascar
#> 21997 Madagascar
#> 21998 Madagascar
#> 21999 Madagascar
#> 22000 Madagascar
#> 22001 Madagascar
#> 22002 Madagascar
#> 22003 Madagascar
#> 22004 Madagascar
#> 22005 Madagascar
#> 22006 Madagascar
#> 22007 Madagascar
#> 22008 Madagascar
#> 22009 Malawi
#> 22010 Malawi
#> 22011 Malawi
#> 22012 Malawi
#> 22013 Malawi
#> 22014 Malawi
#> 22015 Malawi
#> 22016 Malawi
#> 22017 Malawi
#> 22018 Malawi
#> 22019 Malawi
#> 22020 Malawi
#> 22021 Malawi
#> 22022 Malawi
#> 22023 Malaysia
#> 22024 Malaysia
#> 22025 Malaysia
#> 22026 Malaysia
#> 22027 Malaysia
#> 22028 Malaysia
#> 22029 Malaysia
#> 22030 Malaysia
#> 22031 Malaysia
#> 22032 Malaysia
#> 22033 Malaysia
#> 22034 Malaysia
#> 22035 Malaysia
#> 22036 Malaysia
#> 22037 Maldives
#> 22038 Maldives
#> 22039 Maldives
#> 22040 Maldives
#> 22041 Maldives
#> 22042 Maldives
#> 22043 Maldives
#> 22044 Maldives
#> 22045 Maldives
#> 22046 Maldives
#> 22047 Maldives
#> 22048 Maldives
#> 22049 Maldives
#> 22050 Maldives
#> 22051 Mali
#> 22052 Mali
#> 22053 Mali
#> 22054 Mali
#> 22055 Mali
#> 22056 Mali
#> 22057 Mali
#> 22058 Mali
#> 22059 Mali
#> 22060 Mali
#> 22061 Mali
#> 22062 Mali
#> 22063 Mali
#> 22064 Mali
#> 22065 Malta
#> 22066 Malta
#> 22067 Malta
#> 22068 Malta
#> 22069 Malta
#> 22070 Malta
#> 22071 Malta
#> 22072 Malta
#> 22073 Malta
#> 22074 Malta
#> 22075 Malta
#> 22076 Malta
#> 22077 Malta
#> 22078 Malta
#> 22079 Martinique
#> 22080 Martinique
#> 22081 Martinique
#> 22082 Martinique
#> 22083 Martinique
#> 22084 Martinique
#> 22085 Martinique
#> 22086 Martinique
#> 22087 Martinique
#> 22088 Martinique
#> 22089 Martinique
#> 22090 Martinique
#> 22091 Martinique
#> 22092 Martinique
#> 22093 Mauritania
#> 22094 Mauritania
#> 22095 Mauritania
#> 22096 Mauritania
#> 22097 Mauritania
#> 22098 Mauritania
#> 22099 Mauritania
#> 22100 Mauritania
#> 22101 Mauritania
#> 22102 Mauritania
#> 22103 Mauritania
#> 22104 Mauritania
#> 22105 Mauritania
#> 22106 Mauritania
#> 22107 Mauritius
#> 22108 Mauritius
#> 22109 Mauritius
#> 22110 Mauritius
#> 22111 Mauritius
#> 22112 Mauritius
#> 22113 Mauritius
#> 22114 Mauritius
#> 22115 Mauritius
#> 22116 Mauritius
#> 22117 Mauritius
#> 22118 Mauritius
#> 22119 Mauritius
#> 22120 Mauritius
#> 22121 Mayotte
#> 22122 Mayotte
#> 22123 Mayotte
#> 22124 Mayotte
#> 22125 Mayotte
#> 22126 Mayotte
#> 22127 Mayotte
#> 22128 Mayotte
#> 22129 Mayotte
#> 22130 Mayotte
#> 22131 Mayotte
#> 22132 Mayotte
#> 22133 Mayotte
#> 22134 Mayotte
#> 22135 Melanesia
#> 22136 Melanesia
#> 22137 Melanesia
#> 22138 Melanesia
#> 22139 Melanesia
#> 22140 Melanesia
#> 22141 Melanesia
#> 22142 Melanesia
#> 22143 Melanesia
#> 22144 Melanesia
#> 22145 Melanesia
#> 22146 Melanesia
#> 22147 Melanesia
#> 22148 Melanesia
#> 22149 Mexico
#> 22150 Mexico
#> 22151 Mexico
#> 22152 Mexico
#> 22153 Mexico
#> 22154 Mexico
#> 22155 Mexico
#> 22156 Mexico
#> 22157 Mexico
#> 22158 Mexico
#> 22159 Mexico
#> 22160 Mexico
#> 22161 Mexico
#> 22162 Mexico
#> 22163 Micronesia
#> 22164 Micronesia
#> 22165 Micronesia
#> 22166 Micronesia
#> 22167 Micronesia
#> 22168 Micronesia
#> 22169 Micronesia
#> 22170 Micronesia
#> 22171 Micronesia
#> 22172 Micronesia
#> 22173 Micronesia
#> 22174 Micronesia
#> 22175 Micronesia
#> 22176 Micronesia
#> 22177 Micronesia (Fed. States of)
#> 22178 Micronesia (Fed. States of)
#> 22179 Micronesia (Fed. States of)
#> 22180 Micronesia (Fed. States of)
#> 22181 Micronesia (Fed. States of)
#> 22182 Micronesia (Fed. States of)
#> 22183 Micronesia (Fed. States of)
#> 22184 Micronesia (Fed. States of)
#> 22185 Micronesia (Fed. States of)
#> 22186 Micronesia (Fed. States of)
#> 22187 Micronesia (Fed. States of)
#> 22188 Micronesia (Fed. States of)
#> 22189 Micronesia (Fed. States of)
#> 22190 Micronesia (Fed. States of)
#> 22191 Middle Africa
#> 22192 Middle Africa
#> 22193 Middle Africa
#> 22194 Middle Africa
#> 22195 Middle Africa
#> 22196 Middle Africa
#> 22197 Middle Africa
#> 22198 Middle Africa
#> 22199 Middle Africa
#> 22200 Middle Africa
#> 22201 Middle Africa
#> 22202 Middle Africa
#> 22203 Middle Africa
#> 22204 Middle Africa
#> 22205 Middle-income countries
#> 22206 Middle-income countries
#> 22207 Middle-income countries
#> 22208 Middle-income countries
#> 22209 Middle-income countries
#> 22210 Middle-income countries
#> 22211 Middle-income countries
#> 22212 Middle-income countries
#> 22213 Middle-income countries
#> 22214 Middle-income countries
#> 22215 Middle-income countries
#> 22216 Middle-income countries
#> 22217 Middle-income countries
#> 22218 Middle-income countries
#> 22219 Mongolia
#> 22220 Mongolia
#> 22221 Mongolia
#> 22222 Mongolia
#> 22223 Mongolia
#> 22224 Mongolia
#> 22225 Mongolia
#> 22226 Mongolia
#> 22227 Mongolia
#> 22228 Mongolia
#> 22229 Mongolia
#> 22230 Mongolia
#> 22231 Mongolia
#> 22232 Mongolia
#> 22233 Montenegro
#> 22234 Montenegro
#> 22235 Montenegro
#> 22236 Montenegro
#> 22237 Montenegro
#> 22238 Montenegro
#> 22239 Montenegro
#> 22240 Montenegro
#> 22241 Montenegro
#> 22242 Montenegro
#> 22243 Montenegro
#> 22244 Montenegro
#> 22245 Montenegro
#> 22246 Montenegro
#> 22247 More developed regions
#> 22248 More developed regions
#> 22249 More developed regions
#> 22250 More developed regions
#> 22251 More developed regions
#> 22252 More developed regions
#> 22253 More developed regions
#> 22254 More developed regions
#> 22255 More developed regions
#> 22256 More developed regions
#> 22257 More developed regions
#> 22258 More developed regions
#> 22259 More developed regions
#> 22260 More developed regions
#> 22261 Morocco
#> 22262 Morocco
#> 22263 Morocco
#> 22264 Morocco
#> 22265 Morocco
#> 22266 Morocco
#> 22267 Morocco
#> 22268 Morocco
#> 22269 Morocco
#> 22270 Morocco
#> 22271 Morocco
#> 22272 Morocco
#> 22273 Morocco
#> 22274 Morocco
#> 22275 Mozambique
#> 22276 Mozambique
#> 22277 Mozambique
#> 22278 Mozambique
#> 22279 Mozambique
#> 22280 Mozambique
#> 22281 Mozambique
#> 22282 Mozambique
#> 22283 Mozambique
#> 22284 Mozambique
#> 22285 Mozambique
#> 22286 Mozambique
#> 22287 Mozambique
#> 22288 Mozambique
#> 22289 Myanmar
#> 22290 Myanmar
#> 22291 Myanmar
#> 22292 Myanmar
#> 22293 Myanmar
#> 22294 Myanmar
#> 22295 Myanmar
#> 22296 Myanmar
#> 22297 Myanmar
#> 22298 Myanmar
#> 22299 Myanmar
#> 22300 Myanmar
#> 22301 Myanmar
#> 22302 Myanmar
#> 22303 NORTHERN AMERICA
#> 22304 NORTHERN AMERICA
#> 22305 NORTHERN AMERICA
#> 22306 NORTHERN AMERICA
#> 22307 NORTHERN AMERICA
#> 22308 NORTHERN AMERICA
#> 22309 NORTHERN AMERICA
#> 22310 NORTHERN AMERICA
#> 22311 NORTHERN AMERICA
#> 22312 NORTHERN AMERICA
#> 22313 NORTHERN AMERICA
#> 22314 NORTHERN AMERICA
#> 22315 NORTHERN AMERICA
#> 22316 NORTHERN AMERICA
#> 22317 Namibia
#> 22318 Namibia
#> 22319 Namibia
#> 22320 Namibia
#> 22321 Namibia
#> 22322 Namibia
#> 22323 Namibia
#> 22324 Namibia
#> 22325 Namibia
#> 22326 Namibia
#> 22327 Namibia
#> 22328 Namibia
#> 22329 Namibia
#> 22330 Namibia
#> 22331 Nepal
#> 22332 Nepal
#> 22333 Nepal
#> 22334 Nepal
#> 22335 Nepal
#> 22336 Nepal
#> 22337 Nepal
#> 22338 Nepal
#> 22339 Nepal
#> 22340 Nepal
#> 22341 Nepal
#> 22342 Nepal
#> 22343 Nepal
#> 22344 Nepal
#> 22345 Netherlands
#> 22346 Netherlands
#> 22347 Netherlands
#> 22348 Netherlands
#> 22349 Netherlands
#> 22350 Netherlands
#> 22351 Netherlands
#> 22352 Netherlands
#> 22353 Netherlands
#> 22354 Netherlands
#> 22355 Netherlands
#> 22356 Netherlands
#> 22357 Netherlands
#> 22358 Netherlands
#> 22359 New Caledonia
#> 22360 New Caledonia
#> 22361 New Caledonia
#> 22362 New Caledonia
#> 22363 New Caledonia
#> 22364 New Caledonia
#> 22365 New Caledonia
#> 22366 New Caledonia
#> 22367 New Caledonia
#> 22368 New Caledonia
#> 22369 New Caledonia
#> 22370 New Caledonia
#> 22371 New Caledonia
#> 22372 New Caledonia
#> 22373 New Zealand
#> 22374 New Zealand
#> 22375 New Zealand
#> 22376 New Zealand
#> 22377 New Zealand
#> 22378 New Zealand
#> 22379 New Zealand
#> 22380 New Zealand
#> 22381 New Zealand
#> 22382 New Zealand
#> 22383 New Zealand
#> 22384 New Zealand
#> 22385 New Zealand
#> 22386 New Zealand
#> 22387 Nicaragua
#> 22388 Nicaragua
#> 22389 Nicaragua
#> 22390 Nicaragua
#> 22391 Nicaragua
#> 22392 Nicaragua
#> 22393 Nicaragua
#> 22394 Nicaragua
#> 22395 Nicaragua
#> 22396 Nicaragua
#> 22397 Nicaragua
#> 22398 Nicaragua
#> 22399 Nicaragua
#> 22400 Nicaragua
#> 22401 Niger
#> 22402 Niger
#> 22403 Niger
#> 22404 Niger
#> 22405 Niger
#> 22406 Niger
#> 22407 Niger
#> 22408 Niger
#> 22409 Niger
#> 22410 Niger
#> 22411 Niger
#> 22412 Niger
#> 22413 Niger
#> 22414 Niger
#> 22415 Nigeria
#> 22416 Nigeria
#> 22417 Nigeria
#> 22418 Nigeria
#> 22419 Nigeria
#> 22420 Nigeria
#> 22421 Nigeria
#> 22422 Nigeria
#> 22423 Nigeria
#> 22424 Nigeria
#> 22425 Nigeria
#> 22426 Nigeria
#> 22427 Nigeria
#> 22428 Nigeria
#> 22429 Northern Africa
#> 22430 Northern Africa
#> 22431 Northern Africa
#> 22432 Northern Africa
#> 22433 Northern Africa
#> 22434 Northern Africa
#> 22435 Northern Africa
#> 22436 Northern Africa
#> 22437 Northern Africa
#> 22438 Northern Africa
#> 22439 Northern Africa
#> 22440 Northern Africa
#> 22441 Northern Africa
#> 22442 Northern Africa
#> 22443 Northern Europe
#> 22444 Northern Europe
#> 22445 Northern Europe
#> 22446 Northern Europe
#> 22447 Northern Europe
#> 22448 Northern Europe
#> 22449 Northern Europe
#> 22450 Northern Europe
#> 22451 Northern Europe
#> 22452 Northern Europe
#> 22453 Northern Europe
#> 22454 Northern Europe
#> 22455 Northern Europe
#> 22456 Northern Europe
#> 22457 Norway
#> 22458 Norway
#> 22459 Norway
#> 22460 Norway
#> 22461 Norway
#> 22462 Norway
#> 22463 Norway
#> 22464 Norway
#> 22465 Norway
#> 22466 Norway
#> 22467 Norway
#> 22468 Norway
#> 22469 Norway
#> 22470 Norway
#> 22471 OCEANIA
#> 22472 OCEANIA
#> 22473 OCEANIA
#> 22474 OCEANIA
#> 22475 OCEANIA
#> 22476 OCEANIA
#> 22477 OCEANIA
#> 22478 OCEANIA
#> 22479 OCEANIA
#> 22480 OCEANIA
#> 22481 OCEANIA
#> 22482 OCEANIA
#> 22483 OCEANIA
#> 22484 OCEANIA
#> 22485 Oman
#> 22486 Oman
#> 22487 Oman
#> 22488 Oman
#> 22489 Oman
#> 22490 Oman
#> 22491 Oman
#> 22492 Oman
#> 22493 Oman
#> 22494 Oman
#> 22495 Oman
#> 22496 Oman
#> 22497 Oman
#> 22498 Oman
#> 22499 Pakistan
#> 22500 Pakistan
#> 22501 Pakistan
#> 22502 Pakistan
#> 22503 Pakistan
#> 22504 Pakistan
#> 22505 Pakistan
#> 22506 Pakistan
#> 22507 Pakistan
#> 22508 Pakistan
#> 22509 Pakistan
#> 22510 Pakistan
#> 22511 Pakistan
#> 22512 Pakistan
#> 22513 Panama
#> 22514 Panama
#> 22515 Panama
#> 22516 Panama
#> 22517 Panama
#> 22518 Panama
#> 22519 Panama
#> 22520 Panama
#> 22521 Panama
#> 22522 Panama
#> 22523 Panama
#> 22524 Panama
#> 22525 Panama
#> 22526 Panama
#> 22527 Papua New Guinea
#> 22528 Papua New Guinea
#> 22529 Papua New Guinea
#> 22530 Papua New Guinea
#> 22531 Papua New Guinea
#> 22532 Papua New Guinea
#> 22533 Papua New Guinea
#> 22534 Papua New Guinea
#> 22535 Papua New Guinea
#> 22536 Papua New Guinea
#> 22537 Papua New Guinea
#> 22538 Papua New Guinea
#> 22539 Papua New Guinea
#> 22540 Papua New Guinea
#> 22541 Paraguay
#> 22542 Paraguay
#> 22543 Paraguay
#> 22544 Paraguay
#> 22545 Paraguay
#> 22546 Paraguay
#> 22547 Paraguay
#> 22548 Paraguay
#> 22549 Paraguay
#> 22550 Paraguay
#> 22551 Paraguay
#> 22552 Paraguay
#> 22553 Paraguay
#> 22554 Paraguay
#> 22555 Peru
#> 22556 Peru
#> 22557 Peru
#> 22558 Peru
#> 22559 Peru
#> 22560 Peru
#> 22561 Peru
#> 22562 Peru
#> 22563 Peru
#> 22564 Peru
#> 22565 Peru
#> 22566 Peru
#> 22567 Peru
#> 22568 Peru
#> 22569 Philippines
#> 22570 Philippines
#> 22571 Philippines
#> 22572 Philippines
#> 22573 Philippines
#> 22574 Philippines
#> 22575 Philippines
#> 22576 Philippines
#> 22577 Philippines
#> 22578 Philippines
#> 22579 Philippines
#> 22580 Philippines
#> 22581 Philippines
#> 22582 Philippines
#> 22583 Poland
#> 22584 Poland
#> 22585 Poland
#> 22586 Poland
#> 22587 Poland
#> 22588 Poland
#> 22589 Poland
#> 22590 Poland
#> 22591 Poland
#> 22592 Poland
#> 22593 Poland
#> 22594 Poland
#> 22595 Poland
#> 22596 Poland
#> 22597 Polynesia
#> 22598 Polynesia
#> 22599 Polynesia
#> 22600 Polynesia
#> 22601 Polynesia
#> 22602 Polynesia
#> 22603 Polynesia
#> 22604 Polynesia
#> 22605 Polynesia
#> 22606 Polynesia
#> 22607 Polynesia
#> 22608 Polynesia
#> 22609 Polynesia
#> 22610 Polynesia
#> 22611 Portugal
#> 22612 Portugal
#> 22613 Portugal
#> 22614 Portugal
#> 22615 Portugal
#> 22616 Portugal
#> 22617 Portugal
#> 22618 Portugal
#> 22619 Portugal
#> 22620 Portugal
#> 22621 Portugal
#> 22622 Portugal
#> 22623 Portugal
#> 22624 Portugal
#> 22625 Puerto Rico
#> 22626 Puerto Rico
#> 22627 Puerto Rico
#> 22628 Puerto Rico
#> 22629 Puerto Rico
#> 22630 Puerto Rico
#> 22631 Puerto Rico
#> 22632 Puerto Rico
#> 22633 Puerto Rico
#> 22634 Puerto Rico
#> 22635 Puerto Rico
#> 22636 Puerto Rico
#> 22637 Puerto Rico
#> 22638 Puerto Rico
#> 22639 Qatar
#> 22640 Qatar
#> 22641 Qatar
#> 22642 Qatar
#> 22643 Qatar
#> 22644 Qatar
#> 22645 Qatar
#> 22646 Qatar
#> 22647 Qatar
#> 22648 Qatar
#> 22649 Qatar
#> 22650 Qatar
#> 22651 Qatar
#> 22652 Qatar
#> 22653 Republic of Korea
#> 22654 Republic of Korea
#> 22655 Republic of Korea
#> 22656 Republic of Korea
#> 22657 Republic of Korea
#> 22658 Republic of Korea
#> 22659 Republic of Korea
#> 22660 Republic of Korea
#> 22661 Republic of Korea
#> 22662 Republic of Korea
#> 22663 Republic of Korea
#> 22664 Republic of Korea
#> 22665 Republic of Korea
#> 22666 Republic of Korea
#> 22667 Republic of Moldova
#> 22668 Republic of Moldova
#> 22669 Republic of Moldova
#> 22670 Republic of Moldova
#> 22671 Republic of Moldova
#> 22672 Republic of Moldova
#> 22673 Republic of Moldova
#> 22674 Republic of Moldova
#> 22675 Republic of Moldova
#> 22676 Republic of Moldova
#> 22677 Republic of Moldova
#> 22678 Republic of Moldova
#> 22679 Republic of Moldova
#> 22680 Republic of Moldova
#> 22681 Reunion
#> 22682 Reunion
#> 22683 Reunion
#> 22684 Reunion
#> 22685 Reunion
#> 22686 Reunion
#> 22687 Reunion
#> 22688 Reunion
#> 22689 Reunion
#> 22690 Reunion
#> 22691 Reunion
#> 22692 Reunion
#> 22693 Reunion
#> 22694 Reunion
#> 22695 Romania
#> 22696 Romania
#> 22697 Romania
#> 22698 Romania
#> 22699 Romania
#> 22700 Romania
#> 22701 Romania
#> 22702 Romania
#> 22703 Romania
#> 22704 Romania
#> 22705 Romania
#> 22706 Romania
#> 22707 Romania
#> 22708 Romania
#> 22709 Russian Federation
#> 22710 Russian Federation
#> 22711 Russian Federation
#> 22712 Russian Federation
#> 22713 Russian Federation
#> 22714 Russian Federation
#> 22715 Russian Federation
#> 22716 Russian Federation
#> 22717 Russian Federation
#> 22718 Russian Federation
#> 22719 Russian Federation
#> 22720 Russian Federation
#> 22721 Russian Federation
#> 22722 Russian Federation
#> 22723 Rwanda
#> 22724 Rwanda
#> 22725 Rwanda
#> 22726 Rwanda
#> 22727 Rwanda
#> 22728 Rwanda
#> 22729 Rwanda
#> 22730 Rwanda
#> 22731 Rwanda
#> 22732 Rwanda
#> 22733 Rwanda
#> 22734 Rwanda
#> 22735 Rwanda
#> 22736 Rwanda
#> 22737 Saint Lucia
#> 22738 Saint Lucia
#> 22739 Saint Lucia
#> 22740 Saint Lucia
#> 22741 Saint Lucia
#> 22742 Saint Lucia
#> 22743 Saint Lucia
#> 22744 Saint Lucia
#> 22745 Saint Lucia
#> 22746 Saint Lucia
#> 22747 Saint Lucia
#> 22748 Saint Lucia
#> 22749 Saint Lucia
#> 22750 Saint Lucia
#> 22751 Saint Vincent and the Grenadines
#> 22752 Saint Vincent and the Grenadines
#> 22753 Saint Vincent and the Grenadines
#> 22754 Saint Vincent and the Grenadines
#> 22755 Saint Vincent and the Grenadines
#> 22756 Saint Vincent and the Grenadines
#> 22757 Saint Vincent and the Grenadines
#> 22758 Saint Vincent and the Grenadines
#> 22759 Saint Vincent and the Grenadines
#> 22760 Saint Vincent and the Grenadines
#> 22761 Saint Vincent and the Grenadines
#> 22762 Saint Vincent and the Grenadines
#> 22763 Saint Vincent and the Grenadines
#> 22764 Saint Vincent and the Grenadines
#> 22765 Samoa
#> 22766 Samoa
#> 22767 Samoa
#> 22768 Samoa
#> 22769 Samoa
#> 22770 Samoa
#> 22771 Samoa
#> 22772 Samoa
#> 22773 Samoa
#> 22774 Samoa
#> 22775 Samoa
#> 22776 Samoa
#> 22777 Samoa
#> 22778 Samoa
#> 22779 Sao Tome and Principe
#> 22780 Sao Tome and Principe
#> 22781 Sao Tome and Principe
#> 22782 Sao Tome and Principe
#> 22783 Sao Tome and Principe
#> 22784 Sao Tome and Principe
#> 22785 Sao Tome and Principe
#> 22786 Sao Tome and Principe
#> 22787 Sao Tome and Principe
#> 22788 Sao Tome and Principe
#> 22789 Sao Tome and Principe
#> 22790 Sao Tome and Principe
#> 22791 Sao Tome and Principe
#> 22792 Sao Tome and Principe
#> 22793 Saudi Arabia
#> 22794 Saudi Arabia
#> 22795 Saudi Arabia
#> 22796 Saudi Arabia
#> 22797 Saudi Arabia
#> 22798 Saudi Arabia
#> 22799 Saudi Arabia
#> 22800 Saudi Arabia
#> 22801 Saudi Arabia
#> 22802 Saudi Arabia
#> 22803 Saudi Arabia
#> 22804 Saudi Arabia
#> 22805 Saudi Arabia
#> 22806 Saudi Arabia
#> 22807 Senegal
#> 22808 Senegal
#> 22809 Senegal
#> 22810 Senegal
#> 22811 Senegal
#> 22812 Senegal
#> 22813 Senegal
#> 22814 Senegal
#> 22815 Senegal
#> 22816 Senegal
#> 22817 Senegal
#> 22818 Senegal
#> 22819 Senegal
#> 22820 Senegal
#> 22821 Serbia
#> 22822 Serbia
#> 22823 Serbia
#> 22824 Serbia
#> 22825 Serbia
#> 22826 Serbia
#> 22827 Serbia
#> 22828 Serbia
#> 22829 Serbia
#> 22830 Serbia
#> 22831 Serbia
#> 22832 Serbia
#> 22833 Serbia
#> 22834 Serbia
#> 22835 Seychelles
#> 22836 Seychelles
#> 22837 Seychelles
#> 22838 Seychelles
#> 22839 Seychelles
#> 22840 Seychelles
#> 22841 Seychelles
#> 22842 Seychelles
#> 22843 Seychelles
#> 22844 Seychelles
#> 22845 Seychelles
#> 22846 Seychelles
#> 22847 Seychelles
#> 22848 Seychelles
#> 22849 Sierra Leone
#> 22850 Sierra Leone
#> 22851 Sierra Leone
#> 22852 Sierra Leone
#> 22853 Sierra Leone
#> 22854 Sierra Leone
#> 22855 Sierra Leone
#> 22856 Sierra Leone
#> 22857 Sierra Leone
#> 22858 Sierra Leone
#> 22859 Sierra Leone
#> 22860 Sierra Leone
#> 22861 Sierra Leone
#> 22862 Sierra Leone
#> 22863 Singapore
#> 22864 Singapore
#> 22865 Singapore
#> 22866 Singapore
#> 22867 Singapore
#> 22868 Singapore
#> 22869 Singapore
#> 22870 Singapore
#> 22871 Singapore
#> 22872 Singapore
#> 22873 Singapore
#> 22874 Singapore
#> 22875 Singapore
#> 22876 Singapore
#> 22877 Slovakia
#> 22878 Slovakia
#> 22879 Slovakia
#> 22880 Slovakia
#> 22881 Slovakia
#> 22882 Slovakia
#> 22883 Slovakia
#> 22884 Slovakia
#> 22885 Slovakia
#> 22886 Slovakia
#> 22887 Slovakia
#> 22888 Slovakia
#> 22889 Slovakia
#> 22890 Slovakia
#> 22891 Slovenia
#> 22892 Slovenia
#> 22893 Slovenia
#> 22894 Slovenia
#> 22895 Slovenia
#> 22896 Slovenia
#> 22897 Slovenia
#> 22898 Slovenia
#> 22899 Slovenia
#> 22900 Slovenia
#> 22901 Slovenia
#> 22902 Slovenia
#> 22903 Slovenia
#> 22904 Slovenia
#> 22905 Solomon Islands
#> 22906 Solomon Islands
#> 22907 Solomon Islands
#> 22908 Solomon Islands
#> 22909 Solomon Islands
#> 22910 Solomon Islands
#> 22911 Solomon Islands
#> 22912 Solomon Islands
#> 22913 Solomon Islands
#> 22914 Solomon Islands
#> 22915 Solomon Islands
#> 22916 Solomon Islands
#> 22917 Solomon Islands
#> 22918 Solomon Islands
#> 22919 Somalia
#> 22920 Somalia
#> 22921 Somalia
#> 22922 Somalia
#> 22923 Somalia
#> 22924 Somalia
#> 22925 Somalia
#> 22926 Somalia
#> 22927 Somalia
#> 22928 Somalia
#> 22929 Somalia
#> 22930 Somalia
#> 22931 Somalia
#> 22932 Somalia
#> 22933 South Africa
#> 22934 South Africa
#> 22935 South Africa
#> 22936 South Africa
#> 22937 South Africa
#> 22938 South Africa
#> 22939 South Africa
#> 22940 South Africa
#> 22941 South Africa
#> 22942 South Africa
#> 22943 South Africa
#> 22944 South Africa
#> 22945 South Africa
#> 22946 South Africa
#> 22947 South America
#> 22948 South America
#> 22949 South America
#> 22950 South America
#> 22951 South America
#> 22952 South America
#> 22953 South America
#> 22954 South America
#> 22955 South America
#> 22956 South America
#> 22957 South America
#> 22958 South America
#> 22959 South America
#> 22960 South America
#> 22961 South Sudan
#> 22962 South Sudan
#> 22963 South Sudan
#> 22964 South Sudan
#> 22965 South Sudan
#> 22966 South Sudan
#> 22967 South Sudan
#> 22968 South Sudan
#> 22969 South Sudan
#> 22970 South Sudan
#> 22971 South Sudan
#> 22972 South Sudan
#> 22973 South Sudan
#> 22974 South Sudan
#> 22975 South-Central Asia
#> 22976 South-Central Asia
#> 22977 South-Central Asia
#> 22978 South-Central Asia
#> 22979 South-Central Asia
#> 22980 South-Central Asia
#> 22981 South-Central Asia
#> 22982 South-Central Asia
#> 22983 South-Central Asia
#> 22984 South-Central Asia
#> 22985 South-Central Asia
#> 22986 South-Central Asia
#> 22987 South-Central Asia
#> 22988 South-Central Asia
#> 22989 South-Eastern Asia
#> 22990 South-Eastern Asia
#> 22991 South-Eastern Asia
#> 22992 South-Eastern Asia
#> 22993 South-Eastern Asia
#> 22994 South-Eastern Asia
#> 22995 South-Eastern Asia
#> 22996 South-Eastern Asia
#> 22997 South-Eastern Asia
#> 22998 South-Eastern Asia
#> 22999 South-Eastern Asia
#> 23000 South-Eastern Asia
#> 23001 South-Eastern Asia
#> 23002 South-Eastern Asia
#> 23003 Southern Africa
#> 23004 Southern Africa
#> 23005 Southern Africa
#> 23006 Southern Africa
#> 23007 Southern Africa
#> 23008 Southern Africa
#> 23009 Southern Africa
#> 23010 Southern Africa
#> 23011 Southern Africa
#> 23012 Southern Africa
#> 23013 Southern Africa
#> 23014 Southern Africa
#> 23015 Southern Africa
#> 23016 Southern Africa
#> 23017 Southern Asia
#> 23018 Southern Asia
#> 23019 Southern Asia
#> 23020 Southern Asia
#> 23021 Southern Asia
#> 23022 Southern Asia
#> 23023 Southern Asia
#> 23024 Southern Asia
#> 23025 Southern Asia
#> 23026 Southern Asia
#> 23027 Southern Asia
#> 23028 Southern Asia
#> 23029 Southern Asia
#> 23030 Southern Asia
#> 23031 Southern Europe
#> 23032 Southern Europe
#> 23033 Southern Europe
#> 23034 Southern Europe
#> 23035 Southern Europe
#> 23036 Southern Europe
#> 23037 Southern Europe
#> 23038 Southern Europe
#> 23039 Southern Europe
#> 23040 Southern Europe
#> 23041 Southern Europe
#> 23042 Southern Europe
#> 23043 Southern Europe
#> 23044 Southern Europe
#> 23045 Spain
#> 23046 Spain
#> 23047 Spain
#> 23048 Spain
#> 23049 Spain
#> 23050 Spain
#> 23051 Spain
#> 23052 Spain
#> 23053 Spain
#> 23054 Spain
#> 23055 Spain
#> 23056 Spain
#> 23057 Spain
#> 23058 Spain
#> 23059 Sri Lanka
#> 23060 Sri Lanka
#> 23061 Sri Lanka
#> 23062 Sri Lanka
#> 23063 Sri Lanka
#> 23064 Sri Lanka
#> 23065 Sri Lanka
#> 23066 Sri Lanka
#> 23067 Sri Lanka
#> 23068 Sri Lanka
#> 23069 Sri Lanka
#> 23070 Sri Lanka
#> 23071 Sri Lanka
#> 23072 Sri Lanka
#> 23073 State of Palestine
#> 23074 State of Palestine
#> 23075 State of Palestine
#> 23076 State of Palestine
#> 23077 State of Palestine
#> 23078 State of Palestine
#> 23079 State of Palestine
#> 23080 State of Palestine
#> 23081 State of Palestine
#> 23082 State of Palestine
#> 23083 State of Palestine
#> 23084 State of Palestine
#> 23085 State of Palestine
#> 23086 State of Palestine
#> 23087 Sub-Saharan Africa
#> 23088 Sub-Saharan Africa
#> 23089 Sub-Saharan Africa
#> 23090 Sub-Saharan Africa
#> 23091 Sub-Saharan Africa
#> 23092 Sub-Saharan Africa
#> 23093 Sub-Saharan Africa
#> 23094 Sub-Saharan Africa
#> 23095 Sub-Saharan Africa
#> 23096 Sub-Saharan Africa
#> 23097 Sub-Saharan Africa
#> 23098 Sub-Saharan Africa
#> 23099 Sub-Saharan Africa
#> 23100 Sub-Saharan Africa
#> 23101 Sudan
#> 23102 Sudan
#> 23103 Sudan
#> 23104 Sudan
#> 23105 Sudan
#> 23106 Sudan
#> 23107 Sudan
#> 23108 Sudan
#> 23109 Sudan
#> 23110 Sudan
#> 23111 Sudan
#> 23112 Sudan
#> 23113 Sudan
#> 23114 Sudan
#> 23115 Suriname
#> 23116 Suriname
#> 23117 Suriname
#> 23118 Suriname
#> 23119 Suriname
#> 23120 Suriname
#> 23121 Suriname
#> 23122 Suriname
#> 23123 Suriname
#> 23124 Suriname
#> 23125 Suriname
#> 23126 Suriname
#> 23127 Suriname
#> 23128 Suriname
#> 23129 Swaziland
#> 23130 Swaziland
#> 23131 Swaziland
#> 23132 Swaziland
#> 23133 Swaziland
#> 23134 Swaziland
#> 23135 Swaziland
#> 23136 Swaziland
#> 23137 Swaziland
#> 23138 Swaziland
#> 23139 Swaziland
#> 23140 Swaziland
#> 23141 Swaziland
#> 23142 Swaziland
#> 23143 Sweden
#> 23144 Sweden
#> 23145 Sweden
#> 23146 Sweden
#> 23147 Sweden
#> 23148 Sweden
#> 23149 Sweden
#> 23150 Sweden
#> 23151 Sweden
#> 23152 Sweden
#> 23153 Sweden
#> 23154 Sweden
#> 23155 Sweden
#> 23156 Sweden
#> 23157 Switzerland
#> 23158 Switzerland
#> 23159 Switzerland
#> 23160 Switzerland
#> 23161 Switzerland
#> 23162 Switzerland
#> 23163 Switzerland
#> 23164 Switzerland
#> 23165 Switzerland
#> 23166 Switzerland
#> 23167 Switzerland
#> 23168 Switzerland
#> 23169 Switzerland
#> 23170 Switzerland
#> 23171 Syrian Arab Republic
#> 23172 Syrian Arab Republic
#> 23173 Syrian Arab Republic
#> 23174 Syrian Arab Republic
#> 23175 Syrian Arab Republic
#> 23176 Syrian Arab Republic
#> 23177 Syrian Arab Republic
#> 23178 Syrian Arab Republic
#> 23179 Syrian Arab Republic
#> 23180 Syrian Arab Republic
#> 23181 Syrian Arab Republic
#> 23182 Syrian Arab Republic
#> 23183 Syrian Arab Republic
#> 23184 Syrian Arab Republic
#> 23185 TFYR Macedonia
#> 23186 TFYR Macedonia
#> 23187 TFYR Macedonia
#> 23188 TFYR Macedonia
#> 23189 TFYR Macedonia
#> 23190 TFYR Macedonia
#> 23191 TFYR Macedonia
#> 23192 TFYR Macedonia
#> 23193 TFYR Macedonia
#> 23194 TFYR Macedonia
#> 23195 TFYR Macedonia
#> 23196 TFYR Macedonia
#> 23197 TFYR Macedonia
#> 23198 TFYR Macedonia
#> 23199 Tajikistan
#> 23200 Tajikistan
#> 23201 Tajikistan
#> 23202 Tajikistan
#> 23203 Tajikistan
#> 23204 Tajikistan
#> 23205 Tajikistan
#> 23206 Tajikistan
#> 23207 Tajikistan
#> 23208 Tajikistan
#> 23209 Tajikistan
#> 23210 Tajikistan
#> 23211 Tajikistan
#> 23212 Tajikistan
#> 23213 Thailand
#> 23214 Thailand
#> 23215 Thailand
#> 23216 Thailand
#> 23217 Thailand
#> 23218 Thailand
#> 23219 Thailand
#> 23220 Thailand
#> 23221 Thailand
#> 23222 Thailand
#> 23223 Thailand
#> 23224 Thailand
#> 23225 Thailand
#> 23226 Thailand
#> 23227 Timor-Leste
#> 23228 Timor-Leste
#> 23229 Timor-Leste
#> 23230 Timor-Leste
#> 23231 Timor-Leste
#> 23232 Timor-Leste
#> 23233 Timor-Leste
#> 23234 Timor-Leste
#> 23235 Timor-Leste
#> 23236 Timor-Leste
#> 23237 Timor-Leste
#> 23238 Timor-Leste
#> 23239 Timor-Leste
#> 23240 Timor-Leste
#> 23241 Togo
#> 23242 Togo
#> 23243 Togo
#> 23244 Togo
#> 23245 Togo
#> 23246 Togo
#> 23247 Togo
#> 23248 Togo
#> 23249 Togo
#> 23250 Togo
#> 23251 Togo
#> 23252 Togo
#> 23253 Togo
#> 23254 Togo
#> 23255 Tonga
#> 23256 Tonga
#> 23257 Tonga
#> 23258 Tonga
#> 23259 Tonga
#> 23260 Tonga
#> 23261 Tonga
#> 23262 Tonga
#> 23263 Tonga
#> 23264 Tonga
#> 23265 Tonga
#> 23266 Tonga
#> 23267 Tonga
#> 23268 Tonga
#> 23269 Trinidad and Tobago
#> 23270 Trinidad and Tobago
#> 23271 Trinidad and Tobago
#> 23272 Trinidad and Tobago
#> 23273 Trinidad and Tobago
#> 23274 Trinidad and Tobago
#> 23275 Trinidad and Tobago
#> 23276 Trinidad and Tobago
#> 23277 Trinidad and Tobago
#> 23278 Trinidad and Tobago
#> 23279 Trinidad and Tobago
#> 23280 Trinidad and Tobago
#> 23281 Trinidad and Tobago
#> 23282 Trinidad and Tobago
#> 23283 Tunisia
#> 23284 Tunisia
#> 23285 Tunisia
#> 23286 Tunisia
#> 23287 Tunisia
#> 23288 Tunisia
#> 23289 Tunisia
#> 23290 Tunisia
#> 23291 Tunisia
#> 23292 Tunisia
#> 23293 Tunisia
#> 23294 Tunisia
#> 23295 Tunisia
#> 23296 Tunisia
#> 23297 Turkey
#> 23298 Turkey
#> 23299 Turkey
#> 23300 Turkey
#> 23301 Turkey
#> 23302 Turkey
#> 23303 Turkey
#> 23304 Turkey
#> 23305 Turkey
#> 23306 Turkey
#> 23307 Turkey
#> 23308 Turkey
#> 23309 Turkey
#> 23310 Turkey
#> 23311 Turkmenistan
#> 23312 Turkmenistan
#> 23313 Turkmenistan
#> 23314 Turkmenistan
#> 23315 Turkmenistan
#> 23316 Turkmenistan
#> 23317 Turkmenistan
#> 23318 Turkmenistan
#> 23319 Turkmenistan
#> 23320 Turkmenistan
#> 23321 Turkmenistan
#> 23322 Turkmenistan
#> 23323 Turkmenistan
#> 23324 Turkmenistan
#> 23325 Uganda
#> 23326 Uganda
#> 23327 Uganda
#> 23328 Uganda
#> 23329 Uganda
#> 23330 Uganda
#> 23331 Uganda
#> 23332 Uganda
#> 23333 Uganda
#> 23334 Uganda
#> 23335 Uganda
#> 23336 Uganda
#> 23337 Uganda
#> 23338 Uganda
#> 23339 Ukraine
#> 23340 Ukraine
#> 23341 Ukraine
#> 23342 Ukraine
#> 23343 Ukraine
#> 23344 Ukraine
#> 23345 Ukraine
#> 23346 Ukraine
#> 23347 Ukraine
#> 23348 Ukraine
#> 23349 Ukraine
#> 23350 Ukraine
#> 23351 Ukraine
#> 23352 Ukraine
#> 23353 United Arab Emirates
#> 23354 United Arab Emirates
#> 23355 United Arab Emirates
#> 23356 United Arab Emirates
#> 23357 United Arab Emirates
#> 23358 United Arab Emirates
#> 23359 United Arab Emirates
#> 23360 United Arab Emirates
#> 23361 United Arab Emirates
#> 23362 United Arab Emirates
#> 23363 United Arab Emirates
#> 23364 United Arab Emirates
#> 23365 United Arab Emirates
#> 23366 United Arab Emirates
#> 23367 United Kingdom
#> 23368 United Kingdom
#> 23369 United Kingdom
#> 23370 United Kingdom
#> 23371 United Kingdom
#> 23372 United Kingdom
#> 23373 United Kingdom
#> 23374 United Kingdom
#> 23375 United Kingdom
#> 23376 United Kingdom
#> 23377 United Kingdom
#> 23378 United Kingdom
#> 23379 United Kingdom
#> 23380 United Kingdom
#> 23381 United Republic of Tanzania
#> 23382 United Republic of Tanzania
#> 23383 United Republic of Tanzania
#> 23384 United Republic of Tanzania
#> 23385 United Republic of Tanzania
#> 23386 United Republic of Tanzania
#> 23387 United Republic of Tanzania
#> 23388 United Republic of Tanzania
#> 23389 United Republic of Tanzania
#> 23390 United Republic of Tanzania
#> 23391 United Republic of Tanzania
#> 23392 United Republic of Tanzania
#> 23393 United Republic of Tanzania
#> 23394 United Republic of Tanzania
#> 23395 United States Virgin Islands
#> 23396 United States Virgin Islands
#> 23397 United States Virgin Islands
#> 23398 United States Virgin Islands
#> 23399 United States Virgin Islands
#> 23400 United States Virgin Islands
#> 23401 United States Virgin Islands
#> 23402 United States Virgin Islands
#> 23403 United States Virgin Islands
#> 23404 United States Virgin Islands
#> 23405 United States Virgin Islands
#> 23406 United States Virgin Islands
#> 23407 United States Virgin Islands
#> 23408 United States Virgin Islands
#> 23409 United States of America
#> 23410 United States of America
#> 23411 United States of America
#> 23412 United States of America
#> 23413 United States of America
#> 23414 United States of America
#> 23415 United States of America
#> 23416 United States of America
#> 23417 United States of America
#> 23418 United States of America
#> 23419 United States of America
#> 23420 United States of America
#> 23421 United States of America
#> 23422 United States of America
#> 23423 Upper-middle-income countries
#> 23424 Upper-middle-income countries
#> 23425 Upper-middle-income countries
#> 23426 Upper-middle-income countries
#> 23427 Upper-middle-income countries
#> 23428 Upper-middle-income countries
#> 23429 Upper-middle-income countries
#> 23430 Upper-middle-income countries
#> 23431 Upper-middle-income countries
#> 23432 Upper-middle-income countries
#> 23433 Upper-middle-income countries
#> 23434 Upper-middle-income countries
#> 23435 Upper-middle-income countries
#> 23436 Upper-middle-income countries
#> 23437 Uruguay
#> 23438 Uruguay
#> 23439 Uruguay
#> 23440 Uruguay
#> 23441 Uruguay
#> 23442 Uruguay
#> 23443 Uruguay
#> 23444 Uruguay
#> 23445 Uruguay
#> 23446 Uruguay
#> 23447 Uruguay
#> 23448 Uruguay
#> 23449 Uruguay
#> 23450 Uruguay
#> 23451 Uzbekistan
#> 23452 Uzbekistan
#> 23453 Uzbekistan
#> 23454 Uzbekistan
#> 23455 Uzbekistan
#> 23456 Uzbekistan
#> 23457 Uzbekistan
#> 23458 Uzbekistan
#> 23459 Uzbekistan
#> 23460 Uzbekistan
#> 23461 Uzbekistan
#> 23462 Uzbekistan
#> 23463 Uzbekistan
#> 23464 Uzbekistan
#> 23465 Vanuatu
#> 23466 Vanuatu
#> 23467 Vanuatu
#> 23468 Vanuatu
#> 23469 Vanuatu
#> 23470 Vanuatu
#> 23471 Vanuatu
#> 23472 Vanuatu
#> 23473 Vanuatu
#> 23474 Vanuatu
#> 23475 Vanuatu
#> 23476 Vanuatu
#> 23477 Vanuatu
#> 23478 Vanuatu
#> 23479 Venezuela (Bolivarian Republic of)
#> 23480 Venezuela (Bolivarian Republic of)
#> 23481 Venezuela (Bolivarian Republic of)
#> 23482 Venezuela (Bolivarian Republic of)
#> 23483 Venezuela (Bolivarian Republic of)
#> 23484 Venezuela (Bolivarian Republic of)
#> 23485 Venezuela (Bolivarian Republic of)
#> 23486 Venezuela (Bolivarian Republic of)
#> 23487 Venezuela (Bolivarian Republic of)
#> 23488 Venezuela (Bolivarian Republic of)
#> 23489 Venezuela (Bolivarian Republic of)
#> 23490 Venezuela (Bolivarian Republic of)
#> 23491 Venezuela (Bolivarian Republic of)
#> 23492 Venezuela (Bolivarian Republic of)
#> 23493 Viet Nam
#> 23494 Viet Nam
#> 23495 Viet Nam
#> 23496 Viet Nam
#> 23497 Viet Nam
#> 23498 Viet Nam
#> 23499 Viet Nam
#> 23500 Viet Nam
#> 23501 Viet Nam
#> 23502 Viet Nam
#> 23503 Viet Nam
#> 23504 Viet Nam
#> 23505 Viet Nam
#> 23506 Viet Nam
#> 23507 WORLD
#> 23508 WORLD
#> 23509 WORLD
#> 23510 WORLD
#> 23511 WORLD
#> 23512 WORLD
#> 23513 WORLD
#> 23514 WORLD
#> 23515 WORLD
#> 23516 WORLD
#> 23517 WORLD
#> 23518 WORLD
#> 23519 WORLD
#> 23520 WORLD
#> 23521 Western Africa
#> 23522 Western Africa
#> 23523 Western Africa
#> 23524 Western Africa
#> 23525 Western Africa
#> 23526 Western Africa
#> 23527 Western Africa
#> 23528 Western Africa
#> 23529 Western Africa
#> 23530 Western Africa
#> 23531 Western Africa
#> 23532 Western Africa
#> 23533 Western Africa
#> 23534 Western Africa
#> 23535 Western Asia
#> 23536 Western Asia
#> 23537 Western Asia
#> 23538 Western Asia
#> 23539 Western Asia
#> 23540 Western Asia
#> 23541 Western Asia
#> 23542 Western Asia
#> 23543 Western Asia
#> 23544 Western Asia
#> 23545 Western Asia
#> 23546 Western Asia
#> 23547 Western Asia
#> 23548 Western Asia
#> 23549 Western Europe
#> 23550 Western Europe
#> 23551 Western Europe
#> 23552 Western Europe
#> 23553 Western Europe
#> 23554 Western Europe
#> 23555 Western Europe
#> 23556 Western Europe
#> 23557 Western Europe
#> 23558 Western Europe
#> 23559 Western Europe
#> 23560 Western Europe
#> 23561 Western Europe
#> 23562 Western Europe
#> 23563 Western Sahara
#> 23564 Western Sahara
#> 23565 Western Sahara
#> 23566 Western Sahara
#> 23567 Western Sahara
#> 23568 Western Sahara
#> 23569 Western Sahara
#> 23570 Western Sahara
#> 23571 Western Sahara
#> 23572 Western Sahara
#> 23573 Western Sahara
#> 23574 Western Sahara
#> 23575 Western Sahara
#> 23576 Western Sahara
#> 23577 Yemen
#> 23578 Yemen
#> 23579 Yemen
#> 23580 Yemen
#> 23581 Yemen
#> 23582 Yemen
#> 23583 Yemen
#> 23584 Yemen
#> 23585 Yemen
#> 23586 Yemen
#> 23587 Yemen
#> 23588 Yemen
#> 23589 Yemen
#> 23590 Yemen
#> 23591 Zambia
#> 23592 Zambia
#> 23593 Zambia
#> 23594 Zambia
#> 23595 Zambia
#> 23596 Zambia
#> 23597 Zambia
#> 23598 Zambia
#> 23599 Zambia
#> 23600 Zambia
#> 23601 Zambia
#> 23602 Zambia
#> 23603 Zambia
#> 23604 Zambia
#> 23605 Zimbabwe
#> 23606 Zimbabwe
#> 23607 Zimbabwe
#> 23608 Zimbabwe
#> 23609 Zimbabwe
#> 23610 Zimbabwe
#> 23611 Zimbabwe
#> 23612 Zimbabwe
#> 23613 Zimbabwe
#> 23614 Zimbabwe
#> 23615 Zimbabwe
#> 23616 Zimbabwe
#> 23617 Zimbabwe
#> 23618 Zimbabwe
#> 23619 AFRICA
#> 23620 AFRICA
#> 23621 AFRICA
#> 23622 AFRICA
#> 23623 AFRICA
#> 23624 AFRICA
#> 23625 AFRICA
#> 23626 AFRICA
#> 23627 AFRICA
#> 23628 AFRICA
#> 23629 AFRICA
#> 23630 AFRICA
#> 23631 AFRICA
#> 23632 AFRICA
#> 23633 ASIA
#> 23634 ASIA
#> 23635 ASIA
#> 23636 ASIA
#> 23637 ASIA
#> 23638 ASIA
#> 23639 ASIA
#> 23640 ASIA
#> 23641 ASIA
#> 23642 ASIA
#> 23643 ASIA
#> 23644 ASIA
#> 23645 ASIA
#> 23646 ASIA
#> 23647 Afghanistan
#> 23648 Afghanistan
#> 23649 Afghanistan
#> 23650 Afghanistan
#> 23651 Afghanistan
#> 23652 Afghanistan
#> 23653 Afghanistan
#> 23654 Afghanistan
#> 23655 Afghanistan
#> 23656 Afghanistan
#> 23657 Afghanistan
#> 23658 Afghanistan
#> 23659 Afghanistan
#> 23660 Afghanistan
#> 23661 Albania
#> 23662 Albania
#> 23663 Albania
#> 23664 Albania
#> 23665 Albania
#> 23666 Albania
#> 23667 Albania
#> 23668 Albania
#> 23669 Albania
#> 23670 Albania
#> 23671 Albania
#> 23672 Albania
#> 23673 Albania
#> 23674 Albania
#> 23675 Algeria
#> 23676 Algeria
#> 23677 Algeria
#> 23678 Algeria
#> 23679 Algeria
#> 23680 Algeria
#> 23681 Algeria
#> 23682 Algeria
#> 23683 Algeria
#> 23684 Algeria
#> 23685 Algeria
#> 23686 Algeria
#> 23687 Algeria
#> 23688 Algeria
#> 23689 Angola
#> 23690 Angola
#> 23691 Angola
#> 23692 Angola
#> 23693 Angola
#> 23694 Angola
#> 23695 Angola
#> 23696 Angola
#> 23697 Angola
#> 23698 Angola
#> 23699 Angola
#> 23700 Angola
#> 23701 Angola
#> 23702 Angola
#> 23703 Antigua and Barbuda
#> 23704 Antigua and Barbuda
#> 23705 Antigua and Barbuda
#> 23706 Antigua and Barbuda
#> 23707 Antigua and Barbuda
#> 23708 Antigua and Barbuda
#> 23709 Antigua and Barbuda
#> 23710 Antigua and Barbuda
#> 23711 Antigua and Barbuda
#> 23712 Antigua and Barbuda
#> 23713 Antigua and Barbuda
#> 23714 Antigua and Barbuda
#> 23715 Antigua and Barbuda
#> 23716 Antigua and Barbuda
#> 23717 Argentina
#> 23718 Argentina
#> 23719 Argentina
#> 23720 Argentina
#> 23721 Argentina
#> 23722 Argentina
#> 23723 Argentina
#> 23724 Argentina
#> 23725 Argentina
#> 23726 Argentina
#> 23727 Argentina
#> 23728 Argentina
#> 23729 Argentina
#> 23730 Argentina
#> 23731 Armenia
#> 23732 Armenia
#> 23733 Armenia
#> 23734 Armenia
#> 23735 Armenia
#> 23736 Armenia
#> 23737 Armenia
#> 23738 Armenia
#> 23739 Armenia
#> 23740 Armenia
#> 23741 Armenia
#> 23742 Armenia
#> 23743 Armenia
#> 23744 Armenia
#> 23745 Aruba
#> 23746 Aruba
#> 23747 Aruba
#> 23748 Aruba
#> 23749 Aruba
#> 23750 Aruba
#> 23751 Aruba
#> 23752 Aruba
#> 23753 Aruba
#> 23754 Aruba
#> 23755 Aruba
#> 23756 Aruba
#> 23757 Aruba
#> 23758 Aruba
#> 23759 Australia
#> 23760 Australia
#> 23761 Australia
#> 23762 Australia
#> 23763 Australia
#> 23764 Australia
#> 23765 Australia
#> 23766 Australia
#> 23767 Australia
#> 23768 Australia
#> 23769 Australia
#> 23770 Australia
#> 23771 Australia
#> 23772 Australia
#> 23773 Australia/New Zealand
#> 23774 Australia/New Zealand
#> 23775 Australia/New Zealand
#> 23776 Australia/New Zealand
#> 23777 Australia/New Zealand
#> 23778 Australia/New Zealand
#> 23779 Australia/New Zealand
#> 23780 Australia/New Zealand
#> 23781 Australia/New Zealand
#> 23782 Australia/New Zealand
#> 23783 Australia/New Zealand
#> 23784 Australia/New Zealand
#> 23785 Australia/New Zealand
#> 23786 Australia/New Zealand
#> 23787 Austria
#> 23788 Austria
#> 23789 Austria
#> 23790 Austria
#> 23791 Austria
#> 23792 Austria
#> 23793 Austria
#> 23794 Austria
#> 23795 Austria
#> 23796 Austria
#> 23797 Austria
#> 23798 Austria
#> 23799 Austria
#> 23800 Austria
#> 23801 Azerbaijan
#> 23802 Azerbaijan
#> 23803 Azerbaijan
#> 23804 Azerbaijan
#> 23805 Azerbaijan
#> 23806 Azerbaijan
#> 23807 Azerbaijan
#> 23808 Azerbaijan
#> 23809 Azerbaijan
#> 23810 Azerbaijan
#> 23811 Azerbaijan
#> 23812 Azerbaijan
#> 23813 Azerbaijan
#> 23814 Azerbaijan
#> 23815 Bahamas
#> 23816 Bahamas
#> 23817 Bahamas
#> 23818 Bahamas
#> 23819 Bahamas
#> 23820 Bahamas
#> 23821 Bahamas
#> 23822 Bahamas
#> 23823 Bahamas
#> 23824 Bahamas
#> 23825 Bahamas
#> 23826 Bahamas
#> 23827 Bahamas
#> 23828 Bahamas
#> 23829 Bahrain
#> 23830 Bahrain
#> 23831 Bahrain
#> 23832 Bahrain
#> 23833 Bahrain
#> 23834 Bahrain
#> 23835 Bahrain
#> 23836 Bahrain
#> 23837 Bahrain
#> 23838 Bahrain
#> 23839 Bahrain
#> 23840 Bahrain
#> 23841 Bahrain
#> 23842 Bahrain
#> 23843 Bangladesh
#> 23844 Bangladesh
#> 23845 Bangladesh
#> 23846 Bangladesh
#> 23847 Bangladesh
#> 23848 Bangladesh
#> 23849 Bangladesh
#> 23850 Bangladesh
#> 23851 Bangladesh
#> 23852 Bangladesh
#> 23853 Bangladesh
#> 23854 Bangladesh
#> 23855 Bangladesh
#> 23856 Bangladesh
#> 23857 Barbados
#> 23858 Barbados
#> 23859 Barbados
#> 23860 Barbados
#> 23861 Barbados
#> 23862 Barbados
#> 23863 Barbados
#> 23864 Barbados
#> 23865 Barbados
#> 23866 Barbados
#> 23867 Barbados
#> 23868 Barbados
#> 23869 Barbados
#> 23870 Barbados
#> 23871 Belarus
#> 23872 Belarus
#> 23873 Belarus
#> 23874 Belarus
#> 23875 Belarus
#> 23876 Belarus
#> 23877 Belarus
#> 23878 Belarus
#> 23879 Belarus
#> 23880 Belarus
#> 23881 Belarus
#> 23882 Belarus
#> 23883 Belarus
#> 23884 Belarus
#> 23885 Belgium
#> 23886 Belgium
#> 23887 Belgium
#> 23888 Belgium
#> 23889 Belgium
#> 23890 Belgium
#> 23891 Belgium
#> 23892 Belgium
#> 23893 Belgium
#> 23894 Belgium
#> 23895 Belgium
#> 23896 Belgium
#> 23897 Belgium
#> 23898 Belgium
#> 23899 Belize
#> 23900 Belize
#> 23901 Belize
#> 23902 Belize
#> 23903 Belize
#> 23904 Belize
#> 23905 Belize
#> 23906 Belize
#> 23907 Belize
#> 23908 Belize
#> 23909 Belize
#> 23910 Belize
#> 23911 Belize
#> 23912 Belize
#> 23913 Benin
#> 23914 Benin
#> 23915 Benin
#> 23916 Benin
#> 23917 Benin
#> 23918 Benin
#> 23919 Benin
#> 23920 Benin
#> 23921 Benin
#> 23922 Benin
#> 23923 Benin
#> 23924 Benin
#> 23925 Benin
#> 23926 Benin
#> 23927 Bhutan
#> 23928 Bhutan
#> 23929 Bhutan
#> 23930 Bhutan
#> 23931 Bhutan
#> 23932 Bhutan
#> 23933 Bhutan
#> 23934 Bhutan
#> 23935 Bhutan
#> 23936 Bhutan
#> 23937 Bhutan
#> 23938 Bhutan
#> 23939 Bhutan
#> 23940 Bhutan
#> 23941 Bolivia (Plurinational State of)
#> 23942 Bolivia (Plurinational State of)
#> 23943 Bolivia (Plurinational State of)
#> 23944 Bolivia (Plurinational State of)
#> 23945 Bolivia (Plurinational State of)
#> 23946 Bolivia (Plurinational State of)
#> 23947 Bolivia (Plurinational State of)
#> 23948 Bolivia (Plurinational State of)
#> 23949 Bolivia (Plurinational State of)
#> 23950 Bolivia (Plurinational State of)
#> 23951 Bolivia (Plurinational State of)
#> 23952 Bolivia (Plurinational State of)
#> 23953 Bolivia (Plurinational State of)
#> 23954 Bolivia (Plurinational State of)
#> 23955 Bosnia and Herzegovina
#> 23956 Bosnia and Herzegovina
#> 23957 Bosnia and Herzegovina
#> 23958 Bosnia and Herzegovina
#> 23959 Bosnia and Herzegovina
#> 23960 Bosnia and Herzegovina
#> 23961 Bosnia and Herzegovina
#> 23962 Bosnia and Herzegovina
#> 23963 Bosnia and Herzegovina
#> 23964 Bosnia and Herzegovina
#> 23965 Bosnia and Herzegovina
#> 23966 Bosnia and Herzegovina
#> 23967 Bosnia and Herzegovina
#> 23968 Bosnia and Herzegovina
#> 23969 Botswana
#> 23970 Botswana
#> 23971 Botswana
#> 23972 Botswana
#> 23973 Botswana
#> 23974 Botswana
#> 23975 Botswana
#> 23976 Botswana
#> 23977 Botswana
#> 23978 Botswana
#> 23979 Botswana
#> 23980 Botswana
#> 23981 Botswana
#> 23982 Botswana
#> 23983 Brazil
#> 23984 Brazil
#> 23985 Brazil
#> 23986 Brazil
#> 23987 Brazil
#> 23988 Brazil
#> 23989 Brazil
#> 23990 Brazil
#> 23991 Brazil
#> 23992 Brazil
#> 23993 Brazil
#> 23994 Brazil
#> 23995 Brazil
#> 23996 Brazil
#> 23997 Brunei Darussalam
#> 23998 Brunei Darussalam
#> 23999 Brunei Darussalam
#> 24000 Brunei Darussalam
#> 24001 Brunei Darussalam
#> 24002 Brunei Darussalam
#> 24003 Brunei Darussalam
#> 24004 Brunei Darussalam
#> 24005 Brunei Darussalam
#> 24006 Brunei Darussalam
#> 24007 Brunei Darussalam
#> 24008 Brunei Darussalam
#> 24009 Brunei Darussalam
#> 24010 Brunei Darussalam
#> 24011 Bulgaria
#> 24012 Bulgaria
#> 24013 Bulgaria
#> 24014 Bulgaria
#> 24015 Bulgaria
#> 24016 Bulgaria
#> 24017 Bulgaria
#> 24018 Bulgaria
#> 24019 Bulgaria
#> 24020 Bulgaria
#> 24021 Bulgaria
#> 24022 Bulgaria
#> 24023 Bulgaria
#> 24024 Bulgaria
#> 24025 Burkina Faso
#> 24026 Burkina Faso
#> 24027 Burkina Faso
#> 24028 Burkina Faso
#> 24029 Burkina Faso
#> 24030 Burkina Faso
#> 24031 Burkina Faso
#> 24032 Burkina Faso
#> 24033 Burkina Faso
#> 24034 Burkina Faso
#> 24035 Burkina Faso
#> 24036 Burkina Faso
#> 24037 Burkina Faso
#> 24038 Burkina Faso
#> 24039 Burundi
#> 24040 Burundi
#> 24041 Burundi
#> 24042 Burundi
#> 24043 Burundi
#> 24044 Burundi
#> 24045 Burundi
#> 24046 Burundi
#> 24047 Burundi
#> 24048 Burundi
#> 24049 Burundi
#> 24050 Burundi
#> 24051 Burundi
#> 24052 Burundi
#> 24053 Cabo Verde
#> 24054 Cabo Verde
#> 24055 Cabo Verde
#> 24056 Cabo Verde
#> 24057 Cabo Verde
#> 24058 Cabo Verde
#> 24059 Cabo Verde
#> 24060 Cabo Verde
#> 24061 Cabo Verde
#> 24062 Cabo Verde
#> 24063 Cabo Verde
#> 24064 Cabo Verde
#> 24065 Cabo Verde
#> 24066 Cabo Verde
#> 24067 Cambodia
#> 24068 Cambodia
#> 24069 Cambodia
#> 24070 Cambodia
#> 24071 Cambodia
#> 24072 Cambodia
#> 24073 Cambodia
#> 24074 Cambodia
#> 24075 Cambodia
#> 24076 Cambodia
#> 24077 Cambodia
#> 24078 Cambodia
#> 24079 Cambodia
#> 24080 Cambodia
#> 24081 Cameroon
#> 24082 Cameroon
#> 24083 Cameroon
#> 24084 Cameroon
#> 24085 Cameroon
#> 24086 Cameroon
#> 24087 Cameroon
#> 24088 Cameroon
#> 24089 Cameroon
#> 24090 Cameroon
#> 24091 Cameroon
#> 24092 Cameroon
#> 24093 Cameroon
#> 24094 Cameroon
#> 24095 Canada
#> 24096 Canada
#> 24097 Canada
#> 24098 Canada
#> 24099 Canada
#> 24100 Canada
#> 24101 Canada
#> 24102 Canada
#> 24103 Canada
#> 24104 Canada
#> 24105 Canada
#> 24106 Canada
#> 24107 Canada
#> 24108 Canada
#> 24109 Caribbean
#> 24110 Caribbean
#> 24111 Caribbean
#> 24112 Caribbean
#> 24113 Caribbean
#> 24114 Caribbean
#> 24115 Caribbean
#> 24116 Caribbean
#> 24117 Caribbean
#> 24118 Caribbean
#> 24119 Caribbean
#> 24120 Caribbean
#> 24121 Caribbean
#> 24122 Caribbean
#> 24123 Central African Republic
#> 24124 Central African Republic
#> 24125 Central African Republic
#> 24126 Central African Republic
#> 24127 Central African Republic
#> 24128 Central African Republic
#> 24129 Central African Republic
#> 24130 Central African Republic
#> 24131 Central African Republic
#> 24132 Central African Republic
#> 24133 Central African Republic
#> 24134 Central African Republic
#> 24135 Central African Republic
#> 24136 Central African Republic
#> 24137 Central America
#> 24138 Central America
#> 24139 Central America
#> 24140 Central America
#> 24141 Central America
#> 24142 Central America
#> 24143 Central America
#> 24144 Central America
#> 24145 Central America
#> 24146 Central America
#> 24147 Central America
#> 24148 Central America
#> 24149 Central America
#> 24150 Central America
#> 24151 Central Asia
#> 24152 Central Asia
#> 24153 Central Asia
#> 24154 Central Asia
#> 24155 Central Asia
#> 24156 Central Asia
#> 24157 Central Asia
#> 24158 Central Asia
#> 24159 Central Asia
#> 24160 Central Asia
#> 24161 Central Asia
#> 24162 Central Asia
#> 24163 Central Asia
#> 24164 Central Asia
#> 24165 Chad
#> 24166 Chad
#> 24167 Chad
#> 24168 Chad
#> 24169 Chad
#> 24170 Chad
#> 24171 Chad
#> 24172 Chad
#> 24173 Chad
#> 24174 Chad
#> 24175 Chad
#> 24176 Chad
#> 24177 Chad
#> 24178 Chad
#> 24179 Channel Islands
#> 24180 Channel Islands
#> 24181 Channel Islands
#> 24182 Channel Islands
#> 24183 Channel Islands
#> 24184 Channel Islands
#> 24185 Channel Islands
#> 24186 Channel Islands
#> 24187 Channel Islands
#> 24188 Channel Islands
#> 24189 Channel Islands
#> 24190 Channel Islands
#> 24191 Channel Islands
#> 24192 Channel Islands
#> 24193 Chile
#> 24194 Chile
#> 24195 Chile
#> 24196 Chile
#> 24197 Chile
#> 24198 Chile
#> 24199 Chile
#> 24200 Chile
#> 24201 Chile
#> 24202 Chile
#> 24203 Chile
#> 24204 Chile
#> 24205 Chile
#> 24206 Chile
#> 24207 China
#> 24208 China
#> 24209 China
#> 24210 China
#> 24211 China
#> 24212 China
#> 24213 China
#> 24214 China
#> 24215 China
#> 24216 China
#> 24217 China
#> 24218 China
#> 24219 China
#> 24220 China
#> 24221 China, Hong Kong SAR
#> 24222 China, Hong Kong SAR
#> 24223 China, Hong Kong SAR
#> 24224 China, Hong Kong SAR
#> 24225 China, Hong Kong SAR
#> 24226 China, Hong Kong SAR
#> 24227 China, Hong Kong SAR
#> 24228 China, Hong Kong SAR
#> 24229 China, Hong Kong SAR
#> 24230 China, Hong Kong SAR
#> 24231 China, Hong Kong SAR
#> 24232 China, Hong Kong SAR
#> 24233 China, Hong Kong SAR
#> 24234 China, Hong Kong SAR
#> 24235 China, Macao SAR
#> 24236 China, Macao SAR
#> 24237 China, Macao SAR
#> 24238 China, Macao SAR
#> 24239 China, Macao SAR
#> 24240 China, Macao SAR
#> 24241 China, Macao SAR
#> 24242 China, Macao SAR
#> 24243 China, Macao SAR
#> 24244 China, Macao SAR
#> 24245 China, Macao SAR
#> 24246 China, Macao SAR
#> 24247 China, Macao SAR
#> 24248 China, Macao SAR
#> 24249 China, Taiwan Province of China
#> 24250 China, Taiwan Province of China
#> 24251 China, Taiwan Province of China
#> 24252 China, Taiwan Province of China
#> 24253 China, Taiwan Province of China
#> 24254 China, Taiwan Province of China
#> 24255 China, Taiwan Province of China
#> 24256 China, Taiwan Province of China
#> 24257 China, Taiwan Province of China
#> 24258 China, Taiwan Province of China
#> 24259 China, Taiwan Province of China
#> 24260 China, Taiwan Province of China
#> 24261 China, Taiwan Province of China
#> 24262 China, Taiwan Province of China
#> 24263 Colombia
#> 24264 Colombia
#> 24265 Colombia
#> 24266 Colombia
#> 24267 Colombia
#> 24268 Colombia
#> 24269 Colombia
#> 24270 Colombia
#> 24271 Colombia
#> 24272 Colombia
#> 24273 Colombia
#> 24274 Colombia
#> 24275 Colombia
#> 24276 Colombia
#> 24277 Comoros
#> 24278 Comoros
#> 24279 Comoros
#> 24280 Comoros
#> 24281 Comoros
#> 24282 Comoros
#> 24283 Comoros
#> 24284 Comoros
#> 24285 Comoros
#> 24286 Comoros
#> 24287 Comoros
#> 24288 Comoros
#> 24289 Comoros
#> 24290 Comoros
#> 24291 Congo
#> 24292 Congo
#> 24293 Congo
#> 24294 Congo
#> 24295 Congo
#> 24296 Congo
#> 24297 Congo
#> 24298 Congo
#> 24299 Congo
#> 24300 Congo
#> 24301 Congo
#> 24302 Congo
#> 24303 Congo
#> 24304 Congo
#> 24305 Costa Rica
#> 24306 Costa Rica
#> 24307 Costa Rica
#> 24308 Costa Rica
#> 24309 Costa Rica
#> 24310 Costa Rica
#> 24311 Costa Rica
#> 24312 Costa Rica
#> 24313 Costa Rica
#> 24314 Costa Rica
#> 24315 Costa Rica
#> 24316 Costa Rica
#> 24317 Costa Rica
#> 24318 Costa Rica
#> 24319 Cote d'Ivoire
#> 24320 Cote d'Ivoire
#> 24321 Cote d'Ivoire
#> 24322 Cote d'Ivoire
#> 24323 Cote d'Ivoire
#> 24324 Cote d'Ivoire
#> 24325 Cote d'Ivoire
#> 24326 Cote d'Ivoire
#> 24327 Cote d'Ivoire
#> 24328 Cote d'Ivoire
#> 24329 Cote d'Ivoire
#> 24330 Cote d'Ivoire
#> 24331 Cote d'Ivoire
#> 24332 Cote d'Ivoire
#> 24333 Croatia
#> 24334 Croatia
#> 24335 Croatia
#> 24336 Croatia
#> 24337 Croatia
#> 24338 Croatia
#> 24339 Croatia
#> 24340 Croatia
#> 24341 Croatia
#> 24342 Croatia
#> 24343 Croatia
#> 24344 Croatia
#> 24345 Croatia
#> 24346 Croatia
#> 24347 Cuba
#> 24348 Cuba
#> 24349 Cuba
#> 24350 Cuba
#> 24351 Cuba
#> 24352 Cuba
#> 24353 Cuba
#> 24354 Cuba
#> 24355 Cuba
#> 24356 Cuba
#> 24357 Cuba
#> 24358 Cuba
#> 24359 Cuba
#> 24360 Cuba
#> 24361 Curacao
#> 24362 Curacao
#> 24363 Curacao
#> 24364 Curacao
#> 24365 Curacao
#> 24366 Curacao
#> 24367 Curacao
#> 24368 Curacao
#> 24369 Curacao
#> 24370 Curacao
#> 24371 Curacao
#> 24372 Curacao
#> 24373 Curacao
#> 24374 Curacao
#> 24375 Cyprus
#> 24376 Cyprus
#> 24377 Cyprus
#> 24378 Cyprus
#> 24379 Cyprus
#> 24380 Cyprus
#> 24381 Cyprus
#> 24382 Cyprus
#> 24383 Cyprus
#> 24384 Cyprus
#> 24385 Cyprus
#> 24386 Cyprus
#> 24387 Cyprus
#> 24388 Cyprus
#> 24389 Czechia
#> 24390 Czechia
#> 24391 Czechia
#> 24392 Czechia
#> 24393 Czechia
#> 24394 Czechia
#> 24395 Czechia
#> 24396 Czechia
#> 24397 Czechia
#> 24398 Czechia
#> 24399 Czechia
#> 24400 Czechia
#> 24401 Czechia
#> 24402 Czechia
#> 24403 Dem. People's Republic of Korea
#> 24404 Dem. People's Republic of Korea
#> 24405 Dem. People's Republic of Korea
#> 24406 Dem. People's Republic of Korea
#> 24407 Dem. People's Republic of Korea
#> 24408 Dem. People's Republic of Korea
#> 24409 Dem. People's Republic of Korea
#> 24410 Dem. People's Republic of Korea
#> 24411 Dem. People's Republic of Korea
#> 24412 Dem. People's Republic of Korea
#> 24413 Dem. People's Republic of Korea
#> 24414 Dem. People's Republic of Korea
#> 24415 Dem. People's Republic of Korea
#> 24416 Dem. People's Republic of Korea
#> 24417 Democratic Republic of the Congo
#> 24418 Democratic Republic of the Congo
#> 24419 Democratic Republic of the Congo
#> 24420 Democratic Republic of the Congo
#> 24421 Democratic Republic of the Congo
#> 24422 Democratic Republic of the Congo
#> 24423 Democratic Republic of the Congo
#> 24424 Democratic Republic of the Congo
#> 24425 Democratic Republic of the Congo
#> 24426 Democratic Republic of the Congo
#> 24427 Democratic Republic of the Congo
#> 24428 Democratic Republic of the Congo
#> 24429 Democratic Republic of the Congo
#> 24430 Democratic Republic of the Congo
#> 24431 Denmark
#> 24432 Denmark
#> 24433 Denmark
#> 24434 Denmark
#> 24435 Denmark
#> 24436 Denmark
#> 24437 Denmark
#> 24438 Denmark
#> 24439 Denmark
#> 24440 Denmark
#> 24441 Denmark
#> 24442 Denmark
#> 24443 Denmark
#> 24444 Denmark
#> 24445 Djibouti
#> 24446 Djibouti
#> 24447 Djibouti
#> 24448 Djibouti
#> 24449 Djibouti
#> 24450 Djibouti
#> 24451 Djibouti
#> 24452 Djibouti
#> 24453 Djibouti
#> 24454 Djibouti
#> 24455 Djibouti
#> 24456 Djibouti
#> 24457 Djibouti
#> 24458 Djibouti
#> 24459 Dominican Republic
#> 24460 Dominican Republic
#> 24461 Dominican Republic
#> 24462 Dominican Republic
#> 24463 Dominican Republic
#> 24464 Dominican Republic
#> 24465 Dominican Republic
#> 24466 Dominican Republic
#> 24467 Dominican Republic
#> 24468 Dominican Republic
#> 24469 Dominican Republic
#> 24470 Dominican Republic
#> 24471 Dominican Republic
#> 24472 Dominican Republic
#> 24473 EUROPE
#> 24474 EUROPE
#> 24475 EUROPE
#> 24476 EUROPE
#> 24477 EUROPE
#> 24478 EUROPE
#> 24479 EUROPE
#> 24480 EUROPE
#> 24481 EUROPE
#> 24482 EUROPE
#> 24483 EUROPE
#> 24484 EUROPE
#> 24485 EUROPE
#> 24486 EUROPE
#> 24487 Eastern Africa
#> 24488 Eastern Africa
#> 24489 Eastern Africa
#> 24490 Eastern Africa
#> 24491 Eastern Africa
#> 24492 Eastern Africa
#> 24493 Eastern Africa
#> 24494 Eastern Africa
#> 24495 Eastern Africa
#> 24496 Eastern Africa
#> 24497 Eastern Africa
#> 24498 Eastern Africa
#> 24499 Eastern Africa
#> 24500 Eastern Africa
#> 24501 Eastern Asia
#> 24502 Eastern Asia
#> 24503 Eastern Asia
#> 24504 Eastern Asia
#> 24505 Eastern Asia
#> 24506 Eastern Asia
#> 24507 Eastern Asia
#> 24508 Eastern Asia
#> 24509 Eastern Asia
#> 24510 Eastern Asia
#> 24511 Eastern Asia
#> 24512 Eastern Asia
#> 24513 Eastern Asia
#> 24514 Eastern Asia
#> 24515 Eastern Europe
#> 24516 Eastern Europe
#> 24517 Eastern Europe
#> 24518 Eastern Europe
#> 24519 Eastern Europe
#> 24520 Eastern Europe
#> 24521 Eastern Europe
#> 24522 Eastern Europe
#> 24523 Eastern Europe
#> 24524 Eastern Europe
#> 24525 Eastern Europe
#> 24526 Eastern Europe
#> 24527 Eastern Europe
#> 24528 Eastern Europe
#> 24529 Ecuador
#> 24530 Ecuador
#> 24531 Ecuador
#> 24532 Ecuador
#> 24533 Ecuador
#> 24534 Ecuador
#> 24535 Ecuador
#> 24536 Ecuador
#> 24537 Ecuador
#> 24538 Ecuador
#> 24539 Ecuador
#> 24540 Ecuador
#> 24541 Ecuador
#> 24542 Ecuador
#> 24543 Egypt
#> 24544 Egypt
#> 24545 Egypt
#> 24546 Egypt
#> 24547 Egypt
#> 24548 Egypt
#> 24549 Egypt
#> 24550 Egypt
#> 24551 Egypt
#> 24552 Egypt
#> 24553 Egypt
#> 24554 Egypt
#> 24555 Egypt
#> 24556 Egypt
#> 24557 El Salvador
#> 24558 El Salvador
#> 24559 El Salvador
#> 24560 El Salvador
#> 24561 El Salvador
#> 24562 El Salvador
#> 24563 El Salvador
#> 24564 El Salvador
#> 24565 El Salvador
#> 24566 El Salvador
#> 24567 El Salvador
#> 24568 El Salvador
#> 24569 El Salvador
#> 24570 El Salvador
#> 24571 Equatorial Guinea
#> 24572 Equatorial Guinea
#> 24573 Equatorial Guinea
#> 24574 Equatorial Guinea
#> 24575 Equatorial Guinea
#> 24576 Equatorial Guinea
#> 24577 Equatorial Guinea
#> 24578 Equatorial Guinea
#> 24579 Equatorial Guinea
#> 24580 Equatorial Guinea
#> 24581 Equatorial Guinea
#> 24582 Equatorial Guinea
#> 24583 Equatorial Guinea
#> 24584 Equatorial Guinea
#> 24585 Eritrea
#> 24586 Eritrea
#> 24587 Eritrea
#> 24588 Eritrea
#> 24589 Eritrea
#> 24590 Eritrea
#> 24591 Eritrea
#> 24592 Eritrea
#> 24593 Eritrea
#> 24594 Eritrea
#> 24595 Eritrea
#> 24596 Eritrea
#> 24597 Eritrea
#> 24598 Eritrea
#> 24599 Estonia
#> 24600 Estonia
#> 24601 Estonia
#> 24602 Estonia
#> 24603 Estonia
#> 24604 Estonia
#> 24605 Estonia
#> 24606 Estonia
#> 24607 Estonia
#> 24608 Estonia
#> 24609 Estonia
#> 24610 Estonia
#> 24611 Estonia
#> 24612 Estonia
#> 24613 Ethiopia
#> 24614 Ethiopia
#> 24615 Ethiopia
#> 24616 Ethiopia
#> 24617 Ethiopia
#> 24618 Ethiopia
#> 24619 Ethiopia
#> 24620 Ethiopia
#> 24621 Ethiopia
#> 24622 Ethiopia
#> 24623 Ethiopia
#> 24624 Ethiopia
#> 24625 Ethiopia
#> 24626 Ethiopia
#> 24627 Fiji
#> 24628 Fiji
#> 24629 Fiji
#> 24630 Fiji
#> 24631 Fiji
#> 24632 Fiji
#> 24633 Fiji
#> 24634 Fiji
#> 24635 Fiji
#> 24636 Fiji
#> 24637 Fiji
#> 24638 Fiji
#> 24639 Fiji
#> 24640 Fiji
#> 24641 Finland
#> 24642 Finland
#> 24643 Finland
#> 24644 Finland
#> 24645 Finland
#> 24646 Finland
#> 24647 Finland
#> 24648 Finland
#> 24649 Finland
#> 24650 Finland
#> 24651 Finland
#> 24652 Finland
#> 24653 Finland
#> 24654 Finland
#> 24655 France
#> 24656 France
#> 24657 France
#> 24658 France
#> 24659 France
#> 24660 France
#> 24661 France
#> 24662 France
#> 24663 France
#> 24664 France
#> 24665 France
#> 24666 France
#> 24667 France
#> 24668 France
#> 24669 French Guiana
#> 24670 French Guiana
#> 24671 French Guiana
#> 24672 French Guiana
#> 24673 French Guiana
#> 24674 French Guiana
#> 24675 French Guiana
#> 24676 French Guiana
#> 24677 French Guiana
#> 24678 French Guiana
#> 24679 French Guiana
#> 24680 French Guiana
#> 24681 French Guiana
#> 24682 French Guiana
#> 24683 French Polynesia
#> 24684 French Polynesia
#> 24685 French Polynesia
#> 24686 French Polynesia
#> 24687 French Polynesia
#> 24688 French Polynesia
#> 24689 French Polynesia
#> 24690 French Polynesia
#> 24691 French Polynesia
#> 24692 French Polynesia
#> 24693 French Polynesia
#> 24694 French Polynesia
#> 24695 French Polynesia
#> 24696 French Polynesia
#> 24697 Gabon
#> 24698 Gabon
#> 24699 Gabon
#> 24700 Gabon
#> 24701 Gabon
#> 24702 Gabon
#> 24703 Gabon
#> 24704 Gabon
#> 24705 Gabon
#> 24706 Gabon
#> 24707 Gabon
#> 24708 Gabon
#> 24709 Gabon
#> 24710 Gabon
#> 24711 Gambia
#> 24712 Gambia
#> 24713 Gambia
#> 24714 Gambia
#> 24715 Gambia
#> 24716 Gambia
#> 24717 Gambia
#> 24718 Gambia
#> 24719 Gambia
#> 24720 Gambia
#> 24721 Gambia
#> 24722 Gambia
#> 24723 Gambia
#> 24724 Gambia
#> 24725 Georgia
#> 24726 Georgia
#> 24727 Georgia
#> 24728 Georgia
#> 24729 Georgia
#> 24730 Georgia
#> 24731 Georgia
#> 24732 Georgia
#> 24733 Georgia
#> 24734 Georgia
#> 24735 Georgia
#> 24736 Georgia
#> 24737 Georgia
#> 24738 Georgia
#> 24739 Germany
#> 24740 Germany
#> 24741 Germany
#> 24742 Germany
#> 24743 Germany
#> 24744 Germany
#> 24745 Germany
#> 24746 Germany
#> 24747 Germany
#> 24748 Germany
#> 24749 Germany
#> 24750 Germany
#> 24751 Germany
#> 24752 Germany
#> 24753 Ghana
#> 24754 Ghana
#> 24755 Ghana
#> 24756 Ghana
#> 24757 Ghana
#> 24758 Ghana
#> 24759 Ghana
#> 24760 Ghana
#> 24761 Ghana
#> 24762 Ghana
#> 24763 Ghana
#> 24764 Ghana
#> 24765 Ghana
#> 24766 Ghana
#> 24767 Greece
#> 24768 Greece
#> 24769 Greece
#> 24770 Greece
#> 24771 Greece
#> 24772 Greece
#> 24773 Greece
#> 24774 Greece
#> 24775 Greece
#> 24776 Greece
#> 24777 Greece
#> 24778 Greece
#> 24779 Greece
#> 24780 Greece
#> 24781 Grenada
#> 24782 Grenada
#> 24783 Grenada
#> 24784 Grenada
#> 24785 Grenada
#> 24786 Grenada
#> 24787 Grenada
#> 24788 Grenada
#> 24789 Grenada
#> 24790 Grenada
#> 24791 Grenada
#> 24792 Grenada
#> 24793 Grenada
#> 24794 Grenada
#> 24795 Guadeloupe
#> 24796 Guadeloupe
#> 24797 Guadeloupe
#> 24798 Guadeloupe
#> 24799 Guadeloupe
#> 24800 Guadeloupe
#> 24801 Guadeloupe
#> 24802 Guadeloupe
#> 24803 Guadeloupe
#> 24804 Guadeloupe
#> 24805 Guadeloupe
#> 24806 Guadeloupe
#> 24807 Guadeloupe
#> 24808 Guadeloupe
#> 24809 Guam
#> 24810 Guam
#> 24811 Guam
#> 24812 Guam
#> 24813 Guam
#> 24814 Guam
#> 24815 Guam
#> 24816 Guam
#> 24817 Guam
#> 24818 Guam
#> 24819 Guam
#> 24820 Guam
#> 24821 Guam
#> 24822 Guam
#> 24823 Guatemala
#> 24824 Guatemala
#> 24825 Guatemala
#> 24826 Guatemala
#> 24827 Guatemala
#> 24828 Guatemala
#> 24829 Guatemala
#> 24830 Guatemala
#> 24831 Guatemala
#> 24832 Guatemala
#> 24833 Guatemala
#> 24834 Guatemala
#> 24835 Guatemala
#> 24836 Guatemala
#> 24837 Guinea
#> 24838 Guinea
#> 24839 Guinea
#> 24840 Guinea
#> 24841 Guinea
#> 24842 Guinea
#> 24843 Guinea
#> 24844 Guinea
#> 24845 Guinea
#> 24846 Guinea
#> 24847 Guinea
#> 24848 Guinea
#> 24849 Guinea
#> 24850 Guinea
#> 24851 Guinea-Bissau
#> 24852 Guinea-Bissau
#> 24853 Guinea-Bissau
#> 24854 Guinea-Bissau
#> 24855 Guinea-Bissau
#> 24856 Guinea-Bissau
#> 24857 Guinea-Bissau
#> 24858 Guinea-Bissau
#> 24859 Guinea-Bissau
#> 24860 Guinea-Bissau
#> 24861 Guinea-Bissau
#> 24862 Guinea-Bissau
#> 24863 Guinea-Bissau
#> 24864 Guinea-Bissau
#> 24865 Guyana
#> 24866 Guyana
#> 24867 Guyana
#> 24868 Guyana
#> 24869 Guyana
#> 24870 Guyana
#> 24871 Guyana
#> 24872 Guyana
#> 24873 Guyana
#> 24874 Guyana
#> 24875 Guyana
#> 24876 Guyana
#> 24877 Guyana
#> 24878 Guyana
#> 24879 Haiti
#> 24880 Haiti
#> 24881 Haiti
#> 24882 Haiti
#> 24883 Haiti
#> 24884 Haiti
#> 24885 Haiti
#> 24886 Haiti
#> 24887 Haiti
#> 24888 Haiti
#> 24889 Haiti
#> 24890 Haiti
#> 24891 Haiti
#> 24892 Haiti
#> 24893 High-income countries
#> 24894 High-income countries
#> 24895 High-income countries
#> 24896 High-income countries
#> 24897 High-income countries
#> 24898 High-income countries
#> 24899 High-income countries
#> 24900 High-income countries
#> 24901 High-income countries
#> 24902 High-income countries
#> 24903 High-income countries
#> 24904 High-income countries
#> 24905 High-income countries
#> 24906 High-income countries
#> 24907 Honduras
#> 24908 Honduras
#> 24909 Honduras
#> 24910 Honduras
#> 24911 Honduras
#> 24912 Honduras
#> 24913 Honduras
#> 24914 Honduras
#> 24915 Honduras
#> 24916 Honduras
#> 24917 Honduras
#> 24918 Honduras
#> 24919 Honduras
#> 24920 Honduras
#> 24921 Hungary
#> 24922 Hungary
#> 24923 Hungary
#> 24924 Hungary
#> 24925 Hungary
#> 24926 Hungary
#> 24927 Hungary
#> 24928 Hungary
#> 24929 Hungary
#> 24930 Hungary
#> 24931 Hungary
#> 24932 Hungary
#> 24933 Hungary
#> 24934 Hungary
#> 24935 Iceland
#> 24936 Iceland
#> 24937 Iceland
#> 24938 Iceland
#> 24939 Iceland
#> 24940 Iceland
#> 24941 Iceland
#> 24942 Iceland
#> 24943 Iceland
#> 24944 Iceland
#> 24945 Iceland
#> 24946 Iceland
#> 24947 Iceland
#> 24948 Iceland
#> 24949 India
#> 24950 India
#> 24951 India
#> 24952 India
#> 24953 India
#> 24954 India
#> 24955 India
#> 24956 India
#> 24957 India
#> 24958 India
#> 24959 India
#> 24960 India
#> 24961 India
#> 24962 India
#> 24963 Indonesia
#> 24964 Indonesia
#> 24965 Indonesia
#> 24966 Indonesia
#> 24967 Indonesia
#> 24968 Indonesia
#> 24969 Indonesia
#> 24970 Indonesia
#> 24971 Indonesia
#> 24972 Indonesia
#> 24973 Indonesia
#> 24974 Indonesia
#> 24975 Indonesia
#> 24976 Indonesia
#> 24977 Iran (Islamic Republic of)
#> 24978 Iran (Islamic Republic of)
#> 24979 Iran (Islamic Republic of)
#> 24980 Iran (Islamic Republic of)
#> 24981 Iran (Islamic Republic of)
#> 24982 Iran (Islamic Republic of)
#> 24983 Iran (Islamic Republic of)
#> 24984 Iran (Islamic Republic of)
#> 24985 Iran (Islamic Republic of)
#> 24986 Iran (Islamic Republic of)
#> 24987 Iran (Islamic Republic of)
#> 24988 Iran (Islamic Republic of)
#> 24989 Iran (Islamic Republic of)
#> 24990 Iran (Islamic Republic of)
#> 24991 Iraq
#> 24992 Iraq
#> 24993 Iraq
#> 24994 Iraq
#> 24995 Iraq
#> 24996 Iraq
#> 24997 Iraq
#> 24998 Iraq
#> 24999 Iraq
#> lower.age.limit year population
#> 1 0 1950 38705049
#> 2 0 1955 44304214
#> 3 0 1960 50491493
#> 4 0 1965 57690110
#> 5 0 1970 65452837
#> 6 0 1975 75017430
#> 7 0 1980 86666665
#> 8 0 1985 98999023
#> 9 0 1990 110362756
#> 10 0 1995 119693019
#> 11 0 2000 132250015
#> 12 0 2005 148387957
#> 13 0 2010 166886619
#> 14 0 2015 186990397
#> 15 0 1950 200480457
#> 16 0 1955 249926282
#> 17 0 1960 262761475
#> 18 0 1965 299943718
#> 19 0 1970 337683265
#> 20 0 1975 346985319
#> 21 0 1980 338501338
#> 22 0 1985 366840083
#> 23 0 1990 406079716
#> 24 0 1995 380016134
#> 25 0 2000 358896137
#> 26 0 2005 358262850
#> 27 0 2010 365793173
#> 28 0 2015 368116974
#> 29 0 1950 1291622
#> 30 0 1955 1355054
#> 31 0 1960 1539494
#> 32 0 1965 1762117
#> 33 0 1970 2025591
#> 34 0 1975 2326731
#> 35 0 1980 2484405
#> 36 0 1985 2276913
#> 37 0 1990 2377868
#> 38 0 1995 3325482
#> 39 0 2000 4011626
#> 40 0 2005 4783591
#> 41 0 2010 5199366
#> 42 0 2015 5239401
#> 43 0 1950 180780
#> 44 0 1955 222524
#> 45 0 1960 272904
#> 46 0 1965 309709
#> 47 0 1970 312306
#> 48 0 1975 324836
#> 49 0 1980 335170
#> 50 0 1985 355489
#> 51 0 1990 388492
#> 52 0 1995 334431
#> 53 0 2000 278755
#> 54 0 2005 219025
#> 55 0 2010 173968
#> 56 0 2015 171785
#> 57 0 1950 1403134
#> 58 0 1955 1830632
#> 59 0 1960 2081828
#> 60 0 1965 2398029
#> 61 0 1970 2692572
#> 62 0 1975 3086165
#> 63 0 1980 3528041
#> 64 0 1985 3893846
#> 65 0 1990 3994211
#> 66 0 1995 3734286
#> 67 0 2000 3087830
#> 68 0 2005 2964660
#> 69 0 2010 3860201
#> 70 0 2015 4663613
#> 71 0 1950 739236
#> 72 0 1955 1023492
#> 73 0 1960 1095297
#> 74 0 1965 1196518
#> 75 0 1970 1298651
#> 76 0 1975 1515051
#> 77 0 1980 1810277
#> 78 0 1985 2122595
#> 79 0 1990 2438460
#> 80 0 1995 2799572
#> 81 0 2000 3157994
#> 82 0 2005 3779984
#> 83 0 2010 4512092
#> 84 0 2015 5158376
#> 85 0 1950 6603
#> 86 0 1955 8434
#> 87 0 1960 8941
#> 88 0 1965 9166
#> 89 0 1970 9902
#> 90 0 1975 9320
#> 91 0 1980 7293
#> 92 0 1985 7195
#> 93 0 1990 7364
#> 94 0 1995 6766
#> 95 0 2000 8260
#> 96 0 2005 8447
#> 97 0 2010 8119
#> 98 0 2015 8037
#> 99 0 1950 1947133
#> 100 0 1955 2150262
#> 101 0 1960 2253968
#> 102 0 1965 2335883
#> 103 0 1970 2456969
#> 104 0 1975 2796673
#> 105 0 1980 3316624
#> 106 0 1985 3277583
#> 107 0 1990 3414603
#> 108 0 1995 3517912
#> 109 0 2000 3471918
#> 110 0 2005 3594876
#> 111 0 2010 3645441
#> 112 0 2015 3718140
#> 113 0 1950 150356
#> 114 0 1955 235219
#> 115 0 1960 323412
#> 116 0 1965 346340
#> 117 0 1970 291511
#> 118 0 1975 301645
#> 119 0 1980 327083
#> 120 0 1985 370907
#> 121 0 1990 385616
#> 122 0 1995 290038
#> 123 0 2000 196554
#> 124 0 2005 186629
#> 125 0 2010 201083
#> 126 0 2015 206148
#> 127 0 1950 6749
#> 128 0 1955 8096
#> 129 0 1960 8760
#> 130 0 1965 8412
#> 131 0 1970 7012
#> 132 0 1975 6059
#> 133 0 1980 5262
#> 134 0 1985 6441
#> 135 0 1990 5398
#> 136 0 1995 6743
#> 137 0 2000 6978
#> 138 0 2005 6300
#> 139 0 2010 6659
#> 140 0 2015 5627
#> 141 0 1950 888742
#> 142 0 1955 993479
#> 143 0 1960 1094211
#> 144 0 1965 1163443
#> 145 0 1970 1242502
#> 146 0 1975 1271016
#> 147 0 1980 1133827
#> 148 0 1985 1197231
#> 149 0 1990 1261642
#> 150 0 1995 1303523
#> 151 0 2000 1282548
#> 152 0 2005 1271578
#> 153 0 2010 1457825
#> 154 0 2015 1545114
#> 155 0 1950 1120742
#> 156 0 1955 1246557
#> 157 0 1960 1383345
#> 158 0 1965 1464792
#> 159 0 1970 1539443
#> 160 0 1975 1573445
#> 161 0 1980 1390395
#> 162 0 1985 1448965
#> 163 0 1990 1538064
#> 164 0 1995 1599607
#> 165 0 2000 1565983
#> 166 0 2005 1556153
#> 167 0 2010 1770077
#> 168 0 2015 1853795
#> 169 0 1950 516129
#> 170 0 1955 490872
#> 171 0 1960 580913
#> 172 0 1965 646655
#> 173 0 1970 622908
#> 174 0 1975 508594
#> 175 0 1980 430482
#> 176 0 1985 441996
#> 177 0 1990 428844
#> 178 0 1995 472414
#> 179 0 2000 416398
#> 180 0 2005 398127
#> 181 0 2010 390934
#> 182 0 2015 407013
#> 183 0 1950 341856
#> 184 0 1955 535160
#> 185 0 1960 699845
#> 186 0 1965 839752
#> 187 0 1970 778567
#> 188 0 1975 704578
#> 189 0 1980 697245
#> 190 0 1985 800083
#> 191 0 1990 938591
#> 192 0 1995 894380
#> 193 0 2000 712542
#> 194 0 2005 643145
#> 195 0 2010 702249
#> 196 0 2015 866402
#> 197 0 1950 12061
#> 198 0 1955 13588
#> 199 0 1960 17482
#> 200 0 1965 22672
#> 201 0 1970 23245
#> 202 0 1975 25224
#> 203 0 1980 25264
#> 204 0 1985 29554
#> 205 0 1990 28424
#> 206 0 1995 30568
#> 207 0 2000 28149
#> 208 0 2005 27472
#> 209 0 2010 26959
#> 210 0 2015 27929
#> 211 0 1950 20238
#> 212 0 1955 22131
#> 213 0 1960 27673
#> 214 0 1965 31609
#> 215 0 1970 35519
#> 216 0 1975 39910
#> 217 0 1980 49897
#> 218 0 1985 58468
#> 219 0 1990 65927
#> 220 0 1995 61292
#> 221 0 2000 74016
#> 222 0 2005 81249
#> 223 0 2010 91447
#> 224 0 2015 106231
#> 225 0 1950 6237852
#> 226 0 1955 6821746
#> 227 0 1960 8480281
#> 228 0 1965 10234470
#> 229 0 1970 11997637
#> 230 0 1975 12377347
#> 231 0 1980 14271930
#> 232 0 1985 15723728
#> 233 0 1990 16461412
#> 234 0 1995 16608371
#> 235 0 2000 16814041
#> 236 0 2005 16744482
#> 237 0 2010 15836305
#> 238 0 2015 15253913
#> 239 0 1950 26000
#> 240 0 1955 30898
#> 241 0 1960 32396
#> 242 0 1965 32493
#> 243 0 1970 26250
#> 244 0 1975 21965
#> 245 0 1980 21971
#> 246 0 1985 21176
#> 247 0 1990 20524
#> 248 0 1995 19625
#> 249 0 2000 18703
#> 250 0 2005 18123
#> 251 0 2010 17641
#> 252 0 2015 17360
#> 253 0 1950 659156
#> 254 0 1955 811730
#> 255 0 1960 964562
#> 256 0 1965 879867
#> 257 0 1970 724724
#> 258 0 1975 745045
#> 259 0 1980 741807
#> 260 0 1985 805277
#> 261 0 1990 792020
#> 262 0 1995 598056
#> 263 0 2000 459577
#> 264 0 2005 448325
#> 265 0 2010 508872
#> 266 0 2015 575884
#> 267 0 1950 696820
#> 268 0 1955 701535
#> 269 0 1960 749685
#> 270 0 1965 783725
#> 271 0 1970 718858
#> 272 0 1975 653006
#> 273 0 1980 600255
#> 274 0 1985 590432
#> 275 0 1990 589974
#> 276 0 1995 609858
#> 277 0 2000 576032
#> 278 0 2005 583492
#> 279 0 2010 632774
#> 280 0 2015 644951
#> 281 0 1950 10858
#> 282 0 1955 16428
#> 283 0 1960 17826
#> 284 0 1965 19342
#> 285 0 1970 21666
#> 286 0 1975 23992
#> 287 0 1980 24468
#> 288 0 1985 28612
#> 289 0 1990 30398
#> 290 0 1995 31514
#> 291 0 2000 37201
#> 292 0 2005 38264
#> 293 0 2010 37810
#> 294 0 2015 39452
#> 295 0 1950 308821
#> 296 0 1955 339537
#> 297 0 1960 383409
#> 298 0 1965 442356
#> 299 0 1970 508360
#> 300 0 1975 583059
#> 301 0 1980 680505
#> 302 0 1985 792137
#> 303 0 1990 920427
#> 304 0 1995 1073017
#> 305 0 2000 1220561
#> 306 0 2005 1376560
#> 307 0 2010 1558812
#> 308 0 2015 1739041
#> 309 0 1950 31785
#> 310 0 1955 32041
#> 311 0 1960 38049
#> 312 0 1965 44971
#> 313 0 1970 54038
#> 314 0 1975 63341
#> 315 0 1980 72624
#> 316 0 1985 80925
#> 317 0 1990 92438
#> 318 0 1995 82952
#> 319 0 2000 77936
#> 320 0 2005 73235
#> 321 0 2010 73479
#> 322 0 2015 70700
#> 323 0 1950 488417
#> 324 0 1955 580771
#> 325 0 1960 624856
#> 326 0 1965 678595
#> 327 0 1970 744281
#> 328 0 1975 824541
#> 329 0 1980 921700
#> 330 0 1985 995340
#> 331 0 1990 1045256
#> 332 0 1995 1101946
#> 333 0 2000 1160309
#> 334 0 2005 1183853
#> 335 0 2010 1189272
#> 336 0 2015 1185563
#> 337 0 1950 384499
#> 338 0 1955 428369
#> 339 0 1960 436991
#> 340 0 1965 459265
#> 341 0 1970 425796
#> 342 0 1975 411268
#> 343 0 1980 380569
#> 344 0 1985 370420
#> 345 0 1990 348918
#> 346 0 1995 260992
#> 347 0 2000 235648
#> 348 0 2005 178074
#> 349 0 2010 174087
#> 350 0 2015 162360
#> 351 0 1950 62232
#> 352 0 1955 86955
#> 353 0 1960 100436
#> 354 0 1965 113791
#> 355 0 1970 131506
#> 356 0 1975 155428
#> 357 0 1980 188480
#> 358 0 1985 216158
#> 359 0 1990 215881
#> 360 0 1995 219485
#> 361 0 2000 220974
#> 362 0 2005 219546
#> 363 0 2010 232321
#> 364 0 2015 255549
#> 365 0 1950 8983598
#> 366 0 1955 10804184
#> 367 0 1960 12345401
#> 368 0 1965 14113690
#> 369 0 1970 14775892
#> 370 0 1975 15384057
#> 371 0 1980 17026095
#> 372 0 1985 18406756
#> 373 0 1990 17964591
#> 374 0 1995 17513016
#> 375 0 2000 17571597
#> 376 0 2005 16433410
#> 377 0 2010 15166559
#> 378 0 2015 14875027
#> 379 0 1950 6672
#> 380 0 1955 12617
#> 381 0 1960 16104
#> 382 0 1965 18679
#> 383 0 1970 20843
#> 384 0 1975 25825
#> 385 0 1980 28691
#> 386 0 1985 31478
#> 387 0 1990 34067
#> 388 0 1995 37460
#> 389 0 2000 34872
#> 390 0 2005 32944
#> 391 0 2010 31426
#> 392 0 2015 33466
#> 393 0 1950 733000
#> 394 0 1955 702421
#> 395 0 1960 663295
#> 396 0 1965 644148
#> 397 0 1970 647081
#> 398 0 1975 678744
#> 399 0 1980 679678
#> 400 0 1985 608292
#> 401 0 1990 558240
#> 402 0 1995 419962
#> 403 0 2000 321621
#> 404 0 2005 328389
#> 405 0 2010 357564
#> 406 0 2015 335561
#> 407 0 1950 691602
#> 408 0 1955 733588
#> 409 0 1960 805707
#> 410 0 1965 880636
#> 411 0 1970 986983
#> 412 0 1975 1099902
#> 413 0 1980 1278246
#> 414 0 1985 1476004
#> 415 0 1990 1662881
#> 416 0 1995 1890759
#> 417 0 2000 2172255
#> 418 0 2005 2486278
#> 419 0 2010 2842946
#> 420 0 2015 3161236
#> 421 0 1950 377410
#> 422 0 1955 463199
#> 423 0 1960 504706
#> 424 0 1965 562432
#> 425 0 1970 629296
#> 426 0 1975 657714
#> 427 0 1980 774609
#> 428 0 1985 939480
#> 429 0 1990 1088579
#> 430 0 1995 1148736
#> 431 0 2000 1154397
#> 432 0 2005 1279331
#> 433 0 2010 1577318
#> 434 0 2015 1853262
#> 435 0 1950 19322
#> 436 0 1955 38414
#> 437 0 1960 37281
#> 438 0 1965 44065
#> 439 0 1970 49246
#> 440 0 1975 46511
#> 441 0 1980 49644
#> 442 0 1985 57031
#> 443 0 1990 63078
#> 444 0 1995 63439
#> 445 0 2000 62374
#> 446 0 2005 58921
#> 447 0 2010 55984
#> 448 0 2015 54764
#> 449 0 1950 739601
#> 450 0 1955 963674
#> 451 0 1960 1067371
#> 452 0 1965 1176632
#> 453 0 1970 1207443
#> 454 0 1975 1252503
#> 455 0 1980 892755
#> 456 0 1985 1498718
#> 457 0 1990 1725886
#> 458 0 1995 1765385
#> 459 0 2000 1574656
#> 460 0 2005 1531380
#> 461 0 2010 1671682
#> 462 0 2015 1764597
#> 463 0 1950 672127
#> 464 0 1955 749128
#> 465 0 1960 834982
#> 466 0 1965 974239
#> 467 0 1970 1140035
#> 468 0 1975 1336126
#> 469 0 1980 1581607
#> 470 0 1985 1895631
#> 471 0 1990 2186321
#> 472 0 1995 2405535
#> 473 0 2000 2611828
#> 474 0 2005 2982397
#> 475 0 2010 3394755
#> 476 0 2015 3741542
#> 477 0 1950 1636000
#> 478 0 1955 1943397
#> 479 0 1960 2226115
#> 480 0 1965 2249794
#> 481 0 1970 1882835
#> 482 0 1975 1771140
#> 483 0 1980 1793500
#> 484 0 1985 1848051
#> 485 0 1990 1930547
#> 486 0 1995 1986685
#> 487 0 2000 1793376
#> 488 0 2005 1716569
#> 489 0 2010 1882528
#> 490 0 2015 1943660
#> 491 0 1950 2561047
#> 492 0 1955 2955451
#> 493 0 1960 3229941
#> 494 0 1965 3785949
#> 495 0 1970 3801840
#> 496 0 1975 3761893
#> 497 0 1980 3570951
#> 498 0 1985 3839316
#> 499 0 1990 3986110
#> 500 0 1995 3950050
#> 501 0 2000 3856930
#> 502 0 2005 3744672
#> 503 0 2010 3666067
#> 504 0 2015 3611506
#> 505 0 1950 189627
#> 506 0 1955 211428
#> 507 0 1960 239232
#> 508 0 1965 268960
#> 509 0 1970 302081
#> 510 0 1975 338289
#> 511 0 1980 385707
#> 512 0 1985 449743
#> 513 0 1990 501841
#> 514 0 1995 549802
#> 515 0 2000 612090
#> 516 0 2005 671976
#> 517 0 2010 713164
#> 518 0 2015 728311
#> 519 0 1950 6544036
#> 520 0 1955 8381308
#> 521 0 1960 9724611
#> 522 0 1965 11072262
#> 523 0 1970 12704852
#> 524 0 1975 14894739
#> 525 0 1980 15333544
#> 526 0 1985 15581506
#> 527 0 1990 16136677
#> 528 0 1995 16773842
#> 529 0 2000 17112120
#> 530 0 2005 16801990
#> 531 0 2010 16392791
#> 532 0 2015 16443026
#> 533 0 1950 1914325
#> 534 0 1955 3059514
#> 535 0 1960 4075522
#> 536 0 1965 4842871
#> 537 0 1970 4825836
#> 538 0 1975 5215597
#> 539 0 1980 5697620
#> 540 0 1985 6482985
#> 541 0 1990 7242158
#> 542 0 1995 6875452
#> 543 0 2000 5890690
#> 544 0 2005 5659804
#> 545 0 2010 6706836
#> 546 0 2015 7779754
#> 547 0 1950 375827
#> 548 0 1955 462328
#> 549 0 1960 509009
#> 550 0 1965 562052
#> 551 0 1970 629452
#> 552 0 1975 749135
#> 553 0 1980 856445
#> 554 0 1985 985379
#> 555 0 1990 1175013
#> 556 0 1995 1406311
#> 557 0 2000 1684313
#> 558 0 2005 2008403
#> 559 0 2010 2293915
#> 560 0 2015 2600644
#> 561 0 1950 8553
#> 562 0 1955 8359
#> 563 0 1960 8203
#> 564 0 1965 8408
#> 565 0 1970 8693
#> 566 0 1975 7275
#> 567 0 1980 6777
#> 568 0 1985 7195
#> 569 0 1990 8065
#> 570 0 1995 8272
#> 571 0 2000 8199
#> 572 0 2005 8190
#> 573 0 2010 7988
#> 574 0 2015 7886
#> 575 0 1950 875417
#> 576 0 1955 1064096
#> 577 0 1960 1169916
#> 578 0 1965 1260296
#> 579 0 1970 1321864
#> 580 0 1975 1272228
#> 581 0 1980 1243742
#> 582 0 1985 1317550
#> 583 0 1990 1428549
#> 584 0 1995 1398969
#> 585 0 2000 1319180
#> 586 0 2005 1253492
#> 587 0 2010 1241500
#> 588 0 2015 1196958
#> 589 0 1950 76507914
#> 590 0 1955 102596139
#> 591 0 1960 95890840
#> 592 0 1965 114710304
#> 593 0 1970 134588098
#> 594 0 1975 125805179
#> 595 0 1980 100621075
#> 596 0 1985 105990686
#> 597 0 1990 133229701
#> 598 0 1995 103277822
#> 599 0 2000 81757543
#> 600 0 2005 79269322
#> 601 0 2010 82581426
#> 602 0 2015 85884693
#> 603 0 1950 316200
#> 604 0 1955 410607
#> 605 0 1960 489625
#> 606 0 1965 510286
#> 607 0 1970 393807
#> 608 0 1975 387532
#> 609 0 1980 388437
#> 610 0 1985 394137
#> 611 0 1990 371905
#> 612 0 1995 332960
#> 613 0 2000 291533
#> 614 0 2005 222526
#> 615 0 2010 234389
#> 616 0 2015 275074
#> 617 0 1950 22101
#> 618 0 1955 29442
#> 619 0 1960 23855
#> 620 0 1965 27615
#> 621 0 1970 19822
#> 622 0 1975 16069
#> 623 0 1980 16250
#> 624 0 1985 28316
#> 625 0 1990 35554
#> 626 0 1995 30027
#> 627 0 2000 22873
#> 628 0 2005 17623
#> 629 0 2010 22010
#> 630 0 2015 32351
#> 631 0 1950 1256632
#> 632 0 1955 1753567
#> 633 0 1960 1933493
#> 634 0 1965 1911676
#> 635 0 1970 1861566
#> 636 0 1975 1848537
#> 637 0 1980 1978084
#> 638 0 1985 1929747
#> 639 0 1990 1621927
#> 640 0 1995 1606389
#> 641 0 2000 1495783
#> 642 0 2005 1219769
#> 643 0 2010 974966
#> 644 0 2015 1024494
#> 645 0 1950 2212957
#> 646 0 1955 2673557
#> 647 0 1960 3052203
#> 648 0 1965 3514927
#> 649 0 1970 3828997
#> 650 0 1975 3664562
#> 651 0 1980 3986311
#> 652 0 1985 4282160
#> 653 0 1990 4340593
#> 654 0 1995 4351072
#> 655 0 2000 4151616
#> 656 0 2005 4112845
#> 657 0 2010 3929005
#> 658 0 2015 3738277
#> 659 0 1950 22842
#> 660 0 1955 29050
#> 661 0 1960 33737
#> 662 0 1965 36953
#> 663 0 1970 40636
#> 664 0 1975 45418
#> 665 0 1980 55421
#> 666 0 1985 66053
#> 667 0 1990 75108
#> 668 0 1995 81761
#> 669 0 2000 88752
#> 670 0 2005 96693
#> 671 0 2010 106769
#> 672 0 2015 117259
#> 673 0 1950 131504
#> 674 0 1955 150639
#> 675 0 1960 174148
#> 676 0 1965 205046
#> 677 0 1970 241223
#> 678 0 1975 285078
#> 679 0 1980 330061
#> 680 0 1985 366011
#> 681 0 1990 402566
#> 682 0 1995 451144
#> 683 0 2000 527310
#> 684 0 2005 615453
#> 685 0 2010 729517
#> 686 0 2015 813948
#> 687 0 1950 175306
#> 688 0 1955 191630
#> 689 0 1960 243591
#> 690 0 1965 285649
#> 691 0 1970 290189
#> 692 0 1975 277083
#> 693 0 1980 319505
#> 694 0 1985 368781
#> 695 0 1990 400130
#> 696 0 1995 405553
#> 697 0 2000 394023
#> 698 0 2005 360746
#> 699 0 2010 360615
#> 700 0 2015 350329
#> 701 0 1950 453037
#> 702 0 1955 550923
#> 703 0 1960 670161
#> 704 0 1965 828241
#> 705 0 1970 1021122
#> 706 0 1975 1289133
#> 707 0 1980 1622846
#> 708 0 1985 1907483
#> 709 0 1990 2193358
#> 710 0 1995 2520928
#> 711 0 2000 2879199
#> 712 0 2005 3112734
#> 713 0 2010 3367111
#> 714 0 2015 3764659
#> 715 0 1950 389098
#> 716 0 1955 400719
#> 717 0 1960 372670
#> 718 0 1965 346371
#> 719 0 1970 313880
#> 720 0 1975 325997
#> 721 0 1980 324122
#> 722 0 1985 322859
#> 723 0 1990 293130
#> 724 0 1995 243066
#> 725 0 2000 242500
#> 726 0 2005 206134
#> 727 0 2010 218741
#> 728 0 2015 204974
#> 729 0 1950 775996
#> 730 0 1955 891511
#> 731 0 1960 889964
#> 732 0 1965 1231412
#> 733 0 1970 1222792
#> 734 0 1975 1135491
#> 735 0 1980 802564
#> 736 0 1985 783837
#> 737 0 1990 896078
#> 738 0 1995 810492
#> 739 0 2000 753521
#> 740 0 2005 667846
#> 741 0 2010 607206
#> 742 0 2015 629366
#> 743 0 1950 15009
#> 744 0 1955 18711
#> 745 0 1960 20273
#> 746 0 1965 18494
#> 747 0 1970 18611
#> 748 0 1975 16166
#> 749 0 1980 13971
#> 750 0 1985 13721
#> 751 0 1990 14127
#> 752 0 1995 12528
#> 753 0 2000 9185
#> 754 0 2005 7951
#> 755 0 2010 8910
#> 756 0 2015 9958
#> 757 0 1950 66660
#> 758 0 1955 64946
#> 759 0 1960 75332
#> 760 0 1965 69263
#> 761 0 1970 58961
#> 762 0 1975 59413
#> 763 0 1980 59856
#> 764 0 1985 64417
#> 765 0 1990 70179
#> 766 0 1995 71770
#> 767 0 2000 68059
#> 768 0 2005 61433
#> 769 0 2010 64002
#> 770 0 2015 65918
#> 771 0 1950 892185
#> 772 0 1955 862197
#> 773 0 1960 726918
#> 774 0 1965 689805
#> 775 0 1970 684524
#> 776 0 1975 846494
#> 777 0 1980 895614
#> 778 0 1985 692758
#> 779 0 1990 647438
#> 780 0 1995 593650
#> 781 0 2000 447390
#> 782 0 2005 468121
#> 783 0 2010 568871
#> 784 0 2015 552361
#> 785 0 1950 1553976
#> 786 0 1955 1030863
#> 787 0 1960 1945590
#> 788 0 1965 1764990
#> 789 0 1970 2421181
#> 790 0 1975 2374434
#> 791 0 1980 1685980
#> 792 0 1985 1903873
#> 793 0 1990 1949570
#> 794 0 1995 2076112
#> 795 0 2000 1987652
#> 796 0 2005 1906335
#> 797 0 2010 1743399
#> 798 0 2015 1709649
#> 799 0 1950 2170172
#> 800 0 1955 2337220
#> 801 0 1960 2677841
#> 802 0 1965 3098385
#> 803 0 1970 3602491
#> 804 0 1975 4139477
#> 805 0 1980 4780429
#> 806 0 1985 5463320
#> 807 0 1990 6351130
#> 808 0 1995 7692580
#> 809 0 2000 8660927
#> 810 0 2005 10199832
#> 811 0 2010 12126622
#> 812 0 2015 14098810
#> 813 0 1950 422807
#> 814 0 1955 375061
#> 815 0 1960 367220
#> 816 0 1965 392608
#> 817 0 1970 387712
#> 818 0 1975 361547
#> 819 0 1980 313388
#> 820 0 1985 264208
#> 821 0 1990 291389
#> 822 0 1995 338737
#> 823 0 2000 338606
#> 824 0 2005 325845
#> 825 0 2010 325866
#> 826 0 2015 295077
#> 827 0 1950 12193
#> 828 0 1955 11039
#> 829 0 1960 14301
#> 830 0 1965 21615
#> 831 0 1970 30833
#> 832 0 1975 43809
#> 833 0 1980 67686
#> 834 0 1985 73168
#> 835 0 1990 107065
#> 836 0 1995 99835
#> 837 0 2000 102509
#> 838 0 2005 102907
#> 839 0 2010 99365
#> 840 0 2015 101125
#> 841 0 1950 439444
#> 842 0 1955 561134
#> 843 0 1960 671042
#> 844 0 1965 754258
#> 845 0 1970 806683
#> 846 0 1975 846890
#> 847 0 1980 884726
#> 848 0 1985 947444
#> 849 0 1990 987912
#> 850 0 1995 1026803
#> 851 0 2000 1019827
#> 852 0 2005 1053691
#> 853 0 2010 1065810
#> 854 0 2015 1062223
#> 855 0 1950 51714821
#> 856 0 1955 55601268
#> 857 0 1960 57157237
#> 858 0 1965 56336355
#> 859 0 1970 52929341
#> 860 0 1975 51458511
#> 861 0 1980 49749152
#> 862 0 1985 49519069
#> 863 0 1990 48083996
#> 864 0 1995 41564207
#> 865 0 2000 36907228
#> 866 0 2005 36774836
#> 867 0 2010 39345644
#> 868 0 2015 40069702
#> 869 0 1950 11939675
#> 870 0 1955 13550726
#> 871 0 1960 15472379
#> 872 0 1965 17901647
#> 873 0 1970 20646953
#> 874 0 1975 24063568
#> 875 0 1980 28092604
#> 876 0 1985 32330840
#> 877 0 1990 36953004
#> 878 0 1995 40596688
#> 879 0 2000 47011914
#> 880 0 2005 53046866
#> 881 0 2010 58965297
#> 882 0 2015 64685574
#> 883 0 1950 94000924
#> 884 0 1955 118893799
#> 885 0 1960 113049962
#> 886 0 1965 131987978
#> 887 0 1970 153042885
#> 888 0 1975 145380442
#> 889 0 1980 117576851
#> 890 0 1985 122035719
#> 891 0 1990 147440338
#> 892 0 1995 117234473
#> 893 0 2000 94917470
#> 894 0 2005 91041730
#> 895 0 2010 93679873
#> 896 0 2015 96913269
#> 897 0 1950 22375182
#> 898 0 1955 26618829
#> 899 0 1960 26763428
#> 900 0 1965 23434936
#> 901 0 1970 20911491
#> 902 0 1975 22452597
#> 903 0 1980 23568440
#> 904 0 1985 24197131
#> 905 0 1990 23168789
#> 906 0 1995 17580331
#> 907 0 2000 14022680
#> 908 0 2005 13967753
#> 909 0 2010 15827899
#> 910 0 2015 17057765
#> 911 0 1950 543001
#> 912 0 1955 707335
#> 913 0 1960 807334
#> 914 0 1965 917950
#> 915 0 1970 1044505
#> 916 0 1975 1147713
#> 917 0 1980 1224323
#> 918 0 1985 1311983
#> 919 0 1990 1417152
#> 920 0 1995 1480017
#> 921 0 2000 1519213
#> 922 0 2005 1517589
#> 923 0 2010 1574401
#> 924 0 2015 1610333
#> 925 0 1950 3669950
#> 926 0 1955 3953502
#> 927 0 1960 4631318
#> 928 0 1965 5136803
#> 929 0 1970 5703461
#> 930 0 1975 6082397
#> 931 0 1980 6924593
#> 932 0 1985 8033852
#> 933 0 1990 9041133
#> 934 0 1995 8510313
#> 935 0 2000 8272629
#> 936 0 2005 9000942
#> 937 0 2010 9868701
#> 938 0 2015 12374444
#> 939 0 1950 364752
#> 940 0 1955 438994
#> 941 0 1960 511428
#> 942 0 1965 587530
#> 943 0 1970 648813
#> 944 0 1975 710140
#> 945 0 1980 757148
#> 946 0 1985 749790
#> 947 0 1990 744434
#> 948 0 1995 774722
#> 949 0 2000 749442
#> 950 0 2005 650074
#> 951 0 2010 604173
#> 952 0 2015 580056
#> 953 0 1950 30178
#> 954 0 1955 37329
#> 955 0 1960 39647
#> 956 0 1965 42881
#> 957 0 1970 48384
#> 958 0 1975 37140
#> 959 0 1980 40672
#> 960 0 1985 66019
#> 961 0 1990 74334
#> 962 0 1995 84309
#> 963 0 2000 102045
#> 964 0 2005 123944
#> 965 0 2010 150146
#> 966 0 2015 176333
#> 967 0 1950 213199
#> 968 0 1955 212530
#> 969 0 1960 248864
#> 970 0 1965 287976
#> 971 0 1970 326966
#> 972 0 1975 369380
#> 973 0 1980 423936
#> 974 0 1985 495404
#> 975 0 1990 550888
#> 976 0 1995 516889
#> 977 0 2000 517875
#> 978 0 2005 621635
#> 979 0 2010 715421
#> 980 0 2015 744472
#> 981 0 1950 92293
#> 982 0 1955 90509
#> 983 0 1960 95245
#> 984 0 1965 97678
#> 985 0 1970 97316
#> 986 0 1975 107231
#> 987 0 1980 108563
#> 988 0 1985 115825
#> 989 0 1990 119342
#> 990 0 1995 79638
#> 991 0 2000 61285
#> 992 0 2005 66212
#> 993 0 2010 77670
#> 994 0 2015 71081
#> 995 0 1950 3327721
#> 996 0 1955 3507758
#> 997 0 1960 3875947
#> 998 0 1965 4507785
#> 999 0 1970 5159479
#> 1000 0 1975 6046424
#> 1001 0 1980 6689713
#> 1002 0 1985 7701396
#> 1003 0 1990 9101552
#> 1004 0 1995 10591715
#> 1005 0 2000 12409892
#> 1006 0 2005 13485015
#> 1007 0 2010 13934222
#> 1008 0 2015 14901069
#> 1009 0 1950 55000
#> 1010 0 1955 64998
#> 1011 0 1960 77388
#> 1012 0 1965 82081
#> 1013 0 1970 78771
#> 1014 0 1975 81367
#> 1015 0 1980 92385
#> 1016 0 1985 104837
#> 1017 0 1990 99949
#> 1018 0 1995 99370
#> 1019 0 2000 98251
#> 1020 0 2005 89217
#> 1021 0 2010 89606
#> 1022 0 2015 88079
#> 1023 0 1950 500547
#> 1024 0 1955 446541
#> 1025 0 1960 413091
#> 1026 0 1965 393511
#> 1027 0 1970 348094
#> 1028 0 1975 302535
#> 1029 0 1980 320699
#> 1030 0 1985 325507
#> 1031 0 1990 311365
#> 1032 0 1995 326724
#> 1033 0 2000 294745
#> 1034 0 2005 284683
#> 1035 0 2010 301713
#> 1036 0 2015 300171
#> 1037 0 1950 3994896
#> 1038 0 1955 3911211
#> 1039 0 1960 3963945
#> 1040 0 1965 4248973
#> 1041 0 1970 4165716
#> 1042 0 1975 4117269
#> 1043 0 1980 3659877
#> 1044 0 1985 3802768
#> 1045 0 1990 3785669
#> 1046 0 1995 3628345
#> 1047 0 2000 3698472
#> 1048 0 2005 3845484
#> 1049 0 2010 3939772
#> 1050 0 2015 3873546
#> 1051 0 1950 3602
#> 1052 0 1955 4343
#> 1053 0 1960 4556
#> 1054 0 1965 5691
#> 1055 0 1970 6887
#> 1056 0 1975 7730
#> 1057 0 1980 7585
#> 1058 0 1985 9351
#> 1059 0 1990 15343
#> 1060 0 1995 19581
#> 1061 0 2000 21777
#> 1062 0 2005 27046
#> 1063 0 2010 30791
#> 1064 0 2015 32275
#> 1065 0 1950 8980
#> 1066 0 1955 12581
#> 1067 0 1960 13427
#> 1068 0 1965 16345
#> 1069 0 1970 19371
#> 1070 0 1975 19470
#> 1071 0 1980 20751
#> 1072 0 1985 22420
#> 1073 0 1990 27388
#> 1074 0 1995 24076
#> 1075 0 2000 23119
#> 1076 0 2005 22416
#> 1077 0 2010 21253
#> 1078 0 2015 21975
#> 1079 0 1950 53466
#> 1080 0 1955 56181
#> 1081 0 1960 61219
#> 1082 0 1965 70967
#> 1083 0 1970 85488
#> 1084 0 1975 98943
#> 1085 0 1980 115178
#> 1086 0 1985 135133
#> 1087 0 1990 155376
#> 1088 0 1995 171648
#> 1089 0 2000 185356
#> 1090 0 2005 200218
#> 1091 0 2010 229946
#> 1092 0 2015 266921
#> 1093 0 1950 45488
#> 1094 0 1955 46121
#> 1095 0 1960 65881
#> 1096 0 1965 68968
#> 1097 0 1970 85606
#> 1098 0 1975 98919
#> 1099 0 1980 118120
#> 1100 0 1985 144336
#> 1101 0 1990 175069
#> 1102 0 1995 201671
#> 1103 0 2000 232560
#> 1104 0 2005 271552
#> 1105 0 2010 310435
#> 1106 0 2015 351973
#> 1107 0 1950 286651
#> 1108 0 1955 382353
#> 1109 0 1960 456307
#> 1110 0 1965 490271
#> 1111 0 1970 457413
#> 1112 0 1975 427788
#> 1113 0 1980 425482
#> 1114 0 1985 456918
#> 1115 0 1990 464791
#> 1116 0 1995 385235
#> 1117 0 2000 286904
#> 1118 0 2005 249645
#> 1119 0 2010 277702
#> 1120 0 2015 275314
#> 1121 0 1950 4598771
#> 1122 0 1955 5276230
#> 1123 0 1960 5797189
#> 1124 0 1965 6381392
#> 1125 0 1970 6069112
#> 1126 0 1975 4438594
#> 1127 0 1980 3965543
#> 1128 0 1985 4115510
#> 1129 0 1990 4358381
#> 1130 0 1995 4082386
#> 1131 0 2000 3920387
#> 1132 0 2005 3599277
#> 1133 0 2010 3390619
#> 1134 0 2015 3517800
#> 1135 0 1950 925282
#> 1136 0 1955 969503
#> 1137 0 1960 1188024
#> 1138 0 1965 1429036
#> 1139 0 1970 1611754
#> 1140 0 1975 1809590
#> 1141 0 1980 1932759
#> 1142 0 1985 2211113
#> 1143 0 1990 2455843
#> 1144 0 1995 2693876
#> 1145 0 2000 2974015
#> 1146 0 2005 3242705
#> 1147 0 2010 3622296
#> 1148 0 2015 4022858
#> 1149 0 1950 786000
#> 1150 0 1955 740377
#> 1151 0 1960 789677
#> 1152 0 1965 752913
#> 1153 0 1970 767189
#> 1154 0 1975 739096
#> 1155 0 1980 754498
#> 1156 0 1985 702495
#> 1157 0 1990 570937
#> 1158 0 1995 549413
#> 1159 0 2000 551774
#> 1160 0 2005 557727
#> 1161 0 2010 584861
#> 1162 0 2015 503532
#> 1163 0 1950 15213
#> 1164 0 1955 14566
#> 1165 0 1960 18269
#> 1166 0 1965 17639
#> 1167 0 1970 12820
#> 1168 0 1975 12701
#> 1169 0 1980 11718
#> 1170 0 1985 14532
#> 1171 0 1990 14803
#> 1172 0 1995 11818
#> 1173 0 2000 10454
#> 1174 0 2005 9267
#> 1175 0 2010 9696
#> 1176 0 2015 9935
#> 1177 0 1950 35983
#> 1178 0 1955 39101
#> 1179 0 1960 45365
#> 1180 0 1965 49301
#> 1181 0 1970 49480
#> 1182 0 1975 44036
#> 1183 0 1980 34679
#> 1184 0 1985 31496
#> 1185 0 1990 32842
#> 1186 0 1995 33263
#> 1187 0 2000 33807
#> 1188 0 2005 32805
#> 1189 0 2010 28721
#> 1190 0 2015 26572
#> 1191 0 1950 7601
#> 1192 0 1955 8780
#> 1193 0 1960 10592
#> 1194 0 1965 10942
#> 1195 0 1970 11194
#> 1196 0 1975 11937
#> 1197 0 1980 12653
#> 1198 0 1985 13685
#> 1199 0 1990 14916
#> 1200 0 1995 17511
#> 1201 0 2000 16863
#> 1202 0 2005 15837
#> 1203 0 2010 14218
#> 1204 0 2015 13520
#> 1205 0 1950 544162
#> 1206 0 1955 710656
#> 1207 0 1960 801587
#> 1208 0 1965 892773
#> 1209 0 1970 1020396
#> 1210 0 1975 1176863
#> 1211 0 1980 1346052
#> 1212 0 1985 1490340
#> 1213 0 1990 1579828
#> 1214 0 1995 1766974
#> 1215 0 2000 1895159
#> 1216 0 2005 1991122
#> 1217 0 2010 1948269
#> 1218 0 2015 1994028
#> 1219 0 1950 449426
#> 1220 0 1955 553335
#> 1221 0 1960 593969
#> 1222 0 1965 635100
#> 1223 0 1970 684658
#> 1224 0 1975 725409
#> 1225 0 1980 779527
#> 1226 0 1985 902119
#> 1227 0 1990 1080296
#> 1228 0 1995 1398690
#> 1229 0 2000 1540408
#> 1230 0 2005 1659749
#> 1231 0 2010 1807732
#> 1232 0 2015 1949418
#> 1233 0 1950 81901
#> 1234 0 1955 96551
#> 1235 0 1960 98274
#> 1236 0 1965 102313
#> 1237 0 1970 113418
#> 1238 0 1975 129036
#> 1239 0 1980 147019
#> 1240 0 1985 172256
#> 1241 0 1990 186648
#> 1242 0 1995 201651
#> 1243 0 2000 213452
#> 1244 0 2005 227553
#> 1245 0 2010 255954
#> 1246 0 2015 285494
#> 1247 0 1950 68540
#> 1248 0 1955 91722
#> 1249 0 1960 109321
#> 1250 0 1965 115208
#> 1251 0 1970 117708
#> 1252 0 1975 118424
#> 1253 0 1980 107308
#> 1254 0 1985 104171
#> 1255 0 1990 89880
#> 1256 0 1995 99616
#> 1257 0 2000 95935
#> 1258 0 2005 83234
#> 1259 0 2010 74734
#> 1260 0 2015 75166
#> 1261 0 1950 477402
#> 1262 0 1955 565445
#> 1263 0 1960 631220
#> 1264 0 1965 704442
#> 1265 0 1970 749704
#> 1266 0 1975 784084
#> 1267 0 1980 914110
#> 1268 0 1985 1105804
#> 1269 0 1990 1158575
#> 1270 0 1995 1185890
#> 1271 0 2000 1218649
#> 1272 0 2005 1226037
#> 1273 0 2010 1247659
#> 1274 0 2015 1237545
#> 1275 0 1950 71075913
#> 1276 0 1955 73508027
#> 1277 0 1960 76988429
#> 1278 0 1965 78221437
#> 1279 0 1970 75495784
#> 1280 0 1975 73427829
#> 1281 0 1980 69687718
#> 1282 0 1985 69606694
#> 1283 0 1990 68989523
#> 1284 0 1995 68391854
#> 1285 0 2000 65249623
#> 1286 0 2005 64404965
#> 1287 0 2010 66360737
#> 1288 0 2015 65104571
#> 1289 0 1950 274279
#> 1290 0 1955 344080
#> 1291 0 1960 395246
#> 1292 0 1965 450128
#> 1293 0 1970 524504
#> 1294 0 1975 596504
#> 1295 0 1980 691286
#> 1296 0 1985 778493
#> 1297 0 1990 857546
#> 1298 0 1995 947555
#> 1299 0 2000 1003493
#> 1300 0 2005 1029539
#> 1301 0 2010 999748
#> 1302 0 2015 954682
#> 1303 0 1950 824762
#> 1304 0 1955 942808
#> 1305 0 1960 816919
#> 1306 0 1965 634382
#> 1307 0 1970 712273
#> 1308 0 1975 778013
#> 1309 0 1980 876867
#> 1310 0 1985 641737
#> 1311 0 1990 614464
#> 1312 0 1995 597583
#> 1313 0 2000 494053
#> 1314 0 2005 476123
#> 1315 0 2010 482509
#> 1316 0 2015 446927
#> 1317 0 1950 18045
#> 1318 0 1955 20290
#> 1319 0 1960 23033
#> 1320 0 1965 23266
#> 1321 0 1970 21241
#> 1322 0 1975 21469
#> 1323 0 1980 20885
#> 1324 0 1985 21306
#> 1325 0 1990 21493
#> 1326 0 1995 22728
#> 1327 0 2000 21187
#> 1328 0 2005 20809
#> 1329 0 2010 23542
#> 1330 0 2015 22591
#> 1331 0 1950 54170080
#> 1332 0 1955 66574563
#> 1333 0 1960 72844206
#> 1334 0 1965 79720416
#> 1335 0 1970 86345915
#> 1336 0 1975 94685029
#> 1337 0 1980 103422039
#> 1338 0 1985 114950777
#> 1339 0 1990 121428323
#> 1340 0 1995 124391292
#> 1341 0 2000 127607000
#> 1342 0 2005 129579441
#> 1343 0 2010 128484519
#> 1344 0 2015 121415293
#> 1345 0 1950 9960842
#> 1346 0 1955 11957690
#> 1347 0 1960 14899525
#> 1348 0 1965 17153648
#> 1349 0 1970 19240584
#> 1350 0 1975 20772585
#> 1351 0 1980 21963799
#> 1352 0 1985 22826144
#> 1353 0 1990 22252806
#> 1354 0 1995 21890867
#> 1355 0 2000 21307214
#> 1356 0 2005 22680510
#> 1357 0 2010 23793080
#> 1358 0 2015 24592480
#> 1359 0 1950 2534400
#> 1360 0 1955 3477184
#> 1361 0 1960 3929403
#> 1362 0 1965 4370720
#> 1363 0 1970 4827267
#> 1364 0 1975 5461198
#> 1365 0 1980 6850291
#> 1366 0 1985 8984916
#> 1367 0 1990 9353535
#> 1368 0 1995 7630740
#> 1369 0 2000 6409381
#> 1370 0 2005 5517633
#> 1371 0 2010 6423533
#> 1372 0 2015 6899493
#> 1373 0 1950 816850
#> 1374 0 1955 1199986
#> 1375 0 1960 1183418
#> 1376 0 1965 1453512
#> 1377 0 1970 1908891
#> 1378 0 1975 2159887
#> 1379 0 1980 2435094
#> 1380 0 1985 2701005
#> 1381 0 1990 2998655
#> 1382 0 1995 3351659
#> 1383 0 2000 3840777
#> 1384 0 2005 4240881
#> 1385 0 2010 4853526
#> 1386 0 2015 5602882
#> 1387 0 1950 309891
#> 1388 0 1955 300564
#> 1389 0 1960 289185
#> 1390 0 1965 304483
#> 1391 0 1970 306110
#> 1392 0 1975 354506
#> 1393 0 1980 361251
#> 1394 0 1985 341957
#> 1395 0 1990 279684
#> 1396 0 1995 250134
#> 1397 0 2000 269167
#> 1398 0 2005 306556
#> 1399 0 2010 362071
#> 1400 0 2015 352876
#> 1401 0 1950 175870
#> 1402 0 1955 250552
#> 1403 0 1960 263021
#> 1404 0 1965 299278
#> 1405 0 1970 334854
#> 1406 0 1975 421774
#> 1407 0 1980 458376
#> 1408 0 1985 457795
#> 1409 0 1990 482997
#> 1410 0 1995 528463
#> 1411 0 2000 614189
#> 1412 0 2005 666444
#> 1413 0 2010 739471
#> 1414 0 2015 830070
#> 1415 0 1950 4391298
#> 1416 0 1955 4051207
#> 1417 0 1960 4128175
#> 1418 0 1965 4580502
#> 1419 0 1970 4529402
#> 1420 0 1975 4286606
#> 1421 0 1980 3570350
#> 1422 0 1985 3040290
#> 1423 0 1990 2822304
#> 1424 0 1995 2730002
#> 1425 0 2000 2637136
#> 1426 0 2005 2758749
#> 1427 0 2010 2800709
#> 1428 0 2015 2553686
#> 1429 0 1950 188700
#> 1430 0 1955 224640
#> 1431 0 1960 280035
#> 1432 0 1965 312080
#> 1433 0 1970 316290
#> 1434 0 1975 296368
#> 1435 0 1980 285504
#> 1436 0 1985 302482
#> 1437 0 1990 293205
#> 1438 0 1995 291550
#> 1439 0 2000 289018
#> 1440 0 2005 257493
#> 1441 0 2010 230567
#> 1442 0 2015 206591
#> 1443 0 1950 11205457
#> 1444 0 1955 9544651
#> 1445 0 1960 7983673
#> 1446 0 1965 8173881
#> 1447 0 1970 9017576
#> 1448 0 1975 10174080
#> 1449 0 1980 8618217
#> 1450 0 1985 7638382
#> 1451 0 1990 6780765
#> 1452 0 1995 6138336
#> 1453 0 2000 5955443
#> 1454 0 2005 5669871
#> 1455 0 2010 5554593
#> 1456 0 2015 5395537
#> 1457 0 1950 89596
#> 1458 0 1955 117983
#> 1459 0 1960 170545
#> 1460 0 1965 240264
#> 1461 0 1970 338357
#> 1462 0 1975 412936
#> 1463 0 1980 439491
#> 1464 0 1985 509612
#> 1465 0 1990 598143
#> 1466 0 1995 677956
#> 1467 0 2000 746942
#> 1468 0 2005 780761
#> 1469 0 2010 975679
#> 1470 0 2015 1201912
#> 1471 0 1950 740844
#> 1472 0 1955 1096028
#> 1473 0 1960 1520642
#> 1474 0 1965 1755563
#> 1475 0 1970 1559430
#> 1476 0 1975 1633348
#> 1477 0 1980 1701300
#> 1478 0 1985 1818477
#> 1479 0 1990 1878179
#> 1480 0 1995 1470318
#> 1481 0 2000 1114762
#> 1482 0 2005 1240270
#> 1483 0 2010 1606237
#> 1484 0 2015 1991065
#> 1485 0 1950 1056232
#> 1486 0 1955 1360804
#> 1487 0 1960 1611526
#> 1488 0 1965 1913567
#> 1489 0 1970 2282459
#> 1490 0 1975 2785336
#> 1491 0 1980 3347245
#> 1492 0 1985 3968814
#> 1493 0 1990 4447719
#> 1494 0 1995 4664670
#> 1495 0 2000 5422694
#> 1496 0 2005 6079731
#> 1497 0 2010 6729111
#> 1498 0 2015 6997244
#> 1499 0 1950 5509
#> 1500 0 1955 6507
#> 1501 0 1960 7689
#> 1502 0 1965 8402
#> 1503 0 1970 8027
#> 1504 0 1975 7508
#> 1505 0 1980 8883
#> 1506 0 1985 10008
#> 1507 0 1990 11596
#> 1508 0 1995 11802
#> 1509 0 2000 11971
#> 1510 0 2005 10814
#> 1511 0 2010 13952
#> 1512 0 2015 14751
#> 1513 0 1950 23102
#> 1514 0 1955 29749
#> 1515 0 1960 42347
#> 1516 0 1965 85813
#> 1517 0 1970 142734
#> 1518 0 1975 201787
#> 1519 0 1980 212860
#> 1520 0 1985 268332
#> 1521 0 1990 249779
#> 1522 0 1995 174642
#> 1523 0 2000 226904
#> 1524 0 2005 213652
#> 1525 0 2010 273839
#> 1526 0 2015 310783
#> 1527 0 1950 167117
#> 1528 0 1955 265936
#> 1529 0 1960 357744
#> 1530 0 1965 425801
#> 1531 0 1970 426852
#> 1532 0 1975 456685
#> 1533 0 1980 478963
#> 1534 0 1985 561386
#> 1535 0 1990 627905
#> 1536 0 1995 592085
#> 1537 0 2000 537803
#> 1538 0 2005 482900
#> 1539 0 2010 605269
#> 1540 0 2015 747691
#> 1541 0 1950 27074350
#> 1542 0 1955 32807951
#> 1543 0 1960 37317537
#> 1544 0 1965 42512004
#> 1545 0 1970 45898695
#> 1546 0 1975 49188245
#> 1547 0 1980 52609411
#> 1548 0 1985 55380522
#> 1549 0 1990 56589330
#> 1550 0 1995 57100299
#> 1551 0 2000 57142592
#> 1552 0 2005 55576642
#> 1553 0 2010 53782843
#> 1554 0 2015 53446013
#> 1555 0 1950 274742
#> 1556 0 1955 320394
#> 1557 0 1960 352299
#> 1558 0 1965 393288
#> 1559 0 1970 448041
#> 1560 0 1975 516965
#> 1561 0 1980 564860
#> 1562 0 1985 636896
#> 1563 0 1990 749619
#> 1564 0 1995 838614
#> 1565 0 2000 796670
#> 1566 0 2005 752591
#> 1567 0 2010 778501
#> 1568 0 2015 771632
#> 1569 0 1950 149871
#> 1570 0 1955 154505
#> 1571 0 1960 167687
#> 1572 0 1965 172680
#> 1573 0 1970 160956
#> 1574 0 1975 178682
#> 1575 0 1980 172012
#> 1576 0 1985 193074
#> 1577 0 1990 205150
#> 1578 0 1995 142927
#> 1579 0 2000 96607
#> 1580 0 2005 100714
#> 1581 0 2010 112517
#> 1582 0 2015 100811
#> 1583 0 1950 32570821
#> 1584 0 1955 37096344
#> 1585 0 1960 42371818
#> 1586 0 1965 48515132
#> 1587 0 1970 55585250
#> 1588 0 1975 62158833
#> 1589 0 1980 70865474
#> 1590 0 1985 80363930
#> 1591 0 1990 89243695
#> 1592 0 1995 98495848
#> 1593 0 2000 109231147
#> 1594 0 2005 120632799
#> 1595 0 2010 130839459
#> 1596 0 2015 140770359
#> 1597 0 1950 180936
#> 1598 0 1955 263918
#> 1599 0 1960 307581
#> 1600 0 1965 342459
#> 1601 0 1970 343380
#> 1602 0 1975 363768
#> 1603 0 1980 365906
#> 1604 0 1985 350946
#> 1605 0 1990 310869
#> 1606 0 1995 328558
#> 1607 0 2000 305167
#> 1608 0 2005 323521
#> 1609 0 2010 272752
#> 1610 0 2015 461167
#> 1611 0 1950 119394
#> 1612 0 1955 127504
#> 1613 0 1960 141669
#> 1614 0 1965 158252
#> 1615 0 1970 176451
#> 1616 0 1975 199293
#> 1617 0 1980 225260
#> 1618 0 1985 246714
#> 1619 0 1990 255092
#> 1620 0 1995 264054
#> 1621 0 2000 272429
#> 1622 0 2005 257043
#> 1623 0 2010 258031
#> 1624 0 2015 280082
#> 1625 0 1950 255463851
#> 1626 0 1955 317982799
#> 1627 0 1960 343138017
#> 1628 0 1965 392589053
#> 1629 0 1970 440695748
#> 1630 0 1975 461775326
#> 1631 0 1980 470009732
#> 1632 0 1985 514521196
#> 1633 0 1990 567246416
#> 1634 0 1995 551753002
#> 1635 0 2000 543527986
#> 1636 0 2005 557820949
#> 1637 0 2010 582239335
#> 1638 0 2015 604529158
#> 1639 0 1950 177361004
#> 1640 0 1955 213193044
#> 1641 0 1960 244800204
#> 1642 0 1965 275429172
#> 1643 0 1970 303832455
#> 1644 0 1975 333718009
#> 1645 0 1980 367005886
#> 1646 0 1985 406178310
#> 1647 0 1990 431987329
#> 1648 0 1995 446505804
#> 1649 0 2000 459960254
#> 1650 0 2005 477091709
#> 1651 0 2010 498426544
#> 1652 0 2015 517312546
#> 1653 0 1950 222893030
#> 1654 0 1955 280886455
#> 1655 0 1960 300766199
#> 1656 0 1965 344073921
#> 1657 0 1970 385110498
#> 1658 0 1975 399616493
#> 1659 0 1980 399144258
#> 1660 0 1985 434157266
#> 1661 0 1990 478002721
#> 1662 0 1995 453257154
#> 1663 0 2000 434296839
#> 1664 0 2005 437188150
#> 1665 0 2010 451399876
#> 1666 0 2015 463758799
#> 1667 0 1950 144617
#> 1668 0 1955 167482
#> 1669 0 1960 192244
#> 1670 0 1965 218900
#> 1671 0 1970 251500
#> 1672 0 1975 295338
#> 1673 0 1980 346873
#> 1674 0 1985 403278
#> 1675 0 1990 370303
#> 1676 0 1995 348807
#> 1677 0 2000 495148
#> 1678 0 2005 563036
#> 1679 0 2010 653630
#> 1680 0 2015 704628
#> 1681 0 1950 174164
#> 1682 0 1955 215078
#> 1683 0 1960 253960
#> 1684 0 1965 324141
#> 1685 0 1970 433148
#> 1686 0 1975 531398
#> 1687 0 1980 594366
#> 1688 0 1985 621451
#> 1689 0 1990 644143
#> 1690 0 1995 601727
#> 1691 0 2000 569291
#> 1692 0 2005 574273
#> 1693 0 2010 617337
#> 1694 0 2015 629902
#> 1695 0 1950 222341
#> 1696 0 1955 262097
#> 1697 0 1960 276430
#> 1698 0 1965 286429
#> 1699 0 1970 267923
#> 1700 0 1975 265857
#> 1701 0 1980 257361
#> 1702 0 1985 275909
#> 1703 0 1990 289191
#> 1704 0 1995 241355
#> 1705 0 2000 182628
#> 1706 0 2005 147437
#> 1707 0 2010 147539
#> 1708 0 2015 151446
#> 1709 0 1950 21565095
#> 1710 0 1955 23535168
#> 1711 0 1960 27215501
#> 1712 0 1965 30457341
#> 1713 0 1970 35189953
#> 1714 0 1975 39986628
#> 1715 0 1980 44946997
#> 1716 0 1985 51027527
#> 1717 0 1990 57730093
#> 1718 0 1995 65393765
#> 1719 0 2000 74669045
#> 1720 0 2005 84353515
#> 1721 0 2010 94068929
#> 1722 0 2015 103397435
#> 1723 0 1950 113497620
#> 1724 0 1955 137965169
#> 1725 0 1960 157004902
#> 1726 0 1965 175684660
#> 1727 0 1970 193159059
#> 1728 0 1975 212490863
#> 1729 0 1980 234738951
#> 1730 0 1985 261411242
#> 1731 0 1990 278615895
#> 1732 0 1995 286435782
#> 1733 0 2000 292487787
#> 1734 0 2005 302977334
#> 1735 0 2010 313756414
#> 1736 0 2015 319751958
#> 1737 0 1950 19000
#> 1738 0 1955 21000
#> 1739 0 1960 24347
#> 1740 0 1965 25630
#> 1741 0 1970 23934
#> 1742 0 1975 20827
#> 1743 0 1980 20578
#> 1744 0 1985 21146
#> 1745 0 1990 23313
#> 1746 0 1995 27328
#> 1747 0 2000 28415
#> 1748 0 2005 27527
#> 1749 0 2010 28854
#> 1750 0 2015 31412
#> 1751 0 1950 630876
#> 1752 0 1955 820919
#> 1753 0 1960 936738
#> 1754 0 1965 1064583
#> 1755 0 1970 1223006
#> 1756 0 1975 1419743
#> 1757 0 1980 1635437
#> 1758 0 1985 1840786
#> 1759 0 1990 2092168
#> 1760 0 1995 2438716
#> 1761 0 2000 2842102
#> 1762 0 2005 3130541
#> 1763 0 2010 3410085
#> 1764 0 2015 3699601
#> 1765 0 1950 569451
#> 1766 0 1955 565599
#> 1767 0 1960 648181
#> 1768 0 1965 755196
#> 1769 0 1970 881038
#> 1770 0 1975 1027807
#> 1771 0 1980 1208819
#> 1772 0 1985 1408052
#> 1773 0 1990 1759940
#> 1774 0 1995 1834638
#> 1775 0 2000 2080158
#> 1776 0 2005 2347792
#> 1777 0 2010 2721434
#> 1778 0 2015 2887867
#> 1779 0 1950 1019700
#> 1780 0 1955 1292068
#> 1781 0 1960 1478230
#> 1782 0 1965 1713263
#> 1783 0 1970 1701264
#> 1784 0 1975 1804517
#> 1785 0 1980 1980118
#> 1786 0 1985 2228195
#> 1787 0 1990 2438541
#> 1788 0 1995 2596542
#> 1789 0 2000 2684240
#> 1790 0 2005 2536610
#> 1791 0 2010 2429270
#> 1792 0 2015 2569344
#> 1793 0 1950 10157
#> 1794 0 1955 11489
#> 1795 0 1960 15839
#> 1796 0 1965 19347
#> 1797 0 1970 22067
#> 1798 0 1975 24675
#> 1799 0 1980 28239
#> 1800 0 1985 37421
#> 1801 0 1990 42526
#> 1802 0 1995 39920
#> 1803 0 2000 33003
#> 1804 0 2005 29912
#> 1805 0 2010 32949
#> 1806 0 2015 38420
#> 1807 0 1950 740898
#> 1808 0 1955 844738
#> 1809 0 1960 891360
#> 1810 0 1965 948904
#> 1811 0 1970 1034763
#> 1812 0 1975 1156732
#> 1813 0 1980 1287084
#> 1814 0 1985 1437506
#> 1815 0 1990 1579899
#> 1816 0 1995 1805406
#> 1817 0 2000 2070303
#> 1818 0 2005 2466624
#> 1819 0 2010 2931544
#> 1820 0 2015 3274146
#> 1821 0 1950 47000
#> 1822 0 1955 41382
#> 1823 0 1960 39689
#> 1824 0 1965 33762
#> 1825 0 1970 24695
#> 1826 0 1975 26097
#> 1827 0 1980 28917
#> 1828 0 1985 28637
#> 1829 0 1990 27448
#> 1830 0 1995 26051
#> 1831 0 2000 24673
#> 1832 0 2005 20378
#> 1833 0 2010 19865
#> 1834 0 2015 21313
#> 1835 0 1950 34000
#> 1836 0 1955 42158
#> 1837 0 1960 45438
#> 1838 0 1965 50811
#> 1839 0 1970 48751
#> 1840 0 1975 40097
#> 1841 0 1980 26363
#> 1842 0 1985 28440
#> 1843 0 1990 30178
#> 1844 0 1995 28017
#> 1845 0 2000 27410
#> 1846 0 2005 24926
#> 1847 0 2010 23836
#> 1848 0 2015 19895
#> 1849 0 1950 116343
#> 1850 0 1955 135202
#> 1851 0 1960 161765
#> 1852 0 1965 186046
#> 1853 0 1970 211737
#> 1854 0 1975 241395
#> 1855 0 1980 273371
#> 1856 0 1985 311133
#> 1857 0 1990 353025
#> 1858 0 1995 395770
#> 1859 0 2000 447057
#> 1860 0 2005 502390
#> 1861 0 2010 565967
#> 1862 0 2015 640166
#> 1863 0 1950 89055
#> 1864 0 1955 106872
#> 1865 0 1960 122634
#> 1866 0 1965 135120
#> 1867 0 1970 115325
#> 1868 0 1975 102186
#> 1869 0 1980 108899
#> 1870 0 1985 104340
#> 1871 0 1990 98182
#> 1872 0 1995 111010
#> 1873 0 2000 98585
#> 1874 0 2005 95010
#> 1875 0 2010 80784
#> 1876 0 2015 68946
#> 1877 0 1950 1994
#> 1878 0 1955 3092
#> 1879 0 1960 4161
#> 1880 0 1965 5647
#> 1881 0 1970 7324
#> 1882 0 1975 9367
#> 1883 0 1980 11232
#> 1884 0 1985 14485
#> 1885 0 1990 18155
#> 1886 0 1995 20082
#> 1887 0 2000 25022
#> 1888 0 2005 29711
#> 1889 0 2010 34972
#> 1890 0 2015 35419
#> 1891 0 1950 343648
#> 1892 0 1955 407793
#> 1893 0 1960 459651
#> 1894 0 1965 510669
#> 1895 0 1970 565335
#> 1896 0 1975 647741
#> 1897 0 1980 736167
#> 1898 0 1985 815608
#> 1899 0 1990 859843
#> 1900 0 1995 941642
#> 1901 0 2000 1058012
#> 1902 0 2005 1132820
#> 1903 0 2010 1206344
#> 1904 0 2015 1251255
#> 1905 0 1950 4820002
#> 1906 0 1955 6204653
#> 1907 0 1960 7191533
#> 1908 0 1965 8216083
#> 1909 0 1970 9499878
#> 1910 0 1975 11305044
#> 1911 0 1980 11300054
#> 1912 0 1985 11194724
#> 1913 0 1990 11520605
#> 1914 0 1995 11838198
#> 1915 0 2000 12024875
#> 1916 0 2005 11742221
#> 1917 0 2010 11443079
#> 1918 0 2015 11533066
#> 1919 0 1950 23503
#> 1920 0 1955 28628
#> 1921 0 1960 33372
#> 1922 0 1965 36666
#> 1923 0 1970 38929
#> 1924 0 1975 41276
#> 1925 0 1980 45534
#> 1926 0 1985 52204
#> 1927 0 1990 58360
#> 1928 0 1995 63423
#> 1929 0 2000 61680
#> 1930 0 2005 56918
#> 1931 0 2010 53529
#> 1932 0 2015 51376
#> 1933 0 1950 4952
#> 1934 0 1955 7431
#> 1935 0 1960 8299
#> 1936 0 1965 9425
#> 1937 0 1970 11003
#> 1938 0 1975 11495
#> 1939 0 1980 12717
#> 1940 0 1985 14766
#> 1941 0 1990 15334
#> 1942 0 1995 16231
#> 1943 0 2000 14999
#> 1944 0 2005 13329
#> 1945 0 2010 11998
#> 1946 0 2015 11564
#> 1947 0 1950 4371895
#> 1948 0 1955 5037328
#> 1949 0 1960 5641817
#> 1950 0 1965 6431074
#> 1951 0 1970 7362745
#> 1952 0 1975 8515542
#> 1953 0 1980 9919492
#> 1954 0 1985 11502139
#> 1955 0 1990 13305046
#> 1956 0 1995 15582958
#> 1957 0 2000 17565015
#> 1958 0 2005 20609123
#> 1959 0 2010 24179250
#> 1960 0 2015 27615845
#> 1961 0 1950 245614810
#> 1962 0 1955 308409028
#> 1963 0 1960 328261284
#> 1964 0 1965 371720762
#> 1965 0 1970 412801616
#> 1966 0 1975 429700683
#> 1967 0 1980 433373633
#> 1968 0 1985 471972814
#> 1969 0 1990 517942316
#> 1970 0 1995 489061166
#> 1971 0 2000 469205349
#> 1972 0 2005 474819250
#> 1973 0 2010 490928536
#> 1974 0 2015 504903882
#> 1975 0 1950 95315
#> 1976 0 1955 126221
#> 1977 0 1960 154059
#> 1978 0 1965 206492
#> 1979 0 1970 228934
#> 1980 0 1975 259103
#> 1981 0 1980 274535
#> 1982 0 1985 302144
#> 1983 0 1990 332053
#> 1984 0 1995 282071
#> 1985 0 2000 233941
#> 1986 0 2005 221603
#> 1987 0 2010 280319
#> 1988 0 2015 359079
#> 1989 0 1950 48376
#> 1990 0 1955 59092
#> 1991 0 1960 63881
#> 1992 0 1965 66010
#> 1993 0 1970 54345
#> 1994 0 1975 53436
#> 1995 0 1980 51522
#> 1996 0 1985 53975
#> 1997 0 1990 51536
#> 1998 0 1995 46263
#> 1999 0 2000 41573
#> 2000 0 2005 40302
#> 2001 0 2010 39738
#> 2002 0 2015 37177
#> 2003 0 1950 82923304
#> 2004 0 1955 87629339
#> 2005 0 1960 89504803
#> 2006 0 1965 88011977
#> 2007 0 1970 83005040
#> 2008 0 1975 81526669
#> 2009 0 1980 78168855
#> 2010 0 1985 78271114
#> 2011 0 1990 77620841
#> 2012 0 1995 71308111
#> 2013 0 2000 65820397
#> 2014 0 2005 65999436
#> 2015 0 2010 69363092
#> 2016 0 2015 69120514
#> 2017 0 1950 1388349
#> 2018 0 1955 2010606
#> 2019 0 1960 2403864
#> 2020 0 1965 2739557
#> 2021 0 1970 2874382
#> 2022 0 1975 2956465
#> 2023 0 1980 3197791
#> 2024 0 1985 3511537
#> 2025 0 1990 3413480
#> 2026 0 1995 3333102
#> 2027 0 2000 3078554
#> 2028 0 2005 3088705
#> 2029 0 2010 3178788
#> 2030 0 2015 3456781
#> 2031 0 1950 1050651
#> 2032 0 1955 1188064
#> 2033 0 1960 1329058
#> 2034 0 1965 1468946
#> 2035 0 1970 1637814
#> 2036 0 1975 1886047
#> 2037 0 1980 2138934
#> 2038 0 1985 2335668
#> 2039 0 1990 2392239
#> 2040 0 1995 2840306
#> 2041 0 2000 3290492
#> 2042 0 2005 3826734
#> 2043 0 2010 4339104
#> 2044 0 2015 4844014
#> 2045 0 1950 2396966
#> 2046 0 1955 3199966
#> 2047 0 1960 3516205
#> 2048 0 1965 3806231
#> 2049 0 1970 4288481
#> 2050 0 1975 4703419
#> 2051 0 1980 5080203
#> 2052 0 1985 5408543
#> 2053 0 1990 5165426
#> 2054 0 1995 4896417
#> 2055 0 2000 5057420
#> 2056 0 2005 5320470
#> 2057 0 2010 4917189
#> 2058 0 2015 4552879
#> 2059 0 1950 18882284
#> 2060 0 1955 21236863
#> 2061 0 1960 22980548
#> 2062 0 1965 22036949
#> 2063 0 1970 19518680
#> 2064 0 1975 18320633
#> 2065 0 1980 18411091
#> 2066 0 1985 19664698
#> 2067 0 1990 21218016
#> 2068 0 1995 22005961
#> 2069 0 2000 21391743
#> 2070 0 2005 21998576
#> 2071 0 2010 22692778
#> 2072 0 2015 21801480
#> 2073 0 1950 76115
#> 2074 0 1955 88174
#> 2075 0 1960 100087
#> 2076 0 1965 114891
#> 2077 0 1970 134174
#> 2078 0 1975 164231
#> 2079 0 1980 188245
#> 2080 0 1985 202336
#> 2081 0 1990 234129
#> 2082 0 1995 264470
#> 2083 0 2000 276688
#> 2084 0 2005 278812
#> 2085 0 2010 293247
#> 2086 0 2015 335026
#> 2087 0 1950 1228224
#> 2088 0 1955 1549544
#> 2089 0 1960 1629114
#> 2090 0 1965 1730560
#> 2091 0 1970 1913840
#> 2092 0 1975 2148352
#> 2093 0 1980 2444707
#> 2094 0 1985 2751351
#> 2095 0 1990 3057785
#> 2096 0 1995 3350507
#> 2097 0 2000 3567095
#> 2098 0 2005 3445617
#> 2099 0 2010 3171741
#> 2100 0 2015 2804977
#> 2101 0 1950 1190373
#> 2102 0 1955 1112388
#> 2103 0 1960 1155795
#> 2104 0 1965 1222325
#> 2105 0 1970 1196430
#> 2106 0 1975 1036774
#> 2107 0 1980 884110
#> 2108 0 1985 876662
#> 2109 0 1990 933606
#> 2110 0 1995 983169
#> 2111 0 2000 971263
#> 2112 0 2005 1003697
#> 2113 0 2010 929004
#> 2114 0 2015 890687
#> 2115 0 1950 8985
#> 2116 0 1955 9644
#> 2117 0 1960 11097
#> 2118 0 1965 13359
#> 2119 0 1970 15660
#> 2120 0 1975 19705
#> 2121 0 1980 18474
#> 2122 0 1985 17752
#> 2123 0 1990 18398
#> 2124 0 1995 20622
#> 2125 0 2000 21560
#> 2126 0 2005 20817
#> 2127 0 2010 19904
#> 2128 0 2015 21228
#> 2129 0 1950 232000
#> 2130 0 1955 253078
#> 2131 0 1960 289134
#> 2132 0 1965 301349
#> 2133 0 1970 296941
#> 2134 0 1975 302429
#> 2135 0 1980 256568
#> 2136 0 1985 251734
#> 2137 0 1990 276422
#> 2138 0 1995 296084
#> 2139 0 2000 283435
#> 2140 0 2005 284575
#> 2141 0 2010 312252
#> 2142 0 2015 308681
#> 2143 0 1950 211440
#> 2144 0 1955 306436
#> 2145 0 1960 364654
#> 2146 0 1965 391251
#> 2147 0 1970 443974
#> 2148 0 1975 527245
#> 2149 0 1980 606841
#> 2150 0 1985 674286
#> 2151 0 1990 694177
#> 2152 0 1995 688541
#> 2153 0 2000 666101
#> 2154 0 2005 637154
#> 2155 0 2010 630292
#> 2156 0 2015 605548
#> 2157 0 1950 514872
#> 2158 0 1955 601864
#> 2159 0 1960 700448
#> 2160 0 1965 813987
#> 2161 0 1970 928778
#> 2162 0 1975 1049692
#> 2163 0 1980 1217656
#> 2164 0 1985 1430492
#> 2165 0 1990 1616305
#> 2166 0 1995 1914676
#> 2167 0 2000 2342970
#> 2168 0 2005 2831991
#> 2169 0 2010 3401391
#> 2170 0 2015 4066097
#> 2171 0 1950 6329574
#> 2172 0 1955 6754053
#> 2173 0 1960 7584631
#> 2174 0 1965 8567994
#> 2175 0 1970 9641499
#> 2176 0 1975 11327345
#> 2177 0 1980 13372917
#> 2178 0 1985 15224549
#> 2179 0 1990 16808706
#> 2180 0 1995 18592249
#> 2181 0 2000 21083536
#> 2182 0 2005 24325631
#> 2183 0 2010 27699315
#> 2184 0 2015 31109162
#> 2185 0 1950 8251393
#> 2186 0 1955 9846681
#> 2187 0 1960 11466051
#> 2188 0 1965 13075726
#> 2189 0 1970 14521199
#> 2190 0 1975 15891070
#> 2191 0 1980 17998547
#> 2192 0 1985 20283338
#> 2193 0 1990 21723336
#> 2194 0 1995 21350276
#> 2195 0 2000 20551662
#> 2196 0 2005 21625013
#> 2197 0 2010 23964707
#> 2198 0 2015 28062048
#> 2199 0 1950 7040812
#> 2200 0 1955 6290840
#> 2201 0 1960 6585526
#> 2202 0 1965 7350594
#> 2203 0 1970 7183695
#> 2204 0 1975 6377889
#> 2205 0 1980 5700895
#> 2206 0 1985 5868703
#> 2207 0 1990 6193232
#> 2208 0 1995 6131514
#> 2209 0 2000 5598668
#> 2210 0 2005 5500926
#> 2211 0 2010 6132076
#> 2212 0 2015 6248827
#> 2213 0 1950 319771
#> 2214 0 1955 304100
#> 2215 0 1960 308839
#> 2216 0 1965 311952
#> 2217 0 1970 329618
#> 2218 0 1975 309714
#> 2219 0 1980 261200
#> 2220 0 1985 254075
#> 2221 0 1990 280385
#> 2222 0 1995 303831
#> 2223 0 2000 301771
#> 2224 0 2005 288373
#> 2225 0 2010 306018
#> 2226 0 2015 308947
#> 2227 0 1950 1530194
#> 2228 0 1955 1735560
#> 2229 0 1960 1934530
#> 2230 0 1965 2081894
#> 2231 0 1970 2217970
#> 2232 0 1975 2331857
#> 2233 0 1980 2240930
#> 2234 0 1985 2388915
#> 2235 0 1990 2533443
#> 2236 0 1995 2681493
#> 2237 0 2000 2760668
#> 2238 0 2005 2819524
#> 2239 0 2010 3101370
#> 2240 0 2015 3225106
#> 2241 0 1950 78036
#> 2242 0 1955 84725
#> 2243 0 1960 99435
#> 2244 0 1965 116369
#> 2245 0 1970 137143
#> 2246 0 1975 167077
#> 2247 0 1980 230038
#> 2248 0 1985 297583
#> 2249 0 1990 323176
#> 2250 0 1995 309017
#> 2251 0 2000 282877
#> 2252 0 2005 255795
#> 2253 0 2010 293024
#> 2254 0 2015 384255
#> 2255 0 1950 5778606
#> 2256 0 1955 5867433
#> 2257 0 1960 7171865
#> 2258 0 1965 8561033
#> 2259 0 1970 9921212
#> 2260 0 1975 11309459
#> 2261 0 1980 13217003
#> 2262 0 1985 15642156
#> 2263 0 1990 18447015
#> 2264 0 1995 19550140
#> 2265 0 2000 20152554
#> 2266 0 2005 20125024
#> 2267 0 2010 22472600
#> 2268 0 2015 24712071
#> 2269 0 1950 143237
#> 2270 0 1955 168431
#> 2271 0 1960 198746
#> 2272 0 1965 229506
#> 2273 0 1970 255432
#> 2274 0 1975 277868
#> 2275 0 1980 288190
#> 2276 0 1985 296480
#> 2277 0 1990 309559
#> 2278 0 1995 320785
#> 2279 0 2000 341826
#> 2280 0 2005 352870
#> 2281 0 2010 368805
#> 2282 0 2015 385865
#> 2283 0 1950 256476
#> 2284 0 1955 306792
#> 2285 0 1960 339802
#> 2286 0 1965 378392
#> 2287 0 1970 428568
#> 2288 0 1975 491189
#> 2289 0 1980 561231
#> 2290 0 1985 622758
#> 2291 0 1990 664581
#> 2292 0 1995 736466
#> 2293 0 2000 845050
#> 2294 0 2005 920789
#> 2295 0 2010 983167
#> 2296 0 2015 1024515
#> 2297 0 1950 269256
#> 2298 0 1955 318455
#> 2299 0 1960 350087
#> 2300 0 1965 389072
#> 2301 0 1970 426574
#> 2302 0 1975 439876
#> 2303 0 1980 507902
#> 2304 0 1985 594521
#> 2305 0 1990 653506
#> 2306 0 1995 684096
#> 2307 0 2000 704547
#> 2308 0 2005 669036
#> 2309 0 2010 675169
#> 2310 0 2015 673789
#> 2311 0 1950 1298441
#> 2312 0 1955 1559928
#> 2313 0 1960 1800680
#> 2314 0 1965 2090703
#> 2315 0 1970 2322739
#> 2316 0 1975 2497445
#> 2317 0 1980 2752668
#> 2318 0 1985 2835762
#> 2319 0 1990 3009151
#> 2320 0 1995 3071245
#> 2321 0 2000 3009387
#> 2322 0 2005 2960998
#> 2323 0 2010 2950509
#> 2324 0 2015 3020032
#> 2325 0 1950 3252168
#> 2326 0 1955 4399635
#> 2327 0 1960 4977782
#> 2328 0 1965 5600996
#> 2329 0 1970 6196403
#> 2330 0 1975 6860301
#> 2331 0 1980 7677809
#> 2332 0 1985 8502928
#> 2333 0 1990 9450034
#> 2334 0 1995 10066803
#> 2335 0 2000 10748094
#> 2336 0 2005 11423106
#> 2337 0 2010 10965627
#> 2338 0 2015 11434444
#> 2339 0 1950 2950000
#> 2340 0 1955 3549007
#> 2341 0 1960 3591738
#> 2342 0 1965 2816345
#> 2343 0 1970 2560688
#> 2344 0 1975 2805598
#> 2345 0 1980 3197049
#> 2346 0 1985 3403759
#> 2347 0 1990 2946002
#> 2348 0 1995 2563346
#> 2349 0 2000 2056722
#> 2350 0 2005 1787552
#> 2351 0 2010 2007328
#> 2352 0 2015 1902629
#> 2353 0 1950 42301
#> 2354 0 1955 52582
#> 2355 0 1960 58162
#> 2356 0 1965 69767
#> 2357 0 1970 74263
#> 2358 0 1975 69395
#> 2359 0 1980 68834
#> 2360 0 1985 72138
#> 2361 0 1990 77176
#> 2362 0 1995 76821
#> 2363 0 2000 74993
#> 2364 0 2005 73633
#> 2365 0 2010 71420
#> 2366 0 2015 68680
#> 2367 0 1950 897680
#> 2368 0 1955 896960
#> 2369 0 1960 909246
#> 2370 0 1965 950192
#> 2371 0 1970 828286
#> 2372 0 1975 845140
#> 2373 0 1980 811426
#> 2374 0 1985 706671
#> 2375 0 1990 569258
#> 2376 0 1995 545939
#> 2377 0 2000 534984
#> 2378 0 2005 553884
#> 2379 0 2010 494520
#> 2380 0 2015 442407
#> 2381 0 1950 366801
#> 2382 0 1955 354115
#> 2383 0 1960 355807
#> 2384 0 1965 358928
#> 2385 0 1970 317906
#> 2386 0 1975 328229
#> 2387 0 1980 339300
#> 2388 0 1985 325662
#> 2389 0 1990 301435
#> 2390 0 1995 314493
#> 2391 0 2000 285033
#> 2392 0 2005 260803
#> 2393 0 2010 236310
#> 2394 0 2015 204210
#> 2395 0 1950 4323
#> 2396 0 1955 6516
#> 2397 0 1960 8291
#> 2398 0 1965 11886
#> 2399 0 1970 16985
#> 2400 0 1975 22868
#> 2401 0 1980 33720
#> 2402 0 1985 48699
#> 2403 0 1990 51641
#> 2404 0 1995 49999
#> 2405 0 2000 54839
#> 2406 0 2005 68239
#> 2407 0 2010 90087
#> 2408 0 2015 127393
#> 2409 0 1950 3043329
#> 2410 0 1955 3402309
#> 2411 0 1960 4628827
#> 2412 0 1965 4682734
#> 2413 0 1970 4511901
#> 2414 0 1975 4515508
#> 2415 0 1980 3994273
#> 2416 0 1985 3848434
#> 2417 0 1990 3118863
#> 2418 0 1995 3490756
#> 2419 0 2000 3172702
#> 2420 0 2005 2514681
#> 2421 0 2010 2288771
#> 2422 0 2015 2232392
#> 2423 0 1950 202686
#> 2424 0 1955 321473
#> 2425 0 1960 398280
#> 2426 0 1965 393164
#> 2427 0 1970 340133
#> 2428 0 1975 370743
#> 2429 0 1980 378352
#> 2430 0 1985 419057
#> 2431 0 1990 426912
#> 2432 0 1995 328152
#> 2433 0 2000 241120
#> 2434 0 2005 205400
#> 2435 0 2010 220111
#> 2436 0 2015 222219
#> 2437 0 1950 41908
#> 2438 0 1955 55556
#> 2439 0 1960 59570
#> 2440 0 1965 68052
#> 2441 0 1970 74567
#> 2442 0 1975 61199
#> 2443 0 1980 57471
#> 2444 0 1985 62231
#> 2445 0 1990 67540
#> 2446 0 1995 69317
#> 2447 0 2000 70782
#> 2448 0 2005 74525
#> 2449 0 2010 70954
#> 2450 0 2015 68983
#> 2451 0 1950 1644665
#> 2452 0 1955 1944767
#> 2453 0 1960 1863093
#> 2454 0 1965 1475674
#> 2455 0 1970 2028480
#> 2456 0 1975 2020127
#> 2457 0 1980 2050086
#> 2458 0 1985 1795042
#> 2459 0 1990 1785449
#> 2460 0 1995 1266511
#> 2461 0 2000 1120088
#> 2462 0 2005 1066995
#> 2463 0 2010 1063410
#> 2464 0 2015 971250
#> 2465 0 1950 11108268
#> 2466 0 1955 12867568
#> 2467 0 1960 13274099
#> 2468 0 1965 11616279
#> 2469 0 1970 9386188
#> 2470 0 1975 10045511
#> 2471 0 1980 10546479
#> 2472 0 1985 11600149
#> 2473 0 1990 11524176
#> 2474 0 1995 8053329
#> 2475 0 2000 6434688
#> 2476 0 2005 6945245
#> 2477 0 2010 7957750
#> 2478 0 2015 9355206
#> 2479 0 1950 420902
#> 2480 0 1955 505318
#> 2481 0 1960 591002
#> 2482 0 1965 631086
#> 2483 0 1970 712087
#> 2484 0 1975 857437
#> 2485 0 1980 1060550
#> 2486 0 1985 1288710
#> 2487 0 1990 1417859
#> 2488 0 1995 743245
#> 2489 0 2000 1312969
#> 2490 0 2005 1454304
#> 2491 0 2010 1641689
#> 2492 0 2015 1734540
#> 2493 0 1950 11770
#> 2494 0 1955 12820
#> 2495 0 1960 16026
#> 2496 0 1965 17486
#> 2497 0 1970 19299
#> 2498 0 1975 17354
#> 2499 0 1980 16629
#> 2500 0 1985 16516
#> 2501 0 1990 17643
#> 2502 0 1995 17580
#> 2503 0 2000 15845
#> 2504 0 2005 12541
#> 2505 0 2010 11071
#> 2506 0 2015 10783
#> 2507 0 1950 13638
#> 2508 0 1955 14776
#> 2509 0 1960 16094
#> 2510 0 1965 16828
#> 2511 0 1970 16593
#> 2512 0 1975 16000
#> 2513 0 1980 14766
#> 2514 0 1985 13879
#> 2515 0 1990 13369
#> 2516 0 1995 12145
#> 2517 0 2000 10944
#> 2518 0 2005 9633
#> 2519 0 2010 9260
#> 2520 0 2015 8512
#> 2521 0 1950 14829
#> 2522 0 1955 19427
#> 2523 0 1960 21476
#> 2524 0 1965 25828
#> 2525 0 1970 27310
#> 2526 0 1975 26143
#> 2527 0 1980 24344
#> 2528 0 1985 23457
#> 2529 0 1990 23140
#> 2530 0 1995 25126
#> 2531 0 2000 25601
#> 2532 0 2005 25204
#> 2533 0 2010 25874
#> 2534 0 2015 24232
#> 2535 0 1950 9758
#> 2536 0 1955 9583
#> 2537 0 1960 10442
#> 2538 0 1965 12026
#> 2539 0 1970 14940
#> 2540 0 1975 16303
#> 2541 0 1980 19116
#> 2542 0 1985 18308
#> 2543 0 1990 20005
#> 2544 0 1995 22057
#> 2545 0 2000 23152
#> 2546 0 2005 26916
#> 2547 0 2010 29093
#> 2548 0 2015 30960
#> 2549 0 1950 537360
#> 2550 0 1955 608304
#> 2551 0 1960 714698
#> 2552 0 1965 870426
#> 2553 0 1970 1063331
#> 2554 0 1975 1365321
#> 2555 0 1980 1762297
#> 2556 0 1985 2330667
#> 2557 0 1990 2707838
#> 2558 0 1995 2749881
#> 2559 0 2000 2702292
#> 2560 0 2005 2745366
#> 2561 0 2010 2918018
#> 2562 0 2015 2960322
#> 2563 0 1950 427813
#> 2564 0 1955 527758
#> 2565 0 1960 601279
#> 2566 0 1965 691488
#> 2567 0 1970 794407
#> 2568 0 1975 930641
#> 2569 0 1980 1076555
#> 2570 0 1985 1246948
#> 2571 0 1990 1384590
#> 2572 0 1995 1536685
#> 2573 0 2000 1672113
#> 2574 0 2005 1870068
#> 2575 0 2010 2174717
#> 2576 0 2015 2492790
#> 2577 0 1950 747122
#> 2578 0 1955 836323
#> 2579 0 1960 710818
#> 2580 0 1965 681775
#> 2581 0 1970 690926
#> 2582 0 1975 738733
#> 2583 0 1980 779578
#> 2584 0 1985 762796
#> 2585 0 1990 731948
#> 2586 0 1995 667418
#> 2587 0 2000 598343
#> 2588 0 2005 533215
#> 2589 0 2010 488317
#> 2590 0 2015 467959
#> 2591 0 1950 4461
#> 2592 0 1955 6151
#> 2593 0 1960 6839
#> 2594 0 1965 7533
#> 2595 0 1970 8274
#> 2596 0 1975 8463
#> 2597 0 1980 8686
#> 2598 0 1985 8502
#> 2599 0 1990 8237
#> 2600 0 1995 8003
#> 2601 0 2000 7328
#> 2602 0 2005 7847
#> 2603 0 2010 7516
#> 2604 0 2015 7790
#> 2605 0 1950 326865
#> 2606 0 1955 335290
#> 2607 0 1960 359594
#> 2608 0 1965 402461
#> 2609 0 1970 451594
#> 2610 0 1975 527046
#> 2611 0 1980 603044
#> 2612 0 1985 689453
#> 2613 0 1990 772241
#> 2614 0 1995 753592
#> 2615 0 2000 810097
#> 2616 0 2005 991441
#> 2617 0 2010 1091253
#> 2618 0 2015 1135222
#> 2619 0 1950 164501
#> 2620 0 1955 234853
#> 2621 0 1960 301997
#> 2622 0 1965 281846
#> 2623 0 1970 235347
#> 2624 0 1975 223814
#> 2625 0 1980 193567
#> 2626 0 1985 215642
#> 2627 0 1990 228252
#> 2628 0 1995 298518
#> 2629 0 2000 255543
#> 2630 0 2005 258522
#> 2631 0 2010 261464
#> 2632 0 2015 263914
#> 2633 0 1950 372570
#> 2634 0 1955 466653
#> 2635 0 1960 455781
#> 2636 0 1965 420725
#> 2637 0 1970 386167
#> 2638 0 1975 439540
#> 2639 0 1980 485118
#> 2640 0 1985 452676
#> 2641 0 1990 416053
#> 2642 0 1995 364809
#> 2643 0 2000 286865
#> 2644 0 2005 259078
#> 2645 0 2010 280029
#> 2646 0 2015 285309
#> 2647 0 1950 149000
#> 2648 0 1955 151743
#> 2649 0 1960 141332
#> 2650 0 1965 138361
#> 2651 0 1970 133943
#> 2652 0 1975 141256
#> 2653 0 1980 149414
#> 2654 0 1985 142297
#> 2655 0 1990 122920
#> 2656 0 1995 99576
#> 2657 0 2000 90456
#> 2658 0 2005 88126
#> 2659 0 2010 104739
#> 2660 0 2015 108977
#> 2661 0 1950 14202
#> 2662 0 1955 16101
#> 2663 0 1960 19471
#> 2664 0 1965 23127
#> 2665 0 1970 27598
#> 2666 0 1975 38565
#> 2667 0 1980 44588
#> 2668 0 1985 48503
#> 2669 0 1990 53142
#> 2670 0 1995 58988
#> 2671 0 2000 64819
#> 2672 0 2005 72336
#> 2673 0 2010 79650
#> 2674 0 2015 82681
#> 2675 0 1950 388870
#> 2676 0 1955 434809
#> 2677 0 1960 481569
#> 2678 0 1965 538610
#> 2679 0 1970 609188
#> 2680 0 1975 682842
#> 2681 0 1980 1102699
#> 2682 0 1985 1183216
#> 2683 0 1990 1367785
#> 2684 0 1995 1481711
#> 2685 0 2000 1804782
#> 2686 0 2005 2005822
#> 2687 0 2010 2282392
#> 2688 0 2015 2554488
#> 2689 0 1950 2023750
#> 2690 0 1955 2563292
#> 2691 0 1960 2893778
#> 2692 0 1965 3252102
#> 2693 0 1970 3626251
#> 2694 0 1975 4160394
#> 2695 0 1980 4631386
#> 2696 0 1985 5065415
#> 2697 0 1990 5205671
#> 2698 0 1995 5131451
#> 2699 0 2000 5159763
#> 2700 0 2005 5254483
#> 2701 0 2010 5408469
#> 2702 0 2015 5663766
#> 2703 0 1950 17969267
#> 2704 0 1955 21471192
#> 2705 0 1960 24362985
#> 2706 0 1965 27653793
#> 2707 0 1970 29392003
#> 2708 0 1975 30531613
#> 2709 0 1980 33704916
#> 2710 0 1985 35959700
#> 2711 0 1990 36466543
#> 2712 0 1995 36376407
#> 2713 0 2000 36173542
#> 2714 0 2005 35029980
#> 2715 0 2010 33723985
#> 2716 0 2015 33391481
#> 2717 0 1950 461583
#> 2718 0 1955 433529
#> 2719 0 1960 505994
#> 2720 0 1965 583392
#> 2721 0 1970 667414
#> 2722 0 1975 748159
#> 2723 0 1980 847493
#> 2724 0 1985 964435
#> 2725 0 1990 1047254
#> 2726 0 1995 989870
#> 2727 0 2000 1194051
#> 2728 0 2005 1378092
#> 2729 0 2010 1657580
#> 2730 0 2015 1882433
#> 2731 0 1950 74460466
#> 2732 0 1955 90144844
#> 2733 0 1960 101350982
#> 2734 0 1965 112990635
#> 2735 0 1970 123732262
#> 2736 0 1975 135399265
#> 2737 0 1980 150399423
#> 2738 0 1985 168871077
#> 2739 0 1990 180283037
#> 2740 0 1995 183571509
#> 2741 0 2000 186204934
#> 2742 0 2005 187701915
#> 2743 0 2010 190188774
#> 2744 0 2015 185857038
#> 2745 0 1950 24378661
#> 2746 0 1955 31063793
#> 2747 0 1960 37308574
#> 2748 0 1965 42384248
#> 2749 0 1970 46818066
#> 2750 0 1975 50331829
#> 2751 0 1980 52605250
#> 2752 0 1985 55826325
#> 2753 0 1990 56734496
#> 2754 0 1995 56872964
#> 2755 0 2000 54581667
#> 2756 0 2005 55716598
#> 2757 0 2010 56351746
#> 2758 0 2015 57783741
#> 2759 0 1950 2330163
#> 2760 0 1955 2921153
#> 2761 0 1960 3299069
#> 2762 0 1965 3711623
#> 2763 0 1970 4153553
#> 2764 0 1975 4780550
#> 2765 0 1980 5351844
#> 2766 0 1985 5869078
#> 2767 0 1990 6074339
#> 2768 0 1995 6042254
#> 2769 0 2000 6087141
#> 2770 0 2005 6168161
#> 2771 0 2010 6361129
#> 2772 0 2015 6712735
#> 2773 0 1950 72546141
#> 2774 0 1955 87085330
#> 2775 0 1960 97275460
#> 2776 0 1965 108147764
#> 2777 0 1970 118906426
#> 2778 0 1975 130183668
#> 2779 0 1980 144701803
#> 2780 0 1985 162388092
#> 2781 0 1990 173040879
#> 2782 0 1995 176696057
#> 2783 0 2000 180314244
#> 2784 0 2005 182042111
#> 2785 0 2010 183481938
#> 2786 0 2015 178077284
#> 2787 0 1950 10858653
#> 2788 0 1955 10761373
#> 2789 0 1960 11092815
#> 2790 0 1965 11730817
#> 2791 0 1970 11528376
#> 2792 0 1975 11414053
#> 2793 0 1980 10560113
#> 2794 0 1985 9233660
#> 2795 0 1990 8214311
#> 2796 0 1995 7620586
#> 2797 0 2000 7270101
#> 2798 0 2005 7479338
#> 2799 0 2010 7686444
#> 2800 0 2015 6966409
#> 2801 0 1950 2663503
#> 2802 0 1955 2717872
#> 2803 0 1960 3021945
#> 2804 0 1965 3209839
#> 2805 0 1970 3238233
#> 2806 0 1975 3326069
#> 2807 0 1980 3181326
#> 2808 0 1985 2554173
#> 2809 0 1990 2108084
#> 2810 0 1995 1952526
#> 2811 0 2000 1891424
#> 2812 0 2005 2192540
#> 2813 0 2010 2466518
#> 2814 0 2015 2169478
#> 2815 0 1950 1263415
#> 2816 0 1955 1396276
#> 2817 0 1960 1627209
#> 2818 0 1965 1704130
#> 2819 0 1970 1798859
#> 2820 0 1975 1787536
#> 2821 0 1980 1910565
#> 2822 0 1985 1939905
#> 2823 0 1990 1779977
#> 2824 0 1995 1716653
#> 2825 0 2000 1641608
#> 2826 0 2005 1743176
#> 2827 0 2010 1787446
#> 2828 0 2015 1643016
#> 2829 0 1950 171835
#> 2830 0 1955 177361
#> 2831 0 1960 200126
#> 2832 0 1965 246032
#> 2833 0 1970 233967
#> 2834 0 1975 265853
#> 2835 0 1980 300422
#> 2836 0 1985 339558
#> 2837 0 1990 412280
#> 2838 0 1995 522615
#> 2839 0 2000 584517
#> 2840 0 2005 575400
#> 2841 0 2010 627864
#> 2842 0 2015 698901
#> 2843 0 1950 30453656
#> 2844 0 1955 34457533
#> 2845 0 1960 39025442
#> 2846 0 1965 44614384
#> 2847 0 1970 50931638
#> 2848 0 1975 59126360
#> 2849 0 1980 68668118
#> 2850 0 1985 78715685
#> 2851 0 1990 88639420
#> 2852 0 1995 98342743
#> 2853 0 2000 111698353
#> 2854 0 2005 126762944
#> 2855 0 2010 142921912
#> 2856 0 2015 158928349
#> 2857 0 1950 1030239
#> 2858 0 1955 1194780
#> 2859 0 1960 1390108
#> 2860 0 1965 1644562
#> 2861 0 1970 1960054
#> 2862 0 1975 2329349
#> 2863 0 1980 2751919
#> 2864 0 1985 3144992
#> 2865 0 1990 3533683
#> 2866 0 1995 4178804
#> 2867 0 2000 4665118
#> 2868 0 2005 5152018
#> 2869 0 2010 5529777
#> 2870 0 2015 5858975
#> 2871 0 1950 37000
#> 2872 0 1955 47293
#> 2873 0 1960 59086
#> 2874 0 1965 63833
#> 2875 0 1970 63242
#> 2876 0 1975 55794
#> 2877 0 1980 44850
#> 2878 0 1985 48098
#> 2879 0 1990 52156
#> 2880 0 1995 54304
#> 2881 0 2000 53394
#> 2882 0 2005 51507
#> 2883 0 2010 50043
#> 2884 0 2015 50217
#> 2885 0 1950 48672
#> 2886 0 1955 55228
#> 2887 0 1960 63099
#> 2888 0 1965 72587
#> 2889 0 1970 85171
#> 2890 0 1975 101204
#> 2891 0 1980 118473
#> 2892 0 1985 138455
#> 2893 0 1990 163566
#> 2894 0 1995 162794
#> 2895 0 2000 157287
#> 2896 0 2005 158277
#> 2897 0 2010 169061
#> 2898 0 2015 178312
#> 2899 0 1950 617943
#> 2900 0 1955 536540
#> 2901 0 1960 522439
#> 2902 0 1965 555823
#> 2903 0 1970 582466
#> 2904 0 1975 551131
#> 2905 0 1980 487696
#> 2906 0 1985 472703
#> 2907 0 1990 553121
#> 2908 0 1995 594427
#> 2909 0 2000 463549
#> 2910 0 2005 491223
#> 2911 0 2010 555834
#> 2912 0 2015 587405
#> 2913 0 1950 421699
#> 2914 0 1955 413824
#> 2915 0 1960 441110
#> 2916 0 1965 507639
#> 2917 0 1970 506142
#> 2918 0 1975 436201
#> 2919 0 1980 355519
#> 2920 0 1985 368793
#> 2921 0 1990 385100
#> 2922 0 1995 425143
#> 2923 0 2000 401330
#> 2924 0 2005 365677
#> 2925 0 2010 383996
#> 2926 0 2015 427272
#> 2927 0 1950 545959
#> 2928 0 1955 772812
#> 2929 0 1960 892382
#> 2930 0 1965 1033746
#> 2931 0 1970 1209993
#> 2932 0 1975 1473479
#> 2933 0 1980 1757101
#> 2934 0 1985 2004855
#> 2935 0 1990 2144859
#> 2936 0 1995 2185907
#> 2937 0 2000 2432026
#> 2938 0 2005 2522732
#> 2939 0 2010 2665476
#> 2940 0 2015 2237552
#> 2941 0 1950 170612
#> 2942 0 1955 209830
#> 2943 0 1960 199846
#> 2944 0 1965 195980
#> 2945 0 1970 203313
#> 2946 0 1975 189326
#> 2947 0 1980 188754
#> 2948 0 1985 188102
#> 2949 0 1990 173578
#> 2950 0 1995 158210
#> 2951 0 2000 136314
#> 2952 0 2005 124033
#> 2953 0 2010 112711
#> 2954 0 2015 116009
#> 2955 0 1950 172023
#> 2956 0 1955 296452
#> 2957 0 1960 386968
#> 2958 0 1965 468936
#> 2959 0 1970 513037
#> 2960 0 1975 568419
#> 2961 0 1980 633413
#> 2962 0 1985 782773
#> 2963 0 1990 938662
#> 2964 0 1995 922670
#> 2965 0 2000 892399
#> 2966 0 2005 858599
#> 2967 0 2010 1004802
#> 2968 0 2015 1165048
#> 2969 0 1950 3404702
#> 2970 0 1955 4004362
#> 2971 0 1960 4776804
#> 2972 0 1965 5578436
#> 2973 0 1970 6316545
#> 2974 0 1975 6413587
#> 2975 0 1980 6159110
#> 2976 0 1985 5738024
#> 2977 0 1990 5354158
#> 2978 0 1995 5125727
#> 2979 0 2000 4695879
#> 2980 0 2005 4242801
#> 2981 0 2010 4039436
#> 2982 0 2015 3843800
#> 2983 0 1950 70600
#> 2984 0 1955 72617
#> 2985 0 1960 80010
#> 2986 0 1965 89878
#> 2987 0 1970 98386
#> 2988 0 1975 100745
#> 2989 0 1980 73251
#> 2990 0 1985 109505
#> 2991 0 1990 124092
#> 2992 0 1995 156332
#> 2993 0 2000 182552
#> 2994 0 2005 177645
#> 2995 0 2010 186651
#> 2996 0 2015 204324
#> 2997 0 1950 235154
#> 2998 0 1955 253152
#> 2999 0 1960 277317
#> 3000 0 1965 308870
#> 3001 0 1970 392210
#> 3002 0 1975 456271
#> 3003 0 1980 517381
#> 3004 0 1985 607144
#> 3005 0 1990 683843
#> 3006 0 1995 729105
#> 3007 0 2000 817750
#> 3008 0 2005 951273
#> 3009 0 2010 1076936
#> 3010 0 2015 1162342
#> 3011 0 1950 9451
#> 3012 0 1955 10438
#> 3013 0 1960 11725
#> 3014 0 1965 14685
#> 3015 0 1970 15082
#> 3016 0 1975 12860
#> 3017 0 1980 13271
#> 3018 0 1985 14339
#> 3019 0 1990 13410
#> 3020 0 1995 13570
#> 3021 0 2000 13280
#> 3022 0 2005 13754
#> 3023 0 2010 13751
#> 3024 0 2015 12934
#> 3025 0 1950 106992
#> 3026 0 1955 124429
#> 3027 0 1960 138677
#> 3028 0 1965 146289
#> 3029 0 1970 121089
#> 3030 0 1975 121619
#> 3031 0 1980 132479
#> 3032 0 1985 153705
#> 3033 0 1990 133081
#> 3034 0 1995 105830
#> 3035 0 2000 89618
#> 3036 0 2005 91461
#> 3037 0 2010 97091
#> 3038 0 2015 96101
#> 3039 0 1950 583176
#> 3040 0 1955 638820
#> 3041 0 1960 699577
#> 3042 0 1965 823888
#> 3043 0 1970 844401
#> 3044 0 1975 892038
#> 3045 0 1980 978865
#> 3046 0 1985 1048432
#> 3047 0 1990 1064872
#> 3048 0 1995 957441
#> 3049 0 2000 840258
#> 3050 0 2005 797716
#> 3051 0 2010 861388
#> 3052 0 2015 1023724
#> 3053 0 1950 3368545
#> 3054 0 1955 4279909
#> 3055 0 1960 4710038
#> 3056 0 1965 5102161
#> 3057 0 1970 5528198
#> 3058 0 1975 6070859
#> 3059 0 1980 6520832
#> 3060 0 1985 6740475
#> 3061 0 1990 6580989
#> 3062 0 1995 6438938
#> 3063 0 2000 6644885
#> 3064 0 2005 6529107
#> 3065 0 2010 6417737
#> 3066 0 2015 6740353
#> 3067 0 1950 141781
#> 3068 0 1955 216371
#> 3069 0 1960 287097
#> 3070 0 1965 344187
#> 3071 0 1970 358137
#> 3072 0 1975 397466
#> 3073 0 1980 447384
#> 3074 0 1985 496150
#> 3075 0 1990 580457
#> 3076 0 1995 598175
#> 3077 0 2000 489647
#> 3078 0 2005 502118
#> 3079 0 2010 536023
#> 3080 0 2015 678765
#> 3081 0 1950 945091
#> 3082 0 1955 1129278
#> 3083 0 1960 1293670
#> 3084 0 1965 1534370
#> 3085 0 1970 1829613
#> 3086 0 1975 2092853
#> 3087 0 1980 2438367
#> 3088 0 1985 2865720
#> 3089 0 1990 3444651
#> 3090 0 1995 4142048
#> 3091 0 2000 4842237
#> 3092 0 2005 5735112
#> 3093 0 2010 6630429
#> 3094 0 2015 7512141
#> 3095 0 1950 2987890
#> 3096 0 1955 4150205
#> 3097 0 1960 4008743
#> 3098 0 1965 3864547
#> 3099 0 1970 3441233
#> 3100 0 1975 3722782
#> 3101 0 1980 3717390
#> 3102 0 1985 3778384
#> 3103 0 1990 3458035
#> 3104 0 1995 2794933
#> 3105 0 2000 2160556
#> 3106 0 2005 1982525
#> 3107 0 2010 2381455
#> 3108 0 2015 2410419
#> 3109 0 1950 12031
#> 3110 0 1955 14335
#> 3111 0 1960 17237
#> 3112 0 1965 23673
#> 3113 0 1970 36883
#> 3114 0 1975 66402
#> 3115 0 1980 134426
#> 3116 0 1985 191359
#> 3117 0 1990 232410
#> 3118 0 1995 234800
#> 3119 0 2000 267438
#> 3120 0 2005 299141
#> 3121 0 2010 430946
#> 3122 0 2015 470661
#> 3123 0 1950 4370647
#> 3124 0 1955 3784928
#> 3125 0 1960 4107398
#> 3126 0 1965 4796346
#> 3127 0 1970 4665481
#> 3128 0 1975 3910325
#> 3129 0 1980 3383921
#> 3130 0 1985 3590302
#> 3131 0 1990 3826086
#> 3132 0 1995 3815042
#> 3133 0 2000 3553419
#> 3134 0 2005 3453670
#> 3135 0 2010 3903692
#> 3136 0 2015 4042919
#> 3137 0 1950 1460639
#> 3138 0 1955 1618874
#> 3139 0 1960 1900042
#> 3140 0 1965 2216187
#> 3141 0 1970 2587140
#> 3142 0 1975 3036035
#> 3143 0 1980 3536835
#> 3144 0 1985 4059222
#> 3145 0 1990 4651580
#> 3146 0 1995 5362484
#> 3147 0 2000 5976172
#> 3148 0 2005 7104052
#> 3149 0 2010 8225569
#> 3150 0 2015 9419083
#> 3151 0 1950 3884
#> 3152 0 1955 4736
#> 3153 0 1960 5220
#> 3154 0 1965 8881
#> 3155 0 1970 8748
#> 3156 0 1975 15569
#> 3157 0 1980 10849
#> 3158 0 1985 14279
#> 3159 0 1990 9488
#> 3160 0 1995 11467
#> 3161 0 2000 8476
#> 3162 0 2005 7452
#> 3163 0 2010 7490
#> 3164 0 2015 7024
#> 3165 0 1950 17236887
#> 3166 0 1955 19283067
#> 3167 0 1960 20741743
#> 3168 0 1965 19773186
#> 3169 0 1970 17623176
#> 3170 0 1975 16539915
#> 3171 0 1980 16608661
#> 3172 0 1985 17806874
#> 3173 0 1990 19277057
#> 3174 0 1995 20008755
#> 3175 0 2000 19588993
#> 3176 0 2005 20273450
#> 3177 0 2010 20802246
#> 3178 0 2015 19850653
#> 3179 0 1950 132117190
#> 3180 0 1955 170443859
#> 3181 0 1960 171256382
#> 3182 0 1965 196036102
#> 3183 0 1970 219642557
#> 3184 0 1975 217209820
#> 3185 0 1980 198634682
#> 3186 0 1985 210561572
#> 3187 0 1990 239326421
#> 3188 0 1995 202625384
#> 3189 0 2000 176717562
#> 3190 0 2005 171841916
#> 3191 0 2010 177172122
#> 3192 0 2015 185151924
#> 3193 0 1950 219747
#> 3194 0 1955 230764
#> 3195 0 1960 255565
#> 3196 0 1965 272074
#> 3197 0 1970 265979
#> 3198 0 1975 275520
#> 3199 0 1980 277300
#> 3200 0 1985 263225
#> 3201 0 1990 271352
#> 3202 0 1995 280988
#> 3203 0 2000 271075
#> 3204 0 2005 255434
#> 3205 0 2010 247111
#> 3206 0 2015 240760
#> 3207 0 1950 692560
#> 3208 0 1955 1184727
#> 3209 0 1960 1523071
#> 3210 0 1965 1848384
#> 3211 0 1970 1968380
#> 3212 0 1975 2159679
#> 3213 0 1980 2436560
#> 3214 0 1985 2824199
#> 3215 0 1990 3216955
#> 3216 0 1995 3292204
#> 3217 0 2000 2856079
#> 3218 0 2005 2575917
#> 3219 0 2010 2954505
#> 3220 0 2015 3197185
#> 3221 0 1950 8985
#> 3222 0 1955 10258
#> 3223 0 1960 11893
#> 3224 0 1965 13710
#> 3225 0 1970 14738
#> 3226 0 1975 16915
#> 3227 0 1980 19489
#> 3228 0 1985 21758
#> 3229 0 1990 23773
#> 3230 0 1995 26196
#> 3231 0 2000 28332
#> 3232 0 2005 29661
#> 3233 0 2010 34017
#> 3234 0 2015 34752
#> 3235 0 1950 1021737
#> 3236 0 1955 1238288
#> 3237 0 1960 1529803
#> 3238 0 1965 1895636
#> 3239 0 1970 2016137
#> 3240 0 1975 2046870
#> 3241 0 1980 2288368
#> 3242 0 1985 2513071
#> 3243 0 1990 2764281
#> 3244 0 1995 2803484
#> 3245 0 2000 2823412
#> 3246 0 2005 2886489
#> 3247 0 2010 2949282
#> 3248 0 2015 2974784
#> 3249 0 1950 3088167
#> 3250 0 1955 4605917
#> 3251 0 1960 5842247
#> 3252 0 1965 6571351
#> 3253 0 1970 7064729
#> 3254 0 1975 7657568
#> 3255 0 1980 7991087
#> 3256 0 1985 8630252
#> 3257 0 1990 9211615
#> 3258 0 1995 9200299
#> 3259 0 2000 7244527
#> 3260 0 2005 6760019
#> 3261 0 2010 7277420
#> 3262 0 2015 7752861
#> 3263 0 1950 338387155
#> 3264 0 1955 405612138
#> 3265 0 1960 432642820
#> 3266 0 1965 480601030
#> 3267 0 1970 523700788
#> 3268 0 1975 543301995
#> 3269 0 1980 548178587
#> 3270 0 1985 592792310
#> 3271 0 1990 644867257
#> 3272 0 1995 623061113
#> 3273 0 2000 609348383
#> 3274 0 2005 623820385
#> 3275 0 2010 651602427
#> 3276 0 2015 673649672
#> 3277 0 1950 11811923
#> 3278 0 1955 12948326
#> 3279 0 1960 14612177
#> 3280 0 1965 16570040
#> 3281 0 1970 18768387
#> 3282 0 1975 21766700
#> 3283 0 1980 25304178
#> 3284 0 1985 29013628
#> 3285 0 1990 32307031
#> 3286 0 1995 36120843
#> 3287 0 2000 41034283
#> 3288 0 2005 46938794
#> 3289 0 2010 53416236
#> 3290 0 2015 59914195
#> 3291 0 1950 7640406
#> 3292 0 1955 9823846
#> 3293 0 1960 11051957
#> 3294 0 1965 12580857
#> 3295 0 1970 14090052
#> 3296 0 1975 15873783
#> 3297 0 1980 17919814
#> 3298 0 1985 20106962
#> 3299 0 1990 21621845
#> 3300 0 1995 22337188
#> 3301 0 2000 23192066
#> 3302 0 2005 23802607
#> 3303 0 2010 25572780
#> 3304 0 2015 27562926
#> 3305 0 1950 11440174
#> 3306 0 1955 11930226
#> 3307 0 1960 12715468
#> 3308 0 1965 13820008
#> 3309 0 1970 13305779
#> 3310 0 1975 11213972
#> 3311 0 1980 9919704
#> 3312 0 1985 10219575
#> 3313 0 1990 10507664
#> 3314 0 1995 10231776
#> 3315 0 2000 10015779
#> 3316 0 2005 9826819
#> 3317 0 2010 9699225
#> 3318 0 2015 9796701
#> 3319 0 1950 2381
#> 3320 0 1955 3263
#> 3321 0 1960 5396
#> 3322 0 1965 8746
#> 3323 0 1970 13181
#> 3324 0 1975 13258
#> 3325 0 1980 22972
#> 3326 0 1985 29228
#> 3327 0 1990 31814
#> 3328 0 1995 34603
#> 3329 0 2000 37982
#> 3330 0 2005 46699
#> 3331 0 2010 48515
#> 3332 0 2015 54609
#> 3333 0 1950 770202
#> 3334 0 1955 777887
#> 3335 0 1960 860269
#> 3336 0 1965 978003
#> 3337 0 1970 1173365
#> 3338 0 1975 1348438
#> 3339 0 1980 1709688
#> 3340 0 1985 2115283
#> 3341 0 1990 2603105
#> 3342 0 1995 3082038
#> 3343 0 2000 3151138
#> 3344 0 2005 3359467
#> 3345 0 2010 3677878
#> 3346 0 2015 4016662
#> 3347 0 1950 423044
#> 3348 0 1955 483342
#> 3349 0 1960 578829
#> 3350 0 1965 698261
#> 3351 0 1970 814835
#> 3352 0 1975 979127
#> 3353 0 1980 1148181
#> 3354 0 1985 1309829
#> 3355 0 1990 1480297
#> 3356 0 1995 1670749
#> 3357 0 2000 1945918
#> 3358 0 2005 2241536
#> 3359 0 2010 2474882
#> 3360 0 2015 2750356
#> 3361 0 1950 441553
#> 3362 0 1955 614943
#> 3363 0 1960 725011
#> 3364 0 1965 864336
#> 3365 0 1970 1009659
#> 3366 0 1975 1204222
#> 3367 0 1980 1430391
#> 3368 0 1985 1641329
#> 3369 0 1990 1736206
#> 3370 0 1995 1780903
#> 3371 0 2000 1825197
#> 3372 0 2005 1950476
#> 3373 0 2010 2225701
#> 3374 0 2015 2505482
#> 3375 5 1950 29830722
#> 3376 5 1955 33955611
#> 3377 5 1960 39491383
#> 3378 5 1965 45574715
#> 3379 5 1970 52547327
#> 3380 5 1975 60101294
#> 3381 5 1980 69525314
#> 3382 5 1985 81061074
#> 3383 5 1990 93249745
#> 3384 5 1995 104181119
#> 3385 5 2000 113793055
#> 3386 5 2005 126616288
#> 3387 5 2010 143206933
#> 3388 5 2015 162114814
#> 3389 5 1950 159985806
#> 3390 5 1955 185009703
#> 3391 5 1960 233144059
#> 3392 5 1965 246051186
#> 3393 5 1970 286004714
#> 3394 5 1975 324994292
#> 3395 5 1980 336234229
#> 3396 5 1985 329494317
#> 3397 5 1990 358380695
#> 3398 5 1995 398638133
#> 3399 5 2000 374176893
#> 3400 5 2005 355214084
#> 3401 5 2010 355060054
#> 3402 5 2015 363350255
#> 3403 5 1950 1003541
#> 3404 5 1955 1108529
#> 3405 5 1960 1182089
#> 3406 5 1965 1359677
#> 3407 5 1970 1574532
#> 3408 5 1975 1830254
#> 3409 5 1980 1962387
#> 3410 5 1985 1810390
#> 3411 5 1990 1917846
#> 3412 5 1995 2650943
#> 3413 5 2000 3161912
#> 3414 5 2005 3966460
#> 3415 5 2010 4662577
#> 3416 5 2015 5141850
#> 3417 5 1950 157805
#> 3418 5 1955 171796
#> 3419 5 1960 213585
#> 3420 5 1965 265150
#> 3421 5 1970 303500
#> 3422 5 1975 308071
#> 3423 5 1980 321635
#> 3424 5 1985 332234
#> 3425 5 1990 352983
#> 3426 5 1995 352902
#> 3427 5 2000 327488
#> 3428 5 2005 277254
#> 3429 5 2010 213969
#> 3430 5 2015 159257
#> 3431 5 1950 1151660
#> 3432 5 1955 1246712
#> 3433 5 1960 1665398
#> 3434 5 1965 1915406
#> 3435 5 1970 2240461
#> 3436 5 1975 2526926
#> 3437 5 1980 2933067
#> 3438 5 1985 3433151
#> 3439 5 1990 3826398
#> 3440 5 1995 3936663
#> 3441 5 2000 3686145
#> 3442 5 2005 3050991
#> 3443 5 2010 2933956
#> 3444 5 2015 3837263
#> 3445 5 1950 570785
#> 3446 5 1955 618326
#> 3447 5 1960 852398
#> 3448 5 1965 913634
#> 3449 5 1970 999345
#> 3450 5 1975 1124453
#> 3451 5 1980 1343800
#> 3452 5 1985 1650250
#> 3453 5 1990 1870098
#> 3454 5 1995 2209674
#> 3455 5 2000 2520152
#> 3456 5 2005 2968645
#> 3457 5 2010 3614652
#> 3458 5 2015 4376801
#> 3459 5 1950 6030
#> 3460 5 1955 6506
#> 3461 5 1960 8342
#> 3462 5 1965 8847
#> 3463 5 1970 9080
#> 3464 5 1975 9677
#> 3465 5 1980 9041
#> 3466 5 1985 6717
#> 3467 5 1990 7663
#> 3468 5 1995 7743
#> 3469 5 2000 8037
#> 3470 5 2005 8649
#> 3471 5 2010 8416
#> 3472 5 2015 8096
#> 3473 5 1950 1709552
#> 3474 5 1955 1941983
#> 3475 5 1960 2132458
#> 3476 5 1965 2237704
#> 3477 5 1970 2321281
#> 3478 5 1975 2456650
#> 3479 5 1980 2767438
#> 3480 5 1985 3310834
#> 3481 5 1990 3274362
#> 3482 5 1995 3404787
#> 3483 5 2000 3504861
#> 3484 5 2005 3458231
#> 3485 5 2010 3581379
#> 3486 5 2015 3639355
#> 3487 5 1950 108519
#> 3488 5 1955 153987
#> 3489 5 1960 241634
#> 3490 5 1965 330992
#> 3491 5 1970 358301
#> 3492 5 1975 305620
#> 3493 5 1980 304362
#> 3494 5 1985 320874
#> 3495 5 1990 362707
#> 3496 5 1995 340503
#> 3497 5 2000 272821
#> 3498 5 2005 191636
#> 3499 5 2010 175079
#> 3500 5 2015 199116
#> 3501 5 1950 5274
#> 3502 5 1955 6201
#> 3503 5 1960 8205
#> 3504 5 1965 7936
#> 3505 5 1970 7735
#> 3506 5 1975 5976
#> 3507 5 1980 4768
#> 3508 5 1985 4665
#> 3509 5 1990 5262
#> 3510 5 1995 6213
#> 3511 5 2000 7315
#> 3512 5 2005 7339
#> 3513 5 2010 7068
#> 3514 5 2015 6722
#> 3515 5 1950 702784
#> 3516 5 1955 940097
#> 3517 5 1960 1031755
#> 3518 5 1965 1134723
#> 3519 5 1970 1257327
#> 3520 5 1975 1247872
#> 3521 5 1980 1296753
#> 3522 5 1985 1177934
#> 3523 5 1990 1262568
#> 3524 5 1995 1297038
#> 3525 5 2000 1359328
#> 3526 5 2005 1329536
#> 3527 5 2010 1354536
#> 3528 5 2015 1521110
#> 3529 5 1950 879784
#> 3530 5 1955 1172110
#> 3531 5 1960 1285833
#> 3532 5 1965 1427875
#> 3533 5 1970 1559253
#> 3534 5 1975 1551764
#> 3535 5 1980 1592245
#> 3536 5 1985 1434139
#> 3537 5 1990 1516361
#> 3538 5 1995 1583098
#> 3539 5 2000 1660977
#> 3540 5 2005 1621872
#> 3541 5 2010 1641458
#> 3542 5 2015 1836742
#> 3543 5 1950 560799
#> 3544 5 1955 508281
#> 3545 5 1960 485379
#> 3546 5 1965 578793
#> 3547 5 1970 646190
#> 3548 5 1975 624315
#> 3549 5 1980 507555
#> 3550 5 1985 430385
#> 3551 5 1990 446210
#> 3552 5 1995 465351
#> 3553 5 2000 474820
#> 3554 5 2005 431607
#> 3555 5 2010 407002
#> 3556 5 2015 402030
#> 3557 5 1950 251548
#> 3558 5 1955 326903
#> 3559 5 1960 515128
#> 3560 5 1965 677397
#> 3561 5 1970 817020
#> 3562 5 1975 762206
#> 3563 5 1980 689649
#> 3564 5 1985 682668
#> 3565 5 1990 785359
#> 3566 5 1995 928947
#> 3567 5 2000 888836
#> 3568 5 2005 705614
#> 3569 5 2010 639204
#> 3570 5 2015 699107
#> 3571 5 1950 10002
#> 3572 5 1955 12186
#> 3573 5 1960 15809
#> 3574 5 1965 21253
#> 3575 5 1970 26756
#> 3576 5 1975 25381
#> 3577 5 1980 27033
#> 3578 5 1985 25567
#> 3579 5 1990 29219
#> 3580 5 1995 28132
#> 3581 5 2000 30518
#> 3582 5 2005 27609
#> 3583 5 2010 24760
#> 3584 5 2015 27137
#> 3585 5 1950 15831
#> 3586 5 1955 18579
#> 3587 5 1960 20873
#> 3588 5 1965 30323
#> 3589 5 1970 30538
#> 3590 5 1975 35035
#> 3591 5 1980 39617
#> 3592 5 1985 44869
#> 3593 5 1990 52994
#> 3594 5 1995 57269
#> 3595 5 2000 69629
#> 3596 5 2005 79345
#> 3597 5 2010 83335
#> 3598 5 2015 95794
#> 3599 5 1950 5014762
#> 3600 5 1955 5588552
#> 3601 5 1960 6224162
#> 3602 5 1965 7838238
#> 3603 5 1970 9534427
#> 3604 5 1975 10731103
#> 3605 5 1980 11682243
#> 3606 5 1985 13579674
#> 3607 5 1990 15062735
#> 3608 5 1995 15923774
#> 3609 5 2000 16213416
#> 3610 5 2005 16540918
#> 3611 5 2010 16562802
#> 3612 5 2015 15715950
#> 3613 5 1950 22000
#> 3614 5 1955 26746
#> 3615 5 1960 28945
#> 3616 5 1965 31313
#> 3617 5 1970 31722
#> 3618 5 1975 24762
#> 3619 5 1980 26396
#> 3620 5 1985 21598
#> 3621 5 1990 20960
#> 3622 5 1995 20354
#> 3623 5 2000 20334
#> 3624 5 2005 18951
#> 3625 5 2010 19055
#> 3626 5 2015 18578
#> 3627 5 1950 570367
#> 3628 5 1955 624953
#> 3629 5 1960 787308
#> 3630 5 1965 947325
#> 3631 5 1970 884148
#> 3632 5 1975 731651
#> 3633 5 1980 729556
#> 3634 5 1985 741320
#> 3635 5 1990 807599
#> 3636 5 1995 793657
#> 3637 5 2000 593514
#> 3638 5 2005 457745
#> 3639 5 2010 440119
#> 3640 5 2015 511853
#> 3641 5 1950 544480
#> 3642 5 1955 697258
#> 3643 5 1960 704796
#> 3644 5 1965 756804
#> 3645 5 1970 787755
#> 3646 5 1975 723467
#> 3647 5 1980 658224
#> 3648 5 1985 601177
#> 3649 5 1990 598026
#> 3650 5 1995 607622
#> 3651 5 2000 617925
#> 3652 5 2005 593148
#> 3653 5 2010 602755
#> 3654 5 2015 652524
#> 3655 5 1950 8152
#> 3656 5 1955 10243
#> 3657 5 1960 13639
#> 3658 5 1965 17185
#> 3659 5 1970 19043
#> 3660 5 1975 20814
#> 3661 5 1980 22544
#> 3662 5 1985 23461
#> 3663 5 1990 27559
#> 3664 5 1995 29024
#> 3665 5 2000 34020
#> 3666 5 2005 38097
#> 3667 5 2010 39260
#> 3668 5 2015 37880
#> 3669 5 1950 263506
#> 3670 5 1955 266693
#> 3671 5 1960 297679
#> 3672 5 1965 340570
#> 3673 5 1970 395497
#> 3674 5 1975 459785
#> 3675 5 1980 534350
#> 3676 5 1985 629973
#> 3677 5 1990 741919
#> 3678 5 1995 874423
#> 3679 5 2000 1020027
#> 3680 5 2005 1168113
#> 3681 5 2010 1324820
#> 3682 5 2015 1506859
#> 3683 5 1950 24655
#> 3684 5 1955 28218
#> 3685 5 1960 28605
#> 3686 5 1965 34135
#> 3687 5 1970 41001
#> 3688 5 1975 49608
#> 3689 5 1980 58663
#> 3690 5 1985 67950
#> 3691 5 1990 76701
#> 3692 5 1995 80110
#> 3693 5 2000 80283
#> 3694 5 2005 76646
#> 3695 5 2010 72666
#> 3696 5 2015 72949
#> 3697 5 1950 402364
#> 3698 5 1955 432282
#> 3699 5 1960 519416
#> 3700 5 1965 564958
#> 3701 5 1970 621241
#> 3702 5 1975 690339
#> 3703 5 1980 771410
#> 3704 5 1985 866686
#> 3705 5 1990 941488
#> 3706 5 1995 996457
#> 3707 5 2000 1057899
#> 3708 5 2005 1120202
#> 3709 5 2010 1149102
#> 3710 5 2015 1160118
#> 3711 5 1950 277700
#> 3712 5 1955 372470
#> 3713 5 1960 418383
#> 3714 5 1965 428930
#> 3715 5 1970 456745
#> 3716 5 1975 422566
#> 3717 5 1980 405849
#> 3718 5 1985 377856
#> 3719 5 1990 364895
#> 3720 5 1995 293933
#> 3721 5 2000 257011
#> 3722 5 2005 234976
#> 3723 5 2010 177592
#> 3724 5 2015 172656
#> 3725 5 1950 54772
#> 3726 5 1955 58397
#> 3727 5 1960 81974
#> 3728 5 1965 95449
#> 3729 5 1970 108952
#> 3730 5 1975 127159
#> 3731 5 1980 152093
#> 3732 5 1985 184766
#> 3733 5 1990 212709
#> 3734 5 1995 213349
#> 3735 5 2000 216341
#> 3736 5 2005 217199
#> 3737 5 2010 217054
#> 3738 5 2015 230869
#> 3739 5 1950 7012549
#> 3740 5 1955 8568718
#> 3741 5 1960 10335125
#> 3742 5 1965 11877128
#> 3743 5 1970 13662618
#> 3744 5 1975 14398452
#> 3745 5 1980 15098179
#> 3746 5 1985 16809897
#> 3747 5 1990 18242963
#> 3748 5 1995 17850773
#> 3749 5 2000 17415647
#> 3750 5 2005 17486354
#> 3751 5 2010 16379053
#> 3752 5 2015 15132274
#> 3753 5 1950 5706
#> 3754 5 1955 6711
#> 3755 5 1960 12630
#> 3756 5 1965 16017
#> 3757 5 1970 18792
#> 3758 5 1975 20752
#> 3759 5 1980 25466
#> 3760 5 1985 28627
#> 3761 5 1990 29891
#> 3762 5 1995 32622
#> 3763 5 2000 34873
#> 3764 5 2005 34589
#> 3765 5 2010 33913
#> 3766 5 2015 31436
#> 3767 5 1950 610000
#> 3768 5 1955 710289
#> 3769 5 1960 690424
#> 3770 5 1965 659504
#> 3771 5 1970 634292
#> 3772 5 1975 637666
#> 3773 5 1980 661600
#> 3774 5 1985 675038
#> 3775 5 1990 587834
#> 3776 5 1995 522648
#> 3777 5 2000 412783
#> 3778 5 2005 309999
#> 3779 5 2010 317394
#> 3780 5 2015 354334
#> 3781 5 1950 559833
#> 3782 5 1955 586403
#> 3783 5 1960 630742
#> 3784 5 1965 700567
#> 3785 5 1970 775245
#> 3786 5 1975 874463
#> 3787 5 1980 984087
#> 3788 5 1985 1166694
#> 3789 5 1990 1357685
#> 3790 5 1995 1533844
#> 3791 5 2000 1755537
#> 3792 5 2005 2032790
#> 3793 5 2010 2370683
#> 3794 5 2015 2754713
#> 3795 5 1950 302773
#> 3796 5 1955 326368
#> 3797 5 1960 405286
#> 3798 5 1965 443091
#> 3799 5 1970 504610
#> 3800 5 1975 529581
#> 3801 5 1980 558796
#> 3802 5 1985 688884
#> 3803 5 1990 835686
#> 3804 5 1995 996395
#> 3805 5 2000 1056584
#> 3806 5 2005 1093875
#> 3807 5 2010 1223622
#> 3808 5 2015 1511728
#> 3809 5 1950 17025
#> 3810 5 1955 17805
#> 3811 5 1960 31845
#> 3812 5 1965 35343
#> 3813 5 1970 45534
#> 3814 5 1975 43271
#> 3815 5 1980 42994
#> 3816 5 1985 45493
#> 3817 5 1990 52348
#> 3818 5 1995 61277
#> 3819 5 2000 63321
#> 3820 5 2005 59979
#> 3821 5 2010 56425
#> 3822 5 2015 55278
#> 3823 5 1950 604043
#> 3824 5 1955 685038
#> 3825 5 1960 895993
#> 3826 5 1965 993411
#> 3827 5 1970 1059539
#> 3828 5 1975 1091811
#> 3829 5 1980 979394
#> 3830 5 1985 840200
#> 3831 5 1990 1444306
#> 3832 5 1995 1725839
#> 3833 5 2000 1741404
#> 3834 5 2005 1591853
#> 3835 5 2010 1501593
#> 3836 5 2015 1654154
#> 3837 5 1950 538325
#> 3838 5 1955 590397
#> 3839 5 1960 665250
#> 3840 5 1965 750300
#> 3841 5 1970 884675
#> 3842 5 1975 1047930
#> 3843 5 1980 1244184
#> 3844 5 1985 1483446
#> 3845 5 1990 1788583
#> 3846 5 1995 2053776
#> 3847 5 2000 2253851
#> 3848 5 2005 2476549
#> 3849 5 2010 2854363
#> 3850 5 2015 3275241
#> 3851 5 1950 1316000
#> 3852 5 1955 1735569
#> 3853 5 1960 2035969
#> 3854 5 1965 2261263
#> 3855 5 1970 2289366
#> 3856 5 1975 1943385
#> 3857 5 1980 1813739
#> 3858 5 1985 1818565
#> 3859 5 1990 1923023
#> 3860 5 1995 1993591
#> 3861 5 2000 2038199
#> 3862 5 2005 1865684
#> 3863 5 2010 1805514
#> 3864 5 2015 1948690
#> 3865 5 1950 2198489
#> 3866 5 1955 2383519
#> 3867 5 1960 2807577
#> 3868 5 1965 3058282
#> 3869 5 1970 3639248
#> 3870 5 1975 3704434
#> 3871 5 1980 3661311
#> 3872 5 1985 3476705
#> 3873 5 1990 3737481
#> 3874 5 1995 3905370
#> 3875 5 2000 3878427
#> 3876 5 2005 3790442
#> 3877 5 2010 3666941
#> 3878 5 2015 3609053
#> 3879 5 1950 153313
#> 3880 5 1955 161118
#> 3881 5 1960 182226
#> 3882 5 1965 209411
#> 3883 5 1970 239005
#> 3884 5 1975 272294
#> 3885 5 1980 311530
#> 3886 5 1985 360740
#> 3887 5 1990 417645
#> 3888 5 1995 469849
#> 3889 5 2000 512977
#> 3890 5 2005 569075
#> 3891 5 2010 623805
#> 3892 5 2015 657955
#> 3893 5 1950 5273242
#> 3894 5 1955 6106570
#> 3895 5 1960 7924850
#> 3896 5 1965 9282174
#> 3897 5 1970 10628667
#> 3898 5 1975 12266300
#> 3899 5 1980 14484346
#> 3900 5 1985 14952341
#> 3901 5 1990 15209674
#> 3902 5 1995 15860154
#> 3903 5 2000 16498898
#> 3904 5 2005 16865444
#> 3905 5 2010 16686023
#> 3906 5 2015 16295866
#> 3907 5 1950 1514360
#> 3908 5 1955 1960584
#> 3909 5 1960 3133204
#> 3910 5 1965 4144403
#> 3911 5 1970 4887735
#> 3912 5 1975 4749180
#> 3913 5 1980 5113515
#> 3914 5 1985 5544915
#> 3915 5 1990 6266377
#> 3916 5 1995 6968461
#> 3917 5 2000 6721386
#> 3918 5 2005 5845695
#> 3919 5 2010 5585093
#> 3920 5 2015 6684158
#> 3921 5 1950 303152
#> 3922 5 1955 329130
#> 3923 5 1960 407679
#> 3924 5 1965 451793
#> 3925 5 1970 497479
#> 3926 5 1975 563111
#> 3927 5 1980 655963
#> 3928 5 1985 764824
#> 3929 5 1990 910686
#> 3930 5 1995 1088380
#> 3931 5 2000 1323259
#> 3932 5 2005 1613590
#> 3933 5 2010 1899541
#> 3934 5 2015 2195350
#> 3935 5 1950 6231
#> 3936 5 1955 6671
#> 3937 5 1960 7088
#> 3938 5 1965 8069
#> 3939 5 1970 9249
#> 3940 5 1975 8779
#> 3941 5 1980 7521
#> 3942 5 1985 7007
#> 3943 5 1990 7333
#> 3944 5 1995 8462
#> 3945 5 2000 8478
#> 3946 5 2005 8151
#> 3947 5 2010 8045
#> 3948 5 2015 8077
#> 3949 5 1950 759585
#> 3950 5 1955 843703
#> 3951 5 1960 1030891
#> 3952 5 1965 1140997
#> 3953 5 1970 1237980
#> 3954 5 1975 1303640
#> 3955 5 1980 1259448
#> 3956 5 1985 1235140
#> 3957 5 1990 1311629
#> 3958 5 1995 1424674
#> 3959 5 2000 1396161
#> 3960 5 2005 1318112
#> 3961 5 2010 1254565
#> 3962 5 2015 1244203
#> 3963 5 1950 57397825
#> 3964 5 1955 70863139
#> 3965 5 1960 95559310
#> 3966 5 1965 89103658
#> 3967 5 1970 110133811
#> 3968 5 1975 131282218
#> 3969 5 1980 123743653
#> 3970 5 1985 99473412
#> 3971 5 1990 104921883
#> 3972 5 1995 132095671
#> 3973 5 2000 102553385
#> 3974 5 2005 81331057
#> 3975 5 2010 78976239
#> 3976 5 2015 82367032
#> 3977 5 1950 124801
#> 3978 5 1955 326591
#> 3979 5 1960 419365
#> 3980 5 1965 480055
#> 3981 5 1970 510687
#> 3982 5 1975 396456
#> 3983 5 1980 405340
#> 3984 5 1985 418756
#> 3985 5 1990 408077
#> 3986 5 1995 380836
#> 3987 5 2000 402242
#> 3988 5 2005 332964
#> 3989 5 2010 253868
#> 3990 5 2015 275400
#> 3991 5 1950 15743
#> 3992 5 1955 20876
#> 3993 5 1960 25855
#> 3994 5 1965 30545
#> 3995 5 1970 33219
#> 3996 5 1975 20080
#> 3997 5 1980 19451
#> 3998 5 1985 16500
#> 3999 5 1990 31413
#> 4000 5 1995 36393
#> 4001 5 2000 34189
#> 4002 5 2005 25827
#> 4003 5 2010 18619
#> 4004 5 2015 22930
#> 4005 5 1950 1125924
#> 4006 5 1955 1235278
#> 4007 5 1960 1772299
#> 4008 5 1965 1856894
#> 4009 5 1970 2071601
#> 4010 5 1975 1978508
#> 4011 5 1980 1802574
#> 4012 5 1985 1975083
#> 4013 5 1990 1924559
#> 4014 5 1995 1614725
#> 4015 5 2000 1599628
#> 4016 5 2005 1504530
#> 4017 5 2010 1222861
#> 4018 5 2015 981776
#> 4019 5 1950 1655934
#> 4020 5 1955 2084449
#> 4021 5 1960 2557907
#> 4022 5 1965 2943857
#> 4023 5 1970 3410265
#> 4024 5 1975 3730493
#> 4025 5 1980 3586205
#> 4026 5 1985 3925025
#> 4027 5 1990 4230300
#> 4028 5 1995 4298815
#> 4029 5 2000 4314257
#> 4030 5 2005 4120401
#> 4031 5 2010 4086980
#> 4032 5 2015 3905292
#> 4033 5 1950 19517
#> 4034 5 1955 20729
#> 4035 5 1960 25695
#> 4036 5 1965 29822
#> 4037 5 1970 33491
#> 4038 5 1975 37238
#> 4039 5 1980 44496
#> 4040 5 1985 52245
#> 4041 5 1990 62965
#> 4042 5 1995 72451
#> 4043 5 2000 78760
#> 4044 5 2005 85084
#> 4045 5 2010 93161
#> 4046 5 2015 103505
#> 4047 5 1950 106110
#> 4048 5 1955 118451
#> 4049 5 1960 138115
#> 4050 5 1965 162253
#> 4051 5 1970 193013
#> 4052 5 1975 228823
#> 4053 5 1980 271246
#> 4054 5 1985 315955
#> 4055 5 1990 351451
#> 4056 5 1995 386807
#> 4057 5 2000 432234
#> 4058 5 2005 505325
#> 4059 5 2010 598795
#> 4060 5 2015 713364
#> 4061 5 1950 132212
#> 4062 5 1955 168003
#> 4063 5 1960 185279
#> 4064 5 1965 237558
#> 4065 5 1970 280425
#> 4066 5 1975 286647
#> 4067 5 1980 275528
#> 4068 5 1985 318687
#> 4069 5 1990 368122
#> 4070 5 1995 400544
#> 4071 5 2000 406524
#> 4072 5 2005 394135
#> 4073 5 2010 360786
#> 4074 5 2015 360486
#> 4075 5 1950 362800
#> 4076 5 1955 390175
#> 4077 5 1960 484466
#> 4078 5 1965 604119
#> 4079 5 1970 758759
#> 4080 5 1975 954508
#> 4081 5 1980 1220237
#> 4082 5 1985 1547402
#> 4083 5 1990 1822644
#> 4084 5 1995 2092788
#> 4085 5 2000 2384237
#> 4086 5 2005 2709481
#> 4087 5 2010 2954860
#> 4088 5 2015 3238695
#> 4089 5 1950 298000
#> 4090 5 1955 384205
#> 4091 5 1960 397308
#> 4092 5 1965 371155
#> 4093 5 1970 343737
#> 4094 5 1975 314656
#> 4095 5 1980 328362
#> 4096 5 1985 326433
#> 4097 5 1990 323844
#> 4098 5 1995 288838
#> 4099 5 2000 240718
#> 4100 5 2005 242128
#> 4101 5 2010 207446
#> 4102 5 2015 217494
#> 4103 5 1950 715720
#> 4104 5 1955 752394
#> 4105 5 1960 869592
#> 4106 5 1965 864901
#> 4107 5 1970 1206291
#> 4108 5 1975 1205185
#> 4109 5 1980 1121149
#> 4110 5 1985 784060
#> 4111 5 1990 777293
#> 4112 5 1995 885974
#> 4113 5 2000 802944
#> 4114 5 2005 744070
#> 4115 5 2010 649182
#> 4116 5 2015 601717
#> 4117 5 1950 11698
#> 4118 5 1955 14917
#> 4119 5 1960 17605
#> 4120 5 1965 19782
#> 4121 5 1970 18597
#> 4122 5 1975 18976
#> 4123 5 1980 15434
#> 4124 5 1985 13387
#> 4125 5 1990 13128
#> 4126 5 1995 13557
#> 4127 5 2000 11792
#> 4128 5 2005 8632
#> 4129 5 2010 9834
#> 4130 5 2015 9548
#> 4131 5 1950 52959
#> 4132 5 1955 64846
#> 4133 5 1960 68023
#> 4134 5 1965 65732
#> 4135 5 1970 63905
#> 4136 5 1975 59568
#> 4137 5 1980 54078
#> 4138 5 1985 55690
#> 4139 5 1990 66309
#> 4140 5 1995 69535
#> 4141 5 2000 72774
#> 4142 5 2005 69408
#> 4143 5 2010 64103
#> 4144 5 2015 65386
#> 4145 5 1950 724164
#> 4146 5 1955 888501
#> 4147 5 1960 855881
#> 4148 5 1965 724649
#> 4149 5 1970 681104
#> 4150 5 1975 682905
#> 4151 5 1980 844769
#> 4152 5 1985 892675
#> 4153 5 1990 690306
#> 4154 5 1995 647703
#> 4155 5 2000 594129
#> 4156 5 2005 448687
#> 4157 5 2010 479664
#> 4158 5 2015 571190
#> 4159 5 1950 1553322
#> 4160 5 1955 1408040
#> 4161 5 1960 989690
#> 4162 5 1965 1875037
#> 4163 5 1970 1724044
#> 4164 5 1975 2383760
#> 4165 5 1980 2348718
#> 4166 5 1985 1671740
#> 4167 5 1990 1890765
#> 4168 5 1995 1929617
#> 4169 5 2000 2040192
#> 4170 5 2005 1972861
#> 4171 5 2010 1892868
#> 4172 5 2015 1733335
#> 4173 5 1950 1708248
#> 4174 5 1955 1911401
#> 4175 5 1960 2086984
#> 4176 5 1965 2410604
#> 4177 5 1970 2824259
#> 4178 5 1975 3274129
#> 4179 5 1980 3788099
#> 4180 5 1985 4319221
#> 4181 5 1990 5055206
#> 4182 5 1995 6107861
#> 4183 5 2000 6963963
#> 4184 5 2005 8089761
#> 4185 5 2010 9704282
#> 4186 5 2015 11651530
#> 4187 5 1950 385906
#> 4188 5 1955 419343
#> 4189 5 1960 370913
#> 4190 5 1965 368228
#> 4191 5 1970 392389
#> 4192 5 1975 388703
#> 4193 5 1980 363892
#> 4194 5 1985 313433
#> 4195 5 1990 267914
#> 4196 5 1995 297241
#> 4197 5 2000 344540
#> 4198 5 2005 341447
#> 4199 5 2010 328140
#> 4200 5 2015 332982
#> 4201 5 1950 9176
#> 4202 5 1955 11016
#> 4203 5 1960 10669
#> 4204 5 1965 15560
#> 4205 5 1970 23529
#> 4206 5 1975 34085
#> 4207 5 1980 52748
#> 4208 5 1985 65722
#> 4209 5 1990 82886
#> 4210 5 1995 96225
#> 4211 5 2000 96458
#> 4212 5 2005 98796
#> 4213 5 2010 99694
#> 4214 5 2015 97013
#> 4215 5 1950 331150
#> 4216 5 1955 404686
#> 4217 5 1960 525698
#> 4218 5 1965 637350
#> 4219 5 1970 724145
#> 4220 5 1975 783582
#> 4221 5 1980 830737
#> 4222 5 1985 872262
#> 4223 5 1990 936484
#> 4224 5 1995 978406
#> 4225 5 2000 1017944
#> 4226 5 2005 1012874
#> 4227 5 2010 1046918
#> 4228 5 2015 1059300
#> 4229 5 1950 41927617
#> 4230 5 1955 50730443
#> 4231 5 1960 55131541
#> 4232 5 1965 57064769
#> 4233 5 1970 56237691
#> 4234 5 1975 52844194
#> 4235 5 1980 51136295
#> 4236 5 1985 49757791
#> 4237 5 1990 49614463
#> 4238 5 1995 48677118
#> 4239 5 2000 41752951
#> 4240 5 2005 37264018
#> 4241 5 2010 37012308
#> 4242 5 2015 39534213
#> 4243 5 1950 9054131
#> 4244 5 1955 10385533
#> 4245 5 1960 11970524
#> 4246 5 1965 13883290
#> 4247 5 1970 16241654
#> 4248 5 1975 18876793
#> 4249 5 1980 22141972
#> 4250 5 1985 25982230
#> 4251 5 1990 30250221
#> 4252 5 1995 34276304
#> 4253 5 2000 38958011
#> 4254 5 2005 45302914
#> 4255 5 2010 51543755
#> 4256 5 2015 57617129
#> 4257 5 1950 72424927
#> 4258 5 1955 87780336
#> 4259 5 1960 111772781
#> 4260 5 1965 105881297
#> 4261 5 1970 127483409
#> 4262 5 1975 149744479
#> 4263 5 1980 143184554
#> 4264 5 1985 116384980
#> 4265 5 1990 120924579
#> 4266 5 1995 146263653
#> 4267 5 2000 116527148
#> 4268 5 2005 94521673
#> 4269 5 2010 90766412
#> 4270 5 2015 93506219
#> 4271 5 1950 16322206
#> 4272 5 1955 21756836
#> 4273 5 1960 26275262
#> 4274 5 1965 26654044
#> 4275 5 1970 23458458
#> 4276 5 1975 20760457
#> 4277 5 1980 22221196
#> 4278 5 1985 23610071
#> 4279 5 1990 24110504
#> 4280 5 1995 23410894
#> 4281 5 2000 17606125
#> 4282 5 2005 14064047
#> 4283 5 2010 13914592
#> 4284 5 2015 15777184
#> 4285 5 1950 455990
#> 4286 5 1955 507390
#> 4287 5 1960 666863
#> 4288 5 1965 767939
#> 4289 5 1970 879243
#> 4290 5 1975 1007373
#> 4291 5 1980 1115496
#> 4292 5 1985 1198567
#> 4293 5 1990 1294852
#> 4294 5 1995 1404536
#> 4295 5 2000 1468512
#> 4296 5 2005 1509072
#> 4297 5 2010 1510253
#> 4298 5 2015 1567988
#> 4299 5 1950 2225359
#> 4300 5 1955 3208860
#> 4301 5 1960 3579668
#> 4302 5 1965 4267936
#> 4303 5 1970 4786853
#> 4304 5 1975 5345247
#> 4305 5 1980 5803825
#> 4306 5 1985 6685181
#> 4307 5 1990 7855527
#> 4308 5 1995 8891659
#> 4309 5 2000 8425465
#> 4310 5 2005 8209049
#> 4311 5 2010 8940151
#> 4312 5 2015 9797332
#> 4313 5 1950 304878
#> 4314 5 1955 332260
#> 4315 5 1960 406633
#> 4316 5 1965 478430
#> 4317 5 1970 554693
#> 4318 5 1975 612585
#> 4319 5 1980 670079
#> 4320 5 1985 711338
#> 4321 5 1990 699533
#> 4322 5 1995 705340
#> 4323 5 2000 743372
#> 4324 5 2005 730191
#> 4325 5 2010 633627
#> 4326 5 2015 590203
#> 4327 5 1950 24669
#> 4328 5 1955 25833
#> 4329 5 1960 32277
#> 4330 5 1965 34671
#> 4331 5 1970 37872
#> 4332 5 1975 34562
#> 4333 5 1980 29598
#> 4334 5 1985 45046
#> 4335 5 1990 63092
#> 4336 5 1995 69419
#> 4337 5 2000 79401
#> 4338 5 2005 97230
#> 4339 5 2010 119234
#> 4340 5 2015 145449
#> 4341 5 1950 164599
#> 4342 5 1955 181978
#> 4343 5 1960 184644
#> 4344 5 1965 220733
#> 4345 5 1970 258197
#> 4346 5 1975 300346
#> 4347 5 1980 343092
#> 4348 5 1985 396397
#> 4349 5 1990 464743
#> 4350 5 1995 512556
#> 4351 5 2000 496733
#> 4352 5 2005 510582
#> 4353 5 2010 608436
#> 4354 5 2015 703510
#> 4355 5 1950 87230
#> 4356 5 1955 93980
#> 4357 5 1960 95089
#> 4358 5 1965 97954
#> 4359 5 1970 100956
#> 4360 5 1975 98824
#> 4361 5 1980 109446
#> 4362 5 1985 110202
#> 4363 5 1990 116983
#> 4364 5 1995 109189
#> 4365 5 2000 80004
#> 4366 5 2005 60365
#> 4367 5 2010 64842
#> 4368 5 2015 77000
#> 4369 5 1950 2531613
#> 4370 5 1955 2837223
#> 4371 5 1960 3043466
#> 4372 5 1965 3432235
#> 4373 5 1970 4033582
#> 4374 5 1975 4688509
#> 4375 5 1980 5170766
#> 4376 5 1985 6092707
#> 4377 5 1990 7242815
#> 4378 5 1995 8709213
#> 4379 5 2000 10053438
#> 4380 5 2005 12012699
#> 4381 5 2010 13142620
#> 4382 5 2015 13660925
#> 4383 5 1950 44000
#> 4384 5 1955 52086
#> 4385 5 1960 61460
#> 4386 5 1965 74042
#> 4387 5 1970 76286
#> 4388 5 1975 73637
#> 4389 5 1980 78668
#> 4390 5 1985 93181
#> 4391 5 1990 95595
#> 4392 5 1995 92451
#> 4393 5 2000 96359
#> 4394 5 2005 81552
#> 4395 5 2010 81203
#> 4396 5 2015 88026
#> 4397 5 1950 361441
#> 4398 5 1955 494770
#> 4399 5 1960 444271
#> 4400 5 1965 406505
#> 4401 5 1970 384633
#> 4402 5 1975 350673
#> 4403 5 1980 300064
#> 4404 5 1985 324517
#> 4405 5 1990 327432
#> 4406 5 1995 315710
#> 4407 5 2000 328350
#> 4408 5 2005 296753
#> 4409 5 2010 287411
#> 4410 5 2015 306725
#> 4411 5 1950 2664456
#> 4412 5 1955 4007467
#> 4413 5 1960 3989018
#> 4414 5 1965 4093905
#> 4415 5 1970 4277033
#> 4416 5 1975 4194677
#> 4417 5 1980 4112648
#> 4418 5 1985 3661334
#> 4419 5 1990 3833492
#> 4420 5 1995 3818473
#> 4421 5 2000 3658105
#> 4422 5 2005 3740181
#> 4423 5 2010 3886175
#> 4424 5 2015 3977798
#> 4425 5 1950 2264
#> 4426 5 1955 3500
#> 4427 5 1960 4203
#> 4428 5 1965 5191
#> 4429 5 1970 6165
#> 4430 5 1975 7345
#> 4431 5 1980 7903
#> 4432 5 1985 9734
#> 4433 5 1990 12547
#> 4434 5 1995 15649
#> 4435 5 2000 20063
#> 4436 5 2005 24176
#> 4437 5 2010 27774
#> 4438 5 2015 31011
#> 4439 5 1950 8455
#> 4440 5 1955 8528
#> 4441 5 1960 12035
#> 4442 5 1965 13962
#> 4443 5 1970 16565
#> 4444 5 1975 19730
#> 4445 5 1980 19527
#> 4446 5 1985 20333
#> 4447 5 1990 22775
#> 4448 5 1995 26706
#> 4449 5 2000 24312
#> 4450 5 2005 23675
#> 4451 5 2010 22654
#> 4452 5 2015 21545
#> 4453 5 1950 42976
#> 4454 5 1955 46647
#> 4455 5 1960 49607
#> 4456 5 1965 54500
#> 4457 5 1970 64511
#> 4458 5 1975 79246
#> 4459 5 1980 93484
#> 4460 5 1985 110455
#> 4461 5 1990 131269
#> 4462 5 1995 151318
#> 4463 5 2000 167140
#> 4464 5 2005 181242
#> 4465 5 2010 196832
#> 4466 5 2015 227371
#> 4467 5 1950 35077
#> 4468 5 1955 36945
#> 4469 5 1960 42456
#> 4470 5 1965 50118
#> 4471 5 1970 56337
#> 4472 5 1975 72962
#> 4473 5 1980 85004
#> 4474 5 1985 110178
#> 4475 5 1990 137319
#> 4476 5 1995 159583
#> 4477 5 2000 182178
#> 4478 5 2005 218664
#> 4479 5 2010 258316
#> 4480 5 2015 298048
#> 4481 5 1950 266488
#> 4482 5 1955 290316
#> 4483 5 1960 392798
#> 4484 5 1965 473725
#> 4485 5 1970 502617
#> 4486 5 1975 447954
#> 4487 5 1980 415073
#> 4488 5 1985 423700
#> 4489 5 1990 455242
#> 4490 5 1995 436598
#> 4491 5 2000 365559
#> 4492 5 2005 266550
#> 4493 5 2010 229806
#> 4494 5 2015 249963
#> 4495 5 1950 5140815
#> 4496 5 1955 4561816
#> 4497 5 1960 5289874
#> 4498 5 1965 5777289
#> 4499 5 1970 6424506
#> 4500 5 1975 6165154
#> 4501 5 1980 4398200
#> 4502 5 1985 3923896
#> 4503 5 1990 4260231
#> 4504 5 1995 4631194
#> 4505 5 2000 4169588
#> 4506 5 2005 3972734
#> 4507 5 2010 3616908
#> 4508 5 2015 3507779
#> 4509 5 1950 717811
#> 4510 5 1955 852558
#> 4511 5 1960 913096
#> 4512 5 1965 1103184
#> 4513 5 1970 1278677
#> 4514 5 1975 1489463
#> 4515 5 1980 1621661
#> 4516 5 1985 1871368
#> 4517 5 1990 2115015
#> 4518 5 1995 2374795
#> 4519 5 2000 2602342
#> 4520 5 2005 2911534
#> 4521 5 2010 3166697
#> 4522 5 2015 3548080
#> 4523 5 1950 688000
#> 4524 5 1955 769758
#> 4525 5 1960 720515
#> 4526 5 1965 774360
#> 4527 5 1970 739189
#> 4528 5 1975 764068
#> 4529 5 1980 740759
#> 4530 5 1985 759190
#> 4531 5 1990 692577
#> 4532 5 1995 582074
#> 4533 5 2000 561734
#> 4534 5 2005 562734
#> 4535 5 2010 552633
#> 4536 5 2015 579011
#> 4537 5 1950 12055
#> 4538 5 1955 13314
#> 4539 5 1960 14395
#> 4540 5 1965 17232
#> 4541 5 1970 17435
#> 4542 5 1975 11992
#> 4543 5 1980 12009
#> 4544 5 1985 11592
#> 4545 5 1990 12881
#> 4546 5 1995 14004
#> 4547 5 2000 11592
#> 4548 5 2005 10207
#> 4549 5 2010 9029
#> 4550 5 2015 9460
#> 4551 5 1950 24987
#> 4552 5 1955 33763
#> 4553 5 1960 39154
#> 4554 5 1965 44359
#> 4555 5 1970 45630
#> 4556 5 1975 46841
#> 4557 5 1980 36093
#> 4558 5 1985 40272
#> 4559 5 1990 32912
#> 4560 5 1995 33902
#> 4561 5 2000 34923
#> 4562 5 2005 35409
#> 4563 5 2010 33725
#> 4564 5 2015 28592
#> 4565 5 1950 4472
#> 4566 5 1955 6686
#> 4567 5 1960 8824
#> 4568 5 1965 10158
#> 4569 5 1970 11440
#> 4570 5 1975 11799
#> 4571 5 1980 12248
#> 4572 5 1985 12550
#> 4573 5 1990 12663
#> 4574 5 1995 14811
#> 4575 5 2000 16128
#> 4576 5 2005 15792
#> 4577 5 2010 14832
#> 4578 5 2015 13534
#> 4579 5 1950 418596
#> 4580 5 1955 495442
#> 4581 5 1960 650653
#> 4582 5 1965 740127
#> 4583 5 1970 830723
#> 4584 5 1975 953441
#> 4585 5 1980 1103043
#> 4586 5 1985 1275311
#> 4587 5 1990 1429415
#> 4588 5 1995 1525430
#> 4589 5 2000 1715765
#> 4590 5 2005 1857225
#> 4591 5 2010 1969502
#> 4592 5 2015 1934367
#> 4593 5 1950 368574
#> 4594 5 1955 388691
#> 4595 5 1960 480534
#> 4596 5 1965 518162
#> 4597 5 1970 556221
#> 4598 5 1975 567424
#> 4599 5 1980 599173
#> 4600 5 1985 701534
#> 4601 5 1990 855759
#> 4602 5 1995 1130783
#> 4603 5 2000 1276357
#> 4604 5 2005 1398982
#> 4605 5 2010 1548900
#> 4606 5 2015 1713359
#> 4607 5 1950 65459
#> 4608 5 1955 70553
#> 4609 5 1960 83925
#> 4610 5 1965 84709
#> 4611 5 1970 90959
#> 4612 5 1975 100747
#> 4613 5 1980 111593
#> 4614 5 1985 131090
#> 4615 5 1990 155421
#> 4616 5 1995 169547
#> 4617 5 2000 185211
#> 4618 5 2005 195844
#> 4619 5 2010 212990
#> 4620 5 2015 243799
#> 4621 5 1950 49575
#> 4622 5 1955 67029
#> 4623 5 1960 89567
#> 4624 5 1965 107008
#> 4625 5 1970 112994
#> 4626 5 1975 115591
#> 4627 5 1980 112585
#> 4628 5 1985 96442
#> 4629 5 1990 89980
#> 4630 5 1995 87067
#> 4631 5 2000 97181
#> 4632 5 2005 93326
#> 4633 5 2010 81617
#> 4634 5 2015 73416
#> 4635 5 1950 419131
#> 4636 5 1955 425678
#> 4637 5 1960 513829
#> 4638 5 1965 581228
#> 4639 5 1970 656939
#> 4640 5 1975 700328
#> 4641 5 1980 739870
#> 4642 5 1985 868617
#> 4643 5 1990 1056860
#> 4644 5 1995 1112525
#> 4645 5 2000 1143212
#> 4646 5 2005 1177336
#> 4647 5 2010 1188141
#> 4648 5 2015 1212463
#> 4649 5 1950 59665155
#> 4650 5 1955 70271364
#> 4651 5 1960 73352643
#> 4652 5 1965 76825488
#> 4653 5 1970 78765504
#> 4654 5 1975 75843927
#> 4655 5 1980 73645915
#> 4656 5 1985 70021990
#> 4657 5 1990 70097100
#> 4658 5 1995 69672559
#> 4659 5 2000 69657244
#> 4660 5 2005 65917342
#> 4661 5 2010 65298503
#> 4662 5 2015 66832462
#> 4663 5 1950 202280
#> 4664 5 1955 244592
#> 4665 5 1960 310835
#> 4666 5 1965 362421
#> 4667 5 1970 418925
#> 4668 5 1975 494903
#> 4669 5 1980 569528
#> 4670 5 1985 667689
#> 4671 5 1990 760041
#> 4672 5 1995 840360
#> 4673 5 2000 931962
#> 4674 5 2005 989839
#> 4675 5 2010 1017607
#> 4676 5 2015 989334
#> 4677 5 1950 769295
#> 4678 5 1955 803297
#> 4679 5 1960 928213
#> 4680 5 1965 813523
#> 4681 5 1970 633319
#> 4682 5 1975 709387
#> 4683 5 1980 779831
#> 4684 5 1985 871536
#> 4685 5 1990 636361
#> 4686 5 1995 622972
#> 4687 5 2000 596031
#> 4688 5 2005 493745
#> 4689 5 2010 482639
#> 4690 5 2015 482967
#> 4691 5 1950 14187
#> 4692 5 1955 17931
#> 4693 5 1960 20359
#> 4694 5 1965 22810
#> 4695 5 1970 22931
#> 4696 5 1975 21196
#> 4697 5 1980 20950
#> 4698 5 1985 20887
#> 4699 5 1990 21193
#> 4700 5 1995 21389
#> 4701 5 2000 22984
#> 4702 5 2005 21247
#> 4703 5 2010 21398
#> 4704 5 2015 23187
#> 4705 5 1950 44774600
#> 4706 5 1955 49070406
#> 4707 5 1960 60977414
#> 4708 5 1965 67298258
#> 4709 5 1970 74217444
#> 4710 5 1975 81292192
#> 4711 5 1980 89922258
#> 4712 5 1985 99034150
#> 4713 5 1990 110807113
#> 4714 5 1995 117804689
#> 4715 5 2000 121411409
#> 4716 5 2005 125145379
#> 4717 5 2010 127614082
#> 4718 5 2015 126977109
#> 4719 5 1950 8844570
#> 4720 5 1955 9085650
#> 4721 5 1960 11161535
#> 4722 5 1965 14129409
#> 4723 5 1970 16420140
#> 4724 5 1975 18582262
#> 4725 5 1980 20214289
#> 4726 5 1985 21527767
#> 4727 5 1990 22462759
#> 4728 5 1995 22010249
#> 4729 5 2000 21692808
#> 4730 5 2005 22770069
#> 4731 5 2010 23767593
#> 4732 5 2015 23651376
#> 4733 5 1950 1854899
#> 4734 5 1955 2300047
#> 4735 5 1960 3204395
#> 4736 5 1965 3671154
#> 4737 5 1970 4142645
#> 4738 5 1975 4634858
#> 4739 5 1980 5355600
#> 4740 5 1985 6978069
#> 4741 5 1990 8892615
#> 4742 5 1995 9060303
#> 4743 5 2000 7638916
#> 4744 5 2005 5586684
#> 4745 5 2010 5495820
#> 4746 5 2015 6418009
#> 4747 5 1950 710921
#> 4748 5 1955 736103
#> 4749 5 1960 1116803
#> 4750 5 1965 1124362
#> 4751 5 1970 1403743
#> 4752 5 1975 1859803
#> 4753 5 1980 2116012
#> 4754 5 1985 2394693
#> 4755 5 1990 2642948
#> 4756 5 1995 2964958
#> 4757 5 2000 3324248
#> 4758 5 2005 3804461
#> 4759 5 2010 4194323
#> 4760 5 2015 4867404
#> 4761 5 1950 270742
#> 4762 5 1955 299892
#> 4763 5 1960 293457
#> 4764 5 1965 287271
#> 4765 5 1970 312699
#> 4766 5 1975 310449
#> 4767 5 1980 361568
#> 4768 5 1985 363950
#> 4769 5 1990 342426
#> 4770 5 1995 287207
#> 4771 5 2000 256197
#> 4772 5 2005 274070
#> 4773 5 2010 316517
#> 4774 5 2015 355680
#> 4775 5 1950 113739
#> 4776 5 1955 205814
#> 4777 5 1960 272776
#> 4778 5 1965 288544
#> 4779 5 1970 304923
#> 4780 5 1975 346523
#> 4781 5 1980 426209
#> 4782 5 1985 457672
#> 4783 5 1990 461510
#> 4784 5 1995 510458
#> 4785 5 2000 547605
#> 4786 5 2005 619351
#> 4787 5 2010 666242
#> 4788 5 2015 744565
#> 4789 5 1950 3858010
#> 4790 5 1955 4328396
#> 4791 5 1960 4051188
#> 4792 5 1965 4149270
#> 4793 5 1970 4550196
#> 4794 5 1975 4518904
#> 4795 5 1980 4257571
#> 4796 5 1985 3563857
#> 4797 5 1990 3023980
#> 4798 5 1995 2815394
#> 4799 5 2000 2739340
#> 4800 5 2005 2712790
#> 4801 5 2010 2793286
#> 4802 5 2015 2810317
#> 4803 5 1950 166802
#> 4804 5 1955 183178
#> 4805 5 1960 220522
#> 4806 5 1965 254521
#> 4807 5 1970 301842
#> 4808 5 1975 308643
#> 4809 5 1980 289608
#> 4810 5 1985 274729
#> 4811 5 1990 286679
#> 4812 5 1995 282723
#> 4813 5 2000 288087
#> 4814 5 2005 285862
#> 4815 5 2010 248219
#> 4816 5 2015 223855
#> 4817 5 1950 9448307
#> 4818 5 1955 10976188
#> 4819 5 1960 9433270
#> 4820 5 1965 7932371
#> 4821 5 1970 8244104
#> 4822 5 1975 9010924
#> 4823 5 1980 10148582
#> 4824 5 1985 8603152
#> 4825 5 1990 7626716
#> 4826 5 1995 6771132
#> 4827 5 2000 6131158
#> 4828 5 2005 5950126
#> 4829 5 2010 5665521
#> 4830 5 2015 5559950
#> 4831 5 1950 71192
#> 4832 5 1955 97714
#> 4833 5 1960 121498
#> 4834 5 1965 160067
#> 4835 5 1970 252612
#> 4836 5 1975 315486
#> 4837 5 1980 399496
#> 4838 5 1985 448486
#> 4839 5 1990 557033
#> 4840 5 1995 603869
#> 4841 5 2000 660883
#> 4842 5 2005 723614
#> 4843 5 2010 874944
#> 4844 5 2015 1101521
#> 4845 5 1950 572474
#> 4846 5 1955 798562
#> 4847 5 1960 1208375
#> 4848 5 1965 1597385
#> 4849 5 1970 1756565
#> 4850 5 1975 1540649
#> 4851 5 1980 1609468
#> 4852 5 1985 1651210
#> 4853 5 1990 1727854
#> 4854 5 1995 1729957
#> 4855 5 2000 1420008
#> 4856 5 2005 1151041
#> 4857 5 2010 1192824
#> 4858 5 2015 1622692
#> 4859 5 1950 706742
#> 4860 5 1955 947410
#> 4861 5 1960 1235389
#> 4862 5 1965 1485809
#> 4863 5 1970 1787314
#> 4864 5 1975 2158304
#> 4865 5 1980 2660072
#> 4866 5 1985 3227264
#> 4867 5 1990 3834777
#> 4868 5 1995 4309760
#> 4869 5 2000 4512793
#> 4870 5 2005 5265265
#> 4871 5 2010 5943177
#> 4872 5 2015 6631593
#> 4873 5 1950 4016
#> 4874 5 1955 5048
#> 4875 5 1960 6003
#> 4876 5 1965 7175
#> 4877 5 1970 7902
#> 4878 5 1975 7590
#> 4879 5 1980 7102
#> 4880 5 1985 8310
#> 4881 5 1990 9634
#> 4882 5 1995 10902
#> 4883 5 2000 11257
#> 4884 5 2005 12497
#> 4885 5 2010 10900
#> 4886 5 2015 13723
#> 4887 5 1950 18100
#> 4888 5 1955 19390
#> 4889 5 1960 31109
#> 4890 5 1965 57713
#> 4891 5 1970 110125
#> 4892 5 1975 150702
#> 4893 5 1980 190899
#> 4894 5 1985 209788
#> 4895 5 1990 263870
#> 4896 5 1995 170032
#> 4897 5 2000 187635
#> 4898 5 2005 205372
#> 4899 5 2010 216428
#> 4900 5 2015 279571
#> 4901 5 1950 132002
#> 4902 5 1955 164484
#> 4903 5 1960 263688
#> 4904 5 1965 365974
#> 4905 5 1970 434157
#> 4906 5 1975 425066
#> 4907 5 1980 437199
#> 4908 5 1985 467423
#> 4909 5 1990 545112
#> 4910 5 1995 599951
#> 4911 5 2000 585256
#> 4912 5 2005 506899
#> 4913 5 2010 494541
#> 4914 5 2015 598468
#> 4915 5 1950 21800548
#> 4916 5 1955 25634722
#> 4917 5 1960 31295732
#> 4918 5 1965 35806050
#> 4919 5 1970 41055763
#> 4920 5 1975 44606390
#> 4921 5 1980 48044120
#> 4922 5 1985 51642147
#> 4923 5 1990 54499931
#> 4924 5 1995 55904116
#> 4925 5 2000 56456752
#> 4926 5 2005 56506335
#> 4927 5 2010 55132238
#> 4928 5 2015 53466434
#> 4929 5 1950 216339
#> 4930 5 1955 251789
#> 4931 5 1960 295408
#> 4932 5 1965 326771
#> 4933 5 1970 366839
#> 4934 5 1975 420310
#> 4935 5 1980 478656
#> 4936 5 1985 533887
#> 4937 5 1990 608782
#> 4938 5 1995 719725
#> 4939 5 2000 807891
#> 4940 5 2005 770661
#> 4941 5 2010 732523
#> 4942 5 2015 757572
#> 4943 5 1950 162530
#> 4944 5 1955 146201
#> 4945 5 1960 155824
#> 4946 5 1965 171282
#> 4947 5 1970 176998
#> 4948 5 1975 161940
#> 4949 5 1980 178490
#> 4950 5 1985 173729
#> 4951 5 1990 194346
#> 4952 5 1995 193567
#> 4953 5 2000 142405
#> 4954 5 2005 91879
#> 4955 5 2010 97847
#> 4956 5 2015 106791
#> 4957 5 1950 25584083
#> 4958 5 1955 28515478
#> 4959 5 1960 32945123
#> 4960 5 1965 38074171
#> 4961 5 1970 44059842
#> 4962 5 1975 50332884
#> 4963 5 1980 56939130
#> 4964 5 1985 65392958
#> 4965 5 1990 75176095
#> 4966 5 1995 84558575
#> 4967 5 2000 93893995
#> 4968 5 2005 105204481
#> 4969 5 2010 116968518
#> 4970 5 2015 127647582
#> 4971 5 1950 139740
#> 4972 5 1955 175275
#> 4973 5 1960 264908
#> 4974 5 1965 305116
#> 4975 5 1970 325514
#> 4976 5 1975 338596
#> 4977 5 1980 337993
#> 4978 5 1985 328933
#> 4979 5 1990 310817
#> 4980 5 1995 313421
#> 4981 5 2000 310492
#> 4982 5 2005 375258
#> 4983 5 2010 346589
#> 4984 5 2015 438544
#> 4985 5 1950 95870
#> 4986 5 1955 109381
#> 4987 5 1960 118189
#> 4988 5 1965 132696
#> 4989 5 1970 148674
#> 4990 5 1975 167068
#> 4991 5 1980 191047
#> 4992 5 1985 219069
#> 4993 5 1990 240083
#> 4994 5 1995 248462
#> 4995 5 2000 256589
#> 4996 5 2005 262109
#> 4997 5 2010 248155
#> 4998 5 2015 250782
#> 4999 5 1950 202505762
#> 5000 5 1955 234001751
#> 5001 5 1960 294954906
#> 5002 5 1965 320023064
#> 5003 5 1970 371951580
#> 5004 5 1975 421342698
#> 5005 5 1980 444388690
#> 5006 5 1985 454423914
#> 5007 5 1990 499411358
#> 5008 5 1995 552918617
#> 5009 5 2000 539350102
#> 5010 5 2005 533543819
#> 5011 5 2010 548966950
#> 5012 5 2015 574684517
#> 5013 5 1950 143841469
#> 5014 5 1955 161555867
#> 5015 5 1960 197178077
#> 5016 5 1965 228551912
#> 5017 5 1970 259202262
#> 5018 5 1975 287665436
#> 5019 5 1980 318417672
#> 5020 5 1985 352540163
#> 5021 5 1990 392125426
#> 5022 5 1995 418790992
#> 5023 5 2000 434760658
#> 5024 5 2005 450349441
#> 5025 5 2010 468495363
#> 5026 5 2015 491037379
#> 5027 5 1950 176921679
#> 5028 5 1955 205486273
#> 5029 5 1960 262009783
#> 5030 5 1965 281948893
#> 5031 5 1970 327891738
#> 5032 5 1975 371009814
#> 5033 5 1980 387449560
#> 5034 5 1985 389030956
#> 5035 5 1990 424235263
#> 5036 5 1995 468360042
#> 5037 5 2000 445456107
#> 5038 5 2005 428339338
#> 5039 5 2010 431998432
#> 5040 5 2015 447036935
#> 5041 5 1950 128970
#> 5042 5 1955 127474
#> 5043 5 1960 149403
#> 5044 5 1965 172269
#> 5045 5 1970 198402
#> 5046 5 1975 230989
#> 5047 5 1980 274490
#> 5048 5 1985 322745
#> 5049 5 1990 311869
#> 5050 5 1995 298561
#> 5051 5 2000 397991
#> 5052 5 2005 466420
#> 5053 5 2010 574750
#> 5054 5 2015 637096
#> 5055 5 1950 141237
#> 5056 5 1955 156628
#> 5057 5 1960 196827
#> 5058 5 1965 239950
#> 5059 5 1970 314287
#> 5060 5 1975 423961
#> 5061 5 1980 523905
#> 5062 5 1985 590449
#> 5063 5 1990 618389
#> 5064 5 1995 642260
#> 5065 5 2000 600553
#> 5066 5 2005 568587
#> 5067 5 2010 570111
#> 5068 5 2015 596464
#> 5069 5 1950 232528
#> 5070 5 1955 213840
#> 5071 5 1960 245736
#> 5072 5 1965 281692
#> 5073 5 1970 292628
#> 5074 5 1975 269828
#> 5075 5 1980 270316
#> 5076 5 1985 261992
#> 5077 5 1990 280876
#> 5078 5 1995 278229
#> 5079 5 2000 242155
#> 5080 5 2005 177997
#> 5081 5 2010 140644
#> 5082 5 2015 138819
#> 5083 5 1950 17301639
#> 5084 5 1955 18701400
#> 5085 5 1960 20702465
#> 5086 5 1965 24270345
#> 5087 5 1970 27455033
#> 5088 5 1975 31927358
#> 5089 5 1980 36325629
#> 5090 5 1985 40807064
#> 5091 5 1990 47258114
#> 5092 5 1995 54205091
#> 5093 5 2000 61978416
#> 5094 5 2005 71556403
#> 5095 5 2010 81499949
#> 5096 5 2015 91494434
#> 5097 5 1950 93047099
#> 5098 5 1955 103132675
#> 5099 5 1960 127372644
#> 5100 5 1965 146386088
#> 5101 5 1970 165046993
#> 5102 5 1975 182320922
#> 5103 5 1980 202462124
#> 5104 5 1985 225643363
#> 5105 5 1990 252461166
#> 5106 5 1995 270381667
#> 5107 5 2000 278785657
#> 5108 5 2005 287463388
#> 5109 5 2010 297706215
#> 5110 5 2015 308773660
#> 5111 5 1950 20000
#> 5112 5 1955 19000
#> 5113 5 1960 22254
#> 5114 5 1965 24951
#> 5115 5 1970 25971
#> 5116 5 1975 24957
#> 5117 5 1980 21782
#> 5118 5 1985 20504
#> 5119 5 1990 21883
#> 5120 5 1995 24941
#> 5121 5 2000 28394
#> 5122 5 2005 29024
#> 5123 5 2010 29924
#> 5124 5 2015 30100
#> 5125 5 1950 485428
#> 5126 5 1955 546535
#> 5127 5 1960 722590
#> 5128 5 1965 836189
#> 5129 5 1970 961834
#> 5130 5 1975 1117740
#> 5131 5 1980 1307524
#> 5132 5 1985 1522410
#> 5133 5 1990 1715432
#> 5134 5 1995 1973648
#> 5135 5 2000 2339497
#> 5136 5 2005 2761456
#> 5137 5 2010 3065066
#> 5138 5 2015 3356200
#> 5139 5 1950 426251
#> 5140 5 1955 492371
#> 5141 5 1960 491904
#> 5142 5 1965 567686
#> 5143 5 1970 666148
#> 5144 5 1975 788437
#> 5145 5 1980 931196
#> 5146 5 1985 1107117
#> 5147 5 1990 1365568
#> 5148 5 1995 1515499
#> 5149 5 2000 1750540
#> 5150 5 2005 2010119
#> 5151 5 2010 2293648
#> 5152 5 2015 2677857
#> 5153 5 1950 752100
#> 5154 5 1955 994645
#> 5155 5 1960 1260109
#> 5156 5 1965 1450561
#> 5157 5 1970 1679728
#> 5158 5 1975 1684011
#> 5159 5 1980 1797568
#> 5160 5 1985 1969061
#> 5161 5 1990 2243079
#> 5162 5 1995 2452864
#> 5163 5 2000 2590417
#> 5164 5 2005 2699453
#> 5165 5 2010 2630265
#> 5166 5 2015 2485629
#> 5167 5 1950 10475
#> 5168 5 1955 8884
#> 5169 5 1960 10084
#> 5170 5 1965 14141
#> 5171 5 1970 17628
#> 5172 5 1975 20517
#> 5173 5 1980 23405
#> 5174 5 1985 27168
#> 5175 5 1990 36515
#> 5176 5 1995 41825
#> 5177 5 2000 39523
#> 5178 5 2005 32295
#> 5179 5 2010 28979
#> 5180 5 2015 32150
#> 5181 5 1950 593763
#> 5182 5 1955 602621
#> 5183 5 1960 689029
#> 5184 5 1965 724557
#> 5185 5 1970 780262
#> 5186 5 1975 873310
#> 5187 5 1980 995958
#> 5188 5 1985 1132603
#> 5189 5 1990 1275767
#> 5190 5 1995 1429208
#> 5191 5 2000 1643730
#> 5192 5 2005 1922524
#> 5193 5 2010 2337482
#> 5194 5 2015 2804648
#> 5195 5 1950 30000
#> 5196 5 1955 46400
#> 5197 5 1960 42682
#> 5198 5 1965 35701
#> 5199 5 1970 31679
#> 5200 5 1975 24524
#> 5201 5 1980 25991
#> 5202 5 1985 28973
#> 5203 5 1990 28626
#> 5204 5 1995 27822
#> 5205 5 2000 26289
#> 5206 5 2005 24752
#> 5207 5 2010 19975
#> 5208 5 2015 20146
#> 5209 5 1950 25000
#> 5210 5 1955 31969
#> 5211 5 1960 41554
#> 5212 5 1965 46559
#> 5213 5 1970 44754
#> 5214 5 1975 45016
#> 5215 5 1980 32055
#> 5216 5 1985 30362
#> 5217 5 1990 28777
#> 5218 5 1995 29879
#> 5219 5 2000 29504
#> 5220 5 2005 27909
#> 5221 5 2010 26353
#> 5222 5 2015 25580
#> 5223 5 1950 92170
#> 5224 5 1955 102789
#> 5225 5 1960 121552
#> 5226 5 1965 147983
#> 5227 5 1970 172309
#> 5228 5 1975 198016
#> 5229 5 1980 227600
#> 5230 5 1985 260558
#> 5231 5 1990 298447
#> 5232 5 1995 340307
#> 5233 5 2000 384349
#> 5234 5 2005 434256
#> 5235 5 2010 489853
#> 5236 5 2015 555723
#> 5237 5 1950 72705
#> 5238 5 1955 84717
#> 5239 5 1960 102487
#> 5240 5 1965 116572
#> 5241 5 1970 132020
#> 5242 5 1975 117551
#> 5243 5 1980 115011
#> 5244 5 1985 106786
#> 5245 5 1990 102196
#> 5246 5 1995 97409
#> 5247 5 2000 108939
#> 5248 5 2005 98365
#> 5249 5 2010 94833
#> 5250 5 2015 80644
#> 5251 5 1950 1566
#> 5252 5 1955 2243
#> 5253 5 1960 3292
#> 5254 5 1965 4320
#> 5255 5 1970 5580
#> 5256 5 1975 7277
#> 5257 5 1980 8591
#> 5258 5 1985 11410
#> 5259 5 1990 14935
#> 5260 5 1995 19566
#> 5261 5 2000 20907
#> 5262 5 2005 24992
#> 5263 5 2010 29684
#> 5264 5 2015 34950
#> 5265 5 1950 283754
#> 5266 5 1955 317750
#> 5267 5 1960 380869
#> 5268 5 1965 433948
#> 5269 5 1970 484042
#> 5270 5 1975 543506
#> 5271 5 1980 627406
#> 5272 5 1985 719432
#> 5273 5 1990 788274
#> 5274 5 1995 835930
#> 5275 5 2000 923585
#> 5276 5 2005 1027216
#> 5277 5 2010 1110030
#> 5278 5 2015 1191271
#> 5279 5 1950 3902927
#> 5280 5 1955 4523539
#> 5281 5 1960 5909540
#> 5282 5 1965 6910489
#> 5283 5 1970 7930086
#> 5284 5 1975 9224780
#> 5285 5 1980 11065888
#> 5286 5 1985 11091325
#> 5287 5 1990 10984498
#> 5288 5 1995 11376035
#> 5289 5 2000 11676313
#> 5290 5 2005 11865750
#> 5291 5 2010 11690945
#> 5292 5 2015 11398759
#> 5293 5 1950 17111
#> 5294 5 1955 21420
#> 5295 5 1960 27496
#> 5296 5 1965 32075
#> 5297 5 1970 36107
#> 5298 5 1975 38004
#> 5299 5 1980 41005
#> 5300 5 1985 44990
#> 5301 5 1990 50864
#> 5302 5 1995 56749
#> 5303 5 2000 55862
#> 5304 5 2005 57738
#> 5305 5 2010 53356
#> 5306 5 2015 51966
#> 5307 5 1950 4265
#> 5308 5 1955 4770
#> 5309 5 1960 7193
#> 5310 5 1965 8075
#> 5311 5 1970 9216
#> 5312 5 1975 10177
#> 5313 5 1980 11765
#> 5314 5 1985 12562
#> 5315 5 1990 14669
#> 5316 5 1995 15523
#> 5317 5 2000 14130
#> 5318 5 2005 13882
#> 5319 5 2010 12693
#> 5320 5 2015 11555
#> 5321 5 1950 3453837
#> 5322 5 1955 3807410
#> 5323 5 1960 4421221
#> 5324 5 1965 4995576
#> 5325 5 1970 5750969
#> 5326 5 1975 6637266
#> 5327 5 1980 7751649
#> 5328 5 1985 9067912
#> 5329 5 1990 10605258
#> 5330 5 1995 12556402
#> 5331 5 2000 14272938
#> 5332 5 2005 16523888
#> 5333 5 2010 19637764
#> 5334 5 2015 23271503
#> 5335 5 1950 192807097
#> 5336 5 1955 226731862
#> 5337 5 1960 287935535
#> 5338 5 1965 308314546
#> 5339 5 1970 354135908
#> 5340 5 1975 396530966
#> 5341 5 1980 415809882
#> 5342 5 1985 421898769
#> 5343 5 1990 460603645
#> 5344 5 1995 507448053
#> 5345 5 2000 479953889
#> 5346 5 2005 462327917
#> 5347 5 2010 468687844
#> 5348 5 2015 485904514
#> 5349 5 1950 81208
#> 5350 5 1955 85783
#> 5351 5 1960 115060
#> 5352 5 1965 143799
#> 5353 5 1970 195175
#> 5354 5 1975 218354
#> 5355 5 1980 247501
#> 5356 5 1985 262659
#> 5357 5 1990 291197
#> 5358 5 1995 324612
#> 5359 5 2000 278465
#> 5360 5 2005 231777
#> 5361 5 2010 219908
#> 5362 5 2015 278576
#> 5363 5 1950 46497
#> 5364 5 1955 47968
#> 5365 5 1960 58102
#> 5366 5 1965 63192
#> 5367 5 1970 59341
#> 5368 5 1975 54047
#> 5369 5 1980 53171
#> 5370 5 1985 51281
#> 5371 5 1990 53750
#> 5372 5 1995 48445
#> 5373 5 2000 43579
#> 5374 5 2005 40808
#> 5375 5 2010 39425
#> 5376 5 2015 39432
#> 5377 5 1950 67364343
#> 5378 5 1955 81827439
#> 5379 5 1960 87189650
#> 5380 5 1965 89562274
#> 5381 5 1970 88600680
#> 5382 5 1975 83162050
#> 5383 5 1980 81566635
#> 5384 5 1985 78487863
#> 5385 5 1990 78734986
#> 5386 5 1995 78615079
#> 5387 5 2000 72460712
#> 5388 5 2005 66492172
#> 5389 5 2010 66762627
#> 5390 5 2015 69791096
#> 5391 5 1950 1101689
#> 5392 5 1955 1270401
#> 5393 5 1960 1858403
#> 5394 5 1965 2231789
#> 5395 5 1970 2555177
#> 5396 5 1975 2698094
#> 5397 5 1980 2812432
#> 5398 5 1985 3086488
#> 5399 5 1990 3412062
#> 5400 5 1995 3340143
#> 5401 5 2000 3286562
#> 5402 5 2005 3033163
#> 5403 5 2010 3043813
#> 5404 5 2015 3146276
#> 5405 5 1950 812211
#> 5406 5 1955 877666
#> 5407 5 1960 1011375
#> 5408 5 1965 1149987
#> 5409 5 1970 1286692
#> 5410 5 1975 1453176
#> 5411 5 1980 1697858
#> 5412 5 1985 1900113
#> 5413 5 1990 2056795
#> 5414 5 1995 2260910
#> 5415 5 2000 2635780
#> 5416 5 2005 3119074
#> 5417 5 2010 3669969
#> 5418 5 2015 4196562
#> 5419 5 1950 1793522
#> 5420 5 1955 2147248
#> 5421 5 1960 2936369
#> 5422 5 1965 3264607
#> 5423 5 1970 3605363
#> 5424 5 1975 4093289
#> 5425 5 1980 4518523
#> 5426 5 1985 4907487
#> 5427 5 1990 5246910
#> 5428 5 1995 5020032
#> 5429 5 2000 4784846
#> 5430 5 2005 4939142
#> 5431 5 2010 5224538
#> 5432 5 2015 4858492
#> 5433 5 1950 15108635
#> 5434 5 1955 18948698
#> 5435 5 1960 21339006
#> 5436 5 1965 23137259
#> 5437 5 1970 22559632
#> 5438 5 1975 19755168
#> 5439 5 1980 18689513
#> 5440 5 1985 18692781
#> 5441 5 1990 19977446
#> 5442 5 1995 21583731
#> 5443 5 2000 22915626
#> 5444 5 2005 21656156
#> 5445 5 2010 22443340
#> 5446 5 2015 22860191
#> 5447 5 1950 60723
#> 5448 5 1955 69967
#> 5449 5 1960 82183
#> 5450 5 1965 94374
#> 5451 5 1970 109386
#> 5452 5 1975 128818
#> 5453 5 1980 157804
#> 5454 5 1985 182321
#> 5455 5 1990 201150
#> 5456 5 1995 231082
#> 5457 5 2000 261885
#> 5458 5 2005 270709
#> 5459 5 2010 273746
#> 5460 5 2015 290671
#> 5461 5 1950 1067722
#> 5462 5 1955 1087730
#> 5463 5 1960 1374991
#> 5464 5 1965 1459328
#> 5465 5 1970 1574448
#> 5466 5 1975 1761711
#> 5467 5 1980 1999178
#> 5468 5 1985 2304194
#> 5469 5 1990 2627016
#> 5470 5 1995 2948464
#> 5471 5 2000 3275150
#> 5472 5 2005 3514145
#> 5473 5 2010 3412126
#> 5474 5 2015 3150236
#> 5475 5 1950 921999
#> 5476 5 1955 1181619
#> 5477 5 1960 1105717
#> 5478 5 1965 1146277
#> 5479 5 1970 1222095
#> 5480 5 1975 1203532
#> 5481 5 1980 1053765
#> 5482 5 1985 888519
#> 5483 5 1990 888736
#> 5484 5 1995 953932
#> 5485 5 2000 996855
#> 5486 5 2005 988455
#> 5487 5 2010 1004618
#> 5488 5 2015 936070
#> 5489 5 1950 7912
#> 5490 5 1955 8101
#> 5491 5 1960 9695
#> 5492 5 1965 11257
#> 5493 5 1970 12843
#> 5494 5 1975 15748
#> 5495 5 1980 19771
#> 5496 5 1985 17979
#> 5497 5 1990 17544
#> 5498 5 1995 18428
#> 5499 5 2000 21171
#> 5500 5 2005 21539
#> 5501 5 2010 20100
#> 5502 5 2015 20014
#> 5503 5 1950 177000
#> 5504 5 1955 232013
#> 5505 5 1960 254078
#> 5506 5 1965 293152
#> 5507 5 1970 301926
#> 5508 5 1975 303892
#> 5509 5 1980 295492
#> 5510 5 1985 256205
#> 5511 5 1990 253793
#> 5512 5 1995 286060
#> 5513 5 2000 301649
#> 5514 5 2005 292336
#> 5515 5 2010 286922
#> 5516 5 2015 315632
#> 5517 5 1950 185353
#> 5518 5 1955 195037
#> 5519 5 1960 285721
#> 5520 5 1965 343182
#> 5521 5 1970 371274
#> 5522 5 1975 423231
#> 5523 5 1980 504512
#> 5524 5 1985 579669
#> 5525 5 1990 646673
#> 5526 5 1995 675660
#> 5527 5 2000 671452
#> 5528 5 2005 649540
#> 5529 5 2010 622756
#> 5530 5 2015 617262
#> 5531 5 1950 415336
#> 5532 5 1955 441200
#> 5533 5 1960 516099
#> 5534 5 1965 601236
#> 5535 5 1970 697961
#> 5536 5 1975 795523
#> 5537 5 1980 897916
#> 5538 5 1985 1051445
#> 5539 5 1990 1239495
#> 5540 5 1995 1425081
#> 5541 5 2000 1727695
#> 5542 5 2005 2163922
#> 5543 5 2010 2675425
#> 5544 5 2015 3272751
#> 5545 5 1950 5081931
#> 5546 5 1955 5497675
#> 5547 5 1960 5938430
#> 5548 5 1965 6762933
#> 5549 5 1970 7702797
#> 5550 5 1975 8754784
#> 5551 5 1980 10448644
#> 5552 5 1985 12317750
#> 5553 5 1990 14066072
#> 5554 5 1995 15521801
#> 5555 5 2000 17217572
#> 5556 5 2005 19698212
#> 5557 5 2010 23021728
#> 5558 5 2015 26417736
#> 5559 5 1950 5902929
#> 5560 5 1955 7356442
#> 5561 5 1960 8992469
#> 5562 5 1965 10632634
#> 5563 5 1970 12232464
#> 5564 5 1975 13677682
#> 5565 5 1980 15195976
#> 5566 5 1985 17428761
#> 5567 5 1990 19797398
#> 5568 5 1995 21355332
#> 5569 5 2000 20939194
#> 5570 5 2005 20188216
#> 5571 5 2010 21266056
#> 5572 5 2015 23624143
#> 5573 5 1950 6000362
#> 5574 5 1955 6923736
#> 5575 5 1960 6234470
#> 5576 5 1965 6564490
#> 5577 5 1970 7295325
#> 5578 5 1975 7121081
#> 5579 5 1980 6352645
#> 5580 5 1985 5709318
#> 5581 5 1990 5925293
#> 5582 5 1995 6209100
#> 5583 5 2000 6151424
#> 5584 5 2005 5619824
#> 5585 5 2010 5587842
#> 5586 5 2015 6185234
#> 5587 5 1950 261332
#> 5588 5 1955 317922
#> 5589 5 1960 302641
#> 5590 5 1965 307929
#> 5591 5 1970 311428
#> 5592 5 1975 331403
#> 5593 5 1980 312098
#> 5594 5 1985 263563
#> 5595 5 1990 257590
#> 5596 5 1995 284851
#> 5597 5 2000 308711
#> 5598 5 2005 306628
#> 5599 5 2010 297573
#> 5600 5 2015 318376
#> 5601 5 1950 1216777
#> 5602 5 1955 1550013
#> 5603 5 1960 1742835
#> 5604 5 1965 1951359
#> 5605 5 1970 2147133
#> 5606 5 1975 2203410
#> 5607 5 1980 2325854
#> 5608 5 1985 2263667
#> 5609 5 1990 2424064
#> 5610 5 1995 2549479
#> 5611 5 2000 2715537
#> 5612 5 2005 2779110
#> 5613 5 2010 2874704
#> 5614 5 2015 3149706
#> 5615 5 1950 61788
#> 5616 5 1955 67537
#> 5617 5 1960 75737
#> 5618 5 1965 91111
#> 5619 5 1970 108674
#> 5620 5 1975 130112
#> 5621 5 1980 161437
#> 5622 5 1985 225171
#> 5623 5 1990 278886
#> 5624 5 1995 295618
#> 5625 5 2000 287484
#> 5626 5 2005 266990
#> 5627 5 2010 240775
#> 5628 5 2015 302280
#> 5629 5 1950 5037706
#> 5630 5 1955 5169184
#> 5631 5 1960 5394169
#> 5632 5 1965 6718148
#> 5633 5 1970 8114855
#> 5634 5 1975 9481355
#> 5635 5 1980 10900324
#> 5636 5 1985 12813666
#> 5637 5 1990 15152518
#> 5638 5 1995 17881600
#> 5639 5 2000 19037446
#> 5640 5 2005 19697306
#> 5641 5 2010 19693114
#> 5642 5 2015 22055740
#> 5643 5 1950 118844
#> 5644 5 1955 137454
#> 5645 5 1960 162550
#> 5646 5 1965 192782
#> 5647 5 1970 223498
#> 5648 5 1975 249899
#> 5649 5 1980 273224
#> 5650 5 1985 284861
#> 5651 5 1990 293833
#> 5652 5 1995 307761
#> 5653 5 2000 319490
#> 5654 5 2005 340667
#> 5655 5 2010 351540
#> 5656 5 2015 367575
#> 5657 5 1950 211323
#> 5658 5 1955 235253
#> 5659 5 1960 283828
#> 5660 5 1965 317845
#> 5661 5 1970 359900
#> 5662 5 1975 410412
#> 5663 5 1980 474677
#> 5664 5 1985 545499
#> 5665 5 1990 607243
#> 5666 5 1995 650052
#> 5667 5 2000 722992
#> 5668 5 2005 832130
#> 5669 5 2010 908495
#> 5670 5 2015 971107
#> 5671 5 1950 229027
#> 5672 5 1955 262962
#> 5673 5 1960 311474
#> 5674 5 1965 343418
#> 5675 5 1970 382286
#> 5676 5 1975 420038
#> 5677 5 1980 433745
#> 5678 5 1985 501438
#> 5679 5 1990 587593
#> 5680 5 1995 647022
#> 5681 5 2000 678438
#> 5682 5 2005 699959
#> 5683 5 2010 662526
#> 5684 5 2015 669633
#> 5685 5 1950 1015627
#> 5686 5 1955 1182038
#> 5687 5 1960 1433746
#> 5688 5 1965 1675196
#> 5689 5 1970 1964241
#> 5690 5 1975 2207221
#> 5691 5 1980 2404511
#> 5692 5 1985 2667293
#> 5693 5 1990 2762011
#> 5694 5 1995 2938228
#> 5695 5 2000 3003902
#> 5696 5 2005 2889744
#> 5697 5 2010 2865682
#> 5698 5 2015 2903954
#> 5699 5 1950 2640045
#> 5700 5 1955 3139646
#> 5701 5 1960 4268584
#> 5702 5 1965 4850210
#> 5703 5 1970 5473408
#> 5704 5 1975 6077826
#> 5705 5 1980 6728024
#> 5706 5 1985 7555901
#> 5707 5 1990 8402257
#> 5708 5 1995 9349072
#> 5709 5 2000 9970447
#> 5710 5 2005 10651204
#> 5711 5 2010 10499599
#> 5712 5 2015 10889296
#> 5713 5 1950 2022000
#> 5714 5 1955 2907684
#> 5715 5 1960 3478882
#> 5716 5 1965 3557881
#> 5717 5 1970 2789895
#> 5718 5 1975 2532668
#> 5719 5 1980 2807808
#> 5720 5 1985 3235380
#> 5721 5 1990 3373370
#> 5722 5 1995 2932985
#> 5723 5 2000 2555060
#> 5724 5 2005 2041752
#> 5725 5 2010 1793094
#> 5726 5 2015 2002508
#> 5727 5 1950 36128
#> 5728 5 1955 38733
#> 5729 5 1960 48637
#> 5730 5 1965 57461
#> 5731 5 1970 67731
#> 5732 5 1975 70136
#> 5733 5 1980 65198
#> 5734 5 1985 65106
#> 5735 5 1990 68565
#> 5736 5 1995 73702
#> 5737 5 2000 75113
#> 5738 5 2005 72284
#> 5739 5 2010 69860
#> 5740 5 2015 69727
#> 5741 5 1950 790190
#> 5742 5 1955 857674
#> 5743 5 1960 853832
#> 5744 5 1965 848847
#> 5745 5 1970 860291
#> 5746 5 1975 827048
#> 5747 5 1980 860318
#> 5748 5 1985 801634
#> 5749 5 1990 674987
#> 5750 5 1995 569728
#> 5751 5 2000 537156
#> 5752 5 2005 532207
#> 5753 5 2010 533420
#> 5754 5 2015 492972
#> 5755 5 1950 318999
#> 5756 5 1955 317114
#> 5757 5 1960 327683
#> 5758 5 1965 326410
#> 5759 5 1970 337900
#> 5760 5 1975 328456
#> 5761 5 1980 329196
#> 5762 5 1985 328868
#> 5763 5 1990 315605
#> 5764 5 1995 299866
#> 5765 5 2000 304496
#> 5766 5 2005 280005
#> 5767 5 2010 253230
#> 5768 5 2015 230719
#> 5769 5 1950 3377
#> 5770 5 1955 4533
#> 5771 5 1960 6421
#> 5772 5 1965 9027
#> 5773 5 1970 12657
#> 5774 5 1975 17326
#> 5775 5 1980 23543
#> 5776 5 1985 34258
#> 5777 5 1990 48745
#> 5778 5 1995 47989
#> 5779 5 2000 51132
#> 5780 5 2005 61733
#> 5781 5 2010 78875
#> 5782 5 2015 117447
#> 5783 5 1950 2677797
#> 5784 5 1955 2864441
#> 5785 5 1960 3457932
#> 5786 5 1965 4458938
#> 5787 5 1970 4570768
#> 5788 5 1975 4454179
#> 5789 5 1980 4468735
#> 5790 5 1985 3963678
#> 5791 5 1990 3829969
#> 5792 5 1995 3110667
#> 5793 5 2000 3487889
#> 5794 5 2005 3172531
#> 5795 5 2010 2516528
#> 5796 5 2015 2287220
#> 5797 5 1950 204864
#> 5798 5 1955 210951
#> 5799 5 1960 334100
#> 5800 5 1965 407247
#> 5801 5 1970 399311
#> 5802 5 1975 339354
#> 5803 5 1980 360336
#> 5804 5 1985 376336
#> 5805 5 1990 415196
#> 5806 5 1995 418200
#> 5807 5 2000 325513
#> 5808 5 2005 240380
#> 5809 5 2010 209775
#> 5810 5 2015 216044
#> 5811 5 1950 31113
#> 5812 5 1955 40019
#> 5813 5 1960 51540
#> 5814 5 1965 57114
#> 5815 5 1970 72213
#> 5816 5 1975 72625
#> 5817 5 1980 62783
#> 5818 5 1985 60372
#> 5819 5 1990 60473
#> 5820 5 1995 67906
#> 5821 5 2000 70017
#> 5822 5 2005 68756
#> 5823 5 2010 72108
#> 5824 5 2015 68908
#> 5825 5 1950 1302560
#> 5826 5 1955 1609146
#> 5827 5 1960 1910831
#> 5828 5 1965 1846365
#> 5829 5 1970 1461914
#> 5830 5 1975 2014064
#> 5831 5 1980 2002986
#> 5832 5 1985 2028994
#> 5833 5 1990 1774775
#> 5834 5 1995 1753633
#> 5835 5 2000 1242301
#> 5836 5 2005 1111609
#> 5837 5 2010 1052700
#> 5838 5 2015 1048623
#> 5839 5 1950 6930349
#> 5840 5 1955 10648679
#> 5841 5 1960 12568686
#> 5842 5 1965 13214056
#> 5843 5 1970 11640831
#> 5844 5 1975 9300380
#> 5845 5 1980 9961133
#> 5846 5 1985 10596015
#> 5847 5 1990 11613423
#> 5848 5 1995 11807179
#> 5849 5 2000 8180380
#> 5850 5 2005 6520381
#> 5851 5 2010 6920482
#> 5852 5 2015 7937853
#> 5853 5 1950 278008
#> 5854 5 1955 372847
#> 5855 5 1960 451263
#> 5856 5 1965 528172
#> 5857 5 1970 571648
#> 5858 5 1975 646141
#> 5859 5 1980 781547
#> 5860 5 1985 985025
#> 5861 5 1990 1195360
#> 5862 5 1995 917365
#> 5863 5 2000 1078680
#> 5864 5 2005 1242447
#> 5865 5 2010 1411711
#> 5866 5 2015 1611151
#> 5867 5 1950 10744
#> 5868 5 1955 11874
#> 5869 5 1960 12869
#> 5870 5 1965 15322
#> 5871 5 1970 18513
#> 5872 5 1975 18032
#> 5873 5 1980 17713
#> 5874 5 1985 17832
#> 5875 5 1990 17106
#> 5876 5 1995 17488
#> 5877 5 2000 17309
#> 5878 5 2005 15647
#> 5879 5 2010 13095
#> 5880 5 2015 10935
#> 5881 5 1950 10835
#> 5882 5 1955 12422
#> 5883 5 1960 13532
#> 5884 5 1965 14636
#> 5885 5 1970 15364
#> 5886 5 1975 15222
#> 5887 5 1980 14976
#> 5888 5 1985 13829
#> 5889 5 1990 13941
#> 5890 5 1995 12390
#> 5891 5 2000 11470
#> 5892 5 2005 10490
#> 5893 5 2010 9369
#> 5894 5 2015 9091
#> 5895 5 1950 12743
#> 5896 5 1955 14101
#> 5897 5 1960 18575
#> 5898 5 1965 21654
#> 5899 5 1970 25055
#> 5900 5 1975 25661
#> 5901 5 1980 24030
#> 5902 5 1985 22650
#> 5903 5 1990 21461
#> 5904 5 1995 22779
#> 5905 5 2000 24513
#> 5906 5 2005 23678
#> 5907 5 2010 23362
#> 5908 5 2015 25251
#> 5909 5 1950 6259
#> 5910 5 1955 6107
#> 5911 5 1960 6685
#> 5912 5 1965 8410
#> 5913 5 1970 10810
#> 5914 5 1975 12718
#> 5915 5 1980 13745
#> 5916 5 1985 17975
#> 5917 5 1990 17228
#> 5918 5 1995 19318
#> 5919 5 2000 19961
#> 5920 5 2005 22471
#> 5921 5 2010 26260
#> 5922 5 2015 28442
#> 5923 5 1950 416905
#> 5924 5 1955 491701
#> 5925 5 1960 563806
#> 5926 5 1965 680904
#> 5927 5 1970 837767
#> 5928 5 1975 1055400
#> 5929 5 1980 1379491
#> 5930 5 1985 1788417
#> 5931 5 1990 2354219
#> 5932 5 1995 2649108
#> 5933 5 2000 2746221
#> 5934 5 2005 2653274
#> 5935 5 2010 2676450
#> 5936 5 2015 2764909
#> 5937 5 1950 326793
#> 5938 5 1955 363953
#> 5939 5 1960 455732
#> 5940 5 1965 522002
#> 5941 5 1970 597237
#> 5942 5 1975 697189
#> 5943 5 1980 840100
#> 5944 5 1985 996936
#> 5945 5 1990 1180243
#> 5946 5 1995 1318765
#> 5947 5 2000 1455681
#> 5948 5 2005 1604563
#> 5949 5 2010 1823380
#> 5950 5 2015 2146858
#> 5951 5 1950 524702
#> 5952 5 1955 735323
#> 5953 5 1960 817560
#> 5954 5 1965 693382
#> 5955 5 1970 668096
#> 5956 5 1975 685128
#> 5957 5 1980 735965
#> 5958 5 1985 775625
#> 5959 5 1990 758241
#> 5960 5 1995 743531
#> 5961 5 2000 651078
#> 5962 5 2005 565165
#> 5963 5 2010 526960
#> 5964 5 2015 483187
#> 5965 5 1950 3595
#> 5966 5 1955 3806
#> 5967 5 1960 5733
#> 5968 5 1965 6347
#> 5969 5 1970 7641
#> 5970 5 1975 8081
#> 5971 5 1980 8409
#> 5972 5 1985 8093
#> 5973 5 1990 8644
#> 5974 5 1995 8021
#> 5975 5 2000 7838
#> 5976 5 2005 6942
#> 5977 5 2010 6589
#> 5978 5 2015 6778
#> 5979 5 1950 253891
#> 5980 5 1955 268830
#> 5981 5 1960 278559
#> 5982 5 1965 301677
#> 5983 5 1970 342181
#> 5984 5 1975 396728
#> 5985 5 1980 472828
#> 5986 5 1985 546787
#> 5987 5 1990 632340
#> 5988 5 1995 619152
#> 5989 5 2000 655236
#> 5990 5 2005 822564
#> 5991 5 2010 940002
#> 5992 5 2015 1041983
#> 5993 5 1950 131799
#> 5994 5 1955 167587
#> 5995 5 1960 233752
#> 5996 5 1965 297053
#> 5997 5 1970 279391
#> 5998 5 1975 234571
#> 5999 5 1980 223084
#> 6000 5 1985 205325
#> 6001 5 1990 211509
#> 6002 5 1995 246900
#> 6003 5 2000 302084
#> 6004 5 2005 296007
#> 6005 5 2010 290005
#> 6006 5 2015 281465
#> 6007 5 1950 318984
#> 6008 5 1955 381119
#> 6009 5 1960 464355
#> 6010 5 1965 449809
#> 6011 5 1970 411753
#> 6012 5 1975 384501
#> 6013 5 1980 440584
#> 6014 5 1985 482014
#> 6015 5 1990 447944
#> 6016 5 1995 412689
#> 6017 5 2000 362999
#> 6018 5 2005 286481
#> 6019 5 2010 260800
#> 6020 5 2015 282858
#> 6021 5 1950 126699
#> 6022 5 1955 147677
#> 6023 5 1960 150626
#> 6024 5 1965 136592
#> 6025 5 1970 136370
#> 6026 5 1975 134907
#> 6027 5 1980 142824
#> 6028 5 1985 151667
#> 6029 5 1990 141035
#> 6030 5 1995 123079
#> 6031 5 2000 100724
#> 6032 5 2005 90779
#> 6033 5 2010 89873
#> 6034 5 2015 104866
#> 6035 5 1950 13401
#> 6036 5 1955 14106
#> 6037 5 1960 16391
#> 6038 5 1965 19557
#> 6039 5 1970 22133
#> 6040 5 1975 28951
#> 6041 5 1980 37261
#> 6042 5 1985 43418
#> 6043 5 1990 46080
#> 6044 5 1995 51203
#> 6045 5 2000 57529
#> 6046 5 2005 63967
#> 6047 5 2010 71495
#> 6048 5 2015 78658
#> 6049 5 1950 286549
#> 6050 5 1955 331697
#> 6051 5 1960 375937
#> 6052 5 1965 421562
#> 6053 5 1970 477143
#> 6054 5 1975 545966
#> 6055 5 1980 910034
#> 6056 5 1985 946552
#> 6057 5 1990 1026731
#> 6058 5 1995 1118519
#> 6059 5 2000 1366481
#> 6060 5 2005 1667808
#> 6061 5 2010 1863972
#> 6062 5 2015 2140000
#> 6063 5 1950 1704000
#> 6064 5 1955 1909629
#> 6065 5 1960 2442643
#> 6066 5 1965 2773264
#> 6067 5 1970 3134518
#> 6068 5 1975 3541404
#> 6069 5 1980 4070651
#> 6070 5 1985 4553808
#> 6071 5 1990 4986615
#> 6072 5 1995 5143968
#> 6073 5 2000 5077025
#> 6074 5 2005 5105982
#> 6075 5 2010 5190310
#> 6076 5 2015 5379653
#> 6077 5 1950 14328817
#> 6078 5 1955 17144633
#> 6079 5 1960 20563305
#> 6080 5 1965 23465594
#> 6081 5 1970 26787848
#> 6082 5 1975 28635656
#> 6083 5 1980 29898463
#> 6084 5 1985 33213101
#> 6085 5 1990 35552776
#> 6086 5 1995 36138592
#> 6087 5 2000 36079427
#> 6088 5 2005 35850449
#> 6089 5 2010 34779274
#> 6090 5 2015 33561515
#> 6091 5 1950 361378
#> 6092 5 1955 381918
#> 6093 5 1960 366371
#> 6094 5 1965 434142
#> 6095 5 1970 507578
#> 6096 5 1975 590571
#> 6097 5 1980 674193
#> 6098 5 1985 779123
#> 6099 5 1990 809547
#> 6100 5 1995 794892
#> 6101 5 2000 985008
#> 6102 5 2005 1193257
#> 6103 5 2010 1432279
#> 6104 5 2015 1655428
#> 6105 5 1950 61285107
#> 6106 5 1955 67525341
#> 6107 5 1960 82870808
#> 6108 5 1965 94117472
#> 6109 5 1970 105770744
#> 6110 5 1975 116310219
#> 6111 5 1980 128770902
#> 6112 5 1985 144034538
#> 6113 5 1990 162761613
#> 6114 5 1995 175122524
#> 6115 5 2000 179231428
#> 6116 5 2005 182022323
#> 6117 5 2010 184853132
#> 6118 5 2015 187997007
#> 6119 5 1950 20222004
#> 6120 5 1955 22667955
#> 6121 5 1960 29344752
#> 6122 5 1965 35633338
#> 6123 5 1970 40777488
#> 6124 5 1975 45364085
#> 6125 5 1980 48878379
#> 6126 5 1985 51577718
#> 6127 5 1990 54952548
#> 6128 5 1995 56095693
#> 6129 5 2000 56293510
#> 6130 5 2005 55722663
#> 6131 5 2010 55726744
#> 6132 5 2015 56146623
#> 6133 5 1950 1952290
#> 6134 5 1955 2192011
#> 6135 5 1960 2776073
#> 6136 5 1965 3154386
#> 6137 5 1970 3569340
#> 6138 5 1975 4044915
#> 6139 5 1980 4668214
#> 6140 5 1985 5252294
#> 6141 5 1990 5777098
#> 6142 5 1995 5993691
#> 6143 5 2000 5970792
#> 6144 5 2005 6009456
#> 6145 5 2010 6083298
#> 6146 5 2015 6317821
#> 6147 5 1950 59770747
#> 6148 5 1955 65564757
#> 6149 5 1960 79737604
#> 6150 5 1965 89973069
#> 6151 5 1970 100883009
#> 6152 5 1975 111561039
#> 6153 5 1980 123657387
#> 6154 5 1985 138489623
#> 6155 5 1990 156495236
#> 6156 5 1995 168154063
#> 6157 5 2000 172510042
#> 6158 5 2005 176176628
#> 6159 5 2010 179268039
#> 6160 5 2015 181312849
#> 6161 5 1950 9381379
#> 6162 5 1955 10647423
#> 6163 5 1960 10611596
#> 6164 5 1965 11014296
#> 6165 5 1970 11596566
#> 6166 5 1975 11521328
#> 6167 5 1980 11392213
#> 6168 5 1985 10547474
#> 6169 5 1990 9147217
#> 6170 5 1995 8141025
#> 6171 5 2000 7617949
#> 6172 5 2005 7418149
#> 6173 5 2010 7579748
#> 6174 5 2015 7657030
#> 6175 5 1950 2439831
#> 6176 5 1955 2615997
#> 6177 5 1960 2679767
#> 6178 5 1965 3047525
#> 6179 5 1970 3250501
#> 6180 5 1975 3262829
#> 6181 5 1980 3324426
#> 6182 5 1985 3192857
#> 6183 5 1990 2547382
#> 6184 5 1995 2121264
#> 6185 5 2000 1968304
#> 6186 5 2005 1992100
#> 6187 5 2010 2294281
#> 6188 5 2015 2457462
#> 6189 5 1950 982387
#> 6190 5 1955 1203207
#> 6191 5 1960 1341695
#> 6192 5 1965 1579990
#> 6193 5 1970 1666029
#> 6194 5 1975 1759441
#> 6195 5 1980 1753329
#> 6196 5 1985 1874362
#> 6197 5 1990 1922177
#> 6198 5 1995 1762355
#> 6199 5 2000 1651987
#> 6200 5 2005 1616795
#> 6201 5 2010 1725873
#> 6202 5 2015 1748856
#> 6203 5 1950 136542
#> 6204 5 1955 149989
#> 6205 5 1960 156243
#> 6206 5 1965 177328
#> 6207 5 1970 185917
#> 6208 5 1975 221137
#> 6209 5 1980 245113
#> 6210 5 1985 285272
#> 6211 5 1990 329488
#> 6212 5 1995 415658
#> 6213 5 2000 532128
#> 6214 5 2005 550626
#> 6215 5 2010 559558
#> 6216 5 2015 619493
#> 6217 5 1950 23927793
#> 6218 5 1955 26599169
#> 6219 5 1960 30498914
#> 6220 5 1965 34942081
#> 6221 5 1970 40314863
#> 6222 5 1975 46423612
#> 6223 5 1980 54329338
#> 6224 5 1985 63632313
#> 6225 5 1990 73452347
#> 6226 5 1995 82825787
#> 6227 5 2000 92853861
#> 6228 5 2005 106428072
#> 6229 5 2010 121940877
#> 6230 5 2015 138490671
#> 6231 5 1950 800002
#> 6232 5 1955 934390
#> 6233 5 1960 1096902
#> 6234 5 1965 1289610
#> 6235 5 1970 1539643
#> 6236 5 1975 1854570
#> 6237 5 1980 2237971
#> 6238 5 1985 2649020
#> 6239 5 1990 3017120
#> 6240 5 1995 3442882
#> 6241 5 2000 3952197
#> 6242 5 2005 4449391
#> 6243 5 2010 4938214
#> 6244 5 2015 5341363
#> 6245 5 1950 26000
#> 6246 5 1955 34810
#> 6247 5 1960 45109
#> 6248 5 1965 54302
#> 6249 5 1970 62384
#> 6250 5 1975 61364
#> 6251 5 1980 48670
#> 6252 5 1985 39707
#> 6253 5 1990 46804
#> 6254 5 1995 51211
#> 6255 5 2000 51376
#> 6256 5 2005 52031
#> 6257 5 2010 50266
#> 6258 5 2015 49418
#> 6259 5 1950 36925
#> 6260 5 1955 44637
#> 6261 5 1960 51084
#> 6262 5 1965 58603
#> 6263 5 1970 67810
#> 6264 5 1975 80466
#> 6265 5 1980 96619
#> 6266 5 1985 112330
#> 6267 5 1990 136541
#> 6268 5 1995 156830
#> 6269 5 2000 158952
#> 6270 5 2005 153457
#> 6271 5 2010 154033
#> 6272 5 2015 165846
#> 6273 5 1950 571505
#> 6274 5 1955 617679
#> 6275 5 1960 537182
#> 6276 5 1965 525879
#> 6277 5 1970 564057
#> 6278 5 1975 581438
#> 6279 5 1980 557137
#> 6280 5 1985 488330
#> 6281 5 1990 485715
#> 6282 5 1995 569850
#> 6283 5 2000 597384
#> 6284 5 2005 474557
#> 6285 5 2010 507632
#> 6286 5 2015 581851
#> 6287 5 1950 368699
#> 6288 5 1955 424595
#> 6289 5 1960 410728
#> 6290 5 1965 451074
#> 6291 5 1970 500618
#> 6292 5 1975 501764
#> 6293 5 1980 415270
#> 6294 5 1985 362063
#> 6295 5 1990 380115
#> 6296 5 1995 411412
#> 6297 5 2000 428228
#> 6298 5 2005 403203
#> 6299 5 2010 379099
#> 6300 5 2015 405120
#> 6301 5 1950 414900
#> 6302 5 1955 510028
#> 6303 5 1960 732361
#> 6304 5 1965 853877
#> 6305 5 1970 999038
#> 6306 5 1975 1179414
#> 6307 5 1980 1445498
#> 6308 5 1985 1736316
#> 6309 5 1990 1986304
#> 6310 5 1995 2132158
#> 6311 5 2000 2173559
#> 6312 5 2005 2440121
#> 6313 5 2010 2533117
#> 6314 5 2015 2471982
#> 6315 5 1950 140779
#> 6316 5 1955 165673
#> 6317 5 1960 202476
#> 6318 5 1965 193733
#> 6319 5 1970 190145
#> 6320 5 1975 198391
#> 6321 5 1980 188526
#> 6322 5 1985 179312
#> 6323 5 1990 178567
#> 6324 5 1995 167650
#> 6325 5 2000 157782
#> 6326 5 2005 135137
#> 6327 5 2010 123361
#> 6328 5 2015 112467
#> 6329 5 1950 148823
#> 6330 5 1955 166836
#> 6331 5 1960 280988
#> 6332 5 1965 375712
#> 6333 5 1970 458298
#> 6334 5 1975 494526
#> 6335 5 1980 548362
#> 6336 5 1985 618415
#> 6337 5 1990 762286
#> 6338 5 1995 893831
#> 6339 5 2000 884745
#> 6340 5 2005 881383
#> 6341 5 2010 845798
#> 6342 5 2015 995123
#> 6343 5 1950 2725927
#> 6344 5 1955 3202140
#> 6345 5 1960 3804818
#> 6346 5 1965 4586896
#> 6347 5 1970 5401155
#> 6348 5 1975 6206195
#> 6349 5 1980 6356243
#> 6350 5 1985 6082273
#> 6351 5 1990 5690545
#> 6352 5 1995 5323229
#> 6353 5 2000 5102438
#> 6354 5 2005 4648900
#> 6355 5 2010 4229585
#> 6356 5 2015 4121050
#> 6357 5 1950 55199
#> 6358 5 1955 63318
#> 6359 5 1960 65868
#> 6360 5 1965 72895
#> 6361 5 1970 82596
#> 6362 5 1975 91536
#> 6363 5 1980 83908
#> 6364 5 1985 71967
#> 6365 5 1990 99884
#> 6366 5 1995 116115
#> 6367 5 2000 147284
#> 6368 5 2005 180913
#> 6369 5 2010 160628
#> 6370 5 2015 182767
#> 6371 5 1950 183896
#> 6372 5 1955 199053
#> 6373 5 1960 216883
#> 6374 5 1965 238678
#> 6375 5 1970 303911
#> 6376 5 1975 354771
#> 6377 5 1980 410239
#> 6378 5 1985 496724
#> 6379 5 1990 576834
#> 6380 5 1995 649016
#> 6381 5 2000 700188
#> 6382 5 2005 783539
#> 6383 5 2010 919473
#> 6384 5 2015 1048390
#> 6385 5 1950 7453
#> 6386 5 1955 7894
#> 6387 5 1960 8794
#> 6388 5 1965 11215
#> 6389 5 1970 14227
#> 6390 5 1975 13940
#> 6391 5 1980 11842
#> 6392 5 1985 12044
#> 6393 5 1990 13057
#> 6394 5 1995 12021
#> 6395 5 2000 13114
#> 6396 5 2005 12737
#> 6397 5 2010 13050
#> 6398 5 2015 13308
#> 6399 5 1950 84838
#> 6400 5 1955 103846
#> 6401 5 1960 121683
#> 6402 5 1965 134124
#> 6403 5 1970 143233
#> 6404 5 1975 118297
#> 6405 5 1980 119460
#> 6406 5 1985 129073
#> 6407 5 1990 149925
#> 6408 5 1995 131450
#> 6409 5 2000 104563
#> 6410 5 2005 88361
#> 6411 5 2010 90493
#> 6412 5 2015 96416
#> 6413 5 1950 481114
#> 6414 5 1955 536955
#> 6415 5 1960 591780
#> 6416 5 1965 682202
#> 6417 5 1970 786371
#> 6418 5 1975 817186
#> 6419 5 1980 868227
#> 6420 5 1985 961679
#> 6421 5 1990 1039220
#> 6422 5 1995 1069548
#> 6423 5 2000 950852
#> 6424 5 2005 831208
#> 6425 5 2010 792915
#> 6426 5 2015 856535
#> 6427 5 1950 2675325
#> 6428 5 1955 3035230
#> 6429 5 1960 3879035
#> 6430 5 1965 4319963
#> 6431 5 1970 4759799
#> 6432 5 1975 5231142
#> 6433 5 1980 5812246
#> 6434 5 1985 6278214
#> 6435 5 1990 6550450
#> 6436 5 1995 6432988
#> 6437 5 2000 6345050
#> 6438 5 2005 6584909
#> 6439 5 2010 6486268
#> 6440 5 2015 6618958
#> 6441 5 1950 110012
#> 6442 5 1955 137198
#> 6443 5 1960 212664
#> 6444 5 1965 282433
#> 6445 5 1970 339560
#> 6446 5 1975 359718
#> 6447 5 1980 390238
#> 6448 5 1985 435257
#> 6449 5 1990 483059
#> 6450 5 1995 576362
#> 6451 5 2000 581437
#> 6452 5 2005 478092
#> 6453 5 2010 493592
#> 6454 5 2015 527409
#> 6455 5 1950 722028
#> 6456 5 1955 837233
#> 6457 5 1960 1014445
#> 6458 5 1965 1198241
#> 6459 5 1970 1424580
#> 6460 5 1975 1659477
#> 6461 5 1980 1917763
#> 6462 5 1985 2249168
#> 6463 5 1990 2710772
#> 6464 5 1995 3254482
#> 6465 5 2000 3911402
#> 6466 5 2005 4642624
#> 6467 5 2010 5522650
#> 6468 5 2015 6415631
#> 6469 5 1950 2869623
#> 6470 5 1955 2972217
#> 6471 5 1960 4256582
#> 6472 5 1965 4033685
#> 6473 5 1970 3921891
#> 6474 5 1975 3427881
#> 6475 5 1980 3632593
#> 6476 5 1985 3710763
#> 6477 5 1990 3763696
#> 6478 5 1995 3499228
#> 6479 5 2000 2743415
#> 6480 5 2005 2153268
#> 6481 5 2010 1957925
#> 6482 5 2015 2368954
#> 6483 5 1950 9396
#> 6484 5 1955 10990
#> 6485 5 1960 13417
#> 6486 5 1965 17922
#> 6487 5 1970 25000
#> 6488 5 1975 51194
#> 6489 5 1980 97840
#> 6490 5 1985 152526
#> 6491 5 1990 194564
#> 6492 5 1995 229764
#> 6493 5 2000 286535
#> 6494 5 2005 272006
#> 6495 5 2010 348738
#> 6496 5 2015 437984
#> 6497 5 1950 3639734
#> 6498 5 1955 4287673
#> 6499 5 1960 3755206
#> 6500 5 1965 4080019
#> 6501 5 1970 4719513
#> 6502 5 1975 4589080
#> 6503 5 1980 3863037
#> 6504 5 1985 3374490
#> 6505 5 1990 3616332
#> 6506 5 1995 3835555
#> 6507 5 2000 3812243
#> 6508 5 2005 3558887
#> 6509 5 2010 3510184
#> 6510 5 2015 3927746
#> 6511 5 1950 1118152
#> 6512 5 1955 1302712
#> 6513 5 1960 1457184
#> 6514 5 1965 1725043
#> 6515 5 1970 2027221
#> 6516 5 1975 2399982
#> 6517 5 1980 2826592
#> 6518 5 1985 3311442
#> 6519 5 1990 3826586
#> 6520 5 1995 4471803
#> 6521 5 2000 5075225
#> 6522 5 2005 5773945
#> 6523 5 2010 6913563
#> 6524 5 2015 8077822
#> 6525 5 1950 3703
#> 6526 5 1955 3674
#> 6527 5 1960 4237
#> 6528 5 1965 6426
#> 6529 5 1970 7539
#> 6530 5 1975 10718
#> 6531 5 1980 11366
#> 6532 5 1985 10057
#> 6533 5 1990 10184
#> 6534 5 1995 8693
#> 6535 5 2000 10010
#> 6536 5 2005 7905
#> 6537 5 2010 7132
#> 6538 5 2015 7358
#> 6539 5 1950 13784767
#> 6540 5 1955 17204125
#> 6541 5 1960 19292992
#> 6542 5 1965 20863522
#> 6543 5 1970 20256282
#> 6544 5 1975 17800227
#> 6545 5 1980 16866383
#> 6546 5 1985 16865413
#> 6547 5 1990 18044900
#> 6548 5 1995 19579995
#> 6549 5 2000 20867181
#> 6550 5 2005 19781370
#> 6551 5 2010 20629705
#> 6552 5 2015 20903797
#> 6553 5 1950 99759998
#> 6554 5 1955 123599187
#> 6555 5 1960 160562891
#> 6556 5 1965 161928458
#> 6557 5 1970 189088915
#> 6558 5 1975 214210044
#> 6559 5 1980 213347758
#> 6560 5 1985 196255406
#> 6561 5 1990 208142479
#> 6562 5 1995 237066386
#> 6563 5 2000 201168232
#> 6564 5 2005 174864529
#> 6565 5 2010 170981629
#> 6566 5 2015 177130854
#> 6567 5 1950 203813
#> 6568 5 1955 219351
#> 6569 5 1960 231482
#> 6570 5 1965 253481
#> 6571 5 1970 266845
#> 6572 5 1975 249587
#> 6573 5 1980 267315
#> 6574 5 1985 280602
#> 6575 5 1990 259848
#> 6576 5 1995 268153
#> 6577 5 2000 278725
#> 6578 5 2005 264198
#> 6579 5 2010 251775
#> 6580 5 2015 244603
#> 6581 5 1950 551049
#> 6582 5 1955 693504
#> 6583 5 1960 1167489
#> 6584 5 1965 1522899
#> 6585 5 1970 1899155
#> 6586 5 1975 1929221
#> 6587 5 1980 2128248
#> 6588 5 1985 2372610
#> 6589 5 1990 2748066
#> 6590 5 1995 3168360
#> 6591 5 2000 3249940
#> 6592 5 2005 2828280
#> 6593 5 2010 2558338
#> 6594 5 2015 2940466
#> 6595 5 1950 7118
#> 6596 5 1955 8204
#> 6597 5 1960 9495
#> 6598 5 1965 11247
#> 6599 5 1970 12880
#> 6600 5 1975 14758
#> 6601 5 1980 17029
#> 6602 5 1985 19355
#> 6603 5 1990 21812
#> 6604 5 1995 23796
#> 6605 5 2000 25534
#> 6606 5 2005 28028
#> 6607 5 2010 28737
#> 6608 5 2015 33466
#> 6609 5 1950 806210
#> 6610 5 1955 996025
#> 6611 5 1960 1204894
#> 6612 5 1965 1494232
#> 6613 5 1970 1860098
#> 6614 5 1975 1987359
#> 6615 5 1980 2025392
#> 6616 5 1985 2271604
#> 6617 5 1990 2498269
#> 6618 5 1995 2751065
#> 6619 5 2000 2792220
#> 6620 5 2005 2814461
#> 6621 5 2010 2878141
#> 6622 5 2015 2940081
#> 6623 5 1950 2452754
#> 6624 5 1955 2924183
#> 6625 5 1960 4409686
#> 6626 5 1965 5645508
#> 6627 5 1970 6390537
#> 6628 5 1975 6861522
#> 6629 5 1980 7473224
#> 6630 5 1985 7855223
#> 6631 5 1990 8512626
#> 6632 5 1995 9099046
#> 6633 5 2000 9119018
#> 6634 5 2005 7139872
#> 6635 5 2010 6656502
#> 6636 5 2015 7233386
#> 6637 5 1950 269870105
#> 6638 5 1955 315829190
#> 6639 5 1960 382144556
#> 6640 5 1965 409585338
#> 6641 5 1970 460552260
#> 6642 5 1975 504504748
#> 6643 5 1980 525955325
#> 6644 5 1985 532911777
#> 6645 5 1990 578146344
#> 6646 5 1995 631533696
#> 6647 5 2000 611810814
#> 6648 5 2005 600035991
#> 6649 5 2010 615729577
#> 6650 5 2015 644475613
#> 6651 5 1950 9467535
#> 6652 5 1955 10214215
#> 6653 5 1960 11331096
#> 6654 5 1965 12908829
#> 6655 5 1970 14752900
#> 6656 5 1975 16864638
#> 6657 5 1980 19767503
#> 6658 5 1985 23329877
#> 6659 5 1990 26819770
#> 6660 5 1995 29999390
#> 6661 5 2000 33652120
#> 6662 5 2005 38591814
#> 6663 5 2010 44676060
#> 6664 5 2015 51284218
#> 6665 5 1950 6053768
#> 6666 5 1955 7036071
#> 6667 5 1960 9155718
#> 6668 5 1965 10419079
#> 6669 5 1970 11973073
#> 6670 5 1975 13575509
#> 6671 5 1980 15400394
#> 6672 5 1985 17497081
#> 6673 5 1990 19741955
#> 6674 5 1995 21156263
#> 6675 5 2000 22124807
#> 6676 5 2005 22947425
#> 6677 5 2010 23713766
#> 6678 5 2015 25700406
#> 6679 5 1950 10223670
#> 6680 5 1955 11402448
#> 6681 5 1960 12010213
#> 6682 5 1965 12831939
#> 6683 5 1970 13887342
#> 6684 5 1975 13441328
#> 6685 5 1980 11170241
#> 6686 5 1985 9890928
#> 6687 5 1990 10431449
#> 6688 5 1995 10916099
#> 6689 5 2000 10377453
#> 6690 5 2005 10161998
#> 6691 5 2010 9930126
#> 6692 5 2015 9914765
#> 6693 5 1950 1868
#> 6694 5 1955 2496
#> 6695 5 1960 3491
#> 6696 5 1965 5741
#> 6697 5 1970 9672
#> 6698 5 1975 11698
#> 6699 5 1980 16549
#> 6700 5 1985 22793
#> 6701 5 1990 28682
#> 6702 5 1995 32177
#> 6703 5 2000 37420
#> 6704 5 2005 45827
#> 6705 5 2010 46896
#> 6706 5 2015 48910
#> 6707 5 1950 586498
#> 6708 5 1955 677136
#> 6709 5 1960 683148
#> 6710 5 1965 754976
#> 6711 5 1970 874923
#> 6712 5 1975 1068291
#> 6713 5 1980 1261838
#> 6714 5 1985 1629534
#> 6715 5 1990 2040510
#> 6716 5 1995 2557390
#> 6717 5 2000 3002216
#> 6718 5 2005 3077157
#> 6719 5 2010 3299932
#> 6720 5 2015 3626382
#> 6721 5 1950 331122
#> 6722 5 1955 378964
#> 6723 5 1960 437478
#> 6724 5 1965 528846
#> 6725 5 1970 643243
#> 6726 5 1975 760990
#> 6727 5 1980 920212
#> 6728 5 1985 1081954
#> 6729 5 1990 1228871
#> 6730 5 1995 1387928
#> 6731 5 2000 1583139
#> 6732 5 2005 1864548
#> 6733 5 2010 2167282
#> 6734 5 2015 2414032
#> 6735 5 1950 389605
#> 6736 5 1955 408081
#> 6737 5 1960 573776
#> 6738 5 1965 681819
#> 6739 5 1970 817390
#> 6740 5 1975 960716
#> 6741 5 1980 1150289
#> 6742 5 1985 1389446
#> 6743 5 1990 1604439
#> 6744 5 1995 1691756
#> 6745 5 2000 1729792
#> 6746 5 2005 1762280
#> 6747 5 2010 1889691
#> 6748 5 2015 2172892
#> 6749 10 1950 25987814
#> 6750 10 1955 28662414
#> 6751 10 1960 32763121
#> 6752 10 1965 38252247
#> 6753 10 1970 44249238
#> 6754 10 1975 51029378
#> 6755 10 1980 58351299
#> 6756 10 1985 67964893
#> 6757 10 1990 79380275
#> 6758 10 1995 91487263
#> 6759 10 2000 102219973
#> 6760 10 2005 111800276
#> 6761 10 2010 124668625
#> 6762 10 2015 141159311
#> 6763 10 1950 150768636
#> 6764 10 1955 154909008
#> 6765 10 1960 180160516
#> 6766 10 1965 227285753
#> 6767 10 1970 242527651
#> 6768 10 1975 282168171
#> 6769 10 1980 321544262
#> 6770 10 1985 333122129
#> 6771 10 1990 327013404
#> 6772 10 1995 355967379
#> 6773 10 2000 396065304
#> 6774 10 2005 372791482
#> 6775 10 2010 353130626
#> 6776 10 2015 353688247
#> 6777 10 1950 884704
#> 6778 10 1955 964530
#> 6779 10 1960 1069194
#> 6780 10 1965 1143711
#> 6781 10 1970 1319123
#> 6782 10 1975 1531585
#> 6783 10 1980 1640156
#> 6784 10 1985 1481267
#> 6785 10 1990 1588935
#> 6786 10 1995 2196767
#> 6787 10 2000 2585917
#> 6788 10 2005 3174152
#> 6789 10 2010 3905430
#> 6790 10 2015 4642280
#> 6791 10 1950 146725
#> 6792 10 1955 156115
#> 6793 10 1960 170465
#> 6794 10 1965 212638
#> 6795 10 1970 264005
#> 6796 10 1975 302280
#> 6797 10 1980 307071
#> 6798 10 1985 320615
#> 6799 10 1990 331425
#> 6800 10 1995 327164
#> 6801 10 2000 338569
#> 6802 10 2005 318709
#> 6803 10 2010 272700
#> 6804 10 2015 195951
#> 6805 10 1950 1047960
#> 6806 10 1955 1115528
#> 6807 10 1960 1207699
#> 6808 10 1965 1631894
#> 6809 10 1970 1884993
#> 6810 10 1975 2195126
#> 6811 10 1980 2486849
#> 6812 10 1985 2909554
#> 6813 10 1990 3409223
#> 6814 10 1995 3802993
#> 6815 10 2000 3913404
#> 6816 10 2005 3665438
#> 6817 10 2010 3033614
#> 6818 10 2015 2923522
#> 6819 10 1950 514863
#> 6820 10 1955 539301
#> 6821 10 1960 576946
#> 6822 10 1965 792660
#> 6823 10 1970 841422
#> 6824 10 1975 946154
#> 6825 10 1980 1081825
#> 6826 10 1985 1324662
#> 6827 10 1990 1568457
#> 6828 10 1995 1823108
#> 6829 10 2000 2121358
#> 6830 10 2005 2482140
#> 6831 10 2010 2928324
#> 6832 10 2015 3581070
#> 6833 10 1950 5552
#> 6834 10 1955 5978
#> 6835 10 1960 6746
#> 6836 10 1965 8181
#> 6837 10 1970 8692
#> 6838 10 1975 8844
#> 6839 10 1980 9212
#> 6840 10 1985 7926
#> 6841 10 1990 5825
#> 6842 10 1995 7774
#> 6843 10 2000 8375
#> 6844 10 2005 8293
#> 6845 10 2010 8642
#> 6846 10 2015 8411
#> 6847 10 1950 1578743
#> 6848 10 1955 1733445
#> 6849 10 1960 1948910
#> 6850 10 1965 2137883
#> 6851 10 1970 2244485
#> 6852 10 1975 2346418
#> 6853 10 1980 2439493
#> 6854 10 1985 2788211
#> 6855 10 1990 3330659
#> 6856 10 1995 3272703
#> 6857 10 2000 3393687
#> 6858 10 2005 3484426
#> 6859 10 2010 3439356
#> 6860 10 2015 3582019
#> 6861 10 1950 191296
#> 6862 10 1955 112625
#> 6863 10 1960 159390
#> 6864 10 1965 248723
#> 6865 10 1970 343490
#> 6866 10 1975 363536
#> 6867 10 1980 306856
#> 6868 10 1985 305151
#> 6869 10 1990 314677
#> 6870 10 1995 310770
#> 6871 10 2000 322924
#> 6872 10 2005 261559
#> 6873 10 2010 183785
#> 6874 10 2015 173592
#> 6875 10 1950 4348
#> 6876 10 1955 4974
#> 6877 10 1960 6805
#> 6878 10 1965 7334
#> 6879 10 1970 7293
#> 6880 10 1975 7117
#> 6881 10 1980 5903
#> 6882 10 1985 4354
#> 6883 10 1990 4600
#> 6884 10 1995 5856
#> 6885 10 2000 6770
#> 6886 10 2005 7842
#> 6887 10 2010 7494
#> 6888 10 2015 7166
#> 6889 10 1950 583690
#> 6890 10 1955 738071
#> 6891 10 1960 980559
#> 6892 10 1965 1067384
#> 6893 10 1970 1243198
#> 6894 10 1975 1287318
#> 6895 10 1980 1274049
#> 6896 10 1985 1339896
#> 6897 10 1990 1240073
#> 6898 10 1995 1298170
#> 6899 10 2000 1336554
#> 6900 10 2005 1405655
#> 6901 10 2010 1393988
#> 6902 10 2015 1416482
#> 6903 10 1950 729690
#> 6904 10 1955 920103
#> 6905 10 1960 1217617
#> 6906 10 1965 1328506
#> 6907 10 1970 1538376
#> 6908 10 1975 1604181
#> 6909 10 1980 1577915
#> 6910 10 1985 1637047
#> 6911 10 1990 1499298
#> 6912 10 1995 1561453
#> 6913 10 2000 1628048
#> 6914 10 2005 1719701
#> 6915 10 2010 1690563
#> 6916 10 2015 1713729
#> 6917 10 1950 502141
#> 6918 10 1955 557233
#> 6919 10 1960 505738
#> 6920 10 1965 484742
#> 6921 10 1970 578755
#> 6922 10 1975 646910
#> 6923 10 1980 623575
#> 6924 10 1985 507381
#> 6925 10 1990 432634
#> 6926 10 1995 477875
#> 6927 10 2000 466612
#> 6928 10 2005 488520
#> 6929 10 2010 439726
#> 6930 10 2015 416381
#> 6931 10 1950 401341
#> 6932 10 1955 249745
#> 6933 10 1960 324942
#> 6934 10 1965 512326
#> 6935 10 1970 674088
#> 6936 10 1975 813479
#> 6937 10 1980 759322
#> 6938 10 1985 681692
#> 6939 10 1990 680832
#> 6940 10 1995 790221
#> 6941 10 2000 928671
#> 6942 10 2005 890874
#> 6943 10 2010 721140
#> 6944 10 2015 637909
#> 6945 10 1950 8980
#> 6946 10 1955 9792
#> 6947 10 1960 13137
#> 6948 10 1965 16691
#> 6949 10 1970 21392
#> 6950 10 1975 25621
#> 6951 10 1980 25558
#> 6952 10 1985 26985
#> 6953 10 1990 25498
#> 6954 10 1995 29182
#> 6955 10 2000 28637
#> 6956 10 2005 29199
#> 6957 10 2010 29592
#> 6958 10 2015 24930
#> 6959 10 1950 12843
#> 6960 10 1955 15523
#> 6961 10 1960 18528
#> 6962 10 1965 26022
#> 6963 10 1970 29200
#> 6964 10 1975 30388
#> 6965 10 1980 34912
#> 6966 10 1985 37399
#> 6967 10 1990 43197
#> 6968 10 1995 51938
#> 6969 10 2000 56674
#> 6970 10 2005 67782
#> 6971 10 2010 77257
#> 6972 10 2015 84002
#> 6973 10 1950 4376934
#> 6974 10 1955 4891737
#> 6975 10 1960 5468323
#> 6976 10 1965 6087265
#> 6977 10 1970 7679842
#> 6978 10 1975 9049349
#> 6979 10 1980 10573999
#> 6980 10 1985 11531661
#> 6981 10 1990 13428942
#> 6982 10 1995 14862756
#> 6983 10 2000 15737300
#> 6984 10 2005 16112976
#> 6985 10 2010 16462117
#> 6986 10 2015 16458343
#> 6987 10 1950 22001
#> 6988 10 1955 21559
#> 6989 10 1960 26602
#> 6990 10 1965 28112
#> 6991 10 1970 30687
#> 6992 10 1975 30825
#> 6993 10 1980 26721
#> 6994 10 1985 25840
#> 6995 10 1990 21204
#> 6996 10 1995 20576
#> 6997 10 2000 20169
#> 6998 10 2005 19719
#> 6999 10 2010 18997
#> 7000 10 2015 19101
#> 7001 10 1950 815180
#> 7002 10 1955 538686
#> 7003 10 1960 606430
#> 7004 10 1965 773635
#> 7005 10 1970 952579
#> 7006 10 1975 872487
#> 7007 10 1980 722170
#> 7008 10 1985 727630
#> 7009 10 1990 742192
#> 7010 10 1995 805826
#> 7011 10 2000 787634
#> 7012 10 2005 594707
#> 7013 10 2010 457334
#> 7014 10 2015 442879
#> 7015 10 1950 573152
#> 7016 10 1955 545472
#> 7017 10 1960 700804
#> 7018 10 1965 710288
#> 7019 10 1970 762271
#> 7020 10 1975 795291
#> 7021 10 1980 729310
#> 7022 10 1985 658641
#> 7023 10 1990 605781
#> 7024 10 1995 604772
#> 7025 10 2000 612166
#> 7026 10 2005 632157
#> 7027 10 2010 611230
#> 7028 10 2015 621943
#> 7029 10 1950 7573
#> 7030 10 1955 7969
#> 7031 10 1960 10219
#> 7032 10 1965 13457
#> 7033 10 1970 16859
#> 7034 10 1975 18684
#> 7035 10 1980 20095
#> 7036 10 1985 21773
#> 7037 10 1990 23551
#> 7038 10 1995 27744
#> 7039 10 2000 29538
#> 7040 10 2005 34022
#> 7041 10 2010 37713
#> 7042 10 2015 39270
#> 7043 10 1950 221068
#> 7044 10 1955 251709
#> 7045 10 1960 255862
#> 7046 10 1965 286742
#> 7047 10 1970 326866
#> 7048 10 1975 381642
#> 7049 10 1980 445820
#> 7050 10 1985 519811
#> 7051 10 1990 617350
#> 7052 10 1995 732153
#> 7053 10 2000 858616
#> 7054 10 2005 1002509
#> 7055 10 2010 1149875
#> 7056 10 2015 1305682
#> 7057 10 1950 21060
#> 7058 10 1955 23877
#> 7059 10 1960 27352
#> 7060 10 1965 27700
#> 7061 10 1970 33203
#> 7062 10 1975 39851
#> 7063 10 1980 48289
#> 7064 10 1985 57157
#> 7065 10 1990 66475
#> 7066 10 1995 66149
#> 7067 10 2000 78933
#> 7068 10 2005 79526
#> 7069 10 2010 76308
#> 7070 10 2015 72233
#> 7071 10 1950 330101
#> 7072 10 1955 388629
#> 7073 10 1960 418786
#> 7074 10 1965 504477
#> 7075 10 1970 550037
#> 7076 10 1975 606050
#> 7077 10 1980 673208
#> 7078 10 1985 751193
#> 7079 10 1990 844129
#> 7080 10 1995 920828
#> 7081 10 2000 977165
#> 7082 10 2005 1038382
#> 7083 10 2010 1101861
#> 7084 10 2015 1133973
#> 7085 10 1950 344001
#> 7086 10 1955 275465
#> 7087 10 1960 370067
#> 7088 10 1965 415975
#> 7089 10 1970 431775
#> 7090 10 1975 457762
#> 7091 10 1980 414734
#> 7092 10 1985 404430
#> 7093 10 1990 364556
#> 7094 10 1995 291476
#> 7095 10 2000 287463
#> 7096 10 2005 256554
#> 7097 10 2010 234430
#> 7098 10 2015 176909
#> 7099 10 1950 51612
#> 7100 10 1955 53735
#> 7101 10 1960 57206
#> 7102 10 1965 80602
#> 7103 10 1970 94136
#> 7104 10 1975 107818
#> 7105 10 1980 126407
#> 7106 10 1985 151032
#> 7107 10 1990 183745
#> 7108 10 1995 212029
#> 7109 10 2000 212720
#> 7110 10 2005 215068
#> 7111 10 2010 215516
#> 7112 10 2015 215918
#> 7113 10 1950 6435864
#> 7114 10 1955 6946687
#> 7115 10 1960 8471009
#> 7116 10 1965 10235240
#> 7117 10 1970 11786960
#> 7118 10 1975 13583871
#> 7119 10 1980 14329181
#> 7120 10 1985 15036941
#> 7121 10 1990 16752167
#> 7122 10 1995 18192641
#> 7123 10 2000 17809801
#> 7124 10 2005 17382120
#> 7125 10 2010 17460162
#> 7126 10 2015 16355345
#> 7127 10 1950 5101
#> 7128 10 1955 5791
#> 7129 10 1960 6800
#> 7130 10 1965 12719
#> 7131 10 1970 16006
#> 7132 10 1975 18882
#> 7133 10 1980 21300
#> 7134 10 1985 25516
#> 7135 10 1990 25663
#> 7136 10 1995 28459
#> 7137 10 2000 32384
#> 7138 10 2005 34077
#> 7139 10 2010 35546
#> 7140 10 2015 33915
#> 7141 10 1950 599002
#> 7142 10 1955 597575
#> 7143 10 1960 703900
#> 7144 10 1965 689879
#> 7145 10 1970 663195
#> 7146 10 1975 629418
#> 7147 10 1980 625427
#> 7148 10 1985 659869
#> 7149 10 1990 652872
#> 7150 10 1995 558059
#> 7151 10 2000 518070
#> 7152 10 2005 405376
#> 7153 10 2010 307056
#> 7154 10 2015 315409
#> 7155 10 1950 493473
#> 7156 10 1955 530923
#> 7157 10 1960 559019
#> 7158 10 1965 603355
#> 7159 10 1970 673097
#> 7160 10 1975 747713
#> 7161 10 1980 847594
#> 7162 10 1985 962777
#> 7163 10 1990 1142933
#> 7164 10 1995 1329136
#> 7165 10 2000 1501226
#> 7166 10 2005 1721581
#> 7167 10 2010 1999629
#> 7168 10 2015 2337776
#> 7169 10 1950 263763
#> 7170 10 1955 280865
#> 7171 10 1960 304263
#> 7172 10 1965 378423
#> 7173 10 1970 431055
#> 7174 10 1975 470940
#> 7175 10 1980 487990
#> 7176 10 1985 517840
#> 7177 10 1990 645138
#> 7178 10 1995 803400
#> 7179 10 2000 945555
#> 7180 10 2005 1022937
#> 7181 10 2010 1064217
#> 7182 10 2015 1199456
#> 7183 10 1950 21744
#> 7184 10 1955 15996
#> 7185 10 1960 16145
#> 7186 10 1965 30825
#> 7187 10 1970 36317
#> 7188 10 1975 41727
#> 7189 10 1980 42795
#> 7190 10 1985 39709
#> 7191 10 1990 41907
#> 7192 10 1995 51821
#> 7193 10 2000 61554
#> 7194 10 2005 61988
#> 7195 10 2010 58486
#> 7196 10 2015 56048
#> 7197 10 1950 527750
#> 7198 10 1955 576828
#> 7199 10 1960 654222
#> 7200 10 1965 855958
#> 7201 10 1970 918709
#> 7202 10 1975 974165
#> 7203 10 1980 876106
#> 7204 10 1985 933584
#> 7205 10 1990 803640
#> 7206 10 1995 1460146
#> 7207 10 2000 1738199
#> 7208 10 2005 1795497
#> 7209 10 2010 1595342
#> 7210 10 2015 1485152
#> 7211 10 1950 481654
#> 7212 10 1955 515890
#> 7213 10 1960 567652
#> 7214 10 1965 641935
#> 7215 10 1970 726275
#> 7216 10 1975 859415
#> 7217 10 1980 1022243
#> 7218 10 1985 1214895
#> 7219 10 1990 1450684
#> 7220 10 1995 1744388
#> 7221 10 2000 2001905
#> 7222 10 2005 2204945
#> 7223 10 2010 2430053
#> 7224 10 2015 2810416
#> 7225 10 1950 1125000
#> 7226 10 1955 1373706
#> 7227 10 1960 1783051
#> 7228 10 1965 2046555
#> 7229 10 1970 2292320
#> 7230 10 1975 2345641
#> 7231 10 1980 1978071
#> 7232 10 1985 1841547
#> 7233 10 1990 1878827
#> 7234 10 1995 1998457
#> 7235 10 2000 2058025
#> 7236 10 2005 2122686
#> 7237 10 2010 1937359
#> 7238 10 2015 1851667
#> 7239 10 1950 1973180
#> 7240 10 1955 2124873
#> 7241 10 1960 2334673
#> 7242 10 1965 2696420
#> 7243 10 1970 2986490
#> 7244 10 1975 3563123
#> 7245 10 1980 3627938
#> 7246 10 1985 3611210
#> 7247 10 1990 3418376
#> 7248 10 1995 3669640
#> 7249 10 2000 3851992
#> 7250 10 2005 3796336
#> 7251 10 2010 3715199
#> 7252 10 2015 3605835
#> 7253 10 1950 137193
#> 7254 10 1955 145503
#> 7255 10 1960 153541
#> 7256 10 1965 174615
#> 7257 10 1970 201566
#> 7258 10 1975 230600
#> 7259 10 1980 264793
#> 7260 10 1985 304667
#> 7261 10 1990 350911
#> 7262 10 1995 408681
#> 7263 10 2000 458880
#> 7264 10 2005 499404
#> 7265 10 2010 552131
#> 7266 10 2015 601214
#> 7267 10 1950 4363211
#> 7268 10 1955 5140466
#> 7269 10 1960 5976554
#> 7270 10 1965 7773955
#> 7271 10 1970 9098657
#> 7272 10 1975 10390948
#> 7273 10 1980 11974261
#> 7274 10 1985 14133087
#> 7275 10 1990 14557006
#> 7276 10 1995 14939458
#> 7277 10 2000 15511395
#> 7278 10 2005 16159438
#> 7279 10 2010 16765457
#> 7280 10 2015 16599811
#> 7281 10 1950 2230078
#> 7282 10 1955 1595667
#> 7283 10 1960 2064067
#> 7284 10 1965 3194240
#> 7285 10 1970 4253841
#> 7286 10 1975 4821030
#> 7287 10 1980 4702282
#> 7288 10 1985 5047529
#> 7289 10 1990 5458818
#> 7290 10 1995 6043248
#> 7291 10 2000 6799949
#> 7292 10 2005 6678956
#> 7293 10 2010 5837450
#> 7294 10 2015 5499732
#> 7295 10 1950 267450
#> 7296 10 1955 287926
#> 7297 10 1960 313138
#> 7298 10 1965 388653
#> 7299 10 1970 427455
#> 7300 10 1975 472243
#> 7301 10 1980 520624
#> 7302 10 1985 616566
#> 7303 10 1990 740925
#> 7304 10 1995 881903
#> 7305 10 2000 1067247
#> 7306 10 2005 1318028
#> 7307 10 2010 1581570
#> 7308 10 2015 1869644
#> 7309 10 1950 7065
#> 7310 10 1955 7655
#> 7311 10 1960 8255
#> 7312 10 1965 8321
#> 7313 10 1970 8311
#> 7314 10 1975 9473
#> 7315 10 1980 9142
#> 7316 10 1985 7870
#> 7317 10 1990 7287
#> 7318 10 1995 7591
#> 7319 10 2000 8870
#> 7320 10 2005 8733
#> 7321 10 2010 8345
#> 7322 10 2015 8114
#> 7323 10 1950 633598
#> 7324 10 1955 748695
#> 7325 10 1960 833097
#> 7326 10 1965 1021375
#> 7327 10 1970 1132382
#> 7328 10 1975 1228524
#> 7329 10 1980 1294690
#> 7330 10 1985 1251742
#> 7331 10 1990 1230551
#> 7332 10 1995 1309620
#> 7333 10 2000 1423259
#> 7334 10 2005 1396685
#> 7335 10 2010 1321504
#> 7336 10 2015 1260278
#> 7337 10 1950 54824556
#> 7338 10 1955 55408646
#> 7339 10 1960 68786816
#> 7340 10 1965 92727191
#> 7341 10 1970 88143409
#> 7342 10 1975 109173959
#> 7343 10 1980 130443617
#> 7344 10 1985 123133557
#> 7345 10 1990 99056385
#> 7346 10 1995 104560417
#> 7347 10 2000 131728637
#> 7348 10 2005 102293732
#> 7349 10 2010 81134355
#> 7350 10 2015 78821062
#> 7351 10 1950 158199
#> 7352 10 1955 145731
#> 7353 10 1960 335276
#> 7354 10 1965 396283
#> 7355 10 1970 513140
#> 7356 10 1975 541605
#> 7357 10 1980 447738
#> 7358 10 1985 438610
#> 7359 10 1990 420214
#> 7360 10 1995 430957
#> 7361 10 2000 430542
#> 7362 10 2005 424440
#> 7363 10 2010 350208
#> 7364 10 2015 259508
#> 7365 10 1950 16411
#> 7366 10 1955 15344
#> 7367 10 1960 20450
#> 7368 10 1965 33070
#> 7369 10 1970 41127
#> 7370 10 1975 30565
#> 7371 10 1980 20681
#> 7372 10 1985 22181
#> 7373 10 1990 20865
#> 7374 10 1995 31832
#> 7375 10 2000 40784
#> 7376 10 2005 38290
#> 7377 10 2010 27736
#> 7378 10 2015 19339
#> 7379 10 1950 818033
#> 7380 10 1955 983717
#> 7381 10 1960 1160964
#> 7382 10 1965 1784449
#> 7383 10 1970 2018042
#> 7384 10 1975 2089771
#> 7385 10 1980 1938091
#> 7386 10 1985 1800404
#> 7387 10 1990 2014731
#> 7388 10 1995 1912141
#> 7389 10 2000 1585451
#> 7390 10 2005 1608689
#> 7391 10 2010 1517759
#> 7392 10 2015 1227166
#> 7393 10 1950 1394995
#> 7394 10 1955 1616089
#> 7395 10 1960 2043699
#> 7396 10 1965 2514673
#> 7397 10 1970 2900037
#> 7398 10 1975 3366169
#> 7399 10 1980 3688994
#> 7400 10 1985 3552792
#> 7401 10 1990 3894413
#> 7402 10 1995 4202554
#> 7403 10 2000 4274560
#> 7404 10 2005 4293241
#> 7405 10 2010 4102687
#> 7406 10 2015 4069627
#> 7407 10 1950 17925
#> 7408 10 1955 19010
#> 7409 10 1960 19523
#> 7410 10 1965 24075
#> 7411 10 1970 28487
#> 7412 10 1975 32139
#> 7413 10 1980 37962
#> 7414 10 1985 43289
#> 7415 10 1990 51039
#> 7416 10 1995 61945
#> 7417 10 2000 70997
#> 7418 10 2005 76756
#> 7419 10 2010 83148
#> 7420 10 2015 91310
#> 7421 10 1950 92615
#> 7422 10 1955 102466
#> 7423 10 1960 115007
#> 7424 10 1965 134749
#> 7425 10 1970 158809
#> 7426 10 1975 189453
#> 7427 10 1980 224587
#> 7428 10 1985 266890
#> 7429 10 1990 311160
#> 7430 10 1995 346371
#> 7431 10 2000 380907
#> 7432 10 2005 425216
#> 7433 10 2010 499652
#> 7434 10 2015 592231
#> 7435 10 1950 110687
#> 7436 10 1955 131421
#> 7437 10 1960 167287
#> 7438 10 1965 184800
#> 7439 10 1970 237070
#> 7440 10 1975 280366
#> 7441 10 1980 287141
#> 7442 10 1985 276362
#> 7443 10 1990 319443
#> 7444 10 1995 372447
#> 7445 10 2000 406264
#> 7446 10 2005 408932
#> 7447 10 2010 395784
#> 7448 10 2015 361753
#> 7449 10 1950 316942
#> 7450 10 1955 346216
#> 7451 10 1960 374187
#> 7452 10 1965 467633
#> 7453 10 1970 583618
#> 7454 10 1975 740858
#> 7455 10 1980 935680
#> 7456 10 1985 1198542
#> 7457 10 1990 1518451
#> 7458 10 1995 1780119
#> 7459 10 2000 2012912
#> 7460 10 2005 2270395
#> 7461 10 2010 2600116
#> 7462 10 2015 2864540
#> 7463 10 1950 343201
#> 7464 10 1955 297342
#> 7465 10 1960 383416
#> 7466 10 1965 396809
#> 7467 10 1970 371097
#> 7468 10 1975 344175
#> 7469 10 1980 315647
#> 7470 10 1985 332218
#> 7471 10 1990 328230
#> 7472 10 1995 319556
#> 7473 10 2000 283807
#> 7474 10 2005 240446
#> 7475 10 2010 242196
#> 7476 10 2015 205646
#> 7477 10 1950 660420
#> 7478 10 1955 708012
#> 7479 10 1960 744165
#> 7480 10 1965 853010
#> 7481 10 1970 847026
#> 7482 10 1975 1191833
#> 7483 10 1980 1192663
#> 7484 10 1985 1103280
#> 7485 10 1990 778573
#> 7486 10 1995 763471
#> 7487 10 2000 874838
#> 7488 10 2005 777977
#> 7489 10 2010 713221
#> 7490 10 2015 635768
#> 7491 10 1950 9805
#> 7492 10 1955 12109
#> 7493 10 1960 14450
#> 7494 10 1965 16752
#> 7495 10 1970 19964
#> 7496 10 1975 19539
#> 7497 10 1980 16489
#> 7498 10 1985 14602
#> 7499 10 1990 12701
#> 7500 10 1995 12417
#> 7501 10 2000 11914
#> 7502 10 2005 10735
#> 7503 10 2010 10571
#> 7504 10 2015 10302
#> 7505 10 1950 50740
#> 7506 10 1955 51565
#> 7507 10 1960 66953
#> 7508 10 1965 64521
#> 7509 10 1970 67102
#> 7510 10 1975 61074
#> 7511 10 1980 57358
#> 7512 10 1985 55338
#> 7513 10 1990 58925
#> 7514 10 1995 67348
#> 7515 10 2000 70463
#> 7516 10 2005 74667
#> 7517 10 2010 70343
#> 7518 10 2015 64848
#> 7519 10 1950 549280
#> 7520 10 1955 723548
#> 7521 10 1960 885333
#> 7522 10 1965 854442
#> 7523 10 1970 719415
#> 7524 10 1975 680166
#> 7525 10 1980 682058
#> 7526 10 1985 843238
#> 7527 10 1990 891215
#> 7528 10 1995 690257
#> 7529 10 2000 648297
#> 7530 10 2005 594400
#> 7531 10 2010 452024
#> 7532 10 2015 480877
#> 7533 10 1950 1475116
#> 7534 10 1955 1478104
#> 7535 10 1960 1375379
#> 7536 10 1965 969469
#> 7537 10 1970 1848675
#> 7538 10 1975 1707645
#> 7539 10 1980 2367639
#> 7540 10 1985 2336192
#> 7541 10 1990 1664416
#> 7542 10 1995 1886164
#> 7543 10 2000 1919569
#> 7544 10 2005 2030546
#> 7545 10 2010 1963948
#> 7546 10 2015 1885237
#> 7547 10 1950 1444049
#> 7548 10 1955 1638369
#> 7549 10 1960 1847459
#> 7550 10 1965 2025726
#> 7551 10 1970 2357600
#> 7552 10 1975 2737316
#> 7553 10 1980 3186302
#> 7554 10 1985 3621165
#> 7555 10 1990 4212008
#> 7556 10 1995 5100357
#> 7557 10 2000 5813842
#> 7558 10 2005 6777207
#> 7559 10 2010 7940499
#> 7560 10 2015 9562263
#> 7561 10 1950 313634
#> 7562 10 1955 384393
#> 7563 10 1960 416662
#> 7564 10 1965 371715
#> 7565 10 1970 368434
#> 7566 10 1975 393254
#> 7567 10 1980 390304
#> 7568 10 1985 363887
#> 7569 10 1990 316173
#> 7570 10 1995 272920
#> 7571 10 2000 303342
#> 7572 10 2005 348080
#> 7573 10 2010 343078
#> 7574 10 2015 330097
#> 7575 10 1950 7647
#> 7576 10 1955 8959
#> 7577 10 1960 11291
#> 7578 10 1965 12597
#> 7579 10 1970 18131
#> 7580 10 1975 27325
#> 7581 10 1980 46359
#> 7582 10 1985 53032
#> 7583 10 1990 75792
#> 7584 10 1995 76033
#> 7585 10 2000 95066
#> 7586 10 2005 94954
#> 7587 10 2010 97481
#> 7588 10 2015 98706
#> 7589 10 1950 302274
#> 7590 10 1955 320582
#> 7591 10 1960 391007
#> 7592 10 1965 508769
#> 7593 10 1970 619219
#> 7594 10 1975 705898
#> 7595 10 1980 765637
#> 7596 10 1985 812267
#> 7597 10 1990 855437
#> 7598 10 1995 920455
#> 7599 10 2000 963283
#> 7600 10 2005 1003488
#> 7601 10 2010 998482
#> 7602 10 2015 1032662
#> 7603 10 1950 50979729
#> 7604 10 1955 41714953
#> 7605 10 1960 51051934
#> 7606 10 1965 54972668
#> 7607 10 1970 57033698
#> 7608 10 1975 56137737
#> 7609 10 1980 52887493
#> 7610 10 1985 51247173
#> 7611 10 1990 49946788
#> 7612 10 1995 50240269
#> 7613 10 2000 49084691
#> 7614 10 2005 42204657
#> 7615 10 2010 37541295
#> 7616 10 2015 37172451
#> 7617 10 1950 7709694
#> 7618 10 1955 8638968
#> 7619 10 1960 9954055
#> 7620 10 1965 11544961
#> 7621 10 1970 13447747
#> 7622 10 1975 15709129
#> 7623 10 1980 18090330
#> 7624 10 1985 21508143
#> 7625 10 1990 25342501
#> 7626 10 1995 29325569
#> 7627 10 2000 33812650
#> 7628 10 2005 38349839
#> 7629 10 2010 44804041
#> 7630 10 2015 50978138
#> 7631 10 1950 68445800
#> 7632 10 1955 70118458
#> 7633 10 1960 85551607
#> 7634 10 1965 108777029
#> 7635 10 1970 105147851
#> 7636 10 1975 126520061
#> 7637 10 1980 148880021
#> 7638 10 1985 142563073
#> 7639 10 1990 116000710
#> 7640 10 1995 120553787
#> 7641 10 2000 145902413
#> 7642 10 2005 116285867
#> 7643 10 2010 94346038
#> 7644 10 2015 90616663
#> 7645 10 1950 24175160
#> 7646 10 1955 16239065
#> 7647 10 1960 21969693
#> 7648 10 1965 26060131
#> 7649 10 1970 26595100
#> 7650 10 1975 23232020
#> 7651 10 1980 20647902
#> 7652 10 1985 22275535
#> 7653 10 1990 23603223
#> 7654 10 1995 24348893
#> 7655 10 2000 23633012
#> 7656 10 2005 17700143
#> 7657 10 2010 13967540
#> 7658 10 2015 13894314
#> 7659 10 1950 380961
#> 7660 10 1955 446173
#> 7661 10 1960 498729
#> 7662 10 1965 658660
#> 7663 10 1970 759639
#> 7664 10 1975 871024
#> 7665 10 1980 999495
#> 7666 10 1985 1108407
#> 7667 10 1990 1193239
#> 7668 10 1995 1290256
#> 7669 10 2000 1399280
#> 7670 10 2005 1463066
#> 7671 10 2010 1504985
#> 7672 10 2015 1506658
#> 7673 10 1950 2124417
#> 7674 10 1955 2194016
#> 7675 10 1960 3170087
#> 7676 10 1965 3542305
#> 7677 10 1970 4226290
#> 7678 10 1975 4741205
#> 7679 10 1980 5301798
#> 7680 10 1985 5759673
#> 7681 10 1990 6646048
#> 7682 10 1995 7817519
#> 7683 10 2000 8855281
#> 7684 10 2005 8394941
#> 7685 10 2010 8180062
#> 7686 10 2015 8903367
#> 7687 10 1950 270022
#> 7688 10 1955 285712
#> 7689 10 1960 321781
#> 7690 10 1965 399634
#> 7691 10 1970 470210
#> 7692 10 1975 533513
#> 7693 10 1980 578189
#> 7694 10 1985 625637
#> 7695 10 1990 654660
#> 7696 10 1995 640876
#> 7697 10 2000 656101
#> 7698 10 2005 715530
#> 7699 10 2010 710313
#> 7700 10 2015 616663
#> 7701 10 1950 22333
#> 7702 10 1955 23462
#> 7703 10 1960 24643
#> 7704 10 1965 30928
#> 7705 10 1970 33347
#> 7706 10 1975 28903
#> 7707 10 1980 30097
#> 7708 10 1985 35666
#> 7709 10 1990 45911
#> 7710 10 1995 61856
#> 7711 10 2000 68107
#> 7712 10 2005 78214
#> 7713 10 2010 96155
#> 7714 10 2015 118102
#> 7715 10 1950 138700
#> 7716 10 1955 156438
#> 7717 10 1960 173874
#> 7718 10 1965 177572
#> 7719 10 1970 212928
#> 7720 10 1975 248797
#> 7721 10 1980 289956
#> 7722 10 1985 331656
#> 7723 10 1990 382647
#> 7724 10 1995 443054
#> 7725 10 2000 499903
#> 7726 10 2005 493899
#> 7727 10 2010 503644
#> 7728 10 2015 602182
#> 7729 10 1950 101975
#> 7730 10 1955 89680
#> 7731 10 1960 90748
#> 7732 10 1965 97452
#> 7733 10 1970 101190
#> 7734 10 1975 101411
#> 7735 10 1980 100824
#> 7736 10 1985 109853
#> 7737 10 1990 110900
#> 7738 10 1995 106612
#> 7739 10 2000 104714
#> 7740 10 2005 78895
#> 7741 10 2010 59076
#> 7742 10 2015 64093
#> 7743 10 1950 2133803
#> 7744 10 1955 2403390
#> 7745 10 1960 2707458
#> 7746 10 1965 2922131
#> 7747 10 1970 3304314
#> 7748 10 1975 3877935
#> 7749 10 1980 4056668
#> 7750 10 1985 5018877
#> 7751 10 1990 5914604
#> 7752 10 1995 7405440
#> 7753 10 2000 8465790
#> 7754 10 2005 9924078
#> 7755 10 2010 11908817
#> 7756 10 2015 12995924
#> 7757 10 1950 36000
#> 7758 10 1955 43290
#> 7759 10 1960 51255
#> 7760 10 1965 61562
#> 7761 10 1970 72844
#> 7762 10 1975 76617
#> 7763 10 1980 78441
#> 7764 10 1985 80027
#> 7765 10 1990 84528
#> 7766 10 1995 91750
#> 7767 10 2000 89530
#> 7768 10 2005 80127
#> 7769 10 2010 78552
#> 7770 10 2015 80339
#> 7771 10 1950 330897
#> 7772 10 1955 359360
#> 7773 10 1960 491052
#> 7774 10 1965 440869
#> 7775 10 1970 402633
#> 7776 10 1975 384989
#> 7777 10 1980 351083
#> 7778 10 1985 302825
#> 7779 10 1990 325801
#> 7780 10 1995 330921
#> 7781 10 2000 317789
#> 7782 10 2005 330425
#> 7783 10 2010 297439
#> 7784 10 2015 291631
#> 7785 10 1950 2826462
#> 7786 10 1955 2681013
#> 7787 10 1960 4093843
#> 7788 10 1965 4121523
#> 7789 10 1970 4143063
#> 7790 10 1975 4307467
#> 7791 10 1980 4191529
#> 7792 10 1985 4161398
#> 7793 10 1990 3706993
#> 7794 10 1995 3881857
#> 7795 10 2000 3838257
#> 7796 10 2005 3692024
#> 7797 10 2010 3777094
#> 7798 10 2015 3921852
#> 7799 10 1950 1952
#> 7800 10 1955 2275
#> 7801 10 1960 3289
#> 7802 10 1965 4058
#> 7803 10 1970 5358
#> 7804 10 1975 6542
#> 7805 10 1980 7425
#> 7806 10 1985 9480
#> 7807 10 1990 12511
#> 7808 10 1995 13204
#> 7809 10 2000 16633
#> 7810 10 2005 22290
#> 7811 10 2010 24083
#> 7812 10 2015 27896
#> 7813 10 1950 7710
#> 7814 10 1955 8230
#> 7815 10 1960 8223
#> 7816 10 1965 12658
#> 7817 10 1970 14546
#> 7818 10 1975 16874
#> 7819 10 1980 20262
#> 7820 10 1985 20871
#> 7821 10 1990 20430
#> 7822 10 1995 23049
#> 7823 10 2000 27906
#> 7824 10 2005 24595
#> 7825 10 2010 23589
#> 7826 10 2015 22916
#> 7827 10 1950 40985
#> 7828 10 1955 41143
#> 7829 10 1960 44811
#> 7830 10 1965 47772
#> 7831 10 1970 52818
#> 7832 10 1975 62881
#> 7833 10 1980 77715
#> 7834 10 1985 92103
#> 7835 10 1990 109248
#> 7836 10 1995 129944
#> 7837 10 2000 149380
#> 7838 10 2005 165797
#> 7839 10 2010 180042
#> 7840 10 2015 195968
#> 7841 10 1950 30685
#> 7842 10 1955 34303
#> 7843 10 1960 35140
#> 7844 10 1965 40356
#> 7845 10 1970 40313
#> 7846 10 1975 51793
#> 7847 10 1980 69024
#> 7848 10 1985 84902
#> 7849 10 1990 110408
#> 7850 10 1995 135454
#> 7851 10 2000 152109
#> 7852 10 2005 177981
#> 7853 10 2010 214213
#> 7854 10 2015 253133
#> 7855 10 1950 394003
#> 7856 10 1955 268897
#> 7857 10 1960 297329
#> 7858 10 1965 406356
#> 7859 10 1970 489780
#> 7860 10 1975 491377
#> 7861 10 1980 440092
#> 7862 10 1985 413182
#> 7863 10 1990 425000
#> 7864 10 1995 406888
#> 7865 10 2000 415184
#> 7866 10 2005 356759
#> 7867 10 2010 254953
#> 7868 10 2015 214204
#> 7869 10 1950 6376471
#> 7870 10 1955 5123930
#> 7871 10 1960 4660309
#> 7872 10 1965 5315110
#> 7873 10 1970 5834215
#> 7874 10 1975 6482632
#> 7875 10 1980 6188356
#> 7876 10 1985 4362107
#> 7877 10 1990 4018482
#> 7878 10 1995 4514218
#> 7879 10 2000 4689352
#> 7880 10 2005 4202434
#> 7881 10 2010 3964550
#> 7882 10 2015 3693474
#> 7883 10 1950 603927
#> 7884 10 1955 704949
#> 7885 10 1960 847758
#> 7886 10 1965 890658
#> 7887 10 1970 1031179
#> 7888 10 1975 1229951
#> 7889 10 1980 1383641
#> 7890 10 1985 1621431
#> 7891 10 1990 1838835
#> 7892 10 1995 2089493
#> 7893 10 2000 2336634
#> 7894 10 2005 2598622
#> 7895 10 2010 2912343
#> 7896 10 2015 3130149
#> 7897 10 1950 789998
#> 7898 10 1955 678529
#> 7899 10 1960 752358
#> 7900 10 1965 712252
#> 7901 10 1970 751273
#> 7902 10 1975 739983
#> 7903 10 1980 780843
#> 7904 10 1985 744229
#> 7905 10 1990 761870
#> 7906 10 1995 721939
#> 7907 10 2000 607935
#> 7908 10 2005 583029
#> 7909 10 2010 570050
#> 7910 10 2015 549193
#> 7911 10 1950 9280
#> 7912 10 1955 9408
#> 7913 10 1960 11460
#> 7914 10 1965 12111
#> 7915 10 1970 16277
#> 7916 10 1975 14679
#> 7917 10 1980 11874
#> 7918 10 1985 11942
#> 7919 10 1990 9796
#> 7920 10 1995 12351
#> 7921 10 2000 13555
#> 7922 10 2005 11451
#> 7923 10 2010 10072
#> 7924 10 2015 8897
#> 7925 10 1950 21989
#> 7926 10 1955 23903
#> 7927 10 1960 33687
#> 7928 10 1965 39395
#> 7929 10 1970 41715
#> 7930 10 1975 46002
#> 7931 10 1980 41895
#> 7932 10 1985 37620
#> 7933 10 1990 39281
#> 7934 10 1995 33282
#> 7935 10 2000 33841
#> 7936 10 2005 36302
#> 7937 10 2010 36710
#> 7938 10 2015 32353
#> 7939 10 1950 4100
#> 7940 10 1955 5602
#> 7941 10 1960 7299
#> 7942 10 1965 8323
#> 7943 10 1970 10069
#> 7944 10 1975 10507
#> 7945 10 1980 10904
#> 7946 10 1985 11209
#> 7947 10 1990 11396
#> 7948 10 1995 12687
#> 7949 10 2000 14362
#> 7950 10 2005 15110
#> 7951 10 2010 14799
#> 7952 10 2015 14120
#> 7953 10 1950 366980
#> 7954 10 1955 405989
#> 7955 10 1960 481820
#> 7956 10 1965 634081
#> 7957 10 1970 721527
#> 7958 10 1975 805000
#> 7959 10 1980 917558
#> 7960 10 1985 1065849
#> 7961 10 1990 1238301
#> 7962 10 1995 1389743
#> 7963 10 2000 1483933
#> 7964 10 2005 1685604
#> 7965 10 2010 1841643
#> 7966 10 2015 1960131
#> 7967 10 1950 329958
#> 7968 10 1955 351680
#> 7969 10 1960 370896
#> 7970 10 1965 459425
#> 7971 10 1970 496470
#> 7972 10 1975 502876
#> 7973 10 1980 506830
#> 7974 10 1985 578858
#> 7975 10 1990 710182
#> 7976 10 1995 948519
#> 7977 10 2000 1080104
#> 7978 10 2005 1201853
#> 7979 10 2010 1336685
#> 7980 10 2015 1494286
#> 7981 10 1950 53617
#> 7982 10 1955 61571
#> 7983 10 1960 66607
#> 7984 10 1965 78449
#> 7985 10 1970 81099
#> 7986 10 1975 86562
#> 7987 10 1980 89255
#> 7988 10 1985 105436
#> 7989 10 1990 124906
#> 7990 10 1995 148717
#> 7991 10 2000 162811
#> 7992 10 2005 178348
#> 7993 10 2010 189714
#> 7994 10 2015 208904
#> 7995 10 1950 44079
#> 7996 10 1955 49094
#> 7997 10 1960 67318
#> 7998 10 1965 88914
#> 7999 10 1970 101165
#> 8000 10 1975 97590
#> 8001 10 1980 110779
#> 8002 10 1985 102558
#> 8003 10 1990 88844
#> 8004 10 1995 88015
#> 8005 10 2000 79316
#> 8006 10 2005 95257
#> 8007 10 2010 87586
#> 8008 10 2015 80625
#> 8009 10 1950 379691
#> 8010 10 1955 404221
#> 8011 10 1960 412096
#> 8012 10 1965 498666
#> 8013 10 1970 565416
#> 8014 10 1975 637894
#> 8015 10 1980 682743
#> 8016 10 1985 719467
#> 8017 10 1990 845955
#> 8018 10 1995 1032037
#> 8019 10 2000 1086187
#> 8020 10 2005 1116793
#> 8021 10 2010 1152367
#> 8022 10 2015 1164053
#> 8023 10 1950 56558519
#> 8024 10 1955 59550800
#> 8025 10 1960 70405416
#> 8026 10 1965 73481018
#> 8027 10 1970 77393356
#> 8028 10 1975 79248024
#> 8029 10 1980 76966687
#> 8030 10 1985 74384507
#> 8031 10 1990 70956229
#> 8032 10 1995 71589046
#> 8033 10 2000 71117774
#> 8034 10 2005 70835593
#> 8035 10 2010 67532189
#> 8036 10 2015 65597073
#> 8037 10 1950 176563
#> 8038 10 1955 196928
#> 8039 10 1960 237734
#> 8040 10 1965 301609
#> 8041 10 1970 352071
#> 8042 10 1975 408188
#> 8043 10 1980 483746
#> 8044 10 1985 557888
#> 8045 10 1990 655673
#> 8046 10 1995 747804
#> 8047 10 2000 829690
#> 8048 10 2005 923562
#> 8049 10 2010 983461
#> 8050 10 2015 1012257
#> 8051 10 1950 733760
#> 8052 10 1955 779196
#> 8053 10 1960 787946
#> 8054 10 1965 930284
#> 8055 10 1970 812860
#> 8056 10 1975 633775
#> 8057 10 1980 710878
#> 8058 10 1985 776755
#> 8059 10 1990 867597
#> 8060 10 1995 651408
#> 8061 10 2000 630045
#> 8062 10 2005 595305
#> 8063 10 2010 510163
#> 8064 10 2015 483008
#> 8065 10 1950 11452
#> 8066 10 1955 14184
#> 8067 10 1960 17875
#> 8068 10 1965 20313
#> 8069 10 1970 22552
#> 8070 10 1975 22870
#> 8071 10 1980 20958
#> 8072 10 1985 21094
#> 8073 10 1990 20933
#> 8074 10 1995 21217
#> 8075 10 2000 20899
#> 8076 10 2005 23371
#> 8077 10 2010 21681
#> 8078 10 2015 21303
#> 8079 10 1950 42141586
#> 8080 10 1955 42953604
#> 8081 10 1960 47340225
#> 8082 10 1965 59102006
#> 8083 10 1970 65564651
#> 8084 10 1975 72952307
#> 8085 10 1980 80097379
#> 8086 10 1985 88716937
#> 8087 10 1990 97800443
#> 8088 10 1995 109616265
#> 8089 10 2000 116755355
#> 8090 10 2005 120389399
#> 8091 10 2010 124175735
#> 8092 10 2015 126752480
#> 8093 10 1950 8435469
#> 8094 10 1955 8683074
#> 8095 10 1960 8941101
#> 8096 10 1965 11013351
#> 8097 10 1970 13972922
#> 8098 10 1975 16261267
#> 8099 10 1980 18409330
#> 8100 10 1985 20069517
#> 8101 10 1990 21388784
#> 8102 10 1995 22395036
#> 8103 10 2000 21913746
#> 8104 10 2005 22675602
#> 8105 10 2010 22692891
#> 8106 10 2015 23676774
#> 8107 10 1950 1820701
#> 8108 10 1955 1781650
#> 8109 10 1960 2227456
#> 8110 10 1965 3123597
#> 8111 10 1970 3604599
#> 8112 10 1975 4087534
#> 8113 10 1980 4625540
#> 8114 10 1985 5532505
#> 8115 10 1990 7266152
#> 8116 10 1995 8825699
#> 8117 10 2000 9058624
#> 8118 10 2005 7241381
#> 8119 10 2010 5573324
#> 8120 10 2015 5437053
#> 8121 10 1950 609865
#> 8122 10 1955 692696
#> 8123 10 1960 721602
#> 8124 10 1965 1099900
#> 8125 10 1970 1111642
#> 8126 10 1975 1390764
#> 8127 10 1980 1843881
#> 8128 10 1985 2097325
#> 8129 10 1990 2369212
#> 8130 10 1995 2630475
#> 8131 10 2000 2956453
#> 8132 10 2005 3306206
#> 8133 10 2010 3776677
#> 8134 10 2015 4214731
#> 8135 10 1950 252972
#> 8136 10 1955 256563
#> 8137 10 1960 289951
#> 8138 10 1965 291668
#> 8139 10 1970 288433
#> 8140 10 1975 323542
#> 8141 10 1980 321816
#> 8142 10 1985 361737
#> 8143 10 1990 359964
#> 8144 10 1995 348133
#> 8145 10 2000 297155
#> 8146 10 2005 268398
#> 8147 10 2010 279460
#> 8148 10 2015 313024
#> 8149 10 1950 108599
#> 8150 10 1955 144156
#> 8151 10 1960 226195
#> 8152 10 1965 302726
#> 8153 10 1970 295134
#> 8154 10 1975 320059
#> 8155 10 1980 352380
#> 8156 10 1985 425918
#> 8157 10 1990 461994
#> 8158 10 1995 507940
#> 8159 10 2000 527379
#> 8160 10 2005 553675
#> 8161 10 2010 619589
#> 8162 10 2015 672085
#> 8163 10 1950 4190737
#> 8164 10 1955 3809721
#> 8165 10 1960 4293150
#> 8166 10 1965 3987195
#> 8167 10 1970 4132253
#> 8168 10 1975 4555935
#> 8169 10 1980 4565338
#> 8170 10 1985 4299021
#> 8171 10 1990 3561309
#> 8172 10 1995 3041007
#> 8173 10 2000 2831090
#> 8174 10 2005 2815246
#> 8175 10 2010 2774596
#> 8176 10 2015 2803971
#> 8177 10 1950 150001
#> 8178 10 1955 161716
#> 8179 10 1960 174444
#> 8180 10 1965 188173
#> 8181 10 1970 247482
#> 8182 10 1975 295392
#> 8183 10 1980 284044
#> 8184 10 1985 286352
#> 8185 10 1990 263126
#> 8186 10 1995 274951
#> 8187 10 2000 276423
#> 8188 10 2005 282202
#> 8189 10 2010 280484
#> 8190 10 2015 243132
#> 8191 10 1950 8634342
#> 8192 10 1955 9397282
#> 8193 10 1960 10932346
#> 8194 10 1965 9357705
#> 8195 10 1970 8039540
#> 8196 10 1975 8253242
#> 8197 10 1980 9021694
#> 8198 10 1985 10139894
#> 8199 10 1990 8596445
#> 8200 10 1995 7621123
#> 8201 10 2000 6766878
#> 8202 10 2005 6128112
#> 8203 10 2010 5947557
#> 8204 10 2015 5670023
#> 8205 10 1950 59517
#> 8206 10 1955 87275
#> 8207 10 1960 113904
#> 8208 10 1965 128357
#> 8209 10 1970 200142
#> 8210 10 1975 248230
#> 8211 10 1980 324112
#> 8212 10 1985 406705
#> 8213 10 1990 474362
#> 8214 10 1995 577832
#> 8215 10 2000 605800
#> 8216 10 2005 654013
#> 8217 10 2010 807117
#> 8218 10 2015 996426
#> 8219 10 1950 989874
#> 8220 10 1955 635319
#> 8221 10 1960 893402
#> 8222 10 1965 1281528
#> 8223 10 1970 1609308
#> 8224 10 1975 1715696
#> 8225 10 1980 1509215
#> 8226 10 1985 1576367
#> 8227 10 1990 1591508
#> 8228 10 1995 1566466
#> 8229 10 2000 1616948
#> 8230 10 2005 1416491
#> 8231 10 2010 1142963
#> 8232 10 2015 1138875
#> 8233 10 1950 653779
#> 8234 10 1955 681616
#> 8235 10 1960 917129
#> 8236 10 1965 1201292
#> 8237 10 1970 1450524
#> 8238 10 1975 1751641
#> 8239 10 1980 2122171
#> 8240 10 1985 2622946
#> 8241 10 1990 3184695
#> 8242 10 1995 3791678
#> 8243 10 2000 4255928
#> 8244 10 2005 4457368
#> 8245 10 2010 5207804
#> 8246 10 2015 5900936
#> 8247 10 1950 3927
#> 8248 10 1955 3907
#> 8249 10 1960 4920
#> 8250 10 1965 5855
#> 8251 10 1970 6985
#> 8252 10 1975 7692
#> 8253 10 1980 7411
#> 8254 10 1985 6780
#> 8255 10 1990 7943
#> 8256 10 1995 9254
#> 8257 10 2000 10507
#> 8258 10 2005 10771
#> 8259 10 2010 12159
#> 8260 10 2015 10804
#> 8261 10 1950 14651
#> 8262 10 1955 14546
#> 8263 10 1960 19721
#> 8264 10 1965 40537
#> 8265 10 1970 76090
#> 8266 10 1975 111206
#> 8267 10 1980 149756
#> 8268 10 1985 175932
#> 8269 10 1990 218840
#> 8270 10 1995 150027
#> 8271 10 2000 167759
#> 8272 10 2005 172385
#> 8273 10 2010 205611
#> 8274 10 2015 231669
#> 8275 10 1950 203724
#> 8276 10 1955 132585
#> 8277 10 1960 166186
#> 8278 10 1965 273785
#> 8279 10 1970 377944
#> 8280 10 1975 427946
#> 8281 10 1980 417894
#> 8282 10 1985 431325
#> 8283 10 1990 463997
#> 8284 10 1995 523006
#> 8285 10 2000 596252
#> 8286 10 2005 581359
#> 8287 10 2010 521337
#> 8288 10 2015 477944
#> 8289 10 1950 19119251
#> 8290 10 1955 21454191
#> 8291 10 1960 25254555
#> 8292 10 1965 30811357
#> 8293 10 1970 35324236
#> 8294 10 1975 40521234
#> 8295 10 1980 44012316
#> 8296 10 1985 47478698
#> 8297 10 1990 51039129
#> 8298 10 1995 54007739
#> 8299 10 2000 55333231
#> 8300 10 2005 55816438
#> 8301 10 2010 56144554
#> 8302 10 2015 54875507
#> 8303 10 1950 189546
#> 8304 10 1955 211164
#> 8305 10 1960 246133
#> 8306 10 1965 289206
#> 8307 10 1970 320358
#> 8308 10 1975 360155
#> 8309 10 1980 404439
#> 8310 10 1985 469608
#> 8311 10 1990 526617
#> 8312 10 1995 599428
#> 8313 10 2000 706881
#> 8314 10 2005 793875
#> 8315 10 2010 755647
#> 8316 10 2015 717361
#> 8317 10 1950 178330
#> 8318 10 1955 161970
#> 8319 10 1960 145879
#> 8320 10 1965 162158
#> 8321 10 1970 175574
#> 8322 10 1975 176963
#> 8323 10 1980 162006
#> 8324 10 1985 180895
#> 8325 10 1990 172205
#> 8326 10 1995 183748
#> 8327 10 2000 186714
#> 8328 10 2005 137995
#> 8329 10 2010 88167
#> 8330 10 2015 93906
#> 8331 10 1950 22203897
#> 8332 10 1955 24569458
#> 8333 10 1960 27483247
#> 8334 10 1965 31845826
#> 8335 10 1970 36910690
#> 8336 10 1975 42394264
#> 8337 10 1980 48446743
#> 8338 10 1985 55137708
#> 8339 10 1990 63808728
#> 8340 10 1995 74065826
#> 8341 10 2000 83003055
#> 8342 10 2005 92557625
#> 8343 10 2010 103820559
#> 8344 10 2015 115613777
#> 8345 10 1950 135982
#> 8346 10 1955 138602
#> 8347 10 1960 178557
#> 8348 10 1965 265295
#> 8349 10 1970 293620
#> 8350 10 1975 322843
#> 8351 10 1980 313226
#> 8352 10 1985 303821
#> 8353 10 1990 300890
#> 8354 10 1995 312271
#> 8355 10 2000 310871
#> 8356 10 2005 413825
#> 8357 10 2010 409490
#> 8358 10 2015 504099
#> 8359 10 1950 83242
#> 8360 10 1955 93318
#> 8361 10 1960 106829
#> 8362 10 1965 115749
#> 8363 10 1970 130085
#> 8364 10 1975 145945
#> 8365 10 1980 165576
#> 8366 10 1985 191424
#> 8367 10 1990 211583
#> 8368 10 1995 232051
#> 8369 10 2000 242301
#> 8370 10 2005 249206
#> 8371 10 2010 254420
#> 8372 10 2015 244445
#> 8373 10 1950 187537892
#> 8374 10 1955 195955456
#> 8375 10 1960 227614592
#> 8376 10 1965 287439769
#> 8377 10 1970 314577231
#> 8378 10 1975 366046673
#> 8379 10 1980 415532627
#> 8380 10 1985 439154343
#> 8381 10 1990 449647559
#> 8382 10 1995 494739185
#> 8383 10 2000 547805076
#> 8384 10 2005 535307998
#> 8385 10 2010 529138208
#> 8386 10 2015 545278049
#> 8387 10 1950 131720693
#> 8388 10 1955 139402018
#> 8389 10 1960 157311086
#> 8390 10 1965 192498776
#> 8391 10 1970 223861513
#> 8392 10 1975 254210773
#> 8393 10 1980 282682500
#> 8394 10 1985 313759591
#> 8395 10 1990 348135364
#> 8396 10 1995 387803838
#> 8397 10 2000 414019662
#> 8398 10 2005 430942847
#> 8399 10 2010 446108150
#> 8400 10 2015 464950974
#> 8401 10 1950 165333995
#> 8402 10 1955 171385998
#> 8403 10 1960 200131345
#> 8404 10 1965 255593943
#> 8405 10 1970 277666541
#> 8406 10 1975 323652409
#> 8407 10 1980 367085884
#> 8408 10 1985 384016635
#> 8409 10 1990 385838831
#> 8410 10 1995 420673359
#> 8411 10 2000 464802021
#> 8412 10 2005 442750373
#> 8413 10 2010 425317649
#> 8414 10 2015 429664272
#> 8415 10 1950 112188
#> 8416 10 1955 122810
#> 8417 10 1960 122704
#> 8418 10 1965 144102
#> 8419 10 1970 166810
#> 8420 10 1975 193368
#> 8421 10 1980 226832
#> 8422 10 1985 268870
#> 8423 10 1990 262871
#> 8424 10 1995 265613
#> 8425 10 2000 353913
#> 8426 10 2005 383445
#> 8427 10 2010 483044
#> 8428 10 2015 565445
#> 8429 10 1950 120150
#> 8430 10 1955 137751
#> 8431 10 1960 153887
#> 8432 10 1965 194475
#> 8433 10 1970 239168
#> 8434 10 1975 313374
#> 8435 10 1980 422641
#> 8436 10 1985 523379
#> 8437 10 1990 589685
#> 8438 10 1995 617963
#> 8439 10 2000 641847
#> 8440 10 2005 600412
#> 8441 10 2010 566251
#> 8442 10 2015 556958
#> 8443 10 1950 246573
#> 8444 10 1955 225743
#> 8445 10 1960 229521
#> 8446 10 1965 242080
#> 8447 10 1970 287271
#> 8448 10 1975 291218
#> 8449 10 1980 272385
#> 8450 10 1985 273463
#> 8451 10 1990 263946
#> 8452 10 1995 269539
#> 8453 10 2000 276968
#> 8454 10 2005 235499
#> 8455 10 2010 173063
#> 8456 10 2015 137682
#> 8457 10 1950 14985676
#> 8458 10 1955 16506211
#> 8459 10 1960 17944635
#> 8460 10 1965 19942754
#> 8461 10 1970 23510604
#> 8462 10 1975 26521411
#> 8463 10 1980 30548806
#> 8464 10 1985 34829284
#> 8465 10 1990 39610990
#> 8466 10 1995 46467583
#> 8467 10 2000 53134145
#> 8468 10 2005 60952509
#> 8469 10 2010 70534850
#> 8470 10 2015 80473410
#> 8471 10 1950 87848461
#> 8472 10 1955 90059962
#> 8473 10 1960 100632852
#> 8474 10 1965 124214501
#> 8475 10 1970 143400076
#> 8476 10 1975 161839295
#> 8477 10 1980 179448152
#> 8478 10 1985 199843024
#> 8479 10 1990 222856751
#> 8480 10 1995 249699196
#> 8481 10 2000 267405635
#> 8482 10 2005 277001119
#> 8483 10 2010 284493517
#> 8484 10 2015 295122768
#> 8485 10 1950 20001
#> 8486 10 1955 19999
#> 8487 10 1960 20034
#> 8488 10 1965 23017
#> 8489 10 1970 25490
#> 8490 10 1975 26839
#> 8491 10 1980 25923
#> 8492 10 1985 21417
#> 8493 10 1990 21060
#> 8494 10 1995 22967
#> 8495 10 2000 25808
#> 8496 10 2005 28712
#> 8497 10 2010 30834
#> 8498 10 2015 31308
#> 8499 10 1950 444230
#> 8500 10 1955 456308
#> 8501 10 1960 517554
#> 8502 10 1965 688986
#> 8503 10 1970 801880
#> 8504 10 1975 927341
#> 8505 10 1980 1080815
#> 8506 10 1985 1267964
#> 8507 10 1990 1477036
#> 8508 10 1995 1673265
#> 8509 10 2000 1937453
#> 8510 10 2005 2306707
#> 8511 10 2010 2730515
#> 8512 10 2015 3036091
#> 8513 10 1950 353880
#> 8514 10 1955 413132
#> 8515 10 1960 477719
#> 8516 10 1965 477626
#> 8517 10 1970 552131
#> 8518 10 1975 650106
#> 8519 10 1980 771800
#> 8520 10 1985 913711
#> 8521 10 1990 1183315
#> 8522 10 1995 1214056
#> 8523 10 2000 1499346
#> 8524 10 2005 1734288
#> 8525 10 2010 1994467
#> 8526 10 2015 2281329
#> 8527 10 1950 727001
#> 8528 10 1955 729901
#> 8529 10 1960 971041
#> 8530 10 1965 1236720
#> 8531 10 1970 1400220
#> 8532 10 1975 1616120
#> 8533 10 1980 1671327
#> 8534 10 1985 1780389
#> 8535 10 1990 1999979
#> 8536 10 1995 2243477
#> 8537 10 2000 2462453
#> 8538 10 2005 2579145
#> 8539 10 2010 2792570
#> 8540 10 2015 2614703
#> 8541 10 1950 10066
#> 8542 10 1955 10107
#> 8543 10 1960 8618
#> 8544 10 1965 9830
#> 8545 10 1970 13843
#> 8546 10 1975 17318
#> 8547 10 1980 20223
#> 8548 10 1985 23133
#> 8549 10 1990 27004
#> 8550 10 1995 36363
#> 8551 10 2000 41707
#> 8552 10 2005 38426
#> 8553 10 2010 30912
#> 8554 10 2015 27377
#> 8555 10 1950 496532
#> 8556 10 1955 559152
#> 8557 10 1960 568512
#> 8558 10 1965 650961
#> 8559 10 1970 688589
#> 8560 10 1975 747494
#> 8561 10 1980 841321
#> 8562 10 1985 965719
#> 8563 10 1990 1095956
#> 8564 10 1995 1244631
#> 8565 10 2000 1392972
#> 8566 10 2005 1608574
#> 8567 10 2010 1887182
#> 8568 10 2015 2293505
#> 8569 10 1950 32000
#> 8570 10 1955 29614
#> 8571 10 1960 38943
#> 8572 10 1965 36375
#> 8573 10 1970 32059
#> 8574 10 1975 31177
#> 8575 10 1980 24268
#> 8576 10 1985 26876
#> 8577 10 1990 29204
#> 8578 10 1995 29044
#> 8579 10 2000 28014
#> 8580 10 2005 27015
#> 8581 10 2010 23231
#> 8582 10 2015 20179
#> 8583 10 1950 24002
#> 8584 10 1955 25041
#> 8585 10 1960 32218
#> 8586 10 1965 40507
#> 8587 10 1970 41024
#> 8588 10 1975 46931
#> 8589 10 1980 40826
#> 8590 10 1985 34546
#> 8591 10 1990 28811
#> 8592 10 1995 30220
#> 8593 10 2000 32165
#> 8594 10 2005 30774
#> 8595 10 2010 27078
#> 8596 10 2015 25358
#> 8597 10 1950 80661
#> 8598 10 1955 88785
#> 8599 10 1960 99553
#> 8600 10 1965 118403
#> 8601 10 1970 144751
#> 8602 10 1975 169070
#> 8603 10 1980 194678
#> 8604 10 1985 224325
#> 8605 10 1990 257046
#> 8606 10 1995 294909
#> 8607 10 2000 337337
#> 8608 10 2005 381058
#> 8609 10 2010 430899
#> 8610 10 2015 487044
#> 8611 10 1950 60967
#> 8612 10 1955 71271
#> 8613 10 1960 82484
#> 8614 10 1965 98725
#> 8615 10 1970 114419
#> 8616 10 1975 134114
#> 8617 10 1980 120209
#> 8618 10 1985 113906
#> 8619 10 1990 105673
#> 8620 10 1995 101785
#> 8621 10 2000 97728
#> 8622 10 2005 108789
#> 8623 10 2010 98243
#> 8624 10 2015 94747
#> 8625 10 1950 1219
#> 8626 10 1955 1931
#> 8627 10 1960 2588
#> 8628 10 1965 3617
#> 8629 10 1970 4348
#> 8630 10 1975 5608
#> 8631 10 1980 7306
#> 8632 10 1985 9213
#> 8633 10 1990 12382
#> 8634 10 1995 16492
#> 8635 10 2000 20101
#> 8636 10 2005 20887
#> 8637 10 2010 24972
#> 8638 10 2015 29667
#> 8639 10 1950 249835
#> 8640 10 1955 275341
#> 8641 10 1960 309939
#> 8642 10 1965 373788
#> 8643 10 1970 427126
#> 8644 10 1975 482235
#> 8645 10 1980 541998
#> 8646 10 1985 623622
#> 8647 10 1990 704472
#> 8648 10 1995 779504
#> 8649 10 2000 827651
#> 8650 10 2005 903619
#> 8651 10 2010 1018574
#> 8652 10 2015 1104311
#> 8653 10 1950 3169776
#> 8654 10 1955 3815618
#> 8655 10 1960 4432231
#> 8656 10 1965 5800521
#> 8657 10 1970 6774003
#> 8658 10 1975 7760983
#> 8659 10 1980 9027064
#> 8660 10 1985 10827760
#> 8661 10 1990 10827290
#> 8662 10 1995 10841106
#> 8663 10 2000 11143384
#> 8664 10 2005 11424039
#> 8665 10 2010 11826837
#> 8666 10 2015 11653431
#> 8667 10 1950 15252
#> 8668 10 1955 17798
#> 8669 10 1960 21745
#> 8670 10 1965 26929
#> 8671 10 1970 32043
#> 8672 10 1975 34072
#> 8673 10 1980 36740
#> 8674 10 1985 40150
#> 8675 10 1990 43774
#> 8676 10 1995 50572
#> 8677 10 2000 53793
#> 8678 10 2005 52686
#> 8679 10 2010 54743
#> 8680 10 2015 52342
#> 8681 10 1950 3704
#> 8682 10 1955 4216
#> 8683 10 1960 4718
#> 8684 10 1965 7128
#> 8685 10 1970 8013
#> 8686 10 1975 8291
#> 8687 10 1980 10024
#> 8688 10 1985 11707
#> 8689 10 1990 12488
#> 8690 10 1995 15076
#> 8691 10 2000 14184
#> 8692 10 2005 13994
#> 8693 10 2010 13545
#> 8694 10 2015 12459
#> 8695 10 1950 3004881
#> 8696 10 1955 3297733
#> 8697 10 1960 3647178
#> 8698 10 1965 4243224
#> 8699 10 1970 4808553
#> 8700 10 1975 5537214
#> 8701 10 1980 6420138
#> 8702 10 1985 7489689
#> 8703 10 1990 8806563
#> 8704 10 1995 10513144
#> 8705 10 2000 12080952
#> 8706 10 2005 13970218
#> 8707 10 2010 16230213
#> 8708 10 2015 19356471
#> 8709 10 1950 188959105
#> 8710 10 1955 187170275
#> 8711 10 1960 221425833
#> 8712 10 1965 281016871
#> 8713 10 1970 303427225
#> 8714 10 1975 348912500
#> 8715 10 1980 391956378
#> 8716 10 1985 411999967
#> 8717 10 1990 418261462
#> 8718 10 1995 456835700
#> 8719 10 2000 503620027
#> 8720 10 2005 477040765
#> 8721 10 2010 458791621
#> 8722 10 2015 466096498
#> 8723 10 1950 77170
#> 8724 10 1955 79423
#> 8725 10 1960 84389
#> 8726 10 1965 113158
#> 8727 10 1970 141948
#> 8728 10 1975 193135
#> 8729 10 1980 216151
#> 8730 10 1985 245095
#> 8731 10 1990 260571
#> 8732 10 1995 280909
#> 8733 10 2000 321230
#> 8734 10 2005 277519
#> 8735 10 2010 230930
#> 8736 10 2015 219091
#> 8737 10 1950 48074
#> 8738 10 1955 46594
#> 8739 10 1960 47790
#> 8740 10 1965 57922
#> 8741 10 1970 57544
#> 8742 10 1975 59195
#> 8743 10 1980 53918
#> 8744 10 1985 53050
#> 8745 10 1990 51168
#> 8746 10 1995 50626
#> 8747 10 2000 46427
#> 8748 10 2005 43268
#> 8749 10 2010 40980
#> 8750 10 2015 39342
#> 8751 10 1950 73049382
#> 8752 10 1955 67367284
#> 8753 10 1960 82285221
#> 8754 10 1965 87155816
#> 8755 10 1970 89927583
#> 8756 10 1975 88829454
#> 8757 10 1980 84134253
#> 8758 10 1985 82240271
#> 8759 10 1990 79366983
#> 8760 10 1995 80347624
#> 8761 10 2000 80282348
#> 8762 10 2005 73753925
#> 8763 10 2010 67953918
#> 8764 10 2015 67128990
#> 8765 10 1950 1069061
#> 8766 10 1955 1081957
#> 8767 10 1960 1249262
#> 8768 10 1965 1822923
#> 8769 10 1970 2184860
#> 8770 10 1975 2502813
#> 8771 10 1980 2656915
#> 8772 10 1985 2779604
#> 8773 10 1990 3048385
#> 8774 10 1995 3374856
#> 8775 10 2000 3309333
#> 8776 10 2005 3265143
#> 8777 10 2010 3013026
#> 8778 10 2015 3023349
#> 8779 10 1950 702817
#> 8780 10 1955 766888
#> 8781 10 1960 833180
#> 8782 10 1965 964701
#> 8783 10 1970 1100937
#> 8784 10 1975 1236602
#> 8785 10 1980 1402496
#> 8786 10 1985 1627691
#> 8787 10 1990 1804715
#> 8788 10 1995 1959410
#> 8789 10 2000 2202344
#> 8790 10 2005 2585962
#> 8791 10 2010 3068392
#> 8792 10 2015 3619977
#> 8793 10 1950 1677787
#> 8794 10 1955 1741389
#> 8795 10 1960 2096693
#> 8796 10 1965 2875651
#> 8797 10 1970 3213082
#> 8798 10 1975 3555210
#> 8799 10 1980 4042943
#> 8800 10 1985 4468500
#> 8801 10 1990 4856387
#> 8802 10 1995 5188221
#> 8803 10 2000 4973695
#> 8804 10 2005 4728442
#> 8805 10 2010 4894104
#> 8806 10 2015 5197354
#> 8807 10 1950 12705621
#> 8808 10 1955 15334946
#> 8809 10 1960 19083324
#> 8810 10 1965 21496937
#> 8811 10 1970 23315969
#> 8812 10 1975 22834294
#> 8813 10 1980 20647151
#> 8814 10 1985 19216157
#> 8815 10 1990 19324452
#> 8816 10 1995 20924779
#> 8817 10 2000 22802731
#> 8818 10 2005 23701455
#> 8819 10 2010 22774503
#> 8820 10 2015 22572787
#> 8821 10 1950 51231
#> 8822 10 1955 59320
#> 8823 10 1960 68585
#> 8824 10 1965 80791
#> 8825 10 1970 92990
#> 8826 10 1975 107905
#> 8827 10 1980 126633
#> 8828 10 1985 155778
#> 8829 10 1990 182718
#> 8830 10 1995 200459
#> 8831 10 2000 230704
#> 8832 10 2005 259486
#> 8833 10 2010 268164
#> 8834 10 2015 272344
#> 8835 10 1950 980453
#> 8836 10 1955 1033400
#> 8837 10 1960 1052549
#> 8838 10 1965 1334176
#> 8839 10 1970 1422020
#> 8840 10 1975 1538402
#> 8841 10 1980 1725704
#> 8842 10 1985 1964396
#> 8843 10 1990 2270922
#> 8844 10 1995 2596329
#> 8845 10 2000 2888578
#> 8846 10 2005 3206867
#> 8847 10 2010 3420286
#> 8848 10 2015 3373818
#> 8849 10 1950 815601
#> 8850 10 1955 917177
#> 8851 10 1960 1179579
#> 8852 10 1965 1104826
#> 8853 10 1970 1147393
#> 8854 10 1975 1236976
#> 8855 10 1980 1220977
#> 8856 10 1985 1058245
#> 8857 10 1990 902149
#> 8858 10 1995 904847
#> 8859 10 2000 973102
#> 8860 10 2005 1006370
#> 8861 10 2010 989601
#> 8862 10 2015 1011390
#> 8863 10 1950 6736
#> 8864 10 1955 7270
#> 8865 10 1960 8369
#> 8866 10 1965 9946
#> 8867 10 1970 11335
#> 8868 10 1975 14190
#> 8869 10 1980 16158
#> 8870 10 1985 19961
#> 8871 10 1990 18181
#> 8872 10 1995 17994
#> 8873 10 2000 19030
#> 8874 10 2005 21597
#> 8875 10 2010 20513
#> 8876 10 2015 20197
#> 8877 10 1950 146000
#> 8878 10 1955 182032
#> 8879 10 1960 237058
#> 8880 10 1965 261122
#> 8881 10 1970 295178
#> 8882 10 1975 316863
#> 8883 10 1980 303866
#> 8884 10 1985 297151
#> 8885 10 1990 259225
#> 8886 10 1995 263283
#> 8887 10 2000 291494
#> 8888 10 2005 314046
#> 8889 10 2010 296575
#> 8890 10 2015 297247
#> 8891 10 1950 160148
#> 8892 10 1955 179857
#> 8893 10 1960 189887
#> 8894 10 1965 279210
#> 8895 10 1970 336130
#> 8896 10 1975 362846
#> 8897 10 1980 413009
#> 8898 10 1985 486732
#> 8899 10 1990 554976
#> 8900 10 1995 626459
#> 8901 10 2000 654597
#> 8902 10 2005 647635
#> 8903 10 2010 628286
#> 8904 10 2015 603883
#> 8905 10 1950 336027
#> 8906 10 1955 395578
#> 8907 10 1960 420056
#> 8908 10 1965 492595
#> 8909 10 1970 574759
#> 8910 10 1975 669411
#> 8911 10 1980 766802
#> 8912 10 1985 871557
#> 8913 10 1990 1028598
#> 8914 10 1995 1217248
#> 8915 10 2000 1399644
#> 8916 10 2005 1697685
#> 8917 10 2010 2129952
#> 8918 10 2015 2649861
#> 8919 10 1950 4386935
#> 8920 10 1955 4842569
#> 8921 10 1960 5258235
#> 8922 10 1965 5703119
#> 8923 10 1970 6512140
#> 8924 10 1975 7441893
#> 8925 10 1980 8541929
#> 8926 10 1985 10119686
#> 8927 10 1990 11970869
#> 8928 10 1995 13669126
#> 8929 10 2000 15046223
#> 8930 10 2005 16648346
#> 8931 10 2010 19101686
#> 8932 10 2015 22401373
#> 8933 10 1950 5420158
#> 8934 10 1955 5775485
#> 8935 10 1960 7216127
#> 8936 10 1965 8851649
#> 8937 10 1970 10474797
#> 8938 10 1975 12029583
#> 8939 10 1980 13535528
#> 8940 10 1985 15076069
#> 8941 10 1990 17294500
#> 8942 10 1995 19721963
#> 8943 10 2000 21148327
#> 8944 10 2005 20749198
#> 8945 10 2010 19988156
#> 8946 10 2015 21078156
#> 8947 10 1950 5459657
#> 8948 10 1955 5956189
#> 8949 10 1960 6907484
#> 8950 10 1965 6248500
#> 8951 10 1970 6557606
#> 8952 10 1975 7293234
#> 8953 10 1980 7132846
#> 8954 10 1985 6347704
#> 8955 10 1990 5748560
#> 8956 10 1995 5941613
#> 8957 10 2000 6244705
#> 8958 10 2005 6187557
#> 8959 10 2010 5759907
#> 8960 10 2015 5623423
#> 8961 10 1950 210464
#> 8962 10 1955 257816
#> 8963 10 1960 317400
#> 8964 10 1965 302263
#> 8965 10 1970 308274
#> 8966 10 1975 312732
#> 8967 10 1980 332853
#> 8968 10 1985 313614
#> 8969 10 1990 265836
#> 8970 10 1995 261096
#> 8971 10 2000 288651
#> 8972 10 2005 313505
#> 8973 10 2010 315519
#> 8974 10 2015 306687
#> 8975 10 1950 1026223
#> 8976 10 1955 1247228
#> 8977 10 1960 1586363
#> 8978 10 1965 1776623
#> 8979 10 1970 2054022
#> 8980 10 1975 2185313
#> 8981 10 1980 2224359
#> 8982 10 1985 2365564
#> 8983 10 1990 2310494
#> 8984 10 1995 2459380
#> 8985 10 2000 2581494
#> 8986 10 2005 2747615
#> 8987 10 2010 2832523
#> 8988 10 2015 2938736
#> 8989 10 1950 53387
#> 8990 10 1955 59755
#> 8991 10 1960 65634
#> 8992 10 1965 73912
#> 8993 10 1970 89264
#> 8994 10 1975 106955
#> 8995 10 1980 128907
#> 8996 10 1985 160438
#> 8997 10 1990 217922
#> 8998 10 1995 267637
#> 8999 10 2000 271161
#> 9000 10 2005 292801
#> 9001 10 2010 247528
#> 9002 10 2015 244659
#> 9003 10 1950 4326112
#> 9004 10 1955 4856129
#> 9005 10 1960 5021258
#> 9006 10 1965 5269860
#> 9007 10 1970 6592372
#> 9008 10 1975 7996192
#> 9009 10 1980 9390792
#> 9010 10 1985 10833991
#> 9011 10 1990 12711908
#> 9012 10 1995 15013402
#> 9013 10 2000 17741169
#> 9014 10 2005 18901886
#> 9015 10 2010 19548604
#> 9016 10 2015 19552009
#> 9017 10 1950 101462
#> 9018 10 1955 116972
#> 9019 10 1960 135595
#> 9020 10 1965 160643
#> 9021 10 1970 190787
#> 9022 10 1975 221368
#> 9023 10 1980 247459
#> 9024 10 1985 271086
#> 9025 10 1990 283112
#> 9026 10 1995 293279
#> 9027 10 2000 307888
#> 9028 10 2005 320114
#> 9029 10 2010 341420
#> 9030 10 2015 352423
#> 9031 10 1950 190540
#> 9032 10 1955 204406
#> 9033 10 1960 227937
#> 9034 10 1965 276401
#> 9035 10 1970 312311
#> 9036 10 1975 354000
#> 9037 10 1980 405020
#> 9038 10 1985 470234
#> 9039 10 1990 540549
#> 9040 10 1995 602461
#> 9041 10 2000 645515
#> 9042 10 2005 718662
#> 9043 10 2010 827981
#> 9044 10 2015 904317
#> 9045 10 1950 194219
#> 9046 10 1955 214292
#> 9047 10 1960 250030
#> 9048 10 1965 299810
#> 9049 10 1970 332315
#> 9050 10 1975 370728
#> 9051 10 1980 410025
#> 9052 10 1985 427791
#> 9053 10 1990 497174
#> 9054 10 1995 584753
#> 9055 10 2000 644025
#> 9056 10 2005 675632
#> 9057 10 2010 693093
#> 9058 10 2015 657199
#> 9059 10 1950 897969
#> 9060 10 1955 991848
#> 9061 10 1960 1157688
#> 9062 10 1965 1403471
#> 9063 10 1970 1634876
#> 9064 10 1975 1924420
#> 9065 10 1980 2185182
#> 9066 10 1985 2377699
#> 9067 10 1990 2634633
#> 9068 10 1995 2725252
#> 9069 10 2000 2889758
#> 9070 10 2005 2899207
#> 9071 10 2010 2808427
#> 9072 10 2015 2828731
#> 9073 10 1950 2207322
#> 9074 10 1955 2604739
#> 9075 10 1960 3102165
#> 9076 10 1965 4223043
#> 9077 10 1970 4799363
#> 9078 10 1975 5423865
#> 9079 10 1980 6027701
#> 9080 10 1985 6682010
#> 9081 10 1990 7508439
#> 9082 10 1995 8353135
#> 9083 10 2000 9294766
#> 9084 10 2005 9911870
#> 9085 10 2010 10309451
#> 9086 10 2015 10458614
#> 9087 10 1950 2322998
#> 9088 10 1955 2011696
#> 9089 10 1960 2865424
#> 9090 10 1965 3461568
#> 9091 10 1970 3535560
#> 9092 10 1975 2778354
#> 9093 10 1980 2532972
#> 9094 10 1985 2853656
#> 9095 10 1990 3214811
#> 9096 10 1995 3365480
#> 9097 10 2000 2927665
#> 9098 10 2005 2542944
#> 9099 10 2010 2031352
#> 9100 10 2015 1790192
#> 9101 10 1950 31446
#> 9102 10 1955 33986
#> 9103 10 1960 37062
#> 9104 10 1965 47400
#> 9105 10 1970 56477
#> 9106 10 1975 64825
#> 9107 10 1980 67706
#> 9108 10 1985 64745
#> 9109 10 1990 62950
#> 9110 10 1995 67851
#> 9111 10 2000 72002
#> 9112 10 2005 71609
#> 9113 10 2010 68643
#> 9114 10 2015 68354
#> 9115 10 1950 802962
#> 9116 10 1955 766229
#> 9117 10 1960 841337
#> 9118 10 1965 796349
#> 9119 10 1970 809682
#> 9120 10 1975 854602
#> 9121 10 1980 855461
#> 9122 10 1985 853172
#> 9123 10 1990 798668
#> 9124 10 1995 687499
#> 9125 10 2000 587760
#> 9126 10 2005 543941
#> 9127 10 2010 565217
#> 9128 10 2015 531214
#> 9129 10 1950 272500
#> 9130 10 1955 292939
#> 9131 10 1960 320694
#> 9132 10 1965 311971
#> 9133 10 1970 333830
#> 9134 10 1975 328339
#> 9135 10 1980 337403
#> 9136 10 1985 342415
#> 9137 10 1990 338694
#> 9138 10 1995 318217
#> 9139 10 2000 305075
#> 9140 10 2005 297408
#> 9141 10 2010 276815
#> 9142 10 2015 250828
#> 9143 10 1950 2868
#> 9144 10 1955 3811
#> 9145 10 1960 4885
#> 9146 10 1965 7766
#> 9147 10 1970 9866
#> 9148 10 1975 14279
#> 9149 10 1980 18094
#> 9150 10 1985 24348
#> 9151 10 1990 34510
#> 9152 10 1995 42168
#> 9153 10 2000 46417
#> 9154 10 2005 57807
#> 9155 10 2010 63896
#> 9156 10 2015 98267
#> 9157 10 1950 2441973
#> 9158 10 1955 2610211
#> 9159 10 1960 2855987
#> 9160 10 1965 3395704
#> 9161 10 1970 4401970
#> 9162 10 1975 4530139
#> 9163 10 1980 4424410
#> 9164 10 1985 4447140
#> 9165 10 1990 3967083
#> 9166 10 1995 3830244
#> 9167 10 2000 3109322
#> 9168 10 2005 3484539
#> 9169 10 2010 3173545
#> 9170 10 2015 2515237
#> 9171 10 1950 249851
#> 9172 10 1955 214348
#> 9173 10 1960 222332
#> 9174 10 1965 343120
#> 9175 10 1970 414809
#> 9176 10 1975 398283
#> 9177 10 1980 333154
#> 9178 10 1985 351612
#> 9179 10 1990 376133
#> 9180 10 1995 407900
#> 9181 10 2000 418738
#> 9182 10 2005 324046
#> 9183 10 2010 244711
#> 9184 10 2015 201193
#> 9185 10 1950 25402
#> 9186 10 1955 31285
#> 9187 10 1960 39723
#> 9188 10 1965 53299
#> 9189 10 1970 62650
#> 9190 10 1975 69202
#> 9191 10 1980 71053
#> 9192 10 1985 63506
#> 9193 10 1990 60567
#> 9194 10 1995 62630
#> 9195 10 2000 70059
#> 9196 10 2005 69330
#> 9197 10 2010 68030
#> 9198 10 2015 71691
#> 9199 10 1950 1640897
#> 9200 10 1955 1294334
#> 9201 10 1960 1600844
#> 9202 10 1965 1904714
#> 9203 10 1970 1840446
#> 9204 10 1975 1457563
#> 9205 10 1980 2006041
#> 9206 10 1985 1992258
#> 9207 10 1990 2018328
#> 9208 10 1995 1757679
#> 9209 10 2000 1738173
#> 9210 10 2005 1232655
#> 9211 10 2010 1108999
#> 9212 10 2015 1044448
#> 9213 10 1950 12663863
#> 9214 10 1955 6869057
#> 9215 10 1960 10554337
#> 9216 10 1965 12395435
#> 9217 10 1970 13081413
#> 9218 10 1975 11463130
#> 9219 10 1980 9258958
#> 9220 10 1985 9999494
#> 9221 10 1990 10658872
#> 9222 10 1995 11848593
#> 9223 10 2000 12093413
#> 9224 10 2005 8325745
#> 9225 10 2010 6438515
#> 9226 10 2015 6927093
#> 9227 10 1950 245680
#> 9228 10 1955 267104
#> 9229 10 1960 359099
#> 9230 10 1965 432699
#> 9231 10 1970 511204
#> 9232 10 1975 552819
#> 9233 10 1980 625966
#> 9234 10 1985 761028
#> 9235 10 1990 959431
#> 9236 10 1995 896863
#> 9237 10 2000 1162930
#> 9238 10 2005 1056053
#> 9239 10 2010 1225998
#> 9240 10 2015 1399231
#> 9241 10 1950 9890
#> 9242 10 1955 10223
#> 9243 10 1960 11223
#> 9244 10 1965 12667
#> 9245 10 1970 14351
#> 9246 10 1975 15853
#> 9247 10 1980 17379
#> 9248 10 1985 17079
#> 9249 10 1990 15747
#> 9250 10 1995 16372
#> 9251 10 2000 17459
#> 9252 10 2005 17187
#> 9253 10 2010 15810
#> 9254 10 2015 13270
#> 9255 10 1950 8591
#> 9256 10 1955 9855
#> 9257 10 1960 10521
#> 9258 10 1965 11960
#> 9259 10 1970 13017
#> 9260 10 1975 14145
#> 9261 10 1980 14188
#> 9262 10 1985 13960
#> 9263 10 1990 13492
#> 9264 10 1995 12685
#> 9265 10 2000 11519
#> 9266 10 2005 10892
#> 9267 10 2010 10347
#> 9268 10 2015 9246
#> 9269 10 1950 10906
#> 9270 10 1955 12310
#> 9271 10 1960 13795
#> 9272 10 1965 17869
#> 9273 10 1970 20548
#> 9274 10 1975 23791
#> 9275 10 1980 23534
#> 9276 10 1985 22462
#> 9277 10 1990 21136
#> 9278 10 1995 21336
#> 9279 10 2000 20992
#> 9280 10 2005 22310
#> 9281 10 2010 22010
#> 9282 10 2015 22680
#> 9283 10 1950 3739
#> 9284 10 1955 3673
#> 9285 10 1960 3981
#> 9286 10 1965 6186
#> 9287 10 1970 9261
#> 9288 10 1975 10249
#> 9289 10 1980 11952
#> 9290 10 1985 13075
#> 9291 10 1990 17259
#> 9292 10 1995 16536
#> 9293 10 2000 19326
#> 9294 10 2005 19267
#> 9295 10 2010 21787
#> 9296 10 2015 25563
#> 9297 10 1950 357046
#> 9298 10 1955 409959
#> 9299 10 1960 484616
#> 9300 10 1965 562222
#> 9301 10 1970 680049
#> 9302 10 1975 862787
#> 9303 10 1980 1100959
#> 9304 10 1985 1442688
#> 9305 10 1990 1792470
#> 9306 10 1995 2418427
#> 9307 10 2000 2483120
#> 9308 10 2005 2693006
#> 9309 10 2010 2574770
#> 9310 10 2015 2479162
#> 9311 10 1950 285139
#> 9312 10 1955 313719
#> 9313 10 1960 350972
#> 9314 10 1965 440475
#> 9315 10 1970 505201
#> 9316 10 1975 579921
#> 9317 10 1980 678959
#> 9318 10 1985 824369
#> 9319 10 1990 983960
#> 9320 10 1995 1166481
#> 9321 10 2000 1300575
#> 9322 10 2005 1437110
#> 9323 10 2010 1587255
#> 9324 10 2015 1809496
#> 9325 10 1950 618628
#> 9326 10 1955 526078
#> 9327 10 1960 729156
#> 9328 10 1965 807241
#> 9329 10 1970 683948
#> 9330 10 1975 665452
#> 9331 10 1980 684767
#> 9332 10 1985 734180
#> 9333 10 1990 772421
#> 9334 10 1995 770038
#> 9335 10 2000 695335
#> 9336 10 2005 618951
#> 9337 10 2010 546535
#> 9338 10 2015 524140
#> 9339 10 1950 3336
#> 9340 10 1955 3644
#> 9341 10 1960 3514
#> 9342 10 1965 5885
#> 9343 10 1970 6888
#> 9344 10 1975 7962
#> 9345 10 1980 8320
#> 9346 10 1985 8025
#> 9347 10 1990 8426
#> 9348 10 1995 7970
#> 9349 10 2000 8046
#> 9350 10 2005 7351
#> 9351 10 2010 6720
#> 9352 10 2015 5817
#> 9353 10 1950 223651
#> 9354 10 1955 241172
#> 9355 10 1960 255883
#> 9356 10 1965 265651
#> 9357 10 1970 288576
#> 9358 10 1975 329031
#> 9359 10 1980 382848
#> 9360 10 1985 456255
#> 9361 10 1990 532855
#> 9362 10 1995 542369
#> 9363 10 2000 568523
#> 9364 10 2005 698027
#> 9365 10 2010 807577
#> 9366 10 2015 915414
#> 9367 10 1950 117301
#> 9368 10 1955 137523
#> 9369 10 1960 170122
#> 9370 10 1965 240304
#> 9371 10 1970 288801
#> 9372 10 1975 282457
#> 9373 10 1980 235505
#> 9374 10 1985 235807
#> 9375 10 1990 206822
#> 9376 10 1995 228450
#> 9377 10 2000 282159
#> 9378 10 2005 305253
#> 9379 10 2010 328435
#> 9380 10 2015 312747
#> 9381 10 1950 298111
#> 9382 10 1955 321783
#> 9383 10 1960 382481
#> 9384 10 1965 462971
#> 9385 10 1970 450560
#> 9386 10 1975 409959
#> 9387 10 1980 381582
#> 9388 10 1985 436010
#> 9389 10 1990 478696
#> 9390 10 1995 447349
#> 9391 10 2000 414507
#> 9392 10 2005 362678
#> 9393 10 2010 287925
#> 9394 10 2015 263155
#> 9395 10 1950 129401
#> 9396 10 1955 125895
#> 9397 10 1960 146927
#> 9398 10 1965 148204
#> 9399 10 1970 132461
#> 9400 10 1975 137404
#> 9401 10 1980 137075
#> 9402 10 1985 143209
#> 9403 10 1990 152002
#> 9404 10 1995 140292
#> 9405 10 2000 123115
#> 9406 10 2005 100981
#> 9407 10 2010 92740
#> 9408 10 2015 91355
#> 9409 10 1950 10600
#> 9410 10 1955 13427
#> 9411 10 1960 14346
#> 9412 10 1965 16554
#> 9413 10 1970 19599
#> 9414 10 1975 24193
#> 9415 10 1980 27454
#> 9416 10 1985 36930
#> 9417 10 1990 42521
#> 9418 10 1995 45419
#> 9419 10 2000 50679
#> 9420 10 2005 57889
#> 9421 10 2010 64016
#> 9422 10 2015 71018
#> 9423 10 1950 258418
#> 9424 10 1955 272260
#> 9425 10 1960 316379
#> 9426 10 1965 359894
#> 9427 10 1970 405053
#> 9428 10 1975 459668
#> 9429 10 1980 770229
#> 9430 10 1985 832551
#> 9431 10 1990 870486
#> 9432 10 1995 889650
#> 9433 10 2000 1077487
#> 9434 10 2005 1310405
#> 9435 10 2010 1598353
#> 9436 10 2015 1795960
#> 9437 10 1950 1484999
#> 9438 10 1955 1675586
#> 9439 10 1960 1882491
#> 9440 10 1965 2411552
#> 9441 10 1970 2742764
#> 9442 10 1975 3120388
#> 9443 10 1980 3517691
#> 9444 10 1985 4045468
#> 9445 10 1990 4518792
#> 9446 10 1995 4964842
#> 9447 10 2000 5132226
#> 9448 10 2005 5098538
#> 9449 10 2010 5098469
#> 9450 10 2015 5181942
#> 9451 10 1950 12782860
#> 9452 10 1955 14188852
#> 9453 10 1960 16943328
#> 9454 10 1965 20340982
#> 9455 10 1970 23239089
#> 9456 10 1975 26567163
#> 9457 10 1980 28410117
#> 9458 10 1985 29734401
#> 9459 10 1990 33063747
#> 9460 10 1995 35398641
#> 9461 10 2000 35969844
#> 9462 10 2005 35860664
#> 9463 10 2010 35663898
#> 9464 10 2015 34669861
#> 9465 10 1950 305553
#> 9466 10 1955 336288
#> 9467 10 1960 357986
#> 9468 10 1965 345242
#> 9469 10 1970 411145
#> 9470 10 1975 485824
#> 9471 10 1980 571584
#> 9472 10 1985 664033
#> 9473 10 1990 696112
#> 9474 10 1995 643599
#> 9475 10 2000 824740
#> 9476 10 2005 1019127
#> 9477 10 2010 1273747
#> 9478 10 2015 1462656
#> 9479 10 1950 57629113
#> 9480 10 1955 59075517
#> 9481 10 1960 65460549
#> 9482 10 1965 80616050
#> 9483 10 1970 92047849
#> 9484 10 1975 103675004
#> 9485 10 1980 114557534
#> 9486 10 1985 126908853
#> 9487 10 1990 142480630
#> 9488 10 1995 161161383
#> 9489 10 2000 173418684
#> 9490 10 2005 177459943
#> 9491 10 2010 180653453
#> 9492 10 2015 183513944
#> 9493 10 1950 18908056
#> 9494 10 1955 19789789
#> 9495 10 1960 22237301
#> 9496 10 1965 28869222
#> 9497 10 1970 35057419
#> 9498 10 1975 40157548
#> 9499 10 1980 44690356
#> 9500 10 1985 48424724
#> 9501 10 1990 51202982
#> 9502 10 1995 54706173
#> 9503 10 2000 55867878
#> 9504 10 2005 57006269
#> 9505 10 2010 55210465
#> 9506 10 2015 55666373
#> 9507 10 1950 1702875
#> 9508 10 1955 1917981
#> 9509 10 1960 2158760
#> 9510 10 1965 2738645
#> 9511 10 1970 3117358
#> 9512 10 1975 3548656
#> 9513 10 1980 4015563
#> 9514 10 1985 4637046
#> 9515 10 1990 5209027
#> 9516 10 1995 5743447
#> 9517 10 2000 5973629
#> 9518 10 2005 5976618
#> 9519 10 2010 5988284
#> 9520 10 2015 6067054
#> 9521 10 1950 55399035
#> 9522 10 1955 57479850
#> 9523 10 1960 63396482
#> 9524 10 1965 77421810
#> 9525 10 1970 87794008
#> 9526 10 1975 98853974
#> 9527 10 1980 109855252
#> 9528 10 1985 121861324
#> 9529 10 1990 137021812
#> 9530 10 1995 155118135
#> 9531 10 2000 166618735
#> 9532 10 2005 170780987
#> 9533 10 2010 174816003
#> 9534 10 2015 178014212
#> 9535 10 1950 9921869
#> 9536 10 1955 9301417
#> 9537 10 1960 10584854
#> 9538 10 1965 10456141
#> 9539 10 1970 10929429
#> 9540 10 1975 11611308
#> 9541 10 1980 11633171
#> 9542 10 1985 11433326
#> 9543 10 1990 10532095
#> 9544 10 1995 9137647
#> 9545 10 2000 8177156
#> 9546 10 2005 7825004
#> 9547 10 2010 7581309
#> 9548 10 2015 7556995
#> 9549 10 1950 2332774
#> 9550 10 1955 2446964
#> 9551 10 1960 2643453
#> 9552 10 1965 2678785
#> 9553 10 1970 3064546
#> 9554 10 1975 3273990
#> 9555 10 1980 3289503
#> 9556 10 1985 3336427
#> 9557 10 1990 3203525
#> 9558 10 1995 2580236
#> 9559 10 2000 2173806
#> 9560 10 2005 2112440
#> 9561 10 2010 2076414
#> 9562 10 2015 2289984
#> 9563 10 1950 837419
#> 9564 10 1955 964816
#> 9565 10 1960 1181507
#> 9566 10 1965 1323665
#> 9567 10 1970 1564355
#> 9568 10 1975 1641436
#> 9569 10 1980 1733170
#> 9570 10 1985 1720277
#> 9571 10 1990 1861031
#> 9572 10 1995 1904405
#> 9573 10 2000 1731152
#> 9574 10 2005 1636374
#> 9575 10 2010 1623287
#> 9576 10 2015 1698619
#> 9577 10 1950 115293
#> 9578 10 1955 124677
#> 9579 10 1960 138124
#> 9580 10 1965 143448
#> 9581 10 1970 135923
#> 9582 10 1975 179358
#> 9583 10 1980 206936
#> 9584 10 1985 234677
#> 9585 10 1990 278411
#> 9586 10 1995 333485
#> 9587 10 2000 424811
#> 9588 10 2005 502920
#> 9589 10 2010 536896
#> 9590 10 2015 552897
#> 9591 10 1950 20567656
#> 9592 10 1955 22886929
#> 9593 10 1960 25546994
#> 9594 10 1965 29400598
#> 9595 10 1970 33774441
#> 9596 10 1975 38999795
#> 9597 10 1980 44815771
#> 9598 10 1985 52888824
#> 9599 10 1990 62085775
#> 9600 10 1995 71765300
#> 9601 10 2000 81071646
#> 9602 10 2005 91051078
#> 9603 10 2010 104680469
#> 9604 10 2015 120081155
#> 9605 10 1950 676135
#> 9606 10 1955 774191
#> 9607 10 1960 907602
#> 9608 10 1965 1068761
#> 9609 10 1970 1260062
#> 9610 10 1975 1508994
#> 9611 10 1980 1841273
#> 9612 10 1985 2224095
#> 9613 10 1990 2619765
#> 9614 10 1995 3027340
#> 9615 10 2000 3320275
#> 9616 10 2005 3831873
#> 9617 10 2010 4320811
#> 9618 10 2015 4833720
#> 9619 10 1950 23000
#> 9620 10 1955 25991
#> 9621 10 1960 33802
#> 9622 10 1965 41898
#> 9623 10 1970 53492
#> 9624 10 1975 54931
#> 9625 10 1980 50022
#> 9626 10 1985 43218
#> 9627 10 1990 38980
#> 9628 10 1995 45781
#> 9629 10 2000 48104
#> 9630 10 2005 50353
#> 9631 10 2010 50705
#> 9632 10 2015 49406
#> 9633 10 1950 31791
#> 9634 10 1955 36022
#> 9635 10 1960 43649
#> 9636 10 1965 49951
#> 9637 10 1970 57383
#> 9638 10 1975 66600
#> 9639 10 1980 79256
#> 9640 10 1985 93344
#> 9641 10 1990 112189
#> 9642 10 1995 134066
#> 9643 10 2000 155678
#> 9644 10 2005 154320
#> 9645 10 2010 151715
#> 9646 10 2015 152405
#> 9647 10 1950 444939
#> 9648 10 1955 574083
#> 9649 10 1960 618900
#> 9650 10 1965 539781
#> 9651 10 1970 531970
#> 9652 10 1975 563454
#> 9653 10 1980 584281
#> 9654 10 1985 556275
#> 9655 10 1990 496858
#> 9656 10 1995 500629
#> 9657 10 2000 575271
#> 9658 10 2005 607354
#> 9659 10 2010 486653
#> 9660 10 2015 519550
#> 9661 10 1950 307301
#> 9662 10 1955 371039
#> 9663 10 1960 426994
#> 9664 10 1965 445782
#> 9665 10 1970 457260
#> 9666 10 1975 501948
#> 9667 10 1980 490107
#> 9668 10 1985 418390
#> 9669 10 1990 372499
#> 9670 10 1995 402412
#> 9671 10 2000 421082
#> 9672 10 2005 438091
#> 9673 10 2010 415723
#> 9674 10 2015 397670
#> 9675 10 1950 364859
#> 9676 10 1955 405085
#> 9677 10 1960 500849
#> 9678 10 1965 721341
#> 9679 10 1970 843617
#> 9680 10 1975 988948
#> 9681 10 1980 1169214
#> 9682 10 1985 1437699
#> 9683 10 1990 1728226
#> 9684 10 1995 1980010
#> 9685 10 2000 2125187
#> 9686 10 2005 2191914
#> 9687 10 2010 2445237
#> 9688 10 2015 2426933
#> 9689 10 1950 139935
#> 9690 10 1955 139399
#> 9691 10 1960 163257
#> 9692 10 1965 200162
#> 9693 10 1970 191525
#> 9694 10 1975 181975
#> 9695 10 1980 196603
#> 9696 10 1985 178894
#> 9697 10 1990 170679
#> 9698 10 1995 172155
#> 9699 10 2000 167394
#> 9700 10 2005 157129
#> 9701 10 2010 134703
#> 9702 10 2015 121678
#> 9703 10 1950 196892
#> 9704 10 1955 151123
#> 9705 10 1960 164581
#> 9706 10 1965 281688
#> 9707 10 1970 377331
#> 9708 10 1975 443819
#> 9709 10 1980 489126
#> 9710 10 1985 544867
#> 9711 10 1990 614219
#> 9712 10 1995 735910
#> 9713 10 2000 866259
#> 9714 10 2005 873138
#> 9715 10 2010 880398
#> 9716 10 2015 842217
#> 9717 10 1950 2595409
#> 9718 10 1955 2656033
#> 9719 10 1960 3126523
#> 9720 10 1965 3729390
#> 9721 10 1970 4508333
#> 9722 10 1975 5346787
#> 9723 10 1980 6171527
#> 9724 10 1985 6300880
#> 9725 10 1990 6049196
#> 9726 10 1995 5664948
#> 9727 10 2000 5301636
#> 9728 10 2005 5039326
#> 9729 10 2010 4632866
#> 9730 10 2015 4387950
#> 9731 10 1950 49899
#> 9732 10 1955 54174
#> 9733 10 1960 62139
#> 9734 10 1965 64600
#> 9735 10 1970 71581
#> 9736 10 1975 81405
#> 9737 10 1980 76361
#> 9738 10 1985 84348
#> 9739 10 1990 67619
#> 9740 10 1995 97552
#> 9741 10 2000 109360
#> 9742 10 2005 146139
#> 9743 10 2010 158712
#> 9744 10 2015 158894
#> 9745 10 1950 157085
#> 9746 10 1955 170499
#> 9747 10 1960 184805
#> 9748 10 1965 200448
#> 9749 10 1970 250329
#> 9750 10 1975 290912
#> 9751 10 1980 335076
#> 9752 10 1985 411107
#> 9753 10 1990 490011
#> 9754 10 1995 566823
#> 9755 10 2000 638855
#> 9756 10 2005 686470
#> 9757 10 2010 768864
#> 9758 10 2015 906575
#> 9759 10 1950 6159
#> 9760 10 1955 6683
#> 9761 10 1960 7451
#> 9762 10 1965 8515
#> 9763 10 1970 11290
#> 9764 10 1975 13483
#> 9765 10 1980 13673
#> 9766 10 1985 11946
#> 9767 10 1990 11023
#> 9768 10 1995 12478
#> 9769 10 2000 11306
#> 9770 10 2005 12062
#> 9771 10 2010 12100
#> 9772 10 2015 12818
#> 9773 10 1950 66075
#> 9774 10 1955 83781
#> 9775 10 1960 102843
#> 9776 10 1965 115589
#> 9777 10 1970 127687
#> 9778 10 1975 140786
#> 9779 10 1980 116681
#> 9780 10 1985 118583
#> 9781 10 1990 127347
#> 9782 10 1995 148679
#> 9783 10 2000 130111
#> 9784 10 2005 103482
#> 9785 10 2010 87641
#> 9786 10 2015 90105
#> 9787 10 1950 380828
#> 9788 10 1955 469674
#> 9789 10 1960 524339
#> 9790 10 1965 586646
#> 9791 10 1970 671348
#> 9792 10 1975 758505
#> 9793 10 1980 810047
#> 9794 10 1985 862261
#> 9795 10 1990 957720
#> 9796 10 1995 1051444
#> 9797 10 2000 1073381
#> 9798 10 2005 946061
#> 9799 10 2010 828839
#> 9800 10 2015 790709
#> 9801 10 1950 2400292
#> 9802 10 1955 2568047
#> 9803 10 1960 2922299
#> 9804 10 1965 3741495
#> 9805 10 1970 4191479
#> 9806 10 1975 4631343
#> 9807 10 1980 5100960
#> 9808 10 1985 5677953
#> 9809 10 1990 6168939
#> 9810 10 1995 6446177
#> 9811 10 2000 6363692
#> 9812 10 2005 6306346
#> 9813 10 2010 6553294
#> 9814 10 2015 6665231
#> 9815 10 1950 145679
#> 9816 10 1955 110257
#> 9817 10 1960 139174
#> 9818 10 1965 214564
#> 9819 10 1970 284815
#> 9820 10 1975 333719
#> 9821 10 1980 357836
#> 9822 10 1985 385308
#> 9823 10 1990 431713
#> 9824 10 1995 486467
#> 9825 10 2000 566763
#> 9826 10 2005 570153
#> 9827 10 2010 471994
#> 9828 10 2015 488128
#> 9829 10 1950 554091
#> 9830 10 1955 693722
#> 9831 10 1960 807825
#> 9832 10 1965 999646
#> 9833 10 1970 1172852
#> 9834 10 1975 1355004
#> 9835 10 1980 1594174
#> 9836 10 1985 1853434
#> 9837 10 1990 2227245
#> 9838 10 1995 2668401
#> 9839 10 2000 3180850
#> 9840 10 2005 3844084
#> 9841 10 2010 4557931
#> 9842 10 2015 5433190
#> 9843 10 1950 4302218
#> 9844 10 1955 2888842
#> 9845 10 1960 3360666
#> 9846 10 1965 4244083
#> 9847 10 1970 4124263
#> 9848 10 1975 3908885
#> 9849 10 1980 3394662
#> 9850 10 1985 3635013
#> 9851 10 1990 3702507
#> 9852 10 1995 3816342
#> 9853 10 2000 3456470
#> 9854 10 2005 2722287
#> 9855 10 2010 2129461
#> 9856 10 2015 1946060
#> 9857 10 1950 7982
#> 9858 10 1955 9122
#> 9859 10 1960 10749
#> 9860 10 1965 16356
#> 9861 10 1970 20664
#> 9862 10 1975 38521
#> 9863 10 1980 59665
#> 9864 10 1985 99958
#> 9865 10 1990 148385
#> 9866 10 1995 202931
#> 9867 10 2000 265677
#> 9868 10 2005 272150
#> 9869 10 2010 326695
#> 9870 10 2015 353418
#> 9871 10 1950 3355158
#> 9872 10 1955 3618241
#> 9873 10 1960 4273620
#> 9874 10 1965 3765096
#> 9875 10 1970 4055776
#> 9876 10 1975 4705154
#> 9877 10 1980 4578119
#> 9878 10 1985 3847690
#> 9879 10 1990 3400780
#> 9880 10 1995 3632014
#> 9881 10 2000 3856182
#> 9882 10 2005 3826567
#> 9883 10 2010 3678885
#> 9884 10 2015 3529200
#> 9885 10 1950 936890
#> 9886 10 1955 1076507
#> 9887 10 1960 1257747
#> 9888 10 1965 1412944
#> 9889 10 1970 1676859
#> 9890 10 1975 1985576
#> 9891 10 1980 2337833
#> 9892 10 1985 2765165
#> 9893 10 1990 3247425
#> 9894 10 1995 3821518
#> 9895 10 2000 4365349
#> 9896 10 2005 4961346
#> 9897 10 2010 5721651
#> 9898 10 2015 6852897
#> 9899 10 1950 2891
#> 9900 10 1955 3438
#> 9901 10 1960 3513
#> 9902 10 1965 4966
#> 9903 10 1970 6881
#> 9904 10 1975 9589
#> 9905 10 1980 13215
#> 9906 10 1985 11022
#> 9907 10 1990 10188
#> 9908 10 1995 9462
#> 9909 10 2000 9651
#> 9910 10 2005 8805
#> 9911 10 2010 7438
#> 9912 10 2015 7032
#> 9913 10 1950 11574071
#> 9914 10 1955 13953635
#> 9915 10 1960 17291505
#> 9916 10 1965 19440658
#> 9917 10 1970 21011719
#> 9918 10 1975 20475081
#> 9919 10 1980 18657235
#> 9920 10 1985 17365524
#> 9921 10 1990 17437084
#> 9922 10 1995 18917097
#> 9923 10 2000 20734858
#> 9924 10 2005 21568889
#> 9925 10 2010 20828594
#> 9926 10 2015 20713091
#> 9927 10 1950 101110644
#> 9928 10 1955 97110313
#> 9929 10 1960 120792981
#> 9930 10 1965 156802370
#> 9931 10 1970 160027149
#> 9932 10 1975 187073205
#> 9933 10 1980 212508226
#> 9934 10 1985 212156943
#> 9935 10 1990 195404711
#> 9936 10 1995 207136504
#> 9937 10 2000 236214392
#> 9938 10 2005 200039646
#> 9939 10 2010 174298104
#> 9940 10 2015 170973730
#> 9941 10 1950 200428
#> 9942 10 1955 203970
#> 9943 10 1960 220220
#> 9944 10 1965 230594
#> 9945 10 1970 250875
#> 9946 10 1975 258097
#> 9947 10 1980 240669
#> 9948 10 1985 263806
#> 9949 10 1990 277871
#> 9950 10 1995 257421
#> 9951 10 2000 265958
#> 9952 10 2005 271118
#> 9953 10 2010 260496
#> 9954 10 2015 249504
#> 9955 10 1950 693909
#> 9956 10 1955 566383
#> 9957 10 1960 700724
#> 9958 10 1965 1142675
#> 9959 10 1970 1604443
#> 9960 10 1975 1899850
#> 9961 10 1980 1928211
#> 9962 10 1985 2109662
#> 9963 10 1990 2357381
#> 9964 10 1995 2731399
#> 9965 10 2000 3153727
#> 9966 10 2005 3237815
#> 9967 10 2010 2820758
#> 9968 10 2015 2552568
#> 9969 10 1950 5959
#> 9970 10 1955 6948
#> 9971 10 1960 8032
#> 9972 10 1965 9325
#> 9973 10 1970 11037
#> 9974 10 1975 13235
#> 9975 10 1980 14925
#> 9976 10 1985 16470
#> 9977 10 1990 18693
#> 9978 10 1995 21880
#> 9979 10 2000 22897
#> 9980 10 2005 25344
#> 9981 10 2010 27512
#> 9982 10 2015 28440
#> 9983 10 1950 666688
#> 9984 10 1955 821364
#> 9985 10 1960 996387
#> 9986 10 1965 1199787
#> 9987 10 1970 1487308
#> 9988 10 1975 1852614
#> 9989 10 1980 1980765
#> 9990 10 1985 2020405
#> 9991 10 1990 2268440
#> 9992 10 1995 2495454
#> 9993 10 2000 2748118
#> 9994 10 2005 2788702
#> 9995 10 2010 2808781
#> 9996 10 2015 2868438
#> 9997 10 1950 2375471
#> 9998 10 1955 2389173
#> 9999 10 1960 2860362
#> 10000 10 1965 4328280
#> 10001 10 1970 5548044
#> 10002 10 1975 6237235
#> 10003 10 1980 6753817
#> 10004 10 1985 7374565
#> 10005 10 1990 7769836
#> 10006 10 1995 8447321
#> 10007 10 2000 9052599
#> 10008 10 2005 8997043
#> 10009 10 2010 7014901
#> 10010 10 2015 6622909
#> 10011 10 1950 260587274
#> 10012 10 1955 263322740
#> 10013 10 1960 309899813
#> 10014 10 1965 374595585
#> 10015 10 1970 404504814
#> 10016 10 1975 454876127
#> 10017 10 1980 499666880
#> 10018 10 1985 521394614
#> 10019 10 1990 529014542
#> 10020 10 1995 575086809
#> 10021 10 2000 628087424
#> 10022 10 2005 609061923
#> 10023 10 2010 597092126
#> 10024 10 2015 612407039
#> 10025 10 1950 8150206
#> 10026 10 1955 9032247
#> 10027 10 1960 9787001
#> 10028 10 1965 10873768
#> 10029 10 1970 12400783
#> 10030 10 1975 14204796
#> 10031 10 1980 16289740
#> 10032 10 1985 19253946
#> 10033 10 1990 22727684
#> 10034 10 1995 26183140
#> 10035 10 2000 29204415
#> 10036 10 2005 32754403
#> 10037 10 2010 37657931
#> 10038 10 2015 43679492
#> 10039 10 1950 5785667
#> 10040 10 1955 5925244
#> 10041 10 1960 6911059
#> 10042 10 1965 9023452
#> 10043 10 1970 10274532
#> 10044 10 1975 11815558
#> 10045 10 1980 13416351
#> 10046 10 1985 15225479
#> 10047 10 1990 17329082
#> 10048 10 1995 19546036
#> 10049 10 2000 20876329
#> 10050 10 2005 22039403
#> 10051 10 2010 22920670
#> 10052 10 2015 23891267
#> 10053 10 1950 11423043
#> 10054 10 1955 10218282
#> 10055 10 1960 11589903
#> 10056 10 1965 12207896
#> 10057 10 1970 12951563
#> 10058 10 1975 14001175
#> 10059 10 1980 13473574
#> 10060 10 1985 11190608
#> 10061 10 1990 10062910
#> 10062 10 1995 10812116
#> 10063 10 2000 11029818
#> 10064 10 2005 10491953
#> 10065 10 2010 10232539
#> 10066 10 2015 10097719
#> 10067 10 1950 1607
#> 10068 10 1955 2368
#> 10069 10 1960 3251
#> 10070 10 1965 4645
#> 10071 10 1970 8076
#> 10072 10 1975 9566
#> 10073 10 1980 16005
#> 10074 10 1985 17503
#> 10075 10 1990 23674
#> 10076 10 1995 29848
#> 10077 10 2000 34806
#> 10078 10 2005 45330
#> 10079 10 2010 45553
#> 10080 10 2015 46531
#> 10081 10 1950 505103
#> 10082 10 1955 569158
#> 10083 10 1960 656782
#> 10084 10 1965 662149
#> 10085 10 1970 723382
#> 10086 10 1975 840411
#> 10087 10 1980 1049721
#> 10088 10 1985 1245255
#> 10089 10 1990 1612290
#> 10090 10 1995 2049491
#> 10091 10 2000 2534086
#> 10092 10 2005 2970714
#> 10093 10 2010 3046392
#> 10094 10 2015 3277135
#> 10095 10 1950 279747
#> 10096 10 1955 319220
#> 10097 10 1960 366503
#> 10098 10 1965 424367
#> 10099 10 1970 514147
#> 10100 10 1975 628274
#> 10101 10 1980 744428
#> 10102 10 1985 901612
#> 10103 10 1990 1058078
#> 10104 10 1995 1200780
#> 10105 10 2000 1361145
#> 10106 10 2005 1555231
#> 10107 10 2010 1836162
#> 10108 10 2015 2141750
#> 10109 10 1950 321847
#> 10110 10 1955 379130
#> 10111 10 1960 398216
#> 10112 10 1965 561240
#> 10113 10 1970 667795
#> 10114 10 1975 802252
#> 10115 10 1980 943011
#> 10116 10 1985 1138664
#> 10117 10 1990 1377695
#> 10118 10 1995 1587600
#> 10119 10 2000 1671833
#> 10120 10 2005 1700287
#> 10121 10 2010 1733749
#> 10122 10 2015 1864621
#> 10123 15 1950 23239614
#> 10124 15 1955 25171822
#> 10125 15 1960 27753242
#> 10126 15 1965 31714466
#> 10127 15 1970 37199382
#> 10128 15 1975 43041630
#> 10129 15 1980 49528037
#> 10130 15 1985 57126936
#> 10131 15 1990 66445049
#> 10132 15 1995 77643727
#> 10133 15 2000 89741534
#> 10134 15 2005 100256475
#> 10135 15 2010 110058815
#> 10136 15 2015 122871872
#> 10137 15 1950 139364489
#> 10138 15 1955 146920576
#> 10139 15 1960 151338085
#> 10140 15 1965 176653358
#> 10141 15 1970 224418443
#> 10142 15 1975 239093558
#> 10143 15 1980 279491401
#> 10144 15 1985 319044795
#> 10145 15 1990 330693364
#> 10146 15 1995 323993844
#> 10147 15 2000 352844307
#> 10148 15 2005 393606795
#> 10149 15 2010 369273593
#> 10150 15 2015 350919831
#> 10151 15 1950 783732
#> 10152 15 1955 845917
#> 10153 15 1960 925944
#> 10154 15 1965 1029776
#> 10155 15 1970 1104950
#> 10156 15 1975 1278262
#> 10157 15 1980 1369243
#> 10158 15 1985 1221142
#> 10159 15 1990 1285515
#> 10160 15 1995 1817453
#> 10161 15 2000 2117571
#> 10162 15 2005 2688359
#> 10163 15 2010 3025604
#> 10164 15 2015 3944912
#> 10165 15 1950 121523
#> 10166 15 1955 145583
#> 10167 15 1960 155227
#> 10168 15 1965 169899
#> 10169 15 1970 211835
#> 10170 15 1975 262979
#> 10171 15 1980 301302
#> 10172 15 1985 306175
#> 10173 15 1990 319814
#> 10174 15 1995 296254
#> 10175 15 2000 288221
#> 10176 15 2005 316228
#> 10177 15 2010 282999
#> 10178 15 2015 250081
#> 10179 15 1950 942221
#> 10180 15 1955 1004510
#> 10181 15 1960 1059324
#> 10182 15 1965 1145372
#> 10183 15 1970 1599460
#> 10184 15 1975 1833545
#> 10185 15 1980 2147790
#> 10186 15 1985 2467389
#> 10187 15 1990 2888929
#> 10188 15 1995 3383127
#> 10189 15 2000 3777065
#> 10190 15 2005 3894247
#> 10191 15 2010 3639196
#> 10192 15 2015 3018444
#> 10193 15 1950 466354
#> 10194 15 1955 494004
#> 10195 15 1960 511096
#> 10196 15 1965 542210
#> 10197 15 1970 740591
#> 10198 15 1975 805501
#> 10199 15 1980 919488
#> 10200 15 1985 1076929
#> 10201 15 1990 1270525
#> 10202 15 1995 1542515
#> 10203 15 2000 1763645
#> 10204 15 2005 2099706
#> 10205 15 2010 2454967
#> 10206 15 2015 2904969
#> 10207 15 1950 4406
#> 10208 15 1955 5517
#> 10209 15 1960 5949
#> 10210 15 1965 6506
#> 10211 15 1970 7936
#> 10212 15 1975 8295
#> 10213 15 1980 8381
#> 10214 15 1985 8073
#> 10215 15 1990 6036
#> 10216 15 1995 5871
#> 10217 15 2000 6758
#> 10218 15 2005 7617
#> 10219 15 2010 8281
#> 10220 15 2015 8628
#> 10221 15 1950 1567966
#> 10222 15 1955 1614304
#> 10223 15 1960 1744968
#> 10224 15 1965 1958462
#> 10225 15 1970 2148589
#> 10226 15 1975 2280619
#> 10227 15 1980 2312809
#> 10228 15 1985 2466686
#> 10229 15 1990 2805918
#> 10230 15 1995 3326228
#> 10231 15 2000 3255946
#> 10232 15 2005 3372205
#> 10233 15 2010 3464352
#> 10234 15 2015 3437915
#> 10235 15 1950 149759
#> 10236 15 1955 195749
#> 10237 15 1960 117372
#> 10238 15 1965 164455
#> 10239 15 1970 258555
#> 10240 15 1975 348404
#> 10241 15 1980 361690
#> 10242 15 1985 301232
#> 10243 15 1990 278787
#> 10244 15 1995 257628
#> 10245 15 2000 291177
#> 10246 15 2005 302869
#> 10247 15 2010 245330
#> 10248 15 2015 182095
#> 10249 15 1950 3821
#> 10250 15 1955 4176
#> 10251 15 1960 5354
#> 10252 15 1965 6046
#> 10253 15 1970 6606
#> 10254 15 1975 6660
#> 10255 15 1980 6943
#> 10256 15 1985 5644
#> 10257 15 1990 4357
#> 10258 15 1995 5027
#> 10259 15 2000 6145
#> 10260 15 2005 7089
#> 10261 15 2010 7306
#> 10262 15 2015 7550
#> 10263 15 1950 552182
#> 10264 15 1955 613989
#> 10265 15 1960 768552
#> 10266 15 1965 1013994
#> 10267 15 1970 1114112
#> 10268 15 1975 1235429
#> 10269 15 1980 1306798
#> 10270 15 1985 1306731
#> 10271 15 1990 1393833
#> 10272 15 1995 1275983
#> 10273 15 2000 1310303
#> 10274 15 2005 1393171
#> 10275 15 2010 1487297
#> 10276 15 2015 1480341
#> 10277 15 1950 685183
#> 10278 15 1955 763006
#> 10279 15 1960 951605
#> 10280 15 1965 1257047
#> 10281 15 1970 1375968
#> 10282 15 1975 1533249
#> 10283 15 1980 1618265
#> 10284 15 1985 1609590
#> 10285 15 1990 1687450
#> 10286 15 1995 1547433
#> 10287 15 2000 1586727
#> 10288 15 2005 1698670
#> 10289 15 2010 1808440
#> 10290 15 2015 1799273
#> 10291 15 1950 456619
#> 10292 15 1955 495100
#> 10293 15 1960 551810
#> 10294 15 1965 505259
#> 10295 15 1970 486583
#> 10296 15 1975 582161
#> 10297 15 1980 645297
#> 10298 15 1985 623110
#> 10299 15 1990 513668
#> 10300 15 1995 459943
#> 10301 15 2000 481412
#> 10302 15 2005 490794
#> 10303 15 2010 503908
#> 10304 15 2015 456814
#> 10305 15 1950 361241
#> 10306 15 1955 399047
#> 10307 15 1960 248518
#> 10308 15 1965 323464
#> 10309 15 1970 500235
#> 10310 15 1975 671621
#> 10311 15 1980 810838
#> 10312 15 1985 737470
#> 10313 15 1990 674323
#> 10314 15 1995 668331
#> 10315 15 2000 794850
#> 10316 15 2005 937845
#> 10317 15 2010 893279
#> 10318 15 2015 719807
#> 10319 15 1950 7515
#> 10320 15 1955 8641
#> 10321 15 1960 9774
#> 10322 15 1965 12818
#> 10323 15 1970 16257
#> 10324 15 1975 19397
#> 10325 15 1980 26559
#> 10326 15 1985 25483
#> 10327 15 1990 26910
#> 10328 15 1995 25512
#> 10329 15 2000 27944
#> 10330 15 2005 30239
#> 10331 15 2010 32636
#> 10332 15 2015 30545
#> 10333 15 1950 11425
#> 10334 15 1955 12573
#> 10335 15 1960 15308
#> 10336 15 1965 16186
#> 10337 15 1970 22227
#> 10338 15 1975 32310
#> 10339 15 1980 35643
#> 10340 15 1985 30208
#> 10341 15 1990 37458
#> 10342 15 1995 41551
#> 10343 15 2000 51850
#> 10344 15 2005 65335
#> 10345 15 2010 71682
#> 10346 15 2015 74390
#> 10347 15 1950 3830013
#> 10348 15 1955 4300085
#> 10349 15 1960 4827792
#> 10350 15 1965 5365718
#> 10351 15 1970 5977139
#> 10352 15 1975 6633006
#> 10353 15 1980 8967001
#> 10354 15 1985 10487189
#> 10355 15 1990 11446673
#> 10356 15 1995 13161559
#> 10357 15 2000 14662586
#> 10358 15 2005 15499486
#> 10359 15 2010 15690056
#> 10360 15 2015 16116490
#> 10361 15 1950 20001
#> 10362 15 1955 19503
#> 10363 15 1960 20061
#> 10364 15 1965 23818
#> 10365 15 1970 26103
#> 10366 15 1975 28162
#> 10367 15 1980 28346
#> 10368 15 1985 25820
#> 10369 15 1990 25289
#> 10370 15 1995 20319
#> 10371 15 2000 20193
#> 10372 15 2005 19275
#> 10373 15 2010 19105
#> 10374 15 2015 18388
#> 10375 15 1950 785682
#> 10376 15 1955 777890
#> 10377 15 1960 520712
#> 10378 15 1965 595018
#> 10379 15 1970 777570
#> 10380 15 1975 901149
#> 10381 15 1980 850176
#> 10382 15 1985 720048
#> 10383 15 1990 726542
#> 10384 15 1995 738046
#> 10385 15 2000 795574
#> 10386 15 2005 768743
#> 10387 15 2010 604529
#> 10388 15 2015 461383
#> 10389 15 1950 622510
#> 10390 15 1955 576285
#> 10391 15 1960 549310
#> 10392 15 1965 705677
#> 10393 15 1970 718282
#> 10394 15 1975 773047
#> 10395 15 1980 804805
#> 10396 15 1985 728262
#> 10397 15 1990 664076
#> 10398 15 1995 610116
#> 10399 15 2000 609218
#> 10400 15 2005 626921
#> 10401 15 2010 654931
#> 10402 15 2015 630593
#> 10403 15 1950 6872
#> 10404 15 1955 7320
#> 10405 15 1960 7791
#> 10406 15 1965 10009
#> 10407 15 1970 13209
#> 10408 15 1975 16142
#> 10409 15 1980 17940
#> 10410 15 1985 19407
#> 10411 15 1990 20993
#> 10412 15 1995 22149
#> 10413 15 2000 27250
#> 10414 15 2005 29942
#> 10415 15 2010 34472
#> 10416 15 2015 38380
#> 10417 15 1950 192725
#> 10418 15 1955 211974
#> 10419 15 1960 242360
#> 10420 15 1965 246972
#> 10421 15 1970 277285
#> 10422 15 1975 317290
#> 10423 15 1980 372073
#> 10424 15 1985 436163
#> 10425 15 1990 511164
#> 10426 15 1995 614058
#> 10427 15 2000 721397
#> 10428 15 2005 848035
#> 10429 15 2010 987023
#> 10430 15 2015 1133846
#> 10431 15 1950 18195
#> 10432 15 1955 20691
#> 10433 15 1960 23446
#> 10434 15 1965 26827
#> 10435 15 1970 27559
#> 10436 15 1975 32963
#> 10437 15 1980 39531
#> 10438 15 1985 47355
#> 10439 15 1990 56273
#> 10440 15 1995 54660
#> 10441 15 2000 65406
#> 10442 15 2005 78860
#> 10443 15 2010 79537
#> 10444 15 2015 76149
#> 10445 15 1950 295387
#> 10446 15 1955 315880
#> 10447 15 1960 373875
#> 10448 15 1965 403123
#> 10449 15 1970 487126
#> 10450 15 1975 531470
#> 10451 15 1980 584056
#> 10452 15 1985 645939
#> 10453 15 1990 720048
#> 10454 15 1995 816158
#> 10455 15 2000 894791
#> 10456 15 2005 950369
#> 10457 15 2010 1013318
#> 10458 15 2015 1081761
#> 10459 15 1950 322299
#> 10460 15 1955 338959
#> 10461 15 1960 270971
#> 10462 15 1965 365313
#> 10463 15 1970 417133
#> 10464 15 1975 430593
#> 10465 15 1980 449574
#> 10466 15 1985 411715
#> 10467 15 1990 380566
#> 10468 15 1995 289289
#> 10469 15 2000 283115
#> 10470 15 2005 286612
#> 10471 15 2010 252685
#> 10472 15 2015 233444
#> 10473 15 1950 45098
#> 10474 15 1955 50294
#> 10475 15 1960 51534
#> 10476 15 1965 55350
#> 10477 15 1970 79056
#> 10478 15 1975 93128
#> 10479 15 1980 107717
#> 10480 15 1985 125402
#> 10481 15 1990 150297
#> 10482 15 1995 183669
#> 10483 15 2000 212206
#> 10484 15 2005 212684
#> 10485 15 2010 214621
#> 10486 15 2015 214769
#> 10487 15 1950 5404541
#> 10488 15 1955 6394016
#> 10489 15 1960 6877423
#> 10490 15 1965 8400221
#> 10491 15 1970 10167857
#> 10492 15 1975 11725155
#> 10493 15 1980 13515663
#> 10494 15 1985 14259960
#> 10495 15 1990 14968727
#> 10496 15 1995 16683370
#> 10497 15 2000 18121419
#> 10498 15 2005 17749109
#> 10499 15 2010 17330896
#> 10500 15 2015 17404859
#> 10501 15 1950 4577
#> 10502 15 1955 5401
#> 10503 15 1960 5993
#> 10504 15 1965 7101
#> 10505 15 1970 13320
#> 10506 15 1975 16604
#> 10507 15 1980 20410
#> 10508 15 1985 21446
#> 10509 15 1990 23514
#> 10510 15 1995 27004
#> 10511 15 2000 28481
#> 10512 15 2005 31820
#> 10513 15 2010 35005
#> 10514 15 2015 35713
#> 10515 15 1950 681999
#> 10516 15 1955 585909
#> 10517 15 1960 591150
#> 10518 15 1965 696318
#> 10519 15 1970 682810
#> 10520 15 1975 652120
#> 10521 15 1980 623821
#> 10522 15 1985 616527
#> 10523 15 1990 642476
#> 10524 15 1995 616177
#> 10525 15 2000 541649
#> 10526 15 2005 508570
#> 10527 15 2010 399857
#> 10528 15 2015 304883
#> 10529 15 1950 439785
#> 10530 15 1955 467864
#> 10531 15 1960 505820
#> 10532 15 1965 532037
#> 10533 15 1970 576712
#> 10534 15 1975 644837
#> 10535 15 1980 717406
#> 10536 15 1985 820708
#> 10537 15 1990 936382
#> 10538 15 1995 1114585
#> 10539 15 2000 1297861
#> 10540 15 2005 1469720
#> 10541 15 2010 1690506
#> 10542 15 2015 1968390
#> 10543 15 1950 233965
#> 10544 15 1955 248052
#> 10545 15 1960 265167
#> 10546 15 1965 286785
#> 10547 15 1970 369079
#> 10548 15 1975 408888
#> 10549 15 1980 447354
#> 10550 15 1985 461913
#> 10551 15 1990 494470
#> 10552 15 1995 610917
#> 10553 15 2000 741787
#> 10554 15 2005 906998
#> 10555 15 2010 1008568
#> 10556 15 2015 1043598
#> 10557 15 1950 20621
#> 10558 15 1955 20272
#> 10559 15 1960 14210
#> 10560 15 1965 15760
#> 10561 15 1970 30220
#> 10562 15 1975 30515
#> 10563 15 1980 40391
#> 10564 15 1985 39193
#> 10565 15 1990 36412
#> 10566 15 1995 40177
#> 10567 15 2000 51026
#> 10568 15 2005 60323
#> 10569 15 2010 58622
#> 10570 15 2015 57607
#> 10571 15 1950 461040
#> 10572 15 1955 503907
#> 10573 15 1960 550313
#> 10574 15 1965 623849
#> 10575 15 1970 790656
#> 10576 15 1975 842141
#> 10577 15 1980 731237
#> 10578 15 1985 833988
#> 10579 15 1990 896724
#> 10580 15 1995 823893
#> 10581 15 2000 1624815
#> 10582 15 2005 1598142
#> 10583 15 2010 1672177
#> 10584 15 2015 1567233
#> 10585 15 1950 429027
#> 10586 15 1955 466623
#> 10587 15 1960 500915
#> 10588 15 1965 552536
#> 10589 15 1970 626142
#> 10590 15 1975 710003
#> 10591 15 1980 842504
#> 10592 15 1985 1002203
#> 10593 15 1990 1192350
#> 10594 15 1995 1420196
#> 10595 15 2000 1707477
#> 10596 15 2005 1964657
#> 10597 15 2010 2168495
#> 10598 15 2015 2395763
#> 10599 15 1950 1078000
#> 10600 15 1955 1140468
#> 10601 15 1960 1380073
#> 10602 15 1965 1777759
#> 10603 15 1970 2082051
#> 10604 15 1975 2351653
#> 10605 15 1980 2411992
#> 10606 15 1985 2029085
#> 10607 15 1990 1937671
#> 10608 15 1995 1984041
#> 10609 15 2000 2097286
#> 10610 15 2005 2178610
#> 10611 15 2010 2228796
#> 10612 15 2015 2116614
#> 10613 15 1950 1694642
#> 10614 15 1955 1878398
#> 10615 15 1960 2012545
#> 10616 15 1965 2168608
#> 10617 15 1970 2549028
#> 10618 15 1975 2867008
#> 10619 15 1980 3427066
#> 10620 15 1985 3514758
#> 10621 15 1990 3488160
#> 10622 15 1995 3317508
#> 10623 15 2000 3546913
#> 10624 15 2005 3747022
#> 10625 15 2010 3699363
#> 10626 15 2015 3634363
#> 10627 15 1950 125499
#> 10628 15 1955 132033
#> 10629 15 1960 140427
#> 10630 15 1965 149359
#> 10631 15 1970 170353
#> 10632 15 1975 195144
#> 10633 15 1980 225827
#> 10634 15 1985 262134
#> 10635 15 1990 295795
#> 10636 15 1995 347355
#> 10637 15 2000 402374
#> 10638 15 2005 448193
#> 10639 15 2010 481253
#> 10640 15 2015 516037
#> 10641 15 1950 3921820
#> 10642 15 1955 4239397
#> 10643 15 1960 5009413
#> 10644 15 1965 5825438
#> 10645 15 1970 7565420
#> 10646 15 1975 8805061
#> 10647 15 1980 10006610
#> 10648 15 1985 11498537
#> 10649 15 1990 13591279
#> 10650 15 1995 14190306
#> 10651 15 2000 14452982
#> 10652 15 2005 14988439
#> 10653 15 2010 15998527
#> 10654 15 2015 16621541
#> 10655 15 1950 1707788
#> 10656 15 1955 2315026
#> 10657 15 1960 1692363
#> 10658 15 1965 2131798
#> 10659 15 1970 3219859
#> 10660 15 1975 4180694
#> 10661 15 1980 4663228
#> 10662 15 1985 4535160
#> 10663 15 1990 4835928
#> 10664 15 1995 5209391
#> 10665 15 2000 5823893
#> 10666 15 2005 6717013
#> 10667 15 2010 6744957
#> 10668 15 2015 5783755
#> 10669 15 1950 238619
#> 10670 15 1955 258086
#> 10671 15 1960 278063
#> 10672 15 1965 302686
#> 10673 15 1970 372624
#> 10674 15 1975 410469
#> 10675 15 1980 441441
#> 10676 15 1985 493910
#> 10677 15 1990 602539
#> 10678 15 1995 723381
#> 10679 15 2000 871216
#> 10680 15 2005 1070573
#> 10681 15 2010 1300318
#> 10682 15 2015 1563639
#> 10683 15 1950 6789
#> 10684 15 1955 6643
#> 10685 15 1960 6484
#> 10686 15 1965 6902
#> 10687 15 1970 7433
#> 10688 15 1975 9065
#> 10689 15 1980 10079
#> 10690 15 1985 9688
#> 10691 15 1990 8630
#> 10692 15 1995 7778
#> 10693 15 2000 8138
#> 10694 15 2005 8606
#> 10695 15 2010 9126
#> 10696 15 2015 8719
#> 10697 15 1950 586609
#> 10698 15 1955 621840
#> 10699 15 1960 736656
#> 10700 15 1965 822706
#> 10701 15 1970 1011481
#> 10702 15 1975 1120704
#> 10703 15 1980 1215828
#> 10704 15 1985 1282869
#> 10705 15 1990 1245110
#> 10706 15 1995 1228419
#> 10707 15 2000 1308293
#> 10708 15 2005 1424654
#> 10709 15 2010 1402380
#> 10710 15 2015 1330694
#> 10711 15 1950 52244577
#> 10712 15 1955 53369727
#> 10713 15 1960 54120843
#> 10714 15 1965 67090475
#> 10715 15 1970 91856280
#> 10716 15 1975 87559067
#> 10717 15 1980 108710144
#> 10718 15 1985 129945652
#> 10719 15 1990 122677124
#> 10720 15 1995 98678151
#> 10721 15 2000 104236247
#> 10722 15 2005 131247965
#> 10723 15 2010 101853048
#> 10724 15 2015 80820498
#> 10725 15 1950 214100
#> 10726 15 1955 173388
#> 10727 15 1960 146062
#> 10728 15 1965 308784
#> 10729 15 1970 411543
#> 10730 15 1975 533476
#> 10731 15 1980 575551
#> 10732 15 1985 454981
#> 10733 15 1990 444679
#> 10734 15 1995 408325
#> 10735 15 2000 448202
#> 10736 15 2005 437924
#> 10737 15 2010 432504
#> 10738 15 2015 359177
#> 10739 15 1950 21187
#> 10740 15 1955 12917
#> 10741 15 1960 11491
#> 10742 15 1965 19702
#> 10743 15 1970 38431
#> 10744 15 1975 37178
#> 10745 15 1980 27142
#> 10746 15 1985 24001
#> 10747 15 1990 25118
#> 10748 15 1995 23385
#> 10749 15 2000 33180
#> 10750 15 2005 48258
#> 10751 15 2010 41376
#> 10752 15 2015 31383
#> 10753 15 1950 783768
#> 10754 15 1955 859622
#> 10755 15 1960 1007505
#> 10756 15 1965 1428256
#> 10757 15 1970 1998643
#> 10758 15 1975 2000407
#> 10759 15 1980 2021679
#> 10760 15 1985 1936440
#> 10761 15 1990 1786461
#> 10762 15 1995 1998437
#> 10763 15 2000 1879127
#> 10764 15 2005 1595625
#> 10765 15 2010 1611699
#> 10766 15 2015 1519380
#> 10767 15 1950 1219941
#> 10768 15 1955 1351934
#> 10769 15 1960 1571634
#> 10770 15 1965 1994571
#> 10771 15 1970 2462576
#> 10772 15 1975 2847686
#> 10773 15 1980 3312700
#> 10774 15 1985 3638241
#> 10775 15 1990 3503355
#> 10776 15 1995 3841358
#> 10777 15 2000 4155400
#> 10778 15 2005 4233315
#> 10779 15 2010 4258710
#> 10780 15 2015 4069760
#> 10781 15 1950 16071
#> 10782 15 1955 17419
#> 10783 15 1960 17901
#> 10784 15 1965 18209
#> 10785 15 1970 22956
#> 10786 15 1975 27297
#> 10787 15 1980 32700
#> 10788 15 1985 36873
#> 10789 15 1990 42226
#> 10790 15 1995 50134
#> 10791 15 2000 60615
#> 10792 15 2005 69112
#> 10793 15 2010 74919
#> 10794 15 2015 81403
#> 10795 15 1950 82051
#> 10796 15 1955 90193
#> 10797 15 1960 100149
#> 10798 15 1965 112754
#> 10799 15 1970 132420
#> 10800 15 1975 156699
#> 10801 15 1980 186113
#> 10802 15 1985 221583
#> 10803 15 1990 263518
#> 10804 15 1995 308053
#> 10805 15 2000 343679
#> 10806 15 2005 377514
#> 10807 15 2010 423394
#> 10808 15 2015 491258
#> 10809 15 1950 95599
#> 10810 15 1955 110578
#> 10811 15 1960 131613
#> 10812 15 1965 167594
#> 10813 15 1970 185119
#> 10814 15 1975 237904
#> 10815 15 1980 281740
#> 10816 15 1985 288828
#> 10817 15 1990 277917
#> 10818 15 1995 327133
#> 10819 15 2000 382264
#> 10820 15 2005 410250
#> 10821 15 2010 411520
#> 10822 15 2015 397175
#> 10823 15 1950 276673
#> 10824 15 1955 313790
#> 10825 15 1960 346220
#> 10826 15 1965 385177
#> 10827 15 1970 476497
#> 10828 15 1975 613887
#> 10829 15 1980 771997
#> 10830 15 1985 965970
#> 10831 15 1990 1213636
#> 10832 15 1995 1529035
#> 10833 15 2000 1749592
#> 10834 15 2005 1908670
#> 10835 15 2010 2183323
#> 10836 15 2015 2544589
#> 10837 15 1950 366299
#> 10838 15 1955 342091
#> 10839 15 1960 296421
#> 10840 15 1965 376537
#> 10841 15 1970 395965
#> 10842 15 1975 368301
#> 10843 15 1980 344950
#> 10844 15 1985 320648
#> 10845 15 1990 333959
#> 10846 15 1995 316861
#> 10847 15 2000 302062
#> 10848 15 2005 283206
#> 10849 15 2010 241243
#> 10850 15 2015 241442
#> 10851 15 1950 570263
#> 10852 15 1955 651542
#> 10853 15 1960 697291
#> 10854 15 1965 719584
#> 10855 15 1970 824674
#> 10856 15 1975 825013
#> 10857 15 1980 1171582
#> 10858 15 1985 1162152
#> 10859 15 1990 1092851
#> 10860 15 1995 761626
#> 10861 15 2000 746003
#> 10862 15 2005 851354
#> 10863 15 2010 749053
#> 10864 15 2015 700183
#> 10865 15 1950 9176
#> 10866 15 1955 10149
#> 10867 15 1960 11336
#> 10868 15 1965 12945
#> 10869 15 1970 15666
#> 10870 15 1975 18670
#> 10871 15 1980 18131
#> 10872 15 1985 15729
#> 10873 15 1990 12629
#> 10874 15 1995 11004
#> 10875 15 2000 10406
#> 10876 15 2005 10125
#> 10877 15 2010 11331
#> 10878 15 2015 10507
#> 10879 15 1950 45701
#> 10880 15 1955 47320
#> 10881 15 1960 47571
#> 10882 15 1965 59326
#> 10883 15 1970 57972
#> 10884 15 1975 59825
#> 10885 15 1980 60512
#> 10886 15 1985 57821
#> 10887 15 1990 57364
#> 10888 15 1995 64180
#> 10889 15 2000 76914
#> 10890 15 2005 81082
#> 10891 15 2010 87184
#> 10892 15 2015 77977
#> 10893 15 1950 620110
#> 10894 15 1955 551088
#> 10895 15 1960 721980
#> 10896 15 1965 883575
#> 10897 15 1970 849453
#> 10898 15 1975 718130
#> 10899 15 1980 679327
#> 10900 15 1985 679600
#> 10901 15 1990 842871
#> 10902 15 1995 891518
#> 10903 15 2000 692434
#> 10904 15 2005 650705
#> 10905 15 2010 606789
#> 10906 15 2015 455520
#> 10907 15 1950 1148163
#> 10908 15 1955 1370076
#> 10909 15 1960 1441552
#> 10910 15 1965 1345425
#> 10911 15 1970 954767
#> 10912 15 1975 1829516
#> 10913 15 1980 1694926
#> 10914 15 1985 2353623
#> 10915 15 1990 2324758
#> 10916 15 1995 1659822
#> 10917 15 2000 1873712
#> 10918 15 2005 1908745
#> 10919 15 2010 2019162
#> 10920 15 2015 1953532
#> 10921 15 1950 1236263
#> 10922 15 1955 1399747
#> 10923 15 1960 1599209
#> 10924 15 1965 1809588
#> 10925 15 1970 1998451
#> 10926 15 1975 2302673
#> 10927 15 1980 2683378
#> 10928 15 1985 3065838
#> 10929 15 1990 3552084
#> 10930 15 1995 4272035
#> 10931 15 2000 4881845
#> 10932 15 2005 5681378
#> 10933 15 2010 6670272
#> 10934 15 2015 7838914
#> 10935 15 1950 291884
#> 10936 15 1955 311328
#> 10937 15 1960 380989
#> 10938 15 1965 415212
#> 10939 15 1970 372930
#> 10940 15 1975 369919
#> 10941 15 1980 395722
#> 10942 15 1985 392004
#> 10943 15 1990 367251
#> 10944 15 1995 321686
#> 10945 15 2000 279599
#> 10946 15 2005 308958
#> 10947 15 2010 353401
#> 10948 15 2015 360316
#> 10949 15 1950 6485
#> 10950 15 1955 7535
#> 10951 15 1960 9265
#> 10952 15 1965 13038
#> 10953 15 1970 14978
#> 10954 15 1975 21370
#> 10955 15 1980 41278
#> 10956 15 1985 46715
#> 10957 15 1990 61982
#> 10958 15 1995 69985
#> 10959 15 2000 76193
#> 10960 15 2005 92954
#> 10961 15 2010 93688
#> 10962 15 2015 97084
#> 10963 15 1950 260743
#> 10964 15 1955 287428
#> 10965 15 1960 303761
#> 10966 15 1965 371921
#> 10967 15 1970 484730
#> 10968 15 1975 592621
#> 10969 15 1980 678115
#> 10970 15 1985 735394
#> 10971 15 1990 782461
#> 10972 15 1995 827115
#> 10973 15 2000 894219
#> 10974 15 2005 939079
#> 10975 15 2010 979229
#> 10976 15 2015 974611
#> 10977 15 1950 46684045
#> 10978 15 1955 50645285
#> 10979 15 1960 41573757
#> 10980 15 1965 50855062
#> 10981 15 1970 54559083
#> 10982 15 1975 56752208
#> 10983 15 1980 56334265
#> 10984 15 1985 53008923
#> 10985 15 1990 51589289
#> 10986 15 1995 50284084
#> 10987 15 2000 50546956
#> 10988 15 2005 49533085
#> 10989 15 2010 43155094
#> 10990 15 2015 37753269
#> 10991 15 1950 6851702
#> 10992 15 1955 7443011
#> 10993 15 1960 8364215
#> 10994 15 1965 9668542
#> 10995 15 1970 11256280
#> 10996 15 1975 13090601
#> 10997 15 1980 15087888
#> 10998 15 1985 17691872
#> 10999 15 1990 21052801
#> 11000 15 1995 24322866
#> 11001 15 2000 28888063
#> 11002 15 2005 33079362
#> 11003 15 2010 37894581
#> 11004 15 2015 44247358
#> 11005 15 1950 64763247
#> 11006 15 1955 66844927
#> 11007 15 1960 68523671
#> 11008 15 1965 83912152
#> 11009 15 1970 107999538
#> 11010 15 1975 104405145
#> 11011 15 1980 125871702
#> 11012 15 1985 148352301
#> 11013 15 1990 142044949
#> 11014 15 1995 115618161
#> 11015 15 2000 120192388
#> 11016 15 2005 145423235
#> 11017 15 2010 115854648
#> 11018 15 2015 94063313
#> 11019 15 1950 20608480
#> 11020 15 1955 24118532
#> 11021 15 1960 16142762
#> 11022 15 1965 21847941
#> 11023 15 1970 25780130
#> 11024 15 1975 26164063
#> 11025 15 1980 23161530
#> 11026 15 1985 20667100
#> 11027 15 1990 22337712
#> 11028 15 1995 23606310
#> 11029 15 2000 24526181
#> 11030 15 2005 23624893
#> 11031 15 2010 18195739
#> 11032 15 2015 13824311
#> 11033 15 1950 329950
#> 11034 15 1955 374267
#> 11035 15 1960 439691
#> 11036 15 1965 493146
#> 11037 15 1970 652273
#> 11038 15 1975 753320
#> 11039 15 1980 864636
#> 11040 15 1985 993059
#> 11041 15 1990 1102499
#> 11042 15 1995 1187333
#> 11043 15 2000 1282933
#> 11044 15 2005 1390915
#> 11045 15 2010 1456326
#> 11046 15 2015 1498734
#> 11047 15 1950 2102010
#> 11048 15 1955 2095617
#> 11049 15 1960 2167751
#> 11050 15 1965 3137735
#> 11051 15 1970 3498423
#> 11052 15 1975 4117275
#> 11053 15 1980 4616707
#> 11054 15 1985 5170038
#> 11055 15 1990 5580027
#> 11056 15 1995 6566805
#> 11057 15 2000 7781143
#> 11058 15 2005 8822710
#> 11059 15 2010 8357368
#> 11060 15 2015 8137205
#> 11061 15 1950 228983
#> 11062 15 1955 249222
#> 11063 15 1960 272245
#> 11064 15 1965 312745
#> 11065 15 1970 388010
#> 11066 15 1975 443668
#> 11067 15 1980 488690
#> 11068 15 1985 520948
#> 11069 15 1990 565174
#> 11070 15 1995 585761
#> 11071 15 2000 577370
#> 11072 15 2005 606784
#> 11073 15 2010 669992
#> 11074 15 2015 672664
#> 11075 15 1950 20963
#> 11076 15 1955 21524
#> 11077 15 1960 22659
#> 11078 15 1965 24112
#> 11079 15 1970 30425
#> 11080 15 1975 25534
#> 11081 15 1980 25182
#> 11082 15 1985 35737
#> 11083 15 1990 36830
#> 11084 15 1995 46764
#> 11085 15 2000 62393
#> 11086 15 2005 69386
#> 11087 15 2010 80913
#> 11088 15 2015 99001
#> 11089 15 1950 118900
#> 11090 15 1955 133707
#> 11091 15 1960 151538
#> 11092 15 1965 169528
#> 11093 15 1970 173298
#> 11094 15 1975 208367
#> 11095 15 1980 243594
#> 11096 15 1985 283959
#> 11097 15 1990 319401
#> 11098 15 1995 329790
#> 11099 15 2000 426282
#> 11100 15 2005 505481
#> 11101 15 2010 472073
#> 11102 15 2015 483086
#> 11103 15 1950 96556
#> 11104 15 1955 104493
#> 11105 15 1960 81546
#> 11106 15 1965 97089
#> 11107 15 1970 100564
#> 11108 15 1975 107745
#> 11109 15 1980 103715
#> 11110 15 1985 103572
#> 11111 15 1990 108869
#> 11112 15 1995 98985
#> 11113 15 2000 102341
#> 11114 15 2005 102719
#> 11115 15 2010 77539
#> 11116 15 2015 58208
#> 11117 15 1950 1837158
#> 11118 15 1955 2053303
#> 11119 15 1960 2320976
#> 11120 15 1965 2625730
#> 11121 15 1970 2838481
#> 11122 15 1975 3211432
#> 11123 15 1980 3334320
#> 11124 15 1985 4000727
#> 11125 15 1990 4906867
#> 11126 15 1995 5856650
#> 11127 15 2000 7228823
#> 11128 15 2005 8184303
#> 11129 15 2010 9848412
#> 11130 15 2015 11776318
#> 11131 15 1950 30002
#> 11132 15 1955 35502
#> 11133 15 1960 41288
#> 11134 15 1965 50521
#> 11135 15 1970 59947
#> 11136 15 1975 72297
#> 11137 15 1980 75528
#> 11138 15 1985 73407
#> 11139 15 1990 72790
#> 11140 15 1995 82145
#> 11141 15 2000 88784
#> 11142 15 2005 77315
#> 11143 15 2010 81372
#> 11144 15 2015 76517
#> 11145 15 1950 314257
#> 11146 15 1955 326240
#> 11147 15 1960 356684
#> 11148 15 1965 482312
#> 11149 15 1970 426965
#> 11150 15 1975 399414
#> 11151 15 1980 382185
#> 11152 15 1985 351254
#> 11153 15 1990 302704
#> 11154 15 1995 327993
#> 11155 15 2000 332489
#> 11156 15 2005 319947
#> 11157 15 2010 335156
#> 11158 15 2015 302834
#> 11159 15 1950 3158961
#> 11160 15 1955 2833816
#> 11161 15 1960 2743958
#> 11162 15 1965 4210408
#> 11163 15 1970 4140612
#> 11164 15 1975 4215857
#> 11165 15 1980 4298281
#> 11166 15 1985 4262345
#> 11167 15 1990 4212196
#> 11168 15 1995 3740221
#> 11169 15 2000 3910619
#> 11170 15 2005 3872891
#> 11171 15 2010 3740765
#> 11172 15 2015 3800919
#> 11173 15 1950 2073
#> 11174 15 1955 1927
#> 11175 15 1960 2110
#> 11176 15 1965 3158
#> 11177 15 1970 4245
#> 11178 15 1975 5614
#> 11179 15 1980 6576
#> 11180 15 1985 8086
#> 11181 15 1990 9887
#> 11182 15 1995 12689
#> 11183 15 2000 13484
#> 11184 15 2005 18490
#> 11185 15 2010 20022
#> 11186 15 2015 24453
#> 11187 15 1950 6805
#> 11188 15 1955 7258
#> 11189 15 1960 8047
#> 11190 15 1965 7722
#> 11191 15 1970 10898
#> 11192 15 1975 14733
#> 11193 15 1980 17076
#> 11194 15 1985 20987
#> 11195 15 1990 20399
#> 11196 15 1995 19787
#> 11197 15 2000 22742
#> 11198 15 2005 26888
#> 11199 15 2010 24985
#> 11200 15 2015 23462
#> 11201 15 1950 39483
#> 11202 15 1955 39829
#> 11203 15 1960 40079
#> 11204 15 1965 43710
#> 11205 15 1970 46789
#> 11206 15 1975 51912
#> 11207 15 1980 62127
#> 11208 15 1985 76963
#> 11209 15 1990 91431
#> 11210 15 1995 108471
#> 11211 15 2000 128600
#> 11212 15 2005 149398
#> 11213 15 2010 166496
#> 11214 15 2015 182660
#> 11215 15 1950 27251
#> 11216 15 1955 33756
#> 11217 15 1960 34506
#> 11218 15 1965 39656
#> 11219 15 1970 38728
#> 11220 15 1975 49569
#> 11221 15 1980 52848
#> 11222 15 1985 75946
#> 11223 15 1990 90502
#> 11224 15 1995 113618
#> 11225 15 2000 136214
#> 11226 15 2005 152606
#> 11227 15 2010 178323
#> 11228 15 2015 213722
#> 11229 15 1950 339950
#> 11230 15 1955 394695
#> 11231 15 1960 271740
#> 11232 15 1965 307051
#> 11233 15 1970 417064
#> 11234 15 1975 468052
#> 11235 15 1980 480107
#> 11236 15 1985 426830
#> 11237 15 1990 413127
#> 11238 15 1995 375064
#> 11239 15 2000 375526
#> 11240 15 2005 399782
#> 11241 15 2010 330503
#> 11242 15 2015 235989
#> 11243 15 1950 5252840
#> 11244 15 1955 6347456
#> 11245 15 1960 5159658
#> 11246 15 1965 4760865
#> 11247 15 1970 5316179
#> 11248 15 1975 5904117
#> 11249 15 1980 6618949
#> 11250 15 1985 6207919
#> 11251 15 1990 4487614
#> 11252 15 1995 4279044
#> 11253 15 2000 4574158
#> 11254 15 2005 4712246
#> 11255 15 2010 4184023
#> 11256 15 2015 4101901
#> 11257 15 1950 516487
#> 11258 15 1955 596575
#> 11259 15 1960 705019
#> 11260 15 1965 830217
#> 11261 15 1970 834228
#> 11262 15 1975 994802
#> 11263 15 1980 1145321
#> 11264 15 1985 1386599
#> 11265 15 1990 1596147
#> 11266 15 1995 1815470
#> 11267 15 2000 2054265
#> 11268 15 2005 2325486
#> 11269 15 2010 2610674
#> 11270 15 2015 2878867
#> 11271 15 1950 790997
#> 11272 15 1955 777899
#> 11273 15 1960 640386
#> 11274 15 1965 724035
#> 11275 15 1970 667639
#> 11276 15 1975 750828
#> 11277 15 1980 749706
#> 11278 15 1985 785158
#> 11279 15 1990 783348
#> 11280 15 1995 811094
#> 11281 15 2000 757812
#> 11282 15 2005 637454
#> 11283 15 2010 592716
#> 11284 15 2015 558912
#> 11285 15 1950 6740
#> 11286 15 1955 7857
#> 11287 15 1960 7250
#> 11288 15 1965 8998
#> 11289 15 1970 9886
#> 11290 15 1975 12431
#> 11291 15 1980 11626
#> 11292 15 1985 11808
#> 11293 15 1990 10069
#> 11294 15 1995 10414
#> 11295 15 2000 11922
#> 11296 15 2005 13200
#> 11297 15 2010 11105
#> 11298 15 2015 9730
#> 11299 15 1950 18992
#> 11300 15 1955 20031
#> 11301 15 1960 23029
#> 11302 15 1965 32508
#> 11303 15 1970 35908
#> 11304 15 1975 37222
#> 11305 15 1980 40193
#> 11306 15 1985 40751
#> 11307 15 1990 40732
#> 11308 15 1995 40894
#> 11309 15 2000 31805
#> 11310 15 2005 32371
#> 11311 15 2010 34799
#> 11312 15 2015 34239
#> 11313 15 1950 7175
#> 11314 15 1955 6072
#> 11315 15 1960 5022
#> 11316 15 1965 6409
#> 11317 15 1970 7702
#> 11318 15 1975 9188
#> 11319 15 1980 10668
#> 11320 15 1985 11150
#> 11321 15 1990 11844
#> 11322 15 1995 11687
#> 11323 15 2000 12453
#> 11324 15 2005 13437
#> 11325 15 2010 14140
#> 11326 15 2015 14078
#> 11327 15 1950 337696
#> 11328 15 1955 357685
#> 11329 15 1960 397046
#> 11330 15 1965 472025
#> 11331 15 1970 620027
#> 11332 15 1975 696937
#> 11333 15 1980 766416
#> 11334 15 1985 875257
#> 11335 15 1990 1020744
#> 11336 15 1995 1187395
#> 11337 15 2000 1335164
#> 11338 15 2005 1443819
#> 11339 15 2010 1663235
#> 11340 15 2015 1826914
#> 11341 15 1950 298256
#> 11342 15 1955 317869
#> 11343 15 1960 338612
#> 11344 15 1965 357442
#> 11345 15 1970 443676
#> 11346 15 1975 452165
#> 11347 15 1980 452330
#> 11348 15 1985 491828
#> 11349 15 1990 587484
#> 11350 15 1995 788518
#> 11351 15 2000 907893
#> 11352 15 2005 1019926
#> 11353 15 2010 1150678
#> 11354 15 2015 1291492
#> 11355 15 1950 49590
#> 11356 15 1955 50827
#> 11357 15 1960 58628
#> 11358 15 1965 62573
#> 11359 15 1970 75587
#> 11360 15 1975 77572
#> 11361 15 1980 78294
#> 11362 15 1985 84487
#> 11363 15 1990 100709
#> 11364 15 1995 119725
#> 11365 15 2000 140709
#> 11366 15 2005 156744
#> 11367 15 2010 173117
#> 11368 15 2015 186310
#> 11369 15 1950 38508
#> 11370 15 1955 45985
#> 11371 15 1960 52551
#> 11372 15 1965 65227
#> 11373 15 1970 81334
#> 11374 15 1975 88930
#> 11375 15 1980 91617
#> 11376 15 1985 97746
#> 11377 15 1990 85275
#> 11378 15 1995 81975
#> 11379 15 2000 69245
#> 11380 15 2005 71648
#> 11381 15 2010 83166
#> 11382 15 2015 84027
#> 11383 15 1950 323819
#> 11384 15 1955 363888
#> 11385 15 1960 389573
#> 11386 15 1965 396077
#> 11387 15 1970 481163
#> 11388 15 1975 543835
#> 11389 15 1980 613750
#> 11390 15 1985 655896
#> 11391 15 1990 690821
#> 11392 15 1995 816937
#> 11393 15 2000 999391
#> 11394 15 2005 1053231
#> 11395 15 2010 1085159
#> 11396 15 2015 1120562
#> 11397 15 1950 54570052
#> 11398 15 1955 56069539
#> 11399 15 1960 58959388
#> 11400 15 1965 70436357
#> 11401 15 1970 73532974
#> 11402 15 1975 77655773
#> 11403 15 1980 80265736
#> 11404 15 1985 77732095
#> 11405 15 1990 75434427
#> 11406 15 1995 72315167
#> 11407 15 2000 72624288
#> 11408 15 2005 72565420
#> 11409 15 2010 72241282
#> 11410 15 2015 68563777
#> 11411 15 1950 156748
#> 11412 15 1955 172838
#> 11413 15 1960 191908
#> 11414 15 1965 230338
#> 11415 15 1970 291895
#> 11416 15 1975 341593
#> 11417 15 1980 397014
#> 11418 15 1985 471168
#> 11419 15 1990 544018
#> 11420 15 1995 641206
#> 11421 15 2000 735180
#> 11422 15 2005 820049
#> 11423 15 2010 916178
#> 11424 15 2015 977243
#> 11425 15 1950 758945
#> 11426 15 1955 721214
#> 11427 15 1960 757457
#> 11428 15 1965 783629
#> 11429 15 1970 933236
#> 11430 15 1975 807837
#> 11431 15 1980 635005
#> 11432 15 1985 698012
#> 11433 15 1990 774749
#> 11434 15 1995 859929
#> 11435 15 2000 666385
#> 11436 15 2005 630907
#> 11437 15 2010 624832
#> 11438 15 2015 512959
#> 11439 15 1950 12174
#> 11440 15 1955 11442
#> 11441 15 1960 14145
#> 11442 15 1965 17802
#> 11443 15 1970 20070
#> 11444 15 1975 22458
#> 11445 15 1980 22554
#> 11446 15 1985 21037
#> 11447 15 1990 21207
#> 11448 15 1995 21041
#> 11449 15 2000 21806
#> 11450 15 2005 21260
#> 11451 15 2010 24099
#> 11452 15 2015 21897
#> 11453 15 1950 38463515
#> 11454 15 1955 40534586
#> 11455 15 1960 41577814
#> 11456 15 1965 46118268
#> 11457 15 1970 57908448
#> 11458 15 1975 64834380
#> 11459 15 1980 72197996
#> 11460 15 1985 79302897
#> 11461 15 1990 87840660
#> 11462 15 1995 96893613
#> 11463 15 2000 108712367
#> 11464 15 2005 115756709
#> 11465 15 2010 119374536
#> 11466 15 2015 123333165
#> 11467 15 1950 7504298
#> 11468 15 1955 8325438
#> 11469 15 1960 8568859
#> 11470 15 1965 8832784
#> 11471 15 1970 10904880
#> 11472 15 1975 13849167
#> 11473 15 1980 16113687
#> 11474 15 1985 18276089
#> 11475 15 1990 19924480
#> 11476 15 1995 21227998
#> 11477 15 2000 22251975
#> 11478 15 2005 22141516
#> 11479 15 2010 22171388
#> 11480 15 2015 22511565
#> 11481 15 1950 1743750
#> 11482 15 1955 1774787
#> 11483 15 1960 1742822
#> 11484 15 1965 2185036
#> 11485 15 1970 3079100
#> 11486 15 1975 3563711
#> 11487 15 1980 4099165
#> 11488 15 1985 4770588
#> 11489 15 1990 5781405
#> 11490 15 1995 6858143
#> 11491 15 2000 8789568
#> 11492 15 2005 9324414
#> 11493 15 2010 7177148
#> 11494 15 2015 5490617
#> 11495 15 1950 533174
#> 11496 15 1955 594458
#> 11497 15 1960 678995
#> 11498 15 1965 710516
#> 11499 15 1970 1086667
#> 11500 15 1975 1100380
#> 11501 15 1980 1375668
#> 11502 15 1985 1798263
#> 11503 15 1990 2034715
#> 11504 15 1995 2343712
#> 11505 15 2000 2617355
#> 11506 15 2005 2926895
#> 11507 15 2010 3259415
#> 11508 15 2015 3804080
#> 11509 15 1950 228838
#> 11510 15 1955 224226
#> 11511 15 1960 236758
#> 11512 15 1965 271273
#> 11513 15 1970 280602
#> 11514 15 1975 287405
#> 11515 15 1980 330083
#> 11516 15 1985 316328
#> 11517 15 1990 351294
#> 11518 15 1995 357568
#> 11519 15 2000 349124
#> 11520 15 2005 301016
#> 11521 15 2010 276083
#> 11522 15 2015 270105
#> 11523 15 1950 108940
#> 11524 15 1955 137214
#> 11525 15 1960 160553
#> 11526 15 1965 251940
#> 11527 15 1970 309633
#> 11528 15 1975 313716
#> 11529 15 1980 325363
#> 11530 15 1985 351937
#> 11531 15 1990 429721
#> 11532 15 1995 495266
#> 11533 15 2000 527880
#> 11534 15 2005 535951
#> 11535 15 2010 564502
#> 11536 15 2015 624344
#> 11537 15 1950 4047985
#> 11538 15 1955 4094651
#> 11539 15 1960 3729194
#> 11540 15 1965 4184758
#> 11541 15 1970 3917700
#> 11542 15 1975 4110818
#> 11543 15 1980 4580720
#> 11544 15 1985 4599284
#> 11545 15 1990 4319849
#> 11546 15 1995 3580935
#> 11547 15 2000 3073079
#> 11548 15 2005 2917476
#> 11549 15 2010 2880484
#> 11550 15 2015 2788486
#> 11551 15 1950 143300
#> 11552 15 1955 148395
#> 11553 15 1960 145969
#> 11554 15 1965 170470
#> 11555 15 1970 166241
#> 11556 15 1975 235327
#> 11557 15 1980 248340
#> 11558 15 1985 276057
#> 11559 15 1990 260661
#> 11560 15 1995 249561
#> 11561 15 2000 254960
#> 11562 15 2005 263864
#> 11563 15 2010 278568
#> 11564 15 2015 277050
#> 11565 15 1950 8484002
#> 11566 15 1955 8585144
#> 11567 15 1960 9348969
#> 11568 15 1965 10840169
#> 11569 15 1970 9339522
#> 11570 15 1975 8038292
#> 11571 15 1980 8260375
#> 11572 15 1985 9013231
#> 11573 15 1990 10090376
#> 11574 15 1995 8633899
#> 11575 15 2000 7612740
#> 11576 15 2005 6760603
#> 11577 15 2010 6123297
#> 11578 15 2015 5979696
#> 11579 15 1950 47296
#> 11580 15 1955 73220
#> 11581 15 1960 101563
#> 11582 15 1965 118958
#> 11583 15 1970 162086
#> 11584 15 1975 198416
#> 11585 15 1980 265829
#> 11586 15 1985 331645
#> 11587 15 1990 427097
#> 11588 15 1995 513397
#> 11589 15 2000 579308
#> 11590 15 2005 606950
#> 11591 15 2010 726969
#> 11592 15 2015 921988
#> 11593 15 1950 572177
#> 11594 15 1955 1053947
#> 11595 15 1960 723942
#> 11596 15 1965 949273
#> 11597 15 1970 1290014
#> 11598 15 1975 1579042
#> 11599 15 1980 1584178
#> 11600 15 1985 1431582
#> 11601 15 1990 1438401
#> 11602 15 1995 1432381
#> 11603 15 2000 1427262
#> 11604 15 2005 1613052
#> 11605 15 2010 1496299
#> 11606 15 2015 1129985
#> 11607 15 1950 623129
#> 11608 15 1955 636148
#> 11609 15 1960 664912
#> 11610 15 1965 896164
#> 11611 15 1970 1177237
#> 11612 15 1975 1425505
#> 11613 15 1980 1726358
#> 11614 15 1985 2096323
#> 11615 15 1990 2592469
#> 11616 15 1995 3162890
#> 11617 15 2000 3749256
#> 11618 15 2005 4212381
#> 11619 15 2010 4401886
#> 11620 15 2015 5164151
#> 11621 15 1950 3666
#> 11622 15 1955 3766
#> 11623 15 1960 3734
#> 11624 15 1965 4731
#> 11625 15 1970 5653
#> 11626 15 1975 6626
#> 11627 15 1980 7163
#> 11628 15 1985 7618
#> 11629 15 1990 6428
#> 11630 15 1995 7439
#> 11631 15 2000 8921
#> 11632 15 2005 10797
#> 11633 15 2010 10914
#> 11634 15 2015 11866
#> 11635 15 1950 15700
#> 11636 15 1955 15651
#> 11637 15 1960 20450
#> 11638 15 1965 38837
#> 11639 15 1970 58619
#> 11640 15 1975 89847
#> 11641 15 1980 119902
#> 11642 15 1985 145918
#> 11643 15 1990 182024
#> 11644 15 1995 109951
#> 11645 15 2000 165229
#> 11646 15 2005 156691
#> 11647 15 2010 195051
#> 11648 15 2015 218216
#> 11649 15 1950 173782
#> 11650 15 1955 203979
#> 11651 15 1960 134089
#> 11652 15 1965 173380
#> 11653 15 1970 282719
#> 11654 15 1975 367247
#> 11655 15 1980 407156
#> 11656 15 1985 398009
#> 11657 15 1990 416902
#> 11658 15 1995 443124
#> 11659 15 2000 519285
#> 11660 15 2005 588695
#> 11661 15 2010 600414
#> 11662 15 2015 512788
#> 11663 15 1950 16781677
#> 11664 15 1955 18801350
#> 11665 15 1960 21038879
#> 11666 15 1965 24742785
#> 11667 15 1970 30244809
#> 11668 15 1975 34696563
#> 11669 15 1980 39729965
#> 11670 15 1985 43213849
#> 11671 15 1990 46602900
#> 11672 15 1995 50344712
#> 11673 15 2000 53128934
#> 11674 15 2005 54452183
#> 11675 15 2010 55333025
#> 11676 15 2015 55744485
#> 11677 15 1950 168265
#> 11678 15 1955 184645
#> 11679 15 1960 206023
#> 11680 15 1965 240514
#> 11681 15 1970 283021
#> 11682 15 1975 313972
#> 11683 15 1980 340281
#> 11684 15 1985 395086
#> 11685 15 1990 462448
#> 11686 15 1995 514473
#> 11687 15 2000 582267
#> 11688 15 2005 688943
#> 11689 15 2010 763999
#> 11690 15 2015 714766
#> 11691 15 1950 167409
#> 11692 15 1955 178059
#> 11693 15 1960 160944
#> 11694 15 1965 155562
#> 11695 15 1970 167326
#> 11696 15 1975 188662
#> 11697 15 1980 187375
#> 11698 15 1985 167993
#> 11699 15 1990 184817
#> 11700 15 1995 163810
#> 11701 15 2000 178575
#> 11702 15 2005 182140
#> 11703 15 2010 132347
#> 11704 15 2015 87254
#> 11705 15 1950 19785080
#> 11706 15 1955 21476975
#> 11707 15 1960 23833020
#> 11708 15 1965 26685528
#> 11709 15 1970 30988728
#> 11710 15 1975 34961939
#> 11711 15 1980 40806740
#> 11712 15 1985 47071502
#> 11713 15 1990 53788659
#> 11714 15 1995 62463558
#> 11715 15 2000 72627544
#> 11716 15 2005 81085680
#> 11717 15 2010 90351731
#> 11718 15 2015 102145085
#> 11719 15 1950 132737
#> 11720 15 1955 134924
#> 11721 15 1960 141142
#> 11722 15 1965 179122
#> 11723 15 1970 252495
#> 11724 15 1975 290951
#> 11725 15 1980 289204
#> 11726 15 1985 276699
#> 11727 15 1990 274931
#> 11728 15 1995 305898
#> 11729 15 2000 313059
#> 11730 15 2005 402087
#> 11731 15 2010 443909
#> 11732 15 2015 556960
#> 11733 15 1950 71676
#> 11734 15 1955 78429
#> 11735 15 1960 88481
#> 11736 15 1965 101567
#> 11737 15 1970 110862
#> 11738 15 1975 124727
#> 11739 15 1980 142678
#> 11740 15 1985 160931
#> 11741 15 1990 178170
#> 11742 15 1995 199870
#> 11743 15 2000 220016
#> 11744 15 2005 232881
#> 11745 15 2010 239643
#> 11746 15 2015 250135
#> 11747 15 1950 171166247
#> 11748 15 1955 182596056
#> 11749 15 1960 191095522
#> 11750 15 1965 222627298
#> 11751 15 1970 282959608
#> 11752 15 1975 309295996
#> 11753 15 1980 361055424
#> 11754 15 1985 411006347
#> 11755 15 1990 434361384
#> 11756 15 1995 444144812
#> 11757 15 2000 488982097
#> 11758 15 2005 542479830
#> 11759 15 2010 529551474
#> 11760 15 2015 524684803
#> 11761 15 1950 117902615
#> 11762 15 1955 128180402
#> 11763 15 1960 135809621
#> 11764 15 1965 153780081
#> 11765 15 1970 188654711
#> 11766 15 1975 219165868
#> 11767 15 1980 249720908
#> 11768 15 1985 278645273
#> 11769 15 1990 309428002
#> 11770 15 1995 343036514
#> 11771 15 2000 382385341
#> 11772 15 2005 409150058
#> 11773 15 2010 425612847
#> 11774 15 2015 441954365
#> 11775 15 1950 151381167
#> 11776 15 1955 161119081
#> 11777 15 1960 167262502
#> 11778 15 1965 195941770
#> 11779 15 1970 251970880
#> 11780 15 1975 274334057
#> 11781 15 1980 320248684
#> 11782 15 1985 363934845
#> 11783 15 1990 380572725
#> 11784 15 1995 381681254
#> 11785 15 2000 416354553
#> 11786 15 2005 461394150
#> 11787 15 2010 439199743
#> 11788 15 2015 422539718
#> 11789 15 1950 97388
#> 11790 15 1955 107910
#> 11791 15 1960 119264
#> 11792 15 1965 119407
#> 11793 15 1970 140585
#> 11794 15 1975 163594
#> 11795 15 1980 190671
#> 11796 15 1985 222876
#> 11797 15 1990 219480
#> 11798 15 1995 224046
#> 11799 15 2000 314753
#> 11800 15 2005 342103
#> 11801 15 2010 398154
#> 11802 15 2015 475689
#> 11803 15 1950 107929
#> 11804 15 1955 117452
#> 11805 15 1960 137790
#> 11806 15 1965 154391
#> 11807 15 1970 195587
#> 11808 15 1975 240927
#> 11809 15 1980 314632
#> 11810 15 1985 426651
#> 11811 15 1990 522202
#> 11812 15 1995 588695
#> 11813 15 2000 617094
#> 11814 15 2005 641048
#> 11815 15 2010 597857
#> 11816 15 2015 536390
#> 11817 15 1950 244594
#> 11818 15 1955 239442
#> 11819 15 1960 233072
#> 11820 15 1965 222940
#> 11821 15 1970 239087
#> 11822 15 1975 285903
#> 11823 15 1980 292124
#> 11824 15 1985 275199
#> 11825 15 1990 275746
#> 11826 15 1995 254097
#> 11827 15 2000 261026
#> 11828 15 2005 258318
#> 11829 15 2010 226408
#> 11830 15 2015 169577
#> 11831 15 1950 13063414
#> 11832 15 1955 14377677
#> 11833 15 1960 15949175
#> 11834 15 1965 17388363
#> 11835 15 1970 19418854
#> 11836 15 1975 22828844
#> 11837 15 1980 25362270
#> 11838 15 1985 29398499
#> 11839 15 1990 33777773
#> 11840 15 1995 38701200
#> 11841 15 2000 45382423
#> 11842 15 2005 51933398
#> 11843 15 2010 59711471
#> 11844 15 2015 69450654
#> 11845 15 1950 78967906
#> 11846 15 1955 85394181
#> 11847 15 1960 87785599
#> 11848 15 1965 98334693
#> 11849 15 1970 121745509
#> 11850 15 1975 140199943
#> 11851 15 1980 159532932
#> 11852 15 1985 177358760
#> 11853 15 1990 197359246
#> 11854 15 1995 219994803
#> 11855 15 2000 246847727
#> 11856 15 2005 264279179
#> 11857 15 2010 273174938
#> 11858 15 2015 281366937
#> 11859 15 1950 24001
#> 11860 15 1955 20001
#> 11861 15 1960 20063
#> 11862 15 1965 21723
#> 11863 15 1970 24231
#> 11864 15 1975 27174
#> 11865 15 1980 27980
#> 11866 15 1985 25981
#> 11867 15 1990 22211
#> 11868 15 1995 22241
#> 11869 15 2000 24223
#> 11870 15 2005 26747
#> 11871 15 2010 30168
#> 11872 15 2015 33935
#> 11873 15 1950 413385
#> 11874 15 1955 429864
#> 11875 15 1960 443371
#> 11876 15 1965 504958
#> 11877 15 1970 674075
#> 11878 15 1975 786486
#> 11879 15 1980 910377
#> 11880 15 1985 1059414
#> 11881 15 1990 1243232
#> 11882 15 1995 1452098
#> 11883 15 2000 1650977
#> 11884 15 2005 1912821
#> 11885 15 2010 2278548
#> 11886 15 2015 2703906
#> 11887 15 1950 299846
#> 11888 15 1955 342146
#> 11889 15 1960 399591
#> 11890 15 1965 461832
#> 11891 15 1970 462277
#> 11892 15 1975 536861
#> 11893 15 1980 635305
#> 11894 15 1985 756401
#> 11895 15 1990 993514
#> 11896 15 1995 1046852
#> 11897 15 2000 1200483
#> 11898 15 2005 1485676
#> 11899 15 2010 1720445
#> 11900 15 2015 1980863
#> 11901 15 1950 579499
#> 11902 15 1955 713039
#> 11903 15 1960 717446
#> 11904 15 1965 957750
#> 11905 15 1970 1195833
#> 11906 15 1975 1341387
#> 11907 15 1980 1605310
#> 11908 15 1985 1655039
#> 11909 15 1990 1831403
#> 11910 15 1995 2013261
#> 11911 15 2000 2274209
#> 11912 15 2005 2568669
#> 11913 15 2010 2813646
#> 11914 15 2015 2898252
#> 11915 15 1950 8664
#> 11916 15 1955 9851
#> 11917 15 1960 9908
#> 11918 15 1965 8385
#> 11919 15 1970 9184
#> 11920 15 1975 13706
#> 11921 15 1980 17180
#> 11922 15 1985 20114
#> 11923 15 1990 22861
#> 11924 15 1995 26371
#> 11925 15 2000 35691
#> 11926 15 2005 42185
#> 11927 15 2010 40500
#> 11928 15 2015 31249
#> 11929 15 1950 452201
#> 11930 15 1955 471798
#> 11931 15 1960 531592
#> 11932 15 1965 539911
#> 11933 15 1970 620229
#> 11934 15 1975 660529
#> 11935 15 1980 716417
#> 11936 15 1985 808696
#> 11937 15 1990 913991
#> 11938 15 1995 1063795
#> 11939 15 2000 1210225
#> 11940 15 2005 1361899
#> 11941 15 2010 1577879
#> 11942 15 2015 1841074
#> 11943 15 1950 28001
#> 11944 15 1955 30988
#> 11945 15 1960 21148
#> 11946 15 1965 35660
#> 11947 15 1970 32925
#> 11948 15 1975 28740
#> 11949 15 1980 29502
#> 11950 15 1985 24157
#> 11951 15 1990 26886
#> 11952 15 1995 29518
#> 11953 15 2000 29124
#> 11954 15 2005 28756
#> 11955 15 2010 26771
#> 11956 15 2015 24071
#> 11957 15 1950 21000
#> 11958 15 1955 24119
#> 11959 15 1960 25556
#> 11960 15 1965 30131
#> 11961 15 1970 34116
#> 11962 15 1975 40028
#> 11963 15 1980 41774
#> 11964 15 1985 38395
#> 11965 15 1990 36155
#> 11966 15 1995 30898
#> 11967 15 2000 24243
#> 11968 15 2005 32254
#> 11969 15 2010 27913
#> 11970 15 2015 23675
#> 11971 15 1950 70694
#> 11972 15 1955 78162
#> 11973 15 1960 86498
#> 11974 15 1965 97226
#> 11975 15 1970 115891
#> 11976 15 1975 142061
#> 11977 15 1980 166074
#> 11978 15 1985 191388
#> 11979 15 1990 220094
#> 11980 15 1995 252709
#> 11981 15 2000 293157
#> 11982 15 2005 334951
#> 11983 15 2010 378746
#> 11984 15 2015 430450
#> 11985 15 1950 51370
#> 11986 15 1955 58442
#> 11987 15 1960 67818
#> 11988 15 1965 78239
#> 11989 15 1970 91599
#> 11990 15 1975 103231
#> 11991 15 1980 109651
#> 11992 15 1985 117949
#> 11993 15 1990 111556
#> 11994 15 1995 104928
#> 11995 15 2000 102099
#> 11996 15 2005 96036
#> 11997 15 2010 104968
#> 11998 15 2015 94451
#> 11999 15 1950 1042
#> 12000 15 1955 1542
#> 12001 15 1960 2246
#> 12002 15 1965 2900
#> 12003 15 1970 3656
#> 12004 15 1975 4388
#> 12005 15 1980 5651
#> 12006 15 1985 7899
#> 12007 15 1990 10137
#> 12008 15 1995 13849
#> 12009 15 2000 16999
#> 12010 15 2005 20321
#> 12011 15 2010 20860
#> 12012 15 2015 24948
#> 12013 15 1950 222138
#> 12014 15 1955 241718
#> 12015 15 1960 266171
#> 12016 15 1965 302258
#> 12017 15 1970 366674
#> 12018 15 1975 421346
#> 12019 15 1980 474611
#> 12020 15 1985 530735
#> 12021 15 1990 609426
#> 12022 15 1995 695331
#> 12023 15 2000 770319
#> 12024 15 2005 809754
#> 12025 15 2010 894123
#> 12026 15 2015 1010044
#> 12027 15 1950 2869852
#> 12028 15 1955 3087719
#> 12029 15 1960 3719505
#> 12030 15 1965 4314943
#> 12031 15 1970 5636866
#> 12032 15 1975 6554388
#> 12033 15 1980 7486100
#> 12034 15 1985 8685955
#> 12035 15 1990 10436159
#> 12036 15 1995 10614152
#> 12037 15 2000 10504209
#> 12038 15 2005 10746105
#> 12039 15 2010 11362242
#> 12040 15 2015 11762314
#> 12041 15 1950 16524
#> 12042 15 1955 16768
#> 12043 15 1960 16763
#> 12044 15 1965 20573
#> 12045 15 1970 26119
#> 12046 15 1975 29719
#> 12047 15 1980 32769
#> 12048 15 1985 37767
#> 12049 15 1990 39725
#> 12050 15 1995 42739
#> 12051 15 2000 48107
#> 12052 15 2005 49563
#> 12053 15 2010 48696
#> 12054 15 2015 52888
#> 12055 15 1950 3218
#> 12056 15 1955 3657
#> 12057 15 1960 4166
#> 12058 15 1965 4670
#> 12059 15 1970 7062
#> 12060 15 1975 7099
#> 12061 15 1980 7784
#> 12062 15 1985 9962
#> 12063 15 1990 11043
#> 12064 15 1995 12572
#> 12065 15 2000 13452
#> 12066 15 2005 13249
#> 12067 15 2010 13139
#> 12068 15 2015 12975
#> 12069 15 1950 2641659
#> 12070 15 1955 2905364
#> 12071 15 1960 3196236
#> 12072 15 1965 3542399
#> 12073 15 1970 4125895
#> 12074 15 1975 4666983
#> 12075 15 1980 5396167
#> 12076 15 1985 6246366
#> 12077 15 1990 7317256
#> 12078 15 1995 8785105
#> 12079 15 2000 10176256
#> 12080 15 2005 11879206
#> 12081 15 2010 13764471
#> 12082 15 2015 16013114
#> 12083 15 1950 171611984
#> 12084 15 1955 184609571
#> 12085 15 1960 183096802
#> 12086 15 1965 216741268
#> 12087 15 1970 276693288
#> 12088 15 1975 298510909
#> 12089 15 1980 345115549
#> 12090 15 1985 388528901
#> 12091 15 1990 408259007
#> 12092 15 1995 413699070
#> 12093 15 2000 452585086
#> 12094 15 2005 499490502
#> 12095 15 2010 472845650
#> 12096 15 2015 455397295
#> 12097 15 1950 71042
#> 12098 15 1955 76286
#> 12099 15 1960 78659
#> 12100 15 1965 83715
#> 12101 15 1970 112416
#> 12102 15 1975 141161
#> 12103 15 1980 192093
#> 12104 15 1985 215024
#> 12105 15 1990 244015
#> 12106 15 1995 248402
#> 12107 15 2000 269614
#> 12108 15 2005 318741
#> 12109 15 2010 275155
#> 12110 15 2015 228737
#> 12111 15 1950 42987
#> 12112 15 1955 48541
#> 12113 15 1960 46300
#> 12114 15 1965 47515
#> 12115 15 1970 54412
#> 12116 15 1975 57282
#> 12117 15 1980 58939
#> 12118 15 1985 53688
#> 12119 15 1990 52299
#> 12120 15 1995 48160
#> 12121 15 2000 49363
#> 12122 15 2005 46174
#> 12123 15 2010 44798
#> 12124 15 2015 41701
#> 12125 15 1950 68154337
#> 12126 15 1955 72543072
#> 12127 15 1960 67004416
#> 12128 15 1965 82060379
#> 12129 15 1970 86830805
#> 12130 15 1975 89861784
#> 12131 15 1980 89872512
#> 12132 15 1985 84841078
#> 12133 15 1990 83298582
#> 12134 15 1995 80764429
#> 12135 15 2000 81800158
#> 12136 15 2005 81736719
#> 12137 15 2010 75474871
#> 12138 15 2015 68953953
#> 12139 15 1950 1031305
#> 12140 15 1955 1050382
#> 12141 15 1960 1063522
#> 12142 15 1965 1199207
#> 12143 15 1970 1670855
#> 12144 15 1975 2083324
#> 12145 15 1980 2418997
#> 12146 15 1985 2580794
#> 12147 15 1990 2695694
#> 12148 15 1995 2948462
#> 12149 15 2000 3270325
#> 12150 15 2005 3189526
#> 12151 15 2010 3185969
#> 12152 15 2015 2958331
#> 12153 15 1950 620625
#> 12154 15 1955 672745
#> 12155 15 1960 736895
#> 12156 15 1965 803307
#> 12157 15 1970 932660
#> 12158 15 1975 1067389
#> 12159 15 1980 1211482
#> 12160 15 1985 1339118
#> 12161 15 1990 1496919
#> 12162 15 1995 1663646
#> 12163 15 2000 1915796
#> 12164 15 2005 2167009
#> 12165 15 2010 2545044
#> 12166 15 2015 3029426
#> 12167 15 1950 1731027
#> 12168 15 1955 1625415
#> 12169 15 1960 1697063
#> 12170 15 1965 2049558
#> 12171 15 1970 2825409
#> 12172 15 1975 3163173
#> 12173 15 1980 3506026
#> 12174 15 1985 3987153
#> 12175 15 1990 4397672
#> 12176 15 1995 4732379
#> 12177 15 2000 5083463
#> 12178 15 2005 4793687
#> 12179 15 2010 4587916
#> 12180 15 2015 4845000
#> 12181 15 1950 12301107
#> 12182 15 1955 12549637
#> 12183 15 1960 15130085
#> 12184 15 1965 19108101
#> 12185 15 1970 21556232
#> 12186 15 1975 23538035
#> 12187 15 1980 23659607
#> 12188 15 1985 21209334
#> 12189 15 1990 19931467
#> 12190 15 1995 20299013
#> 12191 15 2000 22053735
#> 12192 15 2005 23744361
#> 12193 15 2010 24388040
#> 12194 15 2015 23421715
#> 12195 15 1950 46514
#> 12196 15 1955 49950
#> 12197 15 1960 58042
#> 12198 15 1965 67308
#> 12199 15 1970 79429
#> 12200 15 1975 91511
#> 12201 15 1980 103801
#> 12202 15 1985 123455
#> 12203 15 1990 159304
#> 12204 15 1995 182918
#> 12205 15 2000 201510
#> 12206 15 2005 226152
#> 12207 15 2010 254820
#> 12208 15 2015 266593
#> 12209 15 1950 882588
#> 12210 15 1955 944203
#> 12211 15 1960 991993
#> 12212 15 1965 1014783
#> 12213 15 1970 1292316
#> 12214 15 1975 1384977
#> 12215 15 1980 1501762
#> 12216 15 1985 1686286
#> 12217 15 1990 1919453
#> 12218 15 1995 2266813
#> 12219 15 2000 2495479
#> 12220 15 2005 2651591
#> 12221 15 2010 2908967
#> 12222 15 2015 3251308
#> 12223 15 1950 814530
#> 12224 15 1955 812225
#> 12225 15 1960 913956
#> 12226 15 1965 1179275
#> 12227 15 1970 1107165
#> 12228 15 1975 1170375
#> 12229 15 1980 1255263
#> 12230 15 1985 1230328
#> 12231 15 1990 1075950
#> 12232 15 1995 921607
#> 12233 15 2000 933699
#> 12234 15 2005 986571
#> 12235 15 2010 1017579
#> 12236 15 2015 1009737
#> 12237 15 1950 6124
#> 12238 15 1955 6132
#> 12239 15 1960 7374
#> 12240 15 1965 8607
#> 12241 15 1970 10172
#> 12242 15 1975 12606
#> 12243 15 1980 14463
#> 12244 15 1985 16307
#> 12245 15 1990 20149
#> 12246 15 1995 17961
#> 12247 15 2000 18436
#> 12248 15 2005 19480
#> 12249 15 2010 21432
#> 12250 15 2015 21075
#> 12251 15 1950 133001
#> 12252 15 1955 149017
#> 12253 15 1960 183053
#> 12254 15 1965 243053
#> 12255 15 1970 261856
#> 12256 15 1975 297820
#> 12257 15 1980 311467
#> 12258 15 1985 302859
#> 12259 15 1990 293617
#> 12260 15 1995 271450
#> 12261 15 2000 276424
#> 12262 15 2005 305499
#> 12263 15 2010 321143
#> 12264 15 2015 318932
#> 12265 15 1950 139420
#> 12266 15 1955 154630
#> 12267 15 1960 174327
#> 12268 15 1965 184209
#> 12269 15 1970 271777
#> 12270 15 1975 325902
#> 12271 15 1980 350098
#> 12272 15 1985 392101
#> 12273 15 1990 457424
#> 12274 15 1995 530088
#> 12275 15 2000 598035
#> 12276 15 2005 622669
#> 12277 15 2010 619287
#> 12278 15 2015 603417
#> 12279 15 1950 275223
#> 12280 15 1955 323649
#> 12281 15 1960 378653
#> 12282 15 1965 404018
#> 12283 15 1970 474442
#> 12284 15 1975 536276
#> 12285 15 1980 583148
#> 12286 15 1985 733372
#> 12287 15 1990 762349
#> 12288 15 1995 986133
#> 12289 15 2000 1118176
#> 12290 15 2005 1323632
#> 12291 15 2010 1619596
#> 12292 15 2015 2053832
#> 12293 15 1950 3808665
#> 12294 15 1955 4220027
#> 12295 15 1960 4671452
#> 12296 15 1965 5088189
#> 12297 15 1970 5527404
#> 12298 15 1975 6328257
#> 12299 15 1980 7337017
#> 12300 15 1985 8277570
#> 12301 15 1990 9873685
#> 12302 15 1995 11680208
#> 12303 15 2000 13315548
#> 12304 15 2005 14628890
#> 12305 15 2010 16213234
#> 12306 15 2015 18648933
#> 12307 15 1950 5104189
#> 12308 15 1955 5301560
#> 12309 15 1960 5578302
#> 12310 15 1965 6895778
#> 12311 15 1970 8577897
#> 12312 15 1975 10160667
#> 12313 15 1980 11748361
#> 12314 15 1985 13301527
#> 12315 15 1990 14759893
#> 12316 15 1995 17100208
#> 12317 15 2000 19436693
#> 12318 15 2005 20869177
#> 12319 15 2010 20430445
#> 12320 15 2015 19749327
#> 12321 15 1950 5186734
#> 12322 15 1955 5376466
#> 12323 15 1960 5944418
#> 12324 15 1965 6853629
#> 12325 15 1970 6266552
#> 12326 15 1975 6594858
#> 12327 15 1980 7356737
#> 12328 15 1985 7140936
#> 12329 15 1990 6382751
#> 12330 15 1995 5743023
#> 12331 15 2000 5936767
#> 12332 15 2005 6352531
#> 12333 15 2010 6407874
#> 12334 15 2015 5899464
#> 12335 15 1950 207325
#> 12336 15 1955 210369
#> 12337 15 1960 258643
#> 12338 15 1965 316427
#> 12339 15 1970 301940
#> 12340 15 1975 308755
#> 12341 15 1980 314047
#> 12342 15 1985 334639
#> 12343 15 1990 315544
#> 12344 15 1995 269442
#> 12345 15 2000 265744
#> 12346 15 2005 294353
#> 12347 15 2010 325248
#> 12348 15 2015 326644
#> 12349 15 1950 949652
#> 12350 15 1955 1050458
#> 12351 15 1960 1265890
#> 12352 15 1965 1613905
#> 12353 15 1970 1812464
#> 12354 15 1975 2035786
#> 12355 15 1980 2184661
#> 12356 15 1985 2243588
#> 12357 15 1990 2397897
#> 12358 15 1995 2343861
#> 12359 15 2000 2466789
#> 12360 15 2005 2623650
#> 12361 15 2010 2817778
#> 12362 15 2015 2927584
#> 12363 15 1950 46454
#> 12364 15 1955 51604
#> 12365 15 1960 58008
#> 12366 15 1965 63946
#> 12367 15 1970 72450
#> 12368 15 1975 88942
#> 12369 15 1980 108741
#> 12370 15 1985 130992
#> 12371 15 1990 150343
#> 12372 15 1995 202788
#> 12373 15 2000 247612
#> 12374 15 2005 287261
#> 12375 15 2010 269107
#> 12376 15 2015 235525
#> 12377 15 1950 3761041
#> 12378 15 1955 4181462
#> 12379 15 1960 4724673
#> 12380 15 1965 4903472
#> 12381 15 1970 5155985
#> 12382 15 1975 6486730
#> 12383 15 1980 7985925
#> 12384 15 1985 9461214
#> 12385 15 1990 10762426
#> 12386 15 1995 12507665
#> 12387 15 2000 14836174
#> 12388 15 2005 17566738
#> 12389 15 2010 18652062
#> 12390 15 2015 19354760
#> 12391 15 1950 86650
#> 12392 15 1955 99405
#> 12393 15 1960 114978
#> 12394 15 1965 133575
#> 12395 15 1970 158517
#> 12396 15 1975 188527
#> 12397 15 1980 218612
#> 12398 15 1985 244873
#> 12399 15 1990 268850
#> 12400 15 1995 282422
#> 12401 15 2000 293510
#> 12402 15 2005 308821
#> 12403 15 2010 321601
#> 12404 15 2015 343434
#> 12405 15 1950 170911
#> 12406 15 1955 184017
#> 12407 15 1960 197654
#> 12408 15 1965 221263
#> 12409 15 1970 270846
#> 12410 15 1975 306348
#> 12411 15 1980 348579
#> 12412 15 1985 400369
#> 12413 15 1990 465356
#> 12414 15 1995 535663
#> 12415 15 2000 597614
#> 12416 15 2005 641059
#> 12417 15 2010 714489
#> 12418 15 2015 823536
#> 12419 15 1950 148910
#> 12420 15 1955 171193
#> 12421 15 1960 191353
#> 12422 15 1965 227446
#> 12423 15 1970 277659
#> 12424 15 1975 311572
#> 12425 15 1980 351766
#> 12426 15 1985 398597
#> 12427 15 1990 420682
#> 12428 15 1995 490329
#> 12429 15 2000 579687
#> 12430 15 2005 638768
#> 12431 15 2010 665177
#> 12432 15 2015 684779
#> 12433 15 1950 789198
#> 12434 15 1955 879075
#> 12435 15 1960 973158
#> 12436 15 1965 1138868
#> 12437 15 1970 1377255
#> 12438 15 1975 1600589
#> 12439 15 1980 1902079
#> 12440 15 1985 2159945
#> 12441 15 1990 2346747
#> 12442 15 1995 2596477
#> 12443 15 2000 2665152
#> 12444 15 2005 2829293
#> 12445 15 2010 2852649
#> 12446 15 2015 2777037
#> 12447 15 1950 1878606
#> 12448 15 1955 2178965
#> 12449 15 1960 2574747
#> 12450 15 1965 3070106
#> 12451 15 1970 4154185
#> 12452 15 1975 4733860
#> 12453 15 1980 5349796
#> 12454 15 1985 5969151
#> 12455 15 1990 6610508
#> 12456 15 1995 7415389
#> 12457 15 2000 8230199
#> 12458 15 2005 9133548
#> 12459 15 2010 9786650
#> 12460 15 2015 10208007
#> 12461 15 1950 2411999
#> 12462 15 1955 2308995
#> 12463 15 1960 1952925
#> 12464 15 1965 2849796
#> 12465 15 1970 3438986
#> 12466 15 1975 3508202
#> 12467 15 1980 2770296
#> 12468 15 1985 2527982
#> 12469 15 1990 2839701
#> 12470 15 1995 3197520
#> 12471 15 2000 3354444
#> 12472 15 2005 2914530
#> 12473 15 2010 2511726
#> 12474 15 2015 2023785
#> 12475 15 1950 25807
#> 12476 15 1955 28966
#> 12477 15 1960 31351
#> 12478 15 1965 34027
#> 12479 15 1970 43703
#> 12480 15 1975 51472
#> 12481 15 1980 59016
#> 12482 15 1985 65496
#> 12483 15 1990 61296
#> 12484 15 1995 58358
#> 12485 15 2000 61636
#> 12486 15 2005 65663
#> 12487 15 2010 66519
#> 12488 15 2015 65379
#> 12489 15 1950 809170
#> 12490 15 1955 758305
#> 12491 15 1960 739049
#> 12492 15 1965 740125
#> 12493 15 1970 735192
#> 12494 15 1975 784626
#> 12495 15 1980 855236
#> 12496 15 1985 817098
#> 12497 15 1990 840112
#> 12498 15 1995 798901
#> 12499 15 2000 707353
#> 12500 15 2005 596665
#> 12501 15 2010 573120
#> 12502 15 2015 549144
#> 12503 15 1950 221399
#> 12504 15 1955 229967
#> 12505 15 1960 250655
#> 12506 15 1965 245022
#> 12507 15 1970 290088
#> 12508 15 1975 326239
#> 12509 15 1980 336178
#> 12510 15 1985 337976
#> 12511 15 1990 326074
#> 12512 15 1995 335881
#> 12513 15 2000 312612
#> 12514 15 2005 302730
#> 12515 15 2010 295571
#> 12516 15 2015 275406
#> 12517 15 1950 2490
#> 12518 15 1955 3529
#> 12519 15 1960 4630
#> 12520 15 1965 7426
#> 12521 15 1970 10336
#> 12522 15 1975 15852
#> 12523 15 1980 19140
#> 12524 15 1985 22112
#> 12525 15 1990 29729
#> 12526 15 1995 30039
#> 12527 15 2000 42080
#> 12528 15 2005 49309
#> 12529 15 2010 65189
#> 12530 15 2015 101767
#> 12531 15 1950 1796408
#> 12532 15 1955 2397767
#> 12533 15 1960 2368590
#> 12534 15 1965 2795626
#> 12535 15 1970 3287936
#> 12536 15 1975 4266048
#> 12537 15 1980 4389792
#> 12538 15 1985 4409349
#> 12539 15 1990 4452418
#> 12540 15 1995 3967740
#> 12541 15 2000 3839566
#> 12542 15 2005 3105374
#> 12543 15 2010 3498407
#> 12544 15 2015 3170910
#> 12545 15 1950 223423
#> 12546 15 1955 261161
#> 12547 15 1960 224833
#> 12548 15 1965 229546
#> 12549 15 1970 349422
#> 12550 15 1975 398530
#> 12551 15 1980 379349
#> 12552 15 1985 336359
#> 12553 15 1990 340374
#> 12554 15 1995 365500
#> 12555 15 2000 399795
#> 12556 15 2005 416606
#> 12557 15 2010 332457
#> 12558 15 2015 242530
#> 12559 15 1950 24387
#> 12560 15 1955 25103
#> 12561 15 1960 30747
#> 12562 15 1965 40128
#> 12563 15 1970 52300
#> 12564 15 1975 58038
#> 12565 15 1980 65654
#> 12566 15 1985 66694
#> 12567 15 1990 63884
#> 12568 15 1995 62034
#> 12569 15 2000 64112
#> 12570 15 2005 73031
#> 12571 15 2010 70055
#> 12572 15 2015 67557
#> 12573 15 1950 1607819
#> 12574 15 1955 1630344
#> 12575 15 1960 1287396
#> 12576 15 1965 1594908
#> 12577 15 1970 1897996
#> 12578 15 1975 1834299
#> 12579 15 1980 1446480
#> 12580 15 1985 1986944
#> 12581 15 1990 1973150
#> 12582 15 1995 1978778
#> 12583 15 2000 1725168
#> 12584 15 2005 1706256
#> 12585 15 2010 1196997
#> 12586 15 2015 1087648
#> 12587 15 1950 10156782
#> 12588 15 1955 12667064
#> 12589 15 1960 6855009
#> 12590 15 1965 10469319
#> 12591 15 1970 12174418
#> 12592 15 1975 12836283
#> 12593 15 1980 11525206
#> 12594 15 1985 9354068
#> 12595 15 1990 10139583
#> 12596 15 1995 10793431
#> 12597 15 2000 12112100
#> 12598 15 2005 12178593
#> 12599 15 2010 8808119
#> 12600 15 2015 6332667
#> 12601 15 1950 246657
#> 12602 15 1955 238429
#> 12603 15 1960 259656
#> 12604 15 1965 334218
#> 12605 15 1970 424015
#> 12606 15 1975 496392
#> 12607 15 1980 537595
#> 12608 15 1985 607978
#> 12609 15 1990 748312
#> 12610 15 1995 720000
#> 12611 15 2000 1005349
#> 12612 15 2005 1135372
#> 12613 15 2010 1035676
#> 12614 15 2015 1207396
#> 12615 15 1950 7845
#> 12616 15 1955 8208
#> 12617 15 1960 8828
#> 12618 15 1965 9552
#> 12619 15 1970 10057
#> 12620 15 1975 12072
#> 12621 15 1980 14664
#> 12622 15 1985 15000
#> 12623 15 1990 14890
#> 12624 15 1995 13981
#> 12625 15 2000 16220
#> 12626 15 2005 17392
#> 12627 15 2010 16926
#> 12628 15 2015 15960
#> 12629 15 1950 6130
#> 12630 15 1955 7602
#> 12631 15 1960 7473
#> 12632 15 1965 8917
#> 12633 15 1970 10278
#> 12634 15 1975 11716
#> 12635 15 1980 12959
#> 12636 15 1985 13021
#> 12637 15 1990 12146
#> 12638 15 1995 11992
#> 12639 15 2000 11399
#> 12640 15 2005 10667
#> 12641 15 2010 10533
#> 12642 15 2015 9775
#> 12643 15 1950 8264
#> 12644 15 1955 10111
#> 12645 15 1960 11361
#> 12646 15 1965 12408
#> 12647 15 1970 16774
#> 12648 15 1975 18296
#> 12649 15 1980 21085
#> 12650 15 1985 21776
#> 12651 15 1990 21010
#> 12652 15 1995 19123
#> 12653 15 2000 17857
#> 12654 15 2005 17876
#> 12655 15 2010 19427
#> 12656 15 2015 20601
#> 12657 15 1950 3400
#> 12658 15 1955 3325
#> 12659 15 1960 3639
#> 12660 15 1965 5444
#> 12661 15 1970 8100
#> 12662 15 1975 9048
#> 12663 15 1980 10107
#> 12664 15 1985 11069
#> 12665 15 1990 12184
#> 12666 15 1995 16335
#> 12667 15 2000 15027
#> 12668 15 2005 18401
#> 12669 15 2010 18363
#> 12670 15 2015 20873
#> 12671 15 1950 309306
#> 12672 15 1955 351062
#> 12673 15 1960 403562
#> 12674 15 1965 485720
#> 12675 15 1970 570650
#> 12676 15 1975 721379
#> 12677 15 1980 914925
#> 12678 15 1985 1202503
#> 12679 15 1990 1452266
#> 12680 15 1995 1767527
#> 12681 15 2000 1974942
#> 12682 15 2005 2359256
#> 12683 15 2010 2634873
#> 12684 15 2015 2338597
#> 12685 15 1950 250197
#> 12686 15 1955 277657
#> 12687 15 1960 306940
#> 12688 15 1965 344077
#> 12689 15 1970 433451
#> 12690 15 1975 496615
#> 12691 15 1980 560135
#> 12692 15 1985 663509
#> 12693 15 1990 811623
#> 12694 15 1995 969918
#> 12695 15 2000 1141383
#> 12696 15 2005 1277900
#> 12697 15 2010 1414345
#> 12698 15 2015 1570421
#> 12699 15 1950 692514
#> 12700 15 1955 619470
#> 12701 15 1960 520335
#> 12702 15 1965 719963
#> 12703 15 1970 797013
#> 12704 15 1975 680755
#> 12705 15 1980 664763
#> 12706 15 1985 682723
#> 12707 15 1990 730741
#> 12708 15 1995 784298
#> 12709 15 2000 673409
#> 12710 15 2005 667909
#> 12711 15 2010 593718
#> 12712 15 2015 539279
#> 12713 15 1950 3101
#> 12714 15 1955 3389
#> 12715 15 1960 3428
#> 12716 15 1965 3700
#> 12717 15 1970 5665
#> 12718 15 1975 6775
#> 12719 15 1980 7812
#> 12720 15 1985 7662
#> 12721 15 1990 7484
#> 12722 15 1995 7745
#> 12723 15 2000 8099
#> 12724 15 2005 7485
#> 12725 15 2010 7536
#> 12726 15 2015 5807
#> 12727 15 1950 201600
#> 12728 15 1955 214812
#> 12729 15 1960 232009
#> 12730 15 1965 246539
#> 12731 15 1970 256475
#> 12732 15 1975 279706
#> 12733 15 1980 319746
#> 12734 15 1985 372009
#> 12735 15 1990 448295
#> 12736 15 1995 461307
#> 12737 15 2000 503438
#> 12738 15 2005 609328
#> 12739 15 2010 688572
#> 12740 15 2015 788931
#> 12741 15 1950 97900
#> 12742 15 1955 126902
#> 12743 15 1960 145324
#> 12744 15 1965 190721
#> 12745 15 1970 245914
#> 12746 15 1975 292108
#> 12747 15 1980 286346
#> 12748 15 1985 249662
#> 12749 15 1990 251940
#> 12750 15 1995 224075
#> 12751 15 2000 253329
#> 12752 15 2005 303937
#> 12753 15 2010 354581
#> 12754 15 2015 352661
#> 12755 15 1950 306135
#> 12756 15 1955 296579
#> 12757 15 1960 325820
#> 12758 15 1965 376598
#> 12759 15 1970 459724
#> 12760 15 1975 447168
#> 12761 15 1980 408568
#> 12762 15 1985 375260
#> 12763 15 1990 433534
#> 12764 15 1995 478730
#> 12765 15 2000 450341
#> 12766 15 2005 413983
#> 12767 15 2010 361811
#> 12768 15 2015 289966
#> 12769 15 1950 135599
#> 12770 15 1955 126604
#> 12771 15 1960 122141
#> 12772 15 1965 141823
#> 12773 15 1970 148178
#> 12774 15 1975 133387
#> 12775 15 1980 140775
#> 12776 15 1985 145112
#> 12777 15 1990 144540
#> 12778 15 1995 151615
#> 12779 15 2000 139807
#> 12780 15 2005 124585
#> 12781 15 2010 102882
#> 12782 15 2015 94969
#> 12783 15 1950 10101
#> 12784 15 1955 10239
#> 12785 15 1960 13042
#> 12786 15 1965 13974
#> 12787 15 1970 16916
#> 12788 15 1975 19337
#> 12789 15 1980 23207
#> 12790 15 1985 27173
#> 12791 15 1990 36433
#> 12792 15 1995 42069
#> 12793 15 2000 45015
#> 12794 15 2005 49427
#> 12795 15 2010 54530
#> 12796 15 2015 63044
#> 12797 15 1950 217987
#> 12798 15 1955 248891
#> 12799 15 1960 262840
#> 12800 15 1965 306210
#> 12801 15 1970 349397
#> 12802 15 1975 393496
#> 12803 15 1980 649572
#> 12804 15 1985 711163
#> 12805 15 1990 773884
#> 12806 15 1995 761666
#> 12807 15 2000 860844
#> 12808 15 2005 1037432
#> 12809 15 2010 1270468
#> 12810 15 2015 1537194
#> 12811 15 1950 1336250
#> 12812 15 1955 1458074
#> 12813 15 1960 1649658
#> 12814 15 1965 1860303
#> 12815 15 1970 2389085
#> 12816 15 1975 2730550
#> 12817 15 1980 3097098
#> 12818 15 1985 3494130
#> 12819 15 1990 4006038
#> 12820 15 1995 4511122
#> 12821 15 2000 4956831
#> 12822 15 2005 5164926
#> 12823 15 2010 5109724
#> 12824 15 2015 5137445
#> 12825 15 1950 11165215
#> 12826 15 1955 12683555
#> 12827 15 1960 14016921
#> 12828 15 1965 16748739
#> 12829 15 1970 20130361
#> 12830 15 1975 23024494
#> 12831 15 1980 26296289
#> 12832 15 1985 28200554
#> 12833 15 1990 29523461
#> 12834 15 1995 32836898
#> 12835 15 2000 35129039
#> 12836 15 2005 35716722
#> 12837 15 2010 35635135
#> 12838 15 2015 35488581
#> 12839 15 1950 264081
#> 12840 15 1955 291122
#> 12841 15 1960 321852
#> 12842 15 1965 343766
#> 12843 15 1970 332567
#> 12844 15 1975 399628
#> 12845 15 1980 476849
#> 12846 15 1985 570499
#> 12847 15 1990 600321
#> 12848 15 1995 560878
#> 12849 15 2000 673854
#> 12850 15 2005 858267
#> 12851 15 2010 1093511
#> 12852 15 2015 1304625
#> 12853 15 1950 51940332
#> 12854 15 1955 55753455
#> 12855 15 1960 57466819
#> 12856 15 1965 63951795
#> 12857 15 1970 79085732
#> 12858 15 1975 89950097
#> 12859 15 1980 102455467
#> 12860 15 1985 113227798
#> 12861 15 1990 125654688
#> 12862 15 1995 140632627
#> 12863 15 2000 159400562
#> 12864 15 2005 172016344
#> 12865 15 2010 175323808
#> 12866 15 2015 178967344
#> 12867 15 1950 17245475
#> 12868 15 1955 18602049
#> 12869 15 1960 19488594
#> 12870 15 1965 21938004
#> 12871 15 1970 28428796
#> 12872 15 1975 34599897
#> 12873 15 1980 39449841
#> 12874 15 1985 44187111
#> 12875 15 1990 47921752
#> 12876 15 1995 50706061
#> 12877 15 2000 54278357
#> 12878 15 2005 55432480
#> 12879 15 2010 56068515
#> 12880 15 2015 55089021
#> 12881 15 1950 1527379
#> 12882 15 1955 1667556
#> 12883 15 1960 1882770
#> 12884 15 1965 2126160
#> 12885 15 1970 2706274
#> 12886 15 1975 3094693
#> 12887 15 1980 3515800
#> 12888 15 1985 3979838
#> 12889 15 1990 4587486
#> 12890 15 1995 5183848
#> 12891 15 2000 5721451
#> 12892 15 2005 5980682
#> 12893 15 2010 5971303
#> 12894 15 2015 6018796
#> 12895 15 1950 50232544
#> 12896 15 1955 53438429
#> 12897 15 1960 55774456
#> 12898 15 1965 61819997
#> 12899 15 1970 75865873
#> 12900 15 1975 85769403
#> 12901 15 1980 97792239
#> 12902 15 1985 108692638
#> 12903 15 1990 120818760
#> 12904 15 1995 135423236
#> 12905 15 2000 153576669
#> 12906 15 2005 165299331
#> 12907 15 2010 168578851
#> 12908 15 2015 173183589
#> 12909 15 1950 10224022
#> 12910 15 1955 9739316
#> 12911 15 1960 9149109
#> 12912 15 1965 10275969
#> 12913 15 1970 10261652
#> 12914 15 1975 10851099
#> 12915 15 1980 11662997
#> 12916 15 1985 11622926
#> 12917 15 1990 11456366
#> 12918 15 1995 10501929
#> 12919 15 2000 9131859
#> 12920 15 2005 8401825
#> 12921 15 2010 7958382
#> 12922 15 2015 7556438
#> 12923 15 1950 2731066
#> 12924 15 1955 2313876
#> 12925 15 1960 2466522
#> 12926 15 1965 2603543
#> 12927 15 1970 2679383
#> 12928 15 1975 3054576
#> 12929 15 1980 3300817
#> 12930 15 1985 3282720
#> 12931 15 1990 3349159
#> 12932 15 1995 3223860
#> 12933 15 2000 2650332
#> 12934 15 2005 2324206
#> 12935 15 2010 2202888
#> 12936 15 2015 2096050
#> 12937 15 1950 741046
#> 12938 15 1955 826847
#> 12939 15 1960 950064
#> 12940 15 1965 1167732
#> 12941 15 1970 1311192
#> 12942 15 1975 1541668
#> 12943 15 1980 1614436
#> 12944 15 1985 1695853
#> 12945 15 1990 1703494
#> 12946 15 1995 1836959
#> 12947 15 2000 1861827
#> 12948 15 2005 1690989
#> 12949 15 2010 1630441
#> 12950 15 2015 1584939
#> 12951 15 1950 92069
#> 12952 15 1955 105214
#> 12953 15 1960 114458
#> 12954 15 1965 126954
#> 12955 15 1970 110043
#> 12956 15 1975 130758
#> 12957 15 1980 167718
#> 12958 15 1985 198027
#> 12959 15 1990 228753
#> 12960 15 1995 281468
#> 12961 15 2000 340657
#> 12962 15 2005 400317
#> 12963 15 2010 490286
#> 12964 15 2015 530383
#> 12965 15 1950 18135425
#> 12966 15 1955 19870262
#> 12967 15 1960 22174940
#> 12968 15 1965 24818688
#> 12969 15 1970 28621485
#> 12970 15 1975 32880963
#> 12971 15 1980 37779676
#> 12972 15 1985 43825409
#> 12973 15 1990 51685156
#> 12974 15 1995 60543519
#> 12975 15 2000 70304841
#> 12976 15 2005 79387298
#> 12977 15 2010 89628370
#> 12978 15 2015 103122545
#> 12979 15 1950 579358
#> 12980 15 1955 659421
#> 12981 15 1960 756897
#> 12982 15 1965 889061
#> 12983 15 1970 1048869
#> 12984 15 1975 1240037
#> 12985 15 1980 1503883
#> 12986 15 1985 1836325
#> 12987 15 1990 2206444
#> 12988 15 1995 2626115
#> 12989 15 2000 2917024
#> 12990 15 2005 3213607
#> 12991 15 2010 3659337
#> 12992 15 2015 4226137
#> 12993 15 1950 20998
#> 12994 15 1955 21982
#> 12995 15 1960 23976
#> 12996 15 1965 30484
#> 12997 15 1970 40077
#> 12998 15 1975 41968
#> 12999 15 1980 47991
#> 13000 15 1985 42270
#> 13001 15 1990 42429
#> 13002 15 1995 38273
#> 13003 15 2000 43636
#> 13004 15 2005 46019
#> 13005 15 2010 49200
#> 13006 15 2015 49565
#> 13007 15 1950 27841
#> 13008 15 1955 30809
#> 13009 15 1960 35055
#> 13010 15 1965 41632
#> 13011 15 1970 47842
#> 13012 15 1975 54777
#> 13013 15 1980 64506
#> 13014 15 1985 75920
#> 13015 15 1990 93677
#> 13016 15 1995 106269
#> 13017 15 2000 130888
#> 13018 15 2005 144039
#> 13019 15 2010 152495
#> 13020 15 2015 149854
#> 13021 15 1950 419053
#> 13022 15 1955 453118
#> 13023 15 1960 576185
#> 13024 15 1965 627710
#> 13025 15 1970 554669
#> 13026 15 1975 535713
#> 13027 15 1980 569324
#> 13028 15 1985 585722
#> 13029 15 1990 565202
#> 13030 15 1995 509727
#> 13031 15 2000 506852
#> 13032 15 2005 586816
#> 13033 15 2010 645001
#> 13034 15 2015 505619
#> 13035 15 1950 333501
#> 13036 15 1955 324036
#> 13037 15 1960 396009
#> 13038 15 1965 491322
#> 13039 15 1970 454859
#> 13040 15 1975 465999
#> 13041 15 1980 499004
#> 13042 15 1985 495809
#> 13043 15 1990 433506
#> 13044 15 1995 396080
#> 13045 15 2000 415438
#> 13046 15 2005 434117
#> 13047 15 2010 457827
#> 13048 15 2015 435212
#> 13049 15 1950 363120
#> 13050 15 1955 352812
#> 13051 15 1960 396928
#> 13052 15 1965 492336
#> 13053 15 1970 711641
#> 13054 15 1975 830772
#> 13055 15 1980 972028
#> 13056 15 1985 1158144
#> 13057 15 1990 1423441
#> 13058 15 1995 1718964
#> 13059 15 2000 1966879
#> 13060 15 2005 2127075
#> 13061 15 2010 2212849
#> 13062 15 2015 2159082
#> 13063 15 1950 132380
#> 13064 15 1955 138791
#> 13065 15 1960 137640
#> 13066 15 1965 161597
#> 13067 15 1970 197238
#> 13068 15 1975 180160
#> 13069 15 1980 179711
#> 13070 15 1985 187303
#> 13071 15 1990 167741
#> 13072 15 1995 163793
#> 13073 15 2000 171546
#> 13074 15 2005 165644
#> 13075 15 2010 156508
#> 13076 15 2015 131259
#> 13077 15 1950 172220
#> 13078 15 1955 200433
#> 13079 15 1960 149089
#> 13080 15 1965 165541
#> 13081 15 1970 282988
#> 13082 15 1975 360808
#> 13083 15 1980 439943
#> 13084 15 1985 477139
#> 13085 15 1990 530200
#> 13086 15 1995 585366
#> 13087 15 2000 702533
#> 13088 15 2005 845003
#> 13089 15 2010 867245
#> 13090 15 2015 867409
#> 13091 15 1950 2249523
#> 13092 15 1955 2550256
#> 13093 15 1960 2614693
#> 13094 15 1965 3082217
#> 13095 15 1970 3682053
#> 13096 15 1975 4540730
#> 13097 15 1980 5314482
#> 13098 15 1985 6067692
#> 13099 15 1990 6158769
#> 13100 15 1995 5959190
#> 13101 15 2000 5457754
#> 13102 15 2005 5112739
#> 13103 15 2010 4875551
#> 13104 15 2015 4819227
#> 13105 15 1950 44200
#> 13106 15 1955 47922
#> 13107 15 1960 52274
#> 13108 15 1965 60159
#> 13109 15 1970 62806
#> 13110 15 1975 69826
#> 13111 15 1980 69375
#> 13112 15 1985 74504
#> 13113 15 1990 87161
#> 13114 15 1995 66689
#> 13115 15 2000 90157
#> 13116 15 2005 108445
#> 13117 15 2010 116249
#> 13118 15 2015 154862
#> 13119 15 1950 136909
#> 13120 15 1955 146882
#> 13121 15 1960 159430
#> 13122 15 1965 171808
#> 13123 15 1970 211104
#> 13124 15 1975 240375
#> 13125 15 1980 275424
#> 13126 15 1985 336397
#> 13127 15 1990 405119
#> 13128 15 1995 477917
#> 13129 15 2000 562956
#> 13130 15 2005 627581
#> 13131 15 2010 674830
#> 13132 15 2015 758730
#> 13133 15 1950 5089
#> 13134 15 1955 5884
#> 13135 15 1960 6115
#> 13136 15 1965 7400
#> 13137 15 1970 8468
#> 13138 15 1975 10079
#> 13139 15 1980 11571
#> 13140 15 1985 12778
#> 13141 15 1990 10710
#> 13142 15 1995 10337
#> 13143 15 2000 11540
#> 13144 15 2005 9931
#> 13145 15 2010 11079
#> 13146 15 2015 11487
#> 13147 15 1950 55614
#> 13148 15 1955 65285
#> 13149 15 1960 82978
#> 13150 15 1965 92138
#> 13151 15 1970 106235
#> 13152 15 1975 122262
#> 13153 15 1980 135755
#> 13154 15 1985 114287
#> 13155 15 1990 115532
#> 13156 15 1995 122116
#> 13157 15 2000 143468
#> 13158 15 2005 126429
#> 13159 15 2010 99931
#> 13160 15 2015 86411
#> 13161 15 1950 339966
#> 13162 15 1955 371755
#> 13163 15 1960 389431
#> 13164 15 1965 364908
#> 13165 15 1970 557468
#> 13166 15 1975 637095
#> 13167 15 1980 730516
#> 13168 15 1985 803423
#> 13169 15 1990 846703
#> 13170 15 1995 961092
#> 13171 15 2000 1041269
#> 13172 15 2005 1064464
#> 13173 15 2010 944080
#> 13174 15 2015 827205
#> 13175 15 1950 2410130
#> 13176 15 1955 2355206
#> 13177 15 1960 2520484
#> 13178 15 1965 2856121
#> 13179 15 1970 3661817
#> 13180 15 1975 4060416
#> 13181 15 1980 4525973
#> 13182 15 1985 5004122
#> 13183 15 1990 5610212
#> 13184 15 1995 6093165
#> 13185 15 2000 6373914
#> 13186 15 2005 6320174
#> 13187 15 2010 6267267
#> 13188 15 2015 6670219
#> 13189 15 1950 122199
#> 13190 15 1955 145478
#> 13191 15 1960 112077
#> 13192 15 1965 140648
#> 13193 15 1970 216292
#> 13194 15 1975 282714
#> 13195 15 1980 326160
#> 13196 15 1985 347215
#> 13197 15 1990 373939
#> 13198 15 1995 435314
#> 13199 15 2000 478939
#> 13200 15 2005 551687
#> 13201 15 2010 562044
#> 13202 15 2015 466218
#> 13203 15 1950 560267
#> 13204 15 1955 537750
#> 13205 15 1960 675208
#> 13206 15 1965 802232
#> 13207 15 1970 984202
#> 13208 15 1975 1121715
#> 13209 15 1980 1308471
#> 13210 15 1985 1548960
#> 13211 15 1990 1844233
#> 13212 15 1995 2202136
#> 13213 15 2000 2619277
#> 13214 15 2005 3133004
#> 13215 15 2010 3777133
#> 13216 15 2015 4487081
#> 13217 15 1950 3055586
#> 13218 15 1955 4318288
#> 13219 15 1960 2905480
#> 13220 15 1965 3369234
#> 13221 15 1970 4216515
#> 13222 15 1975 4060345
#> 13223 15 1980 3843302
#> 13224 15 1985 3372300
#> 13225 15 1990 3624732
#> 13226 15 1995 3686681
#> 13227 15 2000 3788291
#> 13228 15 2005 3436000
#> 13229 15 2010 2748622
#> 13230 15 2015 2112970
#> 13231 15 1950 6934
#> 13232 15 1955 7786
#> 13233 15 1960 8945
#> 13234 15 1965 16654
#> 13235 15 1970 20693
#> 13236 15 1975 40501
#> 13237 15 1980 59175
#> 13238 15 1985 70544
#> 13239 15 1990 138666
#> 13240 15 1995 158731
#> 13241 15 2000 208941
#> 13242 15 2005 272544
#> 13243 15 2010 328979
#> 13244 15 2015 328544
#> 13245 15 1950 3191861
#> 13246 15 1955 3305922
#> 13247 15 1960 3633030
#> 13248 15 1965 4233276
#> 13249 15 1970 3788210
#> 13250 15 1975 4072523
#> 13251 15 1980 4741073
#> 13252 15 1985 4574480
#> 13253 15 1990 3872888
#> 13254 15 1995 3403462
#> 13255 15 2000 3623990
#> 13256 15 2005 3960166
#> 13257 15 2010 3994817
#> 13258 15 2015 3779712
#> 13259 15 1950 796935
#> 13260 15 1955 910527
#> 13261 15 1960 1048236
#> 13262 15 1965 1229187
#> 13263 15 1970 1383481
#> 13264 15 1975 1652519
#> 13265 15 1980 1944034
#> 13266 15 1985 2297492
#> 13267 15 1990 2722840
#> 13268 15 1995 3255384
#> 13269 15 2000 3741389
#> 13270 15 2005 4225087
#> 13271 15 2010 4890766
#> 13272 15 2015 5652024
#> 13273 15 1950 2238
#> 13274 15 1955 2413
#> 13275 15 1960 3129
#> 13276 15 1965 4531
#> 13277 15 1970 5113
#> 13278 15 1975 7059
#> 13279 15 1980 11131
#> 13280 15 1985 10560
#> 13281 15 1990 9954
#> 13282 15 1995 8159
#> 13283 15 2000 8727
#> 13284 15 2005 7726
#> 13285 15 2010 7566
#> 13286 15 2015 6935
#> 13287 15 1950 11217036
#> 13288 15 1955 11402905
#> 13289 15 1960 13742667
#> 13290 15 1965 17322052
#> 13291 15 1970 19465171
#> 13292 15 1975 21174552
#> 13293 15 1980 21234969
#> 13294 15 1985 19168876
#> 13295 15 1990 17985171
#> 13296 15 1995 18306926
#> 13297 15 2000 19947752
#> 13298 15 2005 21556344
#> 13299 15 2010 22150097
#> 13300 15 2015 21296966
#> 13301 15 1950 92644078
#> 13302 15 1955 99215390
#> 13303 15 1960 95311203
#> 13304 15 1965 118406575
#> 13305 15 1970 154947779
#> 13306 15 1975 158310966
#> 13307 15 1980 185582617
#> 13308 15 1985 211170141
#> 13309 15 1990 210899761
#> 13310 15 1995 193704267
#> 13311 15 2000 205737359
#> 13312 15 2005 235211323
#> 13313 15 2010 199670712
#> 13314 15 2015 174030358
#> 13315 15 1950 200109
#> 13316 15 1955 200253
#> 13317 15 1960 204472
#> 13318 15 1965 218895
#> 13319 15 1970 226514
#> 13320 15 1975 236791
#> 13321 15 1980 246229
#> 13322 15 1985 234516
#> 13323 15 1990 260128
#> 13324 15 1995 275114
#> 13325 15 2000 254683
#> 13326 15 2005 257131
#> 13327 15 2010 266570
#> 13328 15 2015 257999
#> 13329 15 1950 667410
#> 13330 15 1955 711189
#> 13331 15 1960 573166
#> 13332 15 1965 702956
#> 13333 15 1970 1147846
#> 13334 15 1975 1590883
#> 13335 15 1980 1905791
#> 13336 15 1985 1881215
#> 13337 15 1990 2076486
#> 13338 15 1995 2313206
#> 13339 15 2000 2695874
#> 13340 15 2005 3118576
#> 13341 15 2010 3218955
#> 13342 15 2015 2807355
#> 13343 15 1950 5000
#> 13344 15 1955 5828
#> 13345 15 1960 6813
#> 13346 15 1965 7893
#> 13347 15 1970 8793
#> 13348 15 1975 10758
#> 13349 15 1980 12834
#> 13350 15 1985 13479
#> 13351 15 1990 14698
#> 13352 15 1995 17493
#> 13353 15 2000 20470
#> 13354 15 2005 22473
#> 13355 15 2010 22300
#> 13356 15 2015 25872
#> 13357 15 1950 560834
#> 13358 15 1955 690657
#> 13359 15 1960 824780
#> 13360 15 1965 992103
#> 13361 15 1970 1193259
#> 13362 15 1975 1479934
#> 13363 15 1980 1844170
#> 13364 15 1985 1972460
#> 13365 15 1990 2012494
#> 13366 15 1995 2259015
#> 13367 15 2000 2484190
#> 13368 15 2005 2734625
#> 13369 15 2010 2772194
#> 13370 15 2015 2786826
#> 13371 15 1950 2526540
#> 13372 15 1955 2340159
#> 13373 15 1960 2355859
#> 13374 15 1965 2823245
#> 13375 15 1970 4270719
#> 13376 15 1975 5436929
#> 13377 15 1980 6112891
#> 13378 15 1985 6657301
#> 13379 15 1990 7277133
#> 13380 15 1995 7701710
#> 13381 15 2000 8401708
#> 13382 15 2005 8951034
#> 13383 15 2010 8891353
#> 13384 15 2015 6981735
#> 13385 15 1950 239320584
#> 13386 15 1955 255139128
#> 13387 15 1960 258099938
#> 13388 15 1965 304687677
#> 13389 15 1970 369790413
#> 13390 15 1975 399157780
#> 13391 15 1980 450927936
#> 13392 15 1985 495847425
#> 13393 15 1990 517659966
#> 13394 15 1995 524909241
#> 13395 15 2000 570782255
#> 13396 15 2005 624216549
#> 13397 15 2010 605026345
#> 13398 15 2015 593638756
#> 13399 15 1950 7114685
#> 13400 15 1955 7854331
#> 13401 15 1960 8731719
#> 13402 15 1965 9481587
#> 13403 15 1970 10533036
#> 13404 15 1975 12028686
#> 13405 15 1980 13779821
#> 13406 15 1985 15907333
#> 13407 15 1990 18727613
#> 13408 15 1995 22251700
#> 13409 15 2000 25519071
#> 13410 15 2005 28448048
#> 13411 15 2010 31998015
#> 13412 15 2015 36843277
#> 13413 15 1950 5415435
#> 13414 15 1955 5720145
#> 13415 15 1960 5859001
#> 13416 15 1965 6851407
#> 13417 15 1970 8904377
#> 13418 15 1975 10138419
#> 13419 15 1980 11714391
#> 13420 15 1985 13277585
#> 13421 15 1990 15071975
#> 13422 15 1995 17036995
#> 13423 15 2000 18973000
#> 13424 15 2005 20734736
#> 13425 15 2010 22026622
#> 13426 15 2015 22800153
#> 13427 15 1950 10664809
#> 13428 15 1955 11410971
#> 13429 15 1960 10337468
#> 13430 15 1965 11877523
#> 13431 15 1970 12250749
#> 13432 15 1975 13142188
#> 13433 15 1980 14153001
#> 13434 15 1985 13577961
#> 13435 15 1990 11412460
#> 13436 15 1995 10432822
#> 13437 15 2000 10952149
#> 13438 15 2005 11153836
#> 13439 15 2010 10593099
#> 13440 15 2015 10473056
#> 13441 15 1950 1400
#> 13442 15 1955 2423
#> 13443 15 1960 3587
#> 13444 15 1965 5104
#> 13445 15 1970 7235
#> 13446 15 1975 8464
#> 13447 15 1980 15836
#> 13448 15 1985 16907
#> 13449 15 1990 19894
#> 13450 15 1995 25912
#> 13451 15 2000 32773
#> 13452 15 2005 43575
#> 13453 15 2010 46638
#> 13454 15 2015 45615
#> 13455 15 1950 439009
#> 13456 15 1955 488081
#> 13457 15 1960 548774
#> 13458 15 1965 632395
#> 13459 15 1970 621194
#> 13460 15 1975 676277
#> 13461 15 1980 821935
#> 13462 15 1985 1033118
#> 13463 15 1990 1229018
#> 13464 15 1995 1609335
#> 13465 15 2000 2024827
#> 13466 15 2005 2503313
#> 13467 15 2010 2940248
#> 13468 15 2015 3020190
#> 13469 15 1950 238582
#> 13470 15 1955 272123
#> 13471 15 1960 311199
#> 13472 15 1965 358144
#> 13473 15 1970 414889
#> 13474 15 1975 505854
#> 13475 15 1980 618033
#> 13476 15 1985 734951
#> 13477 15 1990 885579
#> 13478 15 1995 1037651
#> 13479 15 2000 1185475
#> 13480 15 2005 1335300
#> 13481 15 2010 1527875
#> 13482 15 2015 1814047
#> 13483 15 1950 277729
#> 13484 15 1955 314774
#> 13485 15 1960 371369
#> 13486 15 1965 390267
#> 13487 15 1970 549468
#> 13488 15 1975 654970
#> 13489 15 1980 781798
#> 13490 15 1985 939182
#> 13491 15 1990 1133491
#> 13492 15 1995 1353633
#> 13493 15 2000 1560354
#> 13494 15 2005 1621292
#> 13495 15 2010 1652150
#> 13496 15 2015 1692393
#> 13497 20 1950 20348577
#> 13498 20 1955 22259359
#> 13499 20 1960 24131423
#> 13500 20 1965 26590659
#> 13501 20 1970 30464158
#> 13502 20 1975 35635619
#> 13503 20 1980 41413352
#> 13504 20 1985 47901096
#> 13505 20 1990 55210368
#> 13506 20 1995 64330569
#> 13507 20 2000 75338719
#> 13508 20 2005 87190792
#> 13509 20 2010 97532853
#> 13510 20 2015 107638698
#> 13511 20 1950 123614673
#> 13512 20 1955 134852813
#> 13513 20 1960 142805996
#> 13514 20 1965 147317982
#> 13515 20 1970 173300227
#> 13516 20 1975 220734904
#> 13517 20 1980 236386147
#> 13518 20 1985 276730627
#> 13519 20 1990 315717839
#> 13520 20 1995 326258821
#> 13521 20 2000 319850847
#> 13522 20 2005 348344488
#> 13523 20 2010 388142732
#> 13524 20 2015 366182542
#> 13525 20 1950 692501
#> 13526 20 1955 735735
#> 13527 20 1960 798511
#> 13528 20 1965 878153
#> 13529 20 1970 980720
#> 13530 20 1975 1056555
#> 13531 20 1980 1136902
#> 13532 20 1985 1006664
#> 13533 20 1990 1042855
#> 13534 20 1995 1472397
#> 13535 20 2000 1718188
#> 13536 20 2005 2291081
#> 13537 20 2010 2450674
#> 13538 20 2015 3117448
#> 13539 20 1950 107244
#> 13540 20 1955 119888
#> 13541 20 1960 144075
#> 13542 20 1965 154178
#> 13543 20 1970 168741
#> 13544 20 1975 210444
#> 13545 20 1980 261551
#> 13546 20 1985 299862
#> 13547 20 1990 304867
#> 13548 20 1995 259489
#> 13549 20 2000 238573
#> 13550 20 2005 248652
#> 13551 20 2010 252001
#> 13552 20 2015 225175
#> 13553 20 1950 782210
#> 13554 20 1955 870318
#> 13555 20 1960 929561
#> 13556 20 1965 944432
#> 13557 20 1970 1088350
#> 13558 20 1975 1527555
#> 13559 20 1980 1766340
#> 13560 20 1985 2108790
#> 13561 20 1990 2441036
#> 13562 20 1995 2841753
#> 13563 20 2000 3315731
#> 13564 20 2005 3751374
#> 13565 20 2010 3846685
#> 13566 20 2015 3596106
#> 13567 20 1950 417935
#> 13568 20 1955 443555
#> 13569 20 1960 464256
#> 13570 20 1965 477176
#> 13571 20 1970 500316
#> 13572 20 1975 704194
#> 13573 20 1980 777248
#> 13574 20 1985 908668
#> 13575 20 1990 1025690
#> 13576 20 1995 1241203
#> 13577 20 2000 1482811
#> 13578 20 2005 1735493
#> 13579 20 2010 2065828
#> 13580 20 2015 2424071
#> 13581 20 1950 4714
#> 13582 20 1955 4348
#> 13583 20 1960 4498
#> 13584 20 1965 5641
#> 13585 20 1970 6260
#> 13586 20 1975 7547
#> 13587 20 1980 7836
#> 13588 20 1985 7303
#> 13589 20 1990 7389
#> 13590 20 1995 6181
#> 13591 20 2000 5641
#> 13592 20 2005 7276
#> 13593 20 2010 7609
#> 13594 20 2015 8264
#> 13595 20 1950 1578762
#> 13596 20 1955 1603596
#> 13597 20 1960 1624415
#> 13598 20 1965 1753426
#> 13599 20 1970 1967949
#> 13600 20 1975 2186085
#> 13601 20 1980 2228447
#> 13602 20 1985 2332836
#> 13603 20 1990 2483937
#> 13604 20 1995 2798826
#> 13605 20 2000 3299410
#> 13606 20 2005 3231677
#> 13607 20 2010 3348878
#> 13608 20 2015 3456866
#> 13609 20 1950 158504
#> 13610 20 1955 153790
#> 13611 20 1960 200511
#> 13612 20 1965 121722
#> 13613 20 1970 171146
#> 13614 20 1975 269075
#> 13615 20 1980 360839
#> 13616 20 1985 346322
#> 13617 20 1990 282864
#> 13618 20 1995 216991
#> 13619 20 2000 236036
#> 13620 20 2005 267207
#> 13621 20 2010 277549
#> 13622 20 2015 237868
#> 13623 20 1950 3133
#> 13624 20 1955 3705
#> 13625 20 1960 4277
#> 13626 20 1965 4849
#> 13627 20 1970 5405
#> 13628 20 1975 5843
#> 13629 20 1980 6100
#> 13630 20 1985 6710
#> 13631 20 1990 4470
#> 13632 20 1995 5338
#> 13633 20 2000 5044
#> 13634 20 2005 6330
#> 13635 20 2010 5162
#> 13636 20 2015 7327
#> 13637 20 1950 638525
#> 13638 20 1955 595092
#> 13639 20 1960 670416
#> 13640 20 1965 817592
#> 13641 20 1970 1135724
#> 13642 20 1975 1165030
#> 13643 20 1980 1270257
#> 13644 20 1985 1347277
#> 13645 20 1990 1361550
#> 13646 20 1995 1422429
#> 13647 20 2000 1263211
#> 13648 20 2005 1415491
#> 13649 20 2010 1626539
#> 13650 20 2015 1663584
#> 13651 20 1950 778524
#> 13652 20 1955 733081
#> 13653 20 1960 822422
#> 13654 20 1965 1004617
#> 13655 20 1970 1365922
#> 13656 20 1975 1421328
#> 13657 20 1980 1538014
#> 13658 20 1985 1636588
#> 13659 20 1990 1636131
#> 13660 20 1995 1707329
#> 13661 20 2000 1516531
#> 13662 20 2005 1703202
#> 13663 20 2010 1942779
#> 13664 20 2015 2002946
#> 13665 20 1950 493322
#> 13666 20 1955 441538
#> 13667 20 1960 483644
#> 13668 20 1965 551237
#> 13669 20 1970 509998
#> 13670 20 1975 495889
#> 13671 20 1980 579376
#> 13672 20 1985 644412
#> 13673 20 1990 637222
#> 13674 20 1995 552605
#> 13675 20 2000 468177
#> 13676 20 2005 522592
#> 13677 20 2010 519512
#> 13678 20 2015 551619
#> 13679 20 1950 324249
#> 13680 20 1955 358005
#> 13681 20 1960 396103
#> 13682 20 1965 246781
#> 13683 20 1970 311393
#> 13684 20 1975 480113
#> 13685 20 1980 668276
#> 13686 20 1985 772284
#> 13687 20 1990 655100
#> 13688 20 1995 653945
#> 13689 20 2000 655463
#> 13690 20 2005 813880
#> 13691 20 2010 946630
#> 13692 20 2015 890829
#> 13693 20 1950 6842
#> 13694 20 1955 7011
#> 13695 20 1960 8792
#> 13696 20 1965 10651
#> 13697 20 1970 13182
#> 13698 20 1975 16415
#> 13699 20 1980 21422
#> 13700 20 1985 26400
#> 13701 20 1990 25318
#> 13702 20 1995 26797
#> 13703 20 2000 23436
#> 13704 20 2005 27280
#> 13705 20 2010 31124
#> 13706 20 2015 34309
#> 13707 20 1950 10711
#> 13708 20 1955 11475
#> 13709 20 1960 13340
#> 13710 20 1965 18034
#> 13711 20 1970 15741
#> 13712 20 1975 29369
#> 13713 20 1980 43974
#> 13714 20 1985 37234
#> 13715 20 1990 44023
#> 13716 20 1995 51609
#> 13717 20 2000 58326
#> 13718 20 2005 91919
#> 13719 20 2010 114384
#> 13720 20 2015 106263
#> 13721 20 1950 3300354
#> 13722 20 1955 3747098
#> 13723 20 1960 4230889
#> 13724 20 1965 4715466
#> 13725 20 1970 5246819
#> 13726 20 1975 4784344
#> 13727 20 1980 6524719
#> 13728 20 1985 8836270
#> 13729 20 1990 10385711
#> 13730 20 1995 11158946
#> 13731 20 2000 12944811
#> 13732 20 2005 14314896
#> 13733 20 2010 14809614
#> 13734 20 2015 15203580
#> 13735 20 1950 17000
#> 13736 20 1955 17501
#> 13737 20 1960 15804
#> 13738 20 1965 14655
#> 13739 20 1970 19739
#> 13740 20 1975 23501
#> 13741 20 1980 26175
#> 13742 20 1985 27213
#> 13743 20 1990 24918
#> 13744 20 1995 23339
#> 13745 20 2000 19433
#> 13746 20 2005 19750
#> 13747 20 2010 18381
#> 13748 20 2015 18223
#> 13749 20 1950 786577
#> 13750 20 1955 742206
#> 13751 20 1960 753292
#> 13752 20 1965 508078
#> 13753 20 1970 596300
#> 13754 20 1975 735870
#> 13755 20 1980 854331
#> 13756 20 1985 826988
#> 13757 20 1990 680390
#> 13758 20 1995 706269
#> 13759 20 2000 717154
#> 13760 20 2005 763045
#> 13761 20 2010 774951
#> 13762 20 2015 612643
#> 13763 20 1950 654785
#> 13764 20 1955 628671
#> 13765 20 1960 581951
#> 13766 20 1965 557124
#> 13767 20 1970 714809
#> 13768 20 1975 729002
#> 13769 20 1980 784723
#> 13770 20 1985 804765
#> 13771 20 1990 737173
#> 13772 20 1995 677727
#> 13773 20 2000 620300
#> 13774 20 2005 649588
#> 13775 20 2010 667587
#> 13776 20 2015 694657
#> 13777 20 1950 6364
#> 13778 20 1955 6364
#> 13779 20 1960 6946
#> 13780 20 1965 7389
#> 13781 20 1970 9538
#> 13782 20 1975 11611
#> 13783 20 1980 12283
#> 13784 20 1985 17312
#> 13785 20 1990 18110
#> 13786 20 1995 17903
#> 13787 20 2000 23115
#> 13788 20 2005 27468
#> 13789 20 2010 30604
#> 13790 20 2015 35705
#> 13791 20 1950 169508
#> 13792 20 1955 179613
#> 13793 20 1960 198841
#> 13794 20 1965 228545
#> 13795 20 1970 235090
#> 13796 20 1975 265160
#> 13797 20 1980 305663
#> 13798 20 1985 360938
#> 13799 20 1990 425893
#> 13800 20 1995 512795
#> 13801 20 2000 601819
#> 13802 20 2005 711569
#> 13803 20 2010 826232
#> 13804 20 2015 964865
#> 13805 20 1950 15625
#> 13806 20 1955 18108
#> 13807 20 1960 20528
#> 13808 20 1965 23217
#> 13809 20 1970 27329
#> 13810 20 1975 28161
#> 13811 20 1980 33510
#> 13812 20 1985 38659
#> 13813 20 1990 46609
#> 13814 20 1995 44621
#> 13815 20 2000 53955
#> 13816 20 2005 72070
#> 13817 20 2010 80982
#> 13818 20 2015 80610
#> 13819 20 1950 265915
#> 13820 20 1955 276747
#> 13821 20 1960 297592
#> 13822 20 1965 353330
#> 13823 20 1970 381719
#> 13824 20 1975 462744
#> 13825 20 1980 502596
#> 13826 20 1985 548284
#> 13827 20 1990 605067
#> 13828 20 1995 683463
#> 13829 20 2000 781612
#> 13830 20 2005 858791
#> 13831 20 2010 916673
#> 13832 20 2015 986219
#> 13833 20 1950 277300
#> 13834 20 1955 312205
#> 13835 20 1960 329086
#> 13836 20 1965 261712
#> 13837 20 1970 342355
#> 13838 20 1975 397031
#> 13839 20 1980 409878
#> 13840 20 1985 443193
#> 13841 20 1990 378856
#> 13842 20 1995 298336
#> 13843 20 2000 275576
#> 13844 20 2005 281478
#> 13845 20 2010 279017
#> 13846 20 2015 237025
#> 13847 20 1950 36255
#> 13848 20 1955 43087
#> 13849 20 1960 45921
#> 13850 20 1965 48013
#> 13851 20 1970 53245
#> 13852 20 1975 77976
#> 13853 20 1980 93999
#> 13854 20 1985 106457
#> 13855 20 1990 124764
#> 13856 20 1995 150708
#> 13857 20 2000 183591
#> 13858 20 2005 211525
#> 13859 20 2010 212781
#> 13860 20 2015 214666
#> 13861 20 1950 5015853
#> 13862 20 1955 5352076
#> 13863 20 1960 6298514
#> 13864 20 1965 6791203
#> 13865 20 1970 8316140
#> 13866 20 1975 10084559
#> 13867 20 1980 11632168
#> 13868 20 1985 13410425
#> 13869 20 1990 14148374
#> 13870 20 1995 14852397
#> 13871 20 2000 16548408
#> 13872 20 2005 17987828
#> 13873 20 2010 17633451
#> 13874 20 2015 17211404
#> 13875 20 1950 4100
#> 13876 20 1955 5200
#> 13877 20 1960 6000
#> 13878 20 1965 6693
#> 13879 20 1970 8502
#> 13880 20 1975 14720
#> 13881 20 1980 22599
#> 13882 20 1985 20781
#> 13883 20 1990 25755
#> 13884 20 1995 29008
#> 13885 20 2000 32525
#> 13886 20 2005 35927
#> 13887 20 2010 38700
#> 13888 20 2015 35310
#> 13889 20 1950 690002
#> 13890 20 1955 665864
#> 13891 20 1960 579618
#> 13892 20 1965 584127
#> 13893 20 1970 688983
#> 13894 20 1975 669755
#> 13895 20 1980 634914
#> 13896 20 1985 611029
#> 13897 20 1990 588849
#> 13898 20 1995 596462
#> 13899 20 2000 595074
#> 13900 20 2005 520342
#> 13901 20 2010 494312
#> 13902 20 2015 396012
#> 13903 20 1950 392323
#> 13904 20 1955 399389
#> 13905 20 1960 428336
#> 13906 20 1965 460223
#> 13907 20 1970 487418
#> 13908 20 1975 528780
#> 13909 20 1980 590618
#> 13910 20 1985 667680
#> 13911 20 1990 773922
#> 13912 20 1995 890478
#> 13913 20 2000 1065311
#> 13914 20 2005 1248355
#> 13915 20 2010 1421077
#> 13916 20 2015 1641749
#> 13917 20 1950 205203
#> 13918 20 1955 218639
#> 13919 20 1960 232843
#> 13920 20 1965 248529
#> 13921 20 1970 271403
#> 13922 20 1975 335619
#> 13923 20 1980 400936
#> 13924 20 1985 427079
#> 13925 20 1990 446234
#> 13926 20 1995 434658
#> 13927 20 2000 524395
#> 13928 20 2005 712711
#> 13929 20 2010 884861
#> 13930 20 2015 978842
#> 13931 20 1950 17153
#> 13932 20 1955 18591
#> 13933 20 1960 16767
#> 13934 20 1965 13621
#> 13935 20 1970 14901
#> 13936 20 1975 24020
#> 13937 20 1980 24118
#> 13938 20 1985 35784
#> 13939 20 1990 31696
#> 13940 20 1995 33684
#> 13941 20 2000 37343
#> 13942 20 2005 48753
#> 13943 20 2010 54147
#> 13944 20 2015 56692
#> 13945 20 1950 398718
#> 13946 20 1955 437278
#> 13947 20 1960 477358
#> 13948 20 1965 520903
#> 13949 20 1970 570315
#> 13950 20 1975 723756
#> 13951 20 1980 633289
#> 13952 20 1985 692209
#> 13953 20 1990 798255
#> 13954 20 1995 910605
#> 13955 20 2000 773519
#> 13956 20 2005 1591884
#> 13957 20 2010 1316154
#> 13958 20 2015 1629921
#> 13959 20 1950 379460
#> 13960 20 1955 412587
#> 13961 20 1960 449895
#> 13962 20 1965 484322
#> 13963 20 1970 535515
#> 13964 20 1975 608381
#> 13965 20 1980 691949
#> 13966 20 1985 821337
#> 13967 20 1990 977633
#> 13968 20 1995 1159613
#> 13969 20 2000 1380850
#> 13970 20 2005 1665420
#> 13971 20 2010 1921882
#> 13972 20 2015 2127399
#> 13973 20 1950 1109999
#> 13974 20 1955 1122791
#> 13975 20 1960 1178477
#> 13976 20 1965 1393160
#> 13977 20 1970 1858535
#> 13978 20 1975 2183626
#> 13979 20 1980 2426942
#> 13980 20 1985 2492791
#> 13981 20 1990 2128963
#> 13982 20 1995 2012125
#> 13983 20 2000 2072605
#> 13984 20 2005 2224423
#> 13985 20 2010 2368769
#> 13986 20 2015 2493781
#> 13987 20 1950 1466716
#> 13988 20 1955 1588308
#> 13989 20 1960 1732205
#> 13990 20 1965 1858453
#> 13991 20 1970 2005416
#> 13992 20 1975 2401031
#> 13993 20 1980 2649500
#> 13994 20 1985 3209281
#> 13995 20 1990 3293601
#> 13996 20 1995 3297107
#> 13997 20 2000 3110201
#> 13998 20 2005 3381601
#> 13999 20 2010 3590280
#> 14000 20 2015 3565620
#> 14001 20 1950 114252
#> 14002 20 1955 119776
#> 14003 20 1960 126419
#> 14004 20 1965 136655
#> 14005 20 1970 145927
#> 14006 20 1975 161933
#> 14007 20 1980 190321
#> 14008 20 1985 226052
#> 14009 20 1990 248520
#> 14010 20 1995 295306
#> 14011 20 2000 341505
#> 14012 20 2005 387968
#> 14013 20 2010 417943
#> 14014 20 2015 410127
#> 14015 20 1950 3420622
#> 14016 20 1955 3772750
#> 14017 20 1960 4081663
#> 14018 20 1965 4824742
#> 14019 20 1970 5577259
#> 14020 20 1975 7202088
#> 14021 20 1980 8317207
#> 14022 20 1985 9413226
#> 14023 20 1990 10835921
#> 14024 20 1995 13108363
#> 14025 20 2000 13530423
#> 14026 20 2005 13743516
#> 14027 20 2010 14766577
#> 14028 20 2015 15798942
#> 14029 20 1950 1891843
#> 14030 20 1955 1777497
#> 14031 20 1960 2399092
#> 14032 20 1965 1752304
#> 14033 20 1970 2160173
#> 14034 20 1975 3282544
#> 14035 20 1980 4055272
#> 14036 20 1985 4579053
#> 14037 20 1990 4322661
#> 14038 20 1995 4596197
#> 14039 20 2000 4943189
#> 14040 20 2005 5700695
#> 14041 20 2010 6741623
#> 14042 20 2015 6675309
#> 14043 20 1950 213934
#> 14044 20 1955 228670
#> 14045 20 1960 247559
#> 14046 20 1965 267027
#> 14047 20 1970 288158
#> 14048 20 1975 355793
#> 14049 20 1980 381566
#> 14050 20 1985 416512
#> 14051 20 1990 479813
#> 14052 20 1995 584666
#> 14053 20 2000 710090
#> 14054 20 2005 868482
#> 14055 20 2010 1050525
#> 14056 20 2015 1279898
#> 14057 20 1950 6789
#> 14058 20 1955 7245
#> 14059 20 1960 7754
#> 14060 20 1965 8888
#> 14061 20 1970 10284
#> 14062 20 1975 10268
#> 14063 20 1980 10428
#> 14064 20 1985 11989
#> 14065 20 1990 12729
#> 14066 20 1995 10157
#> 14067 20 2000 8963
#> 14068 20 2005 9585
#> 14069 20 2010 9625
#> 14070 20 2015 9799
#> 14071 20 1950 535983
#> 14072 20 1955 570851
#> 14073 20 1960 605807
#> 14074 20 1965 721696
#> 14075 20 1970 809496
#> 14076 20 1975 994904
#> 14077 20 1980 1101029
#> 14078 20 1985 1197906
#> 14079 20 1990 1272855
#> 14080 20 1995 1241525
#> 14081 20 2000 1226277
#> 14082 20 2005 1309986
#> 14083 20 2010 1431738
#> 14084 20 2015 1414069
#> 14085 20 1950 46260112
#> 14086 20 1955 50747565
#> 14087 20 1960 51995854
#> 14088 20 1965 52574050
#> 14089 20 1970 66233699
#> 14090 20 1975 91099648
#> 14091 20 1980 87120481
#> 14092 20 1985 108174277
#> 14093 20 1990 129299286
#> 14094 20 1995 122030332
#> 14095 20 2000 98223711
#> 14096 20 2005 103553700
#> 14097 20 2010 130442932
#> 14098 20 2015 101287125
#> 14099 20 1950 234101
#> 14100 20 1955 235001
#> 14101 20 1960 211993
#> 14102 20 1965 181787
#> 14103 20 1970 318959
#> 14104 20 1975 421686
#> 14105 20 1980 571661
#> 14106 20 1985 568549
#> 14107 20 1990 500332
#> 14108 20 1995 449987
#> 14109 20 2000 469449
#> 14110 20 2005 460799
#> 14111 20 2010 450702
#> 14112 20 2015 450185
#> 14113 20 1950 20179
#> 14114 20 1955 15533
#> 14115 20 1960 8975
#> 14116 20 1965 10760
#> 14117 20 1970 20910
#> 14118 20 1975 32567
#> 14119 20 1980 32007
#> 14120 20 1985 31990
#> 14121 20 1990 28825
#> 14122 20 1995 28438
#> 14123 20 2000 27588
#> 14124 20 2005 43260
#> 14125 20 2010 56821
#> 14126 20 2015 47912
#> 14127 20 1950 709481
#> 14128 20 1955 741433
#> 14129 20 1960 831076
#> 14130 20 1965 815612
#> 14131 20 1970 1137375
#> 14132 20 1975 1925112
#> 14133 20 1980 1926844
#> 14134 20 1985 1986098
#> 14135 20 1990 1917239
#> 14136 20 1995 1760848
#> 14137 20 2000 1957797
#> 14138 20 2005 1880930
#> 14139 20 2010 1593942
#> 14140 20 2015 1609958
#> 14141 20 1950 1062465
#> 14142 20 1955 1166141
#> 14143 20 1960 1295951
#> 14144 20 1965 1510684
#> 14145 20 1970 1928208
#> 14146 20 1975 2393411
#> 14147 20 1980 2775167
#> 14148 20 1985 3239479
#> 14149 20 1990 3558988
#> 14150 20 1995 3418476
#> 14151 20 2000 3764983
#> 14152 20 2005 4085469
#> 14153 20 2010 4170803
#> 14154 20 2015 4198229
#> 14155 20 1950 14396
#> 14156 20 1955 15444
#> 14157 20 1960 16232
#> 14158 20 1965 16571
#> 14159 20 1970 17178
#> 14160 20 1975 21812
#> 14161 20 1980 27548
#> 14162 20 1985 31544
#> 14163 20 1990 35752
#> 14164 20 1995 41260
#> 14165 20 2000 48809
#> 14166 20 2005 58719
#> 14167 20 2010 67171
#> 14168 20 2015 73061
#> 14169 20 1950 72442
#> 14170 20 1955 79378
#> 14171 20 1960 87617
#> 14172 20 1965 97614
#> 14173 20 1970 110235
#> 14174 20 1975 130631
#> 14175 20 1980 152411
#> 14176 20 1985 182864
#> 14177 20 1990 217712
#> 14178 20 1995 261721
#> 14179 20 2000 309043
#> 14180 20 2005 345227
#> 14181 20 2010 384730
#> 14182 20 2015 408919
#> 14183 20 1950 84277
#> 14184 20 1955 95378
#> 14185 20 1960 110758
#> 14186 20 1965 132029
#> 14187 20 1970 167894
#> 14188 20 1975 186195
#> 14189 20 1980 239539
#> 14190 20 1985 283612
#> 14191 20 1990 290479
#> 14192 20 1995 287257
#> 14193 20 2000 339010
#> 14194 20 2005 386835
#> 14195 20 2010 412974
#> 14196 20 2015 412727
#> 14197 20 1950 238475
#> 14198 20 1955 279253
#> 14199 20 1960 321694
#> 14200 20 1965 373574
#> 14201 20 1970 411693
#> 14202 20 1975 541935
#> 14203 20 1980 681323
#> 14204 20 1985 839124
#> 14205 20 1990 1008726
#> 14206 20 1995 1256812
#> 14207 20 2000 1511888
#> 14208 20 2005 1610580
#> 14209 20 2010 1801041
#> 14210 20 2015 2126017
#> 14211 20 1950 353199
#> 14212 20 1955 364053
#> 14213 20 1960 340068
#> 14214 20 1965 286564
#> 14215 20 1970 368748
#> 14216 20 1975 385356
#> 14217 20 1980 368150
#> 14218 20 1985 350351
#> 14219 20 1990 322883
#> 14220 20 1995 307692
#> 14221 20 2000 295560
#> 14222 20 2005 300748
#> 14223 20 2010 275711
#> 14224 20 2015 241833
#> 14225 20 1950 506685
#> 14226 20 1955 558825
#> 14227 20 1960 637597
#> 14228 20 1965 666786
#> 14229 20 1970 685252
#> 14230 20 1975 797401
#> 14231 20 1980 801223
#> 14232 20 1985 1132561
#> 14233 20 1990 1147362
#> 14234 20 1995 1069940
#> 14235 20 2000 736134
#> 14236 20 2005 725553
#> 14237 20 2010 839709
#> 14238 20 2015 740979
#> 14239 20 1950 8561
#> 14240 20 1955 9269
#> 14241 20 1960 9158
#> 14242 20 1965 10820
#> 14243 20 1970 11692
#> 14244 20 1975 13498
#> 14245 20 1980 15299
#> 14246 20 1985 15622
#> 14247 20 1990 11625
#> 14248 20 1995 8613
#> 14249 20 2000 5728
#> 14250 20 2005 6880
#> 14251 20 2010 8103
#> 14252 20 2015 9177
#> 14253 20 1950 41770
#> 14254 20 1955 41459
#> 14255 20 1960 47060
#> 14256 20 1965 46760
#> 14257 20 1970 50753
#> 14258 20 1975 60585
#> 14259 20 1980 70302
#> 14260 20 1985 67823
#> 14261 20 1990 68478
#> 14262 20 1995 72321
#> 14263 20 2000 83085
#> 14264 20 2005 95716
#> 14265 20 2010 102306
#> 14266 20 2015 107534
#> 14267 20 1950 685915
#> 14268 20 1955 625166
#> 14269 20 1960 549592
#> 14270 20 1965 722243
#> 14271 20 1970 875284
#> 14272 20 1975 846882
#> 14273 20 1980 716731
#> 14274 20 1985 672083
#> 14275 20 1990 678333
#> 14276 20 1995 844296
#> 14277 20 2000 895279
#> 14278 20 2005 698010
#> 14279 20 2010 691580
#> 14280 20 2015 614566
#> 14281 20 1950 917728
#> 14282 20 1955 975070
#> 14283 20 1960 1319709
#> 14284 20 1965 1394897
#> 14285 20 1970 1314982
#> 14286 20 1975 939941
#> 14287 20 1980 1809030
#> 14288 20 1985 1679813
#> 14289 20 1990 2336231
#> 14290 20 1995 2314936
#> 14291 20 2000 1641833
#> 14292 20 2005 1858152
#> 14293 20 2010 1893153
#> 14294 20 2015 2004681
#> 14295 20 1950 1055408
#> 14296 20 1955 1189762
#> 14297 20 1960 1356836
#> 14298 20 1965 1555848
#> 14299 20 1970 1772925
#> 14300 20 1975 1939448
#> 14301 20 1980 2243173
#> 14302 20 1985 2566072
#> 14303 20 1990 2989170
#> 14304 20 1995 3581240
#> 14305 20 2000 4064291
#> 14306 20 2005 4743592
#> 14307 20 2010 5562597
#> 14308 20 2015 6552853
#> 14309 20 1950 296515
#> 14310 20 1955 286672
#> 14311 20 1960 303103
#> 14312 20 1965 376444
#> 14313 20 1970 415776
#> 14314 20 1975 375179
#> 14315 20 1980 371831
#> 14316 20 1985 397831
#> 14317 20 1990 396121
#> 14318 20 1995 375290
#> 14319 20 2000 332564
#> 14320 20 2005 291432
#> 14321 20 2010 331589
#> 14322 20 2015 388733
#> 14323 20 1950 5463
#> 14324 20 1955 6346
#> 14325 20 1960 7740
#> 14326 20 1965 10634
#> 14327 20 1970 15009
#> 14328 20 1975 17728
#> 14329 20 1980 31933
#> 14330 20 1985 41302
#> 14331 20 1990 54032
#> 14332 20 1995 56686
#> 14333 20 2000 70674
#> 14334 20 2005 73151
#> 14335 20 2010 91198
#> 14336 20 2015 93523
#> 14337 20 1950 212982
#> 14338 20 1955 247317
#> 14339 20 1960 272231
#> 14340 20 1965 286879
#> 14341 20 1970 352064
#> 14342 20 1975 458277
#> 14343 20 1980 561490
#> 14344 20 1985 640915
#> 14345 20 1990 696208
#> 14346 20 1995 743552
#> 14347 20 2000 789617
#> 14348 20 2005 858021
#> 14349 20 2010 902803
#> 14350 20 2015 943297
#> 14351 20 1950 49321311
#> 14352 20 1955 46061851
#> 14353 20 1960 49818255
#> 14354 20 1965 41312080
#> 14355 20 1970 50263244
#> 14356 20 1975 54333018
#> 14357 20 1980 56712973
#> 14358 20 1985 56303666
#> 14359 20 1990 53148043
#> 14360 20 1995 51694202
#> 14361 20 2000 50456920
#> 14362 20 2005 51465952
#> 14363 20 2010 50656937
#> 14364 20 2015 43922729
#> 14365 20 1950 5889316
#> 14366 20 1955 6557611
#> 14367 20 1960 7145340
#> 14368 20 1965 8038007
#> 14369 20 1970 9334077
#> 14370 20 1975 10858322
#> 14371 20 1980 12632578
#> 14372 20 1985 14640991
#> 14373 20 1990 17174962
#> 14374 20 1995 20028901
#> 14375 20 2000 23670207
#> 14376 20 2005 28008882
#> 14377 20 2010 32169985
#> 14378 20 2015 37183915
#> 14379 20 1950 57412230
#> 14380 20 1955 62922929
#> 14381 20 1960 65127001
#> 14382 20 1965 66594395
#> 14383 20 1970 82620701
#> 14384 20 1975 107065437
#> 14385 20 1980 103756156
#> 14386 20 1985 125196970
#> 14387 20 1990 147529486
#> 14388 20 1995 141381978
#> 14389 20 2000 114974420
#> 14390 20 2005 119456907
#> 14391 20 2010 144565204
#> 14392 20 2015 115382881
#> 14393 20 1950 23492397
#> 14394 20 1955 20352253
#> 14395 20 1960 23699807
#> 14396 20 1965 15993745
#> 14397 20 1970 21554076
#> 14398 20 1975 25407902
#> 14399 20 1980 26035820
#> 14400 20 1985 23094451
#> 14401 20 1990 20556550
#> 14402 20 1995 22141020
#> 14403 20 2000 23436024
#> 14404 20 2005 24442527
#> 14405 20 2010 23855950
#> 14406 20 2015 18237396
#> 14407 20 1950 284141
#> 14408 20 1955 322913
#> 14409 20 1960 366940
#> 14410 20 1965 432541
#> 14411 20 1970 486419
#> 14412 20 1975 644680
#> 14413 20 1980 745470
#> 14414 20 1985 856191
#> 14415 20 1990 983740
#> 14416 20 1995 1091997
#> 14417 20 2000 1170750
#> 14418 20 2005 1260787
#> 14419 20 2010 1375738
#> 14420 20 2015 1442091
#> 14421 20 1950 1930131
#> 14422 20 1955 2066742
#> 14423 20 1960 2063242
#> 14424 20 1965 2137123
#> 14425 20 1970 3070771
#> 14426 20 1975 3234308
#> 14427 20 1980 3818030
#> 14428 20 1985 4367324
#> 14429 20 1990 4877078
#> 14430 20 1995 5360310
#> 14431 20 2000 6482212
#> 14432 20 2005 7729695
#> 14433 20 2010 8696632
#> 14434 20 2015 8205977
#> 14435 20 1950 186740
#> 14436 20 1955 210217
#> 14437 20 1960 234125
#> 14438 20 1965 261753
#> 14439 20 1970 299483
#> 14440 20 1975 362259
#> 14441 20 1980 400133
#> 14442 20 1985 431663
#> 14443 20 1990 468325
#> 14444 20 1995 505301
#> 14445 20 2000 520857
#> 14446 20 2005 515756
#> 14447 20 2010 547602
#> 14448 20 2015 620574
#> 14449 20 1950 19044
#> 14450 20 1955 20039
#> 14451 20 1960 20625
#> 14452 20 1965 22393
#> 14453 20 1970 24262
#> 14454 20 1975 23718
#> 14455 20 1980 22258
#> 14456 20 1985 29648
#> 14457 20 1990 36336
#> 14458 20 1995 40098
#> 14459 20 2000 56640
#> 14460 20 2005 76729
#> 14461 20 2010 93106
#> 14462 20 2015 111329
#> 14463 20 1950 99400
#> 14464 20 1955 113785
#> 14465 20 1960 128826
#> 14466 20 1965 147396
#> 14467 20 1970 164776
#> 14468 20 1975 169632
#> 14469 20 1980 203844
#> 14470 20 1985 238189
#> 14471 20 1990 267803
#> 14472 20 1995 232097
#> 14473 20 2000 307109
#> 14474 20 2005 436997
#> 14475 20 2010 466956
#> 14476 20 2015 436214
#> 14477 20 1950 97087
#> 14478 20 1955 98784
#> 14479 20 1960 100440
#> 14480 20 1965 87654
#> 14481 20 1970 102898
#> 14482 20 1975 110258
#> 14483 20 1980 113603
#> 14484 20 1985 110489
#> 14485 20 1990 106189
#> 14486 20 1995 98380
#> 14487 20 2000 98273
#> 14488 20 2005 99159
#> 14489 20 2010 100884
#> 14490 20 2015 76409
#> 14491 20 1950 1574489
#> 14492 20 1955 1753309
#> 14493 20 1960 1967572
#> 14494 20 1965 2234843
#> 14495 20 1970 2533292
#> 14496 20 1975 2742317
#> 14497 20 1980 2857732
#> 14498 20 1985 3276116
#> 14499 20 1990 3965371
#> 14500 20 1995 4835349
#> 14501 20 2000 5689034
#> 14502 20 2005 6898183
#> 14503 20 2010 7824926
#> 14504 20 2015 9706754
#> 14505 20 1950 25002
#> 14506 20 1955 29387
#> 14507 20 1960 33418
#> 14508 20 1965 40826
#> 14509 20 1970 49021
#> 14510 20 1975 57717
#> 14511 20 1980 65362
#> 14512 20 1985 73835
#> 14513 20 1990 66360
#> 14514 20 1995 69200
#> 14515 20 2000 77216
#> 14516 20 2005 78353
#> 14517 20 2010 76812
#> 14518 20 2015 76747
#> 14519 20 1950 327125
#> 14520 20 1955 304918
#> 14521 20 1960 315007
#> 14522 20 1965 341880
#> 14523 20 1970 447298
#> 14524 20 1975 421312
#> 14525 20 1980 384806
#> 14526 20 1985 378829
#> 14527 20 1990 348846
#> 14528 20 1995 304545
#> 14529 20 2000 328120
#> 14530 20 2005 334180
#> 14531 20 2010 326163
#> 14532 20 2015 347185
#> 14533 20 1950 3202068
#> 14534 20 1955 3159010
#> 14535 20 1960 2886855
#> 14536 20 1965 2880068
#> 14537 20 1970 4216907
#> 14538 20 1975 4256878
#> 14539 20 1980 4202624
#> 14540 20 1985 4335843
#> 14541 20 1990 4312757
#> 14542 20 1995 4197510
#> 14543 20 2000 3790322
#> 14544 20 2005 3958163
#> 14545 20 2010 3925611
#> 14546 20 2015 3712561
#> 14547 20 1950 2142
#> 14548 20 1955 1996
#> 14549 20 1960 1940
#> 14550 20 1965 2673
#> 14551 20 1970 3955
#> 14552 20 1975 4297
#> 14553 20 1980 6354
#> 14554 20 1985 8665
#> 14555 20 1990 9389
#> 14556 20 1995 9661
#> 14557 20 2000 12370
#> 14558 20 2005 14832
#> 14559 20 2010 16524
#> 14560 20 2015 20903
#> 14561 20 1950 5660
#> 14562 20 1955 6344
#> 14563 20 1960 6235
#> 14564 20 1965 7768
#> 14565 20 1970 7678
#> 14566 20 1975 11358
#> 14567 20 1980 14800
#> 14568 20 1985 16656
#> 14569 20 1990 20722
#> 14570 20 1995 19609
#> 14571 20 2000 17654
#> 14572 20 2005 21609
#> 14573 20 2010 23861
#> 14574 20 2015 23018
#> 14575 20 1950 37811
#> 14576 20 1955 38338
#> 14577 20 1960 38776
#> 14578 20 1965 40250
#> 14579 20 1970 42812
#> 14580 20 1975 45995
#> 14581 20 1980 51494
#> 14582 20 1985 61721
#> 14583 20 1990 76521
#> 14584 20 1995 90802
#> 14585 20 2000 107680
#> 14586 20 2005 131266
#> 14587 20 2010 156742
#> 14588 20 2015 177003
#> 14589 20 1950 24036
#> 14590 20 1955 31126
#> 14591 20 1960 38311
#> 14592 20 1965 37690
#> 14593 20 1970 46346
#> 14594 20 1975 49228
#> 14595 20 1980 62372
#> 14596 20 1985 60424
#> 14597 20 1990 92901
#> 14598 20 1995 90315
#> 14599 20 2000 118504
#> 14600 20 2005 136548
#> 14601 20 2010 152846
#> 14602 20 2015 178627
#> 14603 20 1950 369674
#> 14604 20 1955 340900
#> 14605 20 1960 395178
#> 14606 20 1965 274273
#> 14607 20 1970 314330
#> 14608 20 1975 393748
#> 14609 20 1980 445978
#> 14610 20 1985 463612
#> 14611 20 1990 413149
#> 14612 20 1995 363936
#> 14613 20 2000 340952
#> 14614 20 2005 352034
#> 14615 20 2010 349936
#> 14616 20 2015 278888
#> 14617 20 1950 4943797
#> 14618 20 1955 5209734
#> 14619 20 1960 6194610
#> 14620 20 1965 5290678
#> 14621 20 1970 4861089
#> 14622 20 1975 5409585
#> 14623 20 1980 6025357
#> 14624 20 1985 6664858
#> 14625 20 1990 6421316
#> 14626 20 1995 4825543
#> 14627 20 2000 4464589
#> 14628 20 2005 4783932
#> 14629 20 2010 4830101
#> 14630 20 2015 4571184
#> 14631 20 1950 438170
#> 14632 20 1955 503910
#> 14633 20 1960 589958
#> 14634 20 1965 683373
#> 14635 20 1970 772534
#> 14636 20 1975 797150
#> 14637 20 1980 918318
#> 14638 20 1985 1139044
#> 14639 20 1990 1355728
#> 14640 20 1995 1564111
#> 14641 20 2000 1761743
#> 14642 20 2005 2032728
#> 14643 20 2010 2304733
#> 14644 20 2015 2562192
#> 14645 20 1950 719000
#> 14646 20 1955 775715
#> 14647 20 1960 743070
#> 14648 20 1965 587029
#> 14649 20 1970 643993
#> 14650 20 1975 650691
#> 14651 20 1980 743284
#> 14652 20 1985 747803
#> 14653 20 1990 809909
#> 14654 20 1995 841528
#> 14655 20 2000 850838
#> 14656 20 2005 793985
#> 14657 20 2010 653469
#> 14658 20 2015 566223
#> 14659 20 1950 5410
#> 14660 20 1955 5828
#> 14661 20 1960 6794
#> 14662 20 1965 5809
#> 14663 20 1970 6514
#> 14664 20 1975 7748
#> 14665 20 1980 8424
#> 14666 20 1985 11521
#> 14667 20 1990 7479
#> 14668 20 1995 8869
#> 14669 20 2000 9278
#> 14670 20 2005 11122
#> 14671 20 2010 12403
#> 14672 20 2015 10317
#> 14673 20 1950 16993
#> 14674 20 1955 18997
#> 14675 20 1960 19136
#> 14676 20 1965 23131
#> 14677 20 1970 26913
#> 14678 20 1975 23013
#> 14679 20 1980 29642
#> 14680 20 1985 32549
#> 14681 20 1990 34649
#> 14682 20 1995 29749
#> 14683 20 2000 31748
#> 14684 20 2005 25739
#> 14685 20 2010 21141
#> 14686 20 2015 29612
#> 14687 20 1950 11388
#> 14688 20 1955 9033
#> 14689 20 1960 6783
#> 14690 20 1965 8406
#> 14691 20 1970 10325
#> 14692 20 1975 10340
#> 14693 20 1980 10881
#> 14694 20 1985 12359
#> 14695 20 1990 13948
#> 14696 20 1995 12461
#> 14697 20 2000 11950
#> 14698 20 2005 11631
#> 14699 20 2010 12555
#> 14700 20 2015 13434
#> 14701 20 1950 303314
#> 14702 20 1955 326783
#> 14703 20 1960 347379
#> 14704 20 1965 386000
#> 14705 20 1970 454658
#> 14706 20 1975 581861
#> 14707 20 1980 632239
#> 14708 20 1985 696201
#> 14709 20 1990 799885
#> 14710 20 1995 931082
#> 14711 20 2000 1089329
#> 14712 20 2005 1262440
#> 14713 20 2010 1406465
#> 14714 20 2015 1638542
#> 14715 20 1950 270500
#> 14716 20 1955 282313
#> 14717 20 1960 301032
#> 14718 20 1965 321321
#> 14719 20 1970 339980
#> 14720 20 1975 399214
#> 14721 20 1980 401781
#> 14722 20 1985 434335
#> 14723 20 1990 495603
#> 14724 20 1995 649053
#> 14725 20 2000 749527
#> 14726 20 2005 850006
#> 14727 20 2010 969508
#> 14728 20 2015 1104862
#> 14729 20 1950 47327
#> 14730 20 1955 46251
#> 14731 20 1960 47616
#> 14732 20 1965 54364
#> 14733 20 1970 59466
#> 14734 20 1975 71532
#> 14735 20 1980 71240
#> 14736 20 1985 73472
#> 14737 20 1990 79909
#> 14738 20 1995 95758
#> 14739 20 2000 110974
#> 14740 20 2005 132042
#> 14741 20 2010 151122
#> 14742 20 2015 168968
#> 14743 20 1950 34756
#> 14744 20 1955 38614
#> 14745 20 1960 43623
#> 14746 20 1965 50276
#> 14747 20 1970 55819
#> 14748 20 1975 69232
#> 14749 20 1980 78574
#> 14750 20 1985 85937
#> 14751 20 1990 79301
#> 14752 20 1995 72613
#> 14753 20 2000 67649
#> 14754 20 2005 55902
#> 14755 20 2010 53646
#> 14756 20 2015 77018
#> 14757 20 1950 275364
#> 14758 20 1955 303999
#> 14759 20 1960 343452
#> 14760 20 1965 368560
#> 14761 20 1970 374094
#> 14762 20 1975 453746
#> 14763 20 1980 508202
#> 14764 20 1985 576463
#> 14765 20 1990 617670
#> 14766 20 1995 651861
#> 14767 20 2000 773954
#> 14768 20 2005 954964
#> 14769 20 2010 1011221
#> 14770 20 2015 1042682
#> 14771 20 1950 54331597
#> 14772 20 1955 53775516
#> 14773 20 1960 55402743
#> 14774 20 1965 58731056
#> 14775 20 1970 69482590
#> 14776 20 1975 73977540
#> 14777 20 1980 78200615
#> 14778 20 1985 80735028
#> 14779 20 1990 78806726
#> 14780 20 1995 76217653
#> 14781 20 2000 73771950
#> 14782 20 2005 75041340
#> 14783 20 2010 75115715
#> 14784 20 2015 75025029
#> 14785 20 1950 131758
#> 14786 20 1955 152287
#> 14787 20 1960 167020
#> 14788 20 1965 183848
#> 14789 20 1970 219668
#> 14790 20 1975 279923
#> 14791 20 1980 328704
#> 14792 20 1985 382505
#> 14793 20 1990 454900
#> 14794 20 1995 527056
#> 14795 20 2000 626169
#> 14796 20 2005 723413
#> 14797 20 2010 810759
#> 14798 20 2015 907967
#> 14799 20 1950 783536
#> 14800 20 1955 754546
#> 14801 20 1960 671461
#> 14802 20 1965 754536
#> 14803 20 1970 782024
#> 14804 20 1975 917931
#> 14805 20 1980 803119
#> 14806 20 1985 619397
#> 14807 20 1990 685689
#> 14808 20 1995 767056
#> 14809 20 2000 852727
#> 14810 20 2005 671951
#> 14811 20 2010 605459
#> 14812 20 2015 629552
#> 14813 20 1950 12034
#> 14814 20 1955 12058
#> 14815 20 1960 11372
#> 14816 20 1965 14134
#> 14817 20 1970 17201
#> 14818 20 1975 19672
#> 14819 20 1980 21504
#> 14820 20 1985 22150
#> 14821 20 1990 20967
#> 14822 20 1995 20865
#> 14823 20 2000 21073
#> 14824 20 2005 21795
#> 14825 20 2010 23132
#> 14826 20 2015 25258
#> 14827 20 1950 34405607
#> 14828 20 1955 36596657
#> 14829 20 1960 38900735
#> 14830 20 1965 40310276
#> 14831 20 1970 45004409
#> 14832 20 1975 57154361
#> 14833 20 1980 63959097
#> 14834 20 1985 71224987
#> 14835 20 1990 78210480
#> 14836 20 1995 86676790
#> 14837 20 2000 95727828
#> 14838 20 2005 107329560
#> 14839 20 2010 114279495
#> 14840 20 2015 118180313
#> 14841 20 1950 6433399
#> 14842 20 1955 7337919
#> 14843 20 1960 8140566
#> 14844 20 1965 8386151
#> 14845 20 1970 8677703
#> 14846 20 1975 10737309
#> 14847 20 1980 13640984
#> 14848 20 1985 15912374
#> 14849 20 1990 18047767
#> 14850 20 1995 19615153
#> 14851 20 2000 20952510
#> 14852 20 2005 20942751
#> 14853 20 2010 21572865
#> 14854 20 2015 21858607
#> 14855 20 1950 1573200
#> 14856 20 1955 1711181
#> 14857 20 1960 1742901
#> 14858 20 1965 1711766
#> 14859 20 1970 2154410
#> 14860 20 1975 3038771
#> 14861 20 1980 3577151
#> 14862 20 1985 4108654
#> 14863 20 1990 4680934
#> 14864 20 1995 5224258
#> 14865 20 2000 6905478
#> 14866 20 2005 9131958
#> 14867 20 2010 9172999
#> 14868 20 2015 7120300
#> 14869 20 1950 461466
#> 14870 20 1955 514520
#> 14871 20 1960 577788
#> 14872 20 1965 663943
#> 14873 20 1970 697350
#> 14874 20 1975 1069705
#> 14875 20 1980 1078627
#> 14876 20 1985 1283284
#> 14877 20 1990 1656587
#> 14878 20 1995 1980404
#> 14879 20 2000 2318283
#> 14880 20 2005 2559834
#> 14881 20 2010 2834025
#> 14882 20 2015 3299260
#> 14883 20 1950 196380
#> 14884 20 1955 194195
#> 14885 20 1960 183327
#> 14886 20 1965 199828
#> 14887 20 1970 240328
#> 14888 20 1975 269582
#> 14889 20 1980 280953
#> 14890 20 1985 305460
#> 14891 20 1990 277523
#> 14892 20 1995 325808
#> 14893 20 2000 342538
#> 14894 20 2005 354237
#> 14895 20 2010 322456
#> 14896 20 2015 254275
#> 14897 20 1950 110101
#> 14898 20 1955 132060
#> 14899 20 1960 150100
#> 14900 20 1965 172561
#> 14901 20 1970 257722
#> 14902 20 1975 323210
#> 14903 20 1980 310837
#> 14904 20 1985 324519
#> 14905 20 1990 355440
#> 14906 20 1995 450647
#> 14907 20 2000 513873
#> 14908 20 2005 538025
#> 14909 20 2010 555461
#> 14910 20 2015 570885
#> 14911 20 1950 3999239
#> 14912 20 1955 3911034
#> 14913 20 1960 3936217
#> 14914 20 1965 3610009
#> 14915 20 1970 4047008
#> 14916 20 1975 3876591
#> 14917 20 1980 4084565
#> 14918 20 1985 4589978
#> 14919 20 1990 4605558
#> 14920 20 1995 4318311
#> 14921 20 2000 3604592
#> 14922 20 2005 3168918
#> 14923 20 2010 3012591
#> 14924 20 2015 2908598
#> 14925 20 1950 119999
#> 14926 20 1955 133319
#> 14927 20 1960 125374
#> 14928 20 1965 129004
#> 14929 20 1970 130747
#> 14930 20 1975 144311
#> 14931 20 1980 200394
#> 14932 20 1985 235852
#> 14933 20 1990 239780
#> 14934 20 1995 240446
#> 14935 20 2000 222681
#> 14936 20 2005 232555
#> 14937 20 2010 253548
#> 14938 20 2015 268673
#> 14939 20 1950 7725543
#> 14940 20 1955 8383061
#> 14941 20 1960 8494934
#> 14942 20 1965 9253115
#> 14943 20 1970 10816653
#> 14944 20 1975 9359955
#> 14945 20 1980 8012028
#> 14946 20 1985 8246151
#> 14947 20 1990 8821179
#> 14948 20 1995 10119034
#> 14949 20 2000 8450347
#> 14950 20 2005 7597938
#> 14951 20 2010 6748255
#> 14952 20 2015 6139049
#> 14953 20 1950 36774
#> 14954 20 1955 58734
#> 14955 20 1960 85335
#> 14956 20 1965 105655
#> 14957 20 1970 147751
#> 14958 20 1975 159633
#> 14959 20 1980 199322
#> 14960 20 1985 260826
#> 14961 20 1990 343365
#> 14962 20 1995 486073
#> 14963 20 2000 505404
#> 14964 20 2005 578373
#> 14965 20 2010 670199
#> 14966 20 2015 835998
#> 14967 20 1950 745010
#> 14968 20 1955 628340
#> 14969 20 1960 1138325
#> 14970 20 1965 772697
#> 14971 20 1970 951227
#> 14972 20 1975 1313613
#> 14973 20 1980 1481352
#> 14974 20 1985 1545082
#> 14975 20 1990 1327162
#> 14976 20 1995 1315833
#> 14977 20 2000 1277895
#> 14978 20 2005 1434150
#> 14979 20 2010 1666218
#> 14980 20 2015 1515192
#> 14981 20 1950 526420
#> 14982 20 1955 602183
#> 14983 20 1960 616584
#> 14984 20 1965 643636
#> 14985 20 1970 871068
#> 14986 20 1975 1148829
#> 14987 20 1980 1397457
#> 14988 20 1985 1697065
#> 14989 20 1990 2060744
#> 14990 20 1995 2577966
#> 14991 20 2000 3102742
#> 14992 20 2005 3695471
#> 14993 20 2010 4128216
#> 14994 20 2015 4344423
#> 14995 20 1950 3403
#> 14996 20 1955 3212
#> 14997 20 1960 3299
#> 14998 20 1965 3226
#> 14999 20 1970 4225
#> 15000 20 1975 5152
#> 15001 20 1980 5917
#> 15002 20 1985 6291
#> 15003 20 1990 7402
#> 15004 20 1995 5762
#> 15005 20 2000 6761
#> 15006 20 2005 8550
#> 15007 20 2010 10322
#> 15008 20 2015 10414
#> 15009 20 1950 17650
#> 15010 20 1955 21526
#> 15011 20 1960 31910
#> 15012 20 1965 55927
#> 15013 20 1970 77240
#> 15014 20 1975 90272
#> 15015 20 1980 126953
#> 15016 20 1985 154702
#> 15017 20 1990 192201
#> 15018 20 1995 133196
#> 15019 20 2000 167043
#> 15020 20 2005 212971
#> 15021 20 2010 260655
#> 15022 20 2015 228977
#> 15023 20 1950 185718
#> 15024 20 1955 172983
#> 15025 20 1960 203880
#> 15026 20 1965 139782
#> 15027 20 1970 178920
#> 15028 20 1975 277048
#> 15029 20 1980 350124
#> 15030 20 1985 396972
#> 15031 20 1990 375521
#> 15032 20 1995 396334
#> 15033 20 2000 438764
#> 15034 20 2005 492985
#> 15035 20 2010 611986
#> 15036 20 2015 565286
#> 15037 20 1950 15149600
#> 15038 20 1955 16395658
#> 15039 20 1960 18269630
#> 15040 20 1965 20463682
#> 15041 20 1970 24076005
#> 15042 20 1975 29460134
#> 15043 20 1980 33622563
#> 15044 20 1985 38611628
#> 15045 20 1990 42005276
#> 15046 20 1995 45569847
#> 15047 20 2000 49036374
#> 15048 20 2005 51814966
#> 15049 20 2010 53685677
#> 15050 20 2015 54677542
#> 15051 20 1950 153625
#> 15052 20 1955 162210
#> 15053 20 1960 178390
#> 15054 20 1965 199468
#> 15055 20 1970 233312
#> 15056 20 1975 275079
#> 15057 20 1980 275752
#> 15058 20 1985 326526
#> 15059 20 1990 386360
#> 15060 20 1995 441939
#> 15061 20 2000 484451
#> 15062 20 2005 547817
#> 15063 20 2010 651929
#> 15064 20 2015 698049
#> 15065 20 1950 171299
#> 15066 20 1955 171766
#> 15067 20 1960 176646
#> 15068 20 1965 170167
#> 15069 20 1970 163256
#> 15070 20 1975 184117
#> 15071 20 1980 201421
#> 15072 20 1985 196520
#> 15073 20 1990 180355
#> 15074 20 1995 175297
#> 15075 20 2000 160379
#> 15076 20 2005 170539
#> 15077 20 2010 164772
#> 15078 20 2015 124540
#> 15079 20 1950 17375811
#> 15080 20 1955 18928102
#> 15081 20 1960 20616681
#> 15082 20 1965 22877306
#> 15083 20 1970 25717015
#> 15084 20 1975 28741199
#> 15085 20 1980 33430785
#> 15086 20 1985 39250387
#> 15087 20 1990 45492940
#> 15088 20 1995 52112788
#> 15089 20 2000 60385328
#> 15090 20 2005 70314835
#> 15091 20 2010 77537062
#> 15092 20 2015 88188018
#> 15093 20 1950 122592
#> 15094 20 1955 131192
#> 15095 20 1960 136661
#> 15096 20 1965 141628
#> 15097 20 1970 169908
#> 15098 20 1975 249519
#> 15099 20 1980 246889
#> 15100 20 1985 255252
#> 15101 20 1990 244003
#> 15102 20 1995 287296
#> 15103 20 2000 303603
#> 15104 20 2005 380755
#> 15105 20 2010 424137
#> 15106 20 2015 582616
#> 15107 20 1950 61409
#> 15108 20 1955 63385
#> 15109 20 1960 70167
#> 15110 20 1965 76395
#> 15111 20 1970 91185
#> 15112 20 1975 100685
#> 15113 20 1980 118072
#> 15114 20 1985 130039
#> 15115 20 1990 146744
#> 15116 20 1995 169536
#> 15117 20 2000 182673
#> 15118 20 2005 207629
#> 15119 20 2010 220818
#> 15120 20 2015 232861
#> 15121 20 1950 151622854
#> 15122 20 1955 165378019
#> 15123 20 1960 176984976
#> 15124 20 1965 185424030
#> 15125 20 1970 217370470
#> 15126 20 1975 276890039
#> 15127 20 1980 303888937
#> 15128 20 1985 355547512
#> 15129 20 1990 404725026
#> 15130 20 1995 426729042
#> 15131 20 2000 436547542
#> 15132 20 2005 480599057
#> 15133 20 2010 533511647
#> 15134 20 2015 523347676
#> 15135 20 1950 104398981
#> 15136 20 1955 113638487
#> 15137 20 1960 123937078
#> 15138 20 1965 131841821
#> 15139 20 1970 149659527
#> 15140 20 1975 183411026
#> 15141 20 1980 214237944
#> 15142 20 1985 244786598
#> 15143 20 1990 272979344
#> 15144 20 1995 302459437
#> 15145 20 2000 335868997
#> 15146 20 2005 374660368
#> 15147 20 2010 400967250
#> 15148 20 2015 419952496
#> 15149 20 1950 134247043
#> 15150 20 1955 146449917
#> 15151 20 1960 156368295
#> 15152 20 1965 162546724
#> 15153 20 1970 191653455
#> 15154 20 1975 248148840
#> 15155 20 1980 270458152
#> 15156 20 1985 316297125
#> 15157 20 1990 359232086
#> 15158 20 1995 374616254
#> 15159 20 2000 376162214
#> 15160 20 2005 410284222
#> 15161 20 2010 455974585
#> 15162 20 2015 435159658
#> 15163 20 1950 84824
#> 15164 20 1955 91924
#> 15165 20 1960 102969
#> 15166 20 1965 114100
#> 15167 20 1970 114815
#> 15168 20 1975 136104
#> 15169 20 1980 159658
#> 15170 20 1985 185720
#> 15171 20 1990 180285
#> 15172 20 1995 185538
#> 15173 20 2000 264522
#> 15174 20 2005 301621
#> 15175 20 2010 352580
#> 15176 20 2015 389906
#> 15177 20 1950 98639
#> 15178 20 1955 104281
#> 15179 20 1960 120775
#> 15180 20 1965 141533
#> 15181 20 1970 158457
#> 15182 20 1975 201817
#> 15183 20 1980 248973
#> 15184 20 1985 334743
#> 15185 20 1990 425998
#> 15186 20 1995 521559
#> 15187 20 2000 593014
#> 15188 20 2005 633488
#> 15189 20 2010 636773
#> 15190 20 2015 543823
#> 15191 20 1950 234109
#> 15192 20 1955 236645
#> 15193 20 1960 232552
#> 15194 20 1965 229631
#> 15195 20 1970 217475
#> 15196 20 1975 243732
#> 15197 20 1980 286011
#> 15198 20 1985 298825
#> 15199 20 1990 278598
#> 15200 20 1995 267571
#> 15201 20 2000 233334
#> 15202 20 2005 239175
#> 15203 20 2010 228960
#> 15204 20 2015 206803
#> 15205 20 1950 11317633
#> 15206 20 1955 12297301
#> 15207 20 1960 13714729
#> 15208 20 1965 15250680
#> 15209 20 1970 16750342
#> 15210 20 1975 18619790
#> 15211 20 1980 21745515
#> 15212 20 1985 24127814
#> 15213 20 1990 28179614
#> 15214 20 1995 32730733
#> 15215 20 2000 37285601
#> 15216 20 2005 43916978
#> 15217 20 2010 50108275
#> 15218 20 2015 58367586
#> 15219 20 1950 71181383
#> 15220 20 1955 76053121
#> 15221 20 1960 82738856
#> 15222 20 1965 85293864
#> 15223 20 1970 95667577
#> 15224 20 1975 118104707
#> 15225 20 1980 137305016
#> 15226 20 1985 156784569
#> 15227 20 1990 174086885
#> 15228 20 1995 193194067
#> 15229 20 2000 215695622
#> 15230 20 2005 240863515
#> 15231 20 2010 257973393
#> 15232 20 2015 268185701
#> 15233 20 1950 24002
#> 15234 20 1955 22999
#> 15235 20 1960 21784
#> 15236 20 1965 21542
#> 15237 20 1970 22633
#> 15238 20 1975 27082
#> 15239 20 1980 29110
#> 15240 20 1985 29701
#> 15241 20 1990 28389
#> 15242 20 1995 25887
#> 15243 20 2000 25416
#> 15244 20 2005 26191
#> 15245 20 2010 30167
#> 15246 20 2015 36059
#> 15247 20 1950 360334
#> 15248 20 1955 396917
#> 15249 20 1960 414597
#> 15250 20 1965 429502
#> 15251 20 1970 489824
#> 15252 20 1975 655010
#> 15253 20 1980 765605
#> 15254 20 1985 885307
#> 15255 20 1990 1030755
#> 15256 20 1995 1213857
#> 15257 20 2000 1427575
#> 15258 20 2005 1624216
#> 15259 20 2010 1882581
#> 15260 20 2015 2249501
#> 15261 20 1950 252295
#> 15262 20 1955 282678
#> 15263 20 1960 322283
#> 15264 20 1965 375212
#> 15265 20 1970 435910
#> 15266 20 1975 439261
#> 15267 20 1980 516042
#> 15268 20 1985 614019
#> 15269 20 1990 827184
#> 15270 20 1995 880685
#> 15271 20 2000 1024623
#> 15272 20 2005 1180998
#> 15273 20 2010 1467789
#> 15274 20 2015 1703180
#> 15275 20 1950 516701
#> 15276 20 1955 564149
#> 15277 20 1960 697527
#> 15278 20 1965 704164
#> 15279 20 1970 931473
#> 15280 20 1975 1146423
#> 15281 20 1980 1328672
#> 15282 20 1985 1586371
#> 15283 20 1990 1624569
#> 15284 20 1995 1857473
#> 15285 20 2000 2066150
#> 15286 20 2005 2432021
#> 15287 20 2010 2847260
#> 15288 20 2015 3147043
#> 15289 20 1950 6813
#> 15290 20 1955 8447
#> 15291 20 1960 9599
#> 15292 20 1965 9503
#> 15293 20 1970 7145
#> 15294 20 1975 8964
#> 15295 20 1980 13534
#> 15296 20 1985 17047
#> 15297 20 1990 19282
#> 15298 20 1995 21557
#> 15299 20 2000 24955
#> 15300 20 2005 39157
#> 15301 20 2010 48805
#> 15302 20 2015 46101
#> 15303 20 1950 416777
#> 15304 20 1955 417136
#> 15305 20 1960 434448
#> 15306 20 1965 488215
#> 15307 20 1970 495562
#> 15308 20 1975 576923
#> 15309 20 1980 608337
#> 15310 20 1985 659464
#> 15311 20 1990 710142
#> 15312 20 1995 862651
#> 15313 20 2000 1011760
#> 15314 20 2005 1167153
#> 15315 20 2010 1317694
#> 15316 20 2015 1500111
#> 15317 20 1950 26000
#> 15318 20 1955 23996
#> 15319 20 1960 25476
#> 15320 20 1965 24069
#> 15321 20 1970 31794
#> 15322 20 1975 27902
#> 15323 20 1980 26203
#> 15324 20 1985 27501
#> 15325 20 1990 24091
#> 15326 20 1995 27031
#> 15327 20 2000 29569
#> 15328 20 2005 29408
#> 15329 20 2010 29874
#> 15330 20 2015 29144
#> 15331 20 1950 18000
#> 15332 20 1955 18899
#> 15333 20 1960 23621
#> 15334 20 1965 19159
#> 15335 20 1970 25234
#> 15336 20 1975 23617
#> 15337 20 1980 31400
#> 15338 20 1985 32785
#> 15339 20 1990 33338
#> 15340 20 1995 26727
#> 15341 20 2000 27547
#> 15342 20 2005 21337
#> 15343 20 2010 23664
#> 15344 20 2015 17692
#> 15345 20 1950 60884
#> 15346 20 1955 67383
#> 15347 20 1960 75018
#> 15348 20 1965 83393
#> 15349 20 1970 93930
#> 15350 20 1975 112285
#> 15351 20 1980 137621
#> 15352 20 1985 160724
#> 15353 20 1990 183835
#> 15354 20 1995 212319
#> 15355 20 2000 251354
#> 15356 20 2005 290481
#> 15357 20 2010 332545
#> 15358 20 2015 380873
#> 15359 20 1950 43035
#> 15360 20 1955 49007
#> 15361 20 1960 55505
#> 15362 20 1965 64182
#> 15363 20 1970 72663
#> 15364 20 1975 82116
#> 15365 20 1980 95734
#> 15366 20 1985 104902
#> 15367 20 1990 112869
#> 15368 20 1995 110005
#> 15369 20 2000 110915
#> 15370 20 2005 96520
#> 15371 20 2010 94368
#> 15372 20 2015 103242
#> 15373 20 1950 869
#> 15374 20 1955 1283
#> 15375 20 1960 1777
#> 15376 20 1965 2472
#> 15377 20 1970 2917
#> 15378 20 1975 3672
#> 15379 20 1980 4409
#> 15380 20 1985 6103
#> 15381 20 1990 8602
#> 15382 20 1995 11261
#> 15383 20 2000 14214
#> 15384 20 2005 16534
#> 15385 20 2010 19256
#> 15386 20 2015 18805
#> 15387 20 1950 194146
#> 15388 20 1955 212301
#> 15389 20 1960 230834
#> 15390 20 1965 257101
#> 15391 20 1970 293972
#> 15392 20 1975 355943
#> 15393 20 1980 406553
#> 15394 20 1985 464644
#> 15395 20 1990 515740
#> 15396 20 1995 598522
#> 15397 20 2000 682808
#> 15398 20 2005 752227
#> 15399 20 2010 800835
#> 15400 20 2015 883581
#> 15401 20 1950 2512707
#> 15402 20 1955 2764912
#> 15403 20 1960 2970528
#> 15404 20 1965 3574050
#> 15405 20 1970 4118493
#> 15406 20 1975 5364538
#> 15407 20 1980 6208637
#> 15408 20 1985 7059493
#> 15409 20 1990 8199981
#> 15410 20 1995 10140119
#> 15411 20 2000 10150924
#> 15412 20 2005 9972081
#> 15413 20 2010 10658442
#> 15414 20 2015 11268977
#> 15415 20 1950 19700
#> 15416 20 1955 17760
#> 15417 20 1960 16783
#> 15418 20 1965 19340
#> 15419 20 1970 23619
#> 15420 20 1975 26627
#> 15421 20 1980 29301
#> 15422 20 1985 34758
#> 15423 20 1990 39853
#> 15424 20 1995 38326
#> 15425 20 2000 40151
#> 15426 20 2005 41397
#> 15427 20 2010 43037
#> 15428 20 2015 45513
#> 15429 20 1950 2784
#> 15430 20 1955 3156
#> 15431 20 1960 3593
#> 15432 20 1965 4102
#> 15433 20 1970 4607
#> 15434 20 1975 5739
#> 15435 20 1980 6433
#> 15436 20 1985 7711
#> 15437 20 1990 8897
#> 15438 20 1995 8867
#> 15439 20 2000 9557
#> 15440 20 2005 11492
#> 15441 20 2010 11312
#> 15442 20 2015 11858
#> 15443 20 1950 2317831
#> 15444 20 1955 2539495
#> 15445 20 1960 2800087
#> 15446 20 1965 3088201
#> 15447 20 1970 3426023
#> 15448 20 1975 3976740
#> 15449 20 1980 4518107
#> 15450 20 1985 5221851
#> 15451 20 1990 6061325
#> 15452 20 1995 7265685
#> 15453 20 2000 8468045
#> 15454 20 2005 9968033
#> 15455 20 2010 11670563
#> 15456 20 2015 13508780
#> 15457 20 1950 157098489
#> 15458 20 1955 166453048
#> 15459 20 1960 179623359
#> 15460 20 1965 178229517
#> 15461 20 1970 212196961
#> 15462 20 1975 271166846
#> 15463 20 1980 294084134
#> 15464 20 1985 340681495
#> 15465 20 1990 382811206
#> 15466 20 1995 401441355
#> 15467 20 2000 406877462
#> 15468 20 2005 445055360
#> 15469 20 2010 491521823
#> 15470 20 2015 467271493
#> 15471 20 1950 64876
#> 15472 20 1955 69768
#> 15473 20 1960 75150
#> 15474 20 1965 77692
#> 15475 20 1970 82874
#> 15476 20 1975 111466
#> 15477 20 1980 140007
#> 15478 20 1985 190575
#> 15479 20 1990 213594
#> 15480 20 1995 231787
#> 15481 20 2000 239330
#> 15482 20 2005 265354
#> 15483 20 2010 314283
#> 15484 20 2015 271197
#> 15485 20 1950 35494
#> 15486 20 1955 44218
#> 15487 20 1960 47938
#> 15488 20 1965 45744
#> 15489 20 1970 42234
#> 15490 20 1975 53885
#> 15491 20 1980 55758
#> 15492 20 1985 58436
#> 15493 20 1990 49716
#> 15494 20 1995 49150
#> 15495 20 2000 45248
#> 15496 20 2005 49953
#> 15497 20 2010 45391
#> 15498 20 2015 43460
#> 15499 20 1950 71190754
#> 15500 20 1955 67220734
#> 15501 20 1960 71836472
#> 15502 20 1965 66875671
#> 15503 20 1970 81164995
#> 15504 20 1975 86986071
#> 15505 20 1980 90286624
#> 15506 20 1985 90159066
#> 15507 20 1990 85252590
#> 15508 20 1995 83828741
#> 15509 20 2000 81568812
#> 15510 20 2005 83608290
#> 15511 20 2010 83434349
#> 15512 20 2015 77519171
#> 15513 20 1950 958167
#> 15514 20 1955 1003973
#> 15515 20 1960 1022646
#> 15516 20 1965 985295
#> 15517 20 1970 994751
#> 15518 20 1975 1497820
#> 15519 20 1980 1943414
#> 15520 20 1985 2276541
#> 15521 20 1990 2423156
#> 15522 20 1995 2512449
#> 15523 20 2000 2762210
#> 15524 20 2005 3021328
#> 15525 20 2010 3022955
#> 15526 20 2015 3087121
#> 15527 20 1950 543395
#> 15528 20 1955 586572
#> 15529 20 1960 638805
#> 15530 20 1965 702658
#> 15531 20 1970 768470
#> 15532 20 1975 895487
#> 15533 20 1980 1047728
#> 15534 20 1985 1112483
#> 15535 20 1990 1095725
#> 15536 20 1995 1391491
#> 15537 20 2000 1608905
#> 15538 20 2005 1871145
#> 15539 20 2010 2109108
#> 15540 20 2015 2495221
#> 15541 20 1950 1668001
#> 15542 20 1955 1656202
#> 15543 20 1960 1567777
#> 15544 20 1965 1643586
#> 15545 20 1970 1997956
#> 15546 20 1975 2761778
#> 15547 20 1980 3099333
#> 15548 20 1985 3431782
#> 15549 20 1990 3883746
#> 15550 20 1995 4197897
#> 15551 20 2000 4562672
#> 15552 20 2005 4774763
#> 15553 20 2010 4355319
#> 15554 20 2015 4501478
#> 15555 20 1950 13365376
#> 15556 20 1955 12042741
#> 15557 20 1960 12700861
#> 15558 20 1965 15305859
#> 15559 20 1970 18719176
#> 15560 20 1975 21871770
#> 15561 20 1980 24023609
#> 15562 20 1985 23972661
#> 15563 20 1990 21647237
#> 15564 20 1995 20308176
#> 15565 20 2000 21145014
#> 15566 20 2005 22841198
#> 15567 20 2010 24086378
#> 15568 20 2015 25454447
#> 15569 20 1950 44034
#> 15570 20 1955 44893
#> 15571 20 1960 48441
#> 15572 20 1965 56506
#> 15573 20 1970 65597
#> 15574 20 1975 77326
#> 15575 20 1980 83036
#> 15576 20 1985 97665
#> 15577 20 1990 133150
#> 15578 20 1995 160881
#> 15579 20 2000 185831
#> 15580 20 2005 191231
#> 15581 20 2010 216149
#> 15582 20 2015 252455
#> 15583 20 1950 816041
#> 15584 20 1955 834443
#> 15585 20 1960 886090
#> 15586 20 1965 937522
#> 15587 20 1970 967068
#> 15588 20 1975 1244728
#> 15589 20 1980 1335595
#> 15590 20 1985 1444639
#> 15591 20 1990 1612245
#> 15592 20 1995 1936322
#> 15593 20 2000 2137903
#> 15594 20 2005 2152263
#> 15595 20 2010 2388972
#> 15596 20 2015 2714211
#> 15597 20 1950 796000
#> 15598 20 1955 798578
#> 15599 20 1960 804793
#> 15600 20 1965 911650
#> 15601 20 1970 1179486
#> 15602 20 1975 1136029
#> 15603 20 1980 1196677
#> 15604 20 1985 1270410
#> 15605 20 1990 1261657
#> 15606 20 1995 1108650
#> 15607 20 2000 957206
#> 15608 20 2005 965781
#> 15609 20 2010 1027223
#> 15610 20 2015 1063087
#> 15611 20 1950 5317
#> 15612 20 1955 5646
#> 15613 20 1960 6248
#> 15614 20 1965 7685
#> 15615 20 1970 8997
#> 15616 20 1975 10986
#> 15617 20 1980 12030
#> 15618 20 1985 13605
#> 15619 20 1990 15709
#> 15620 20 1995 19764
#> 15621 20 2000 17946
#> 15622 20 2005 18435
#> 15623 20 2010 19065
#> 15624 20 2015 22441
#> 15625 20 1950 139999
#> 15626 20 1955 137989
#> 15627 20 1960 152006
#> 15628 20 1965 187025
#> 15629 20 1970 230198
#> 15630 20 1975 256298
#> 15631 20 1980 267757
#> 15632 20 1985 289311
#> 15633 20 1990 274581
#> 15634 20 1995 284900
#> 15635 20 2000 253320
#> 15636 20 2005 287711
#> 15637 20 2010 316240
#> 15638 20 2015 339362
#> 15639 20 1950 121255
#> 15640 20 1955 132945
#> 15641 20 1960 148147
#> 15642 20 1965 167309
#> 15643 20 1970 176642
#> 15644 20 1975 259927
#> 15645 20 1980 310432
#> 15646 20 1985 327062
#> 15647 20 1990 362292
#> 15648 20 1995 432087
#> 15649 20 2000 498832
#> 15650 20 2005 561543
#> 15651 20 2010 589885
#> 15652 20 2015 591077
#> 15653 20 1950 223990
#> 15654 20 1955 261806
#> 15655 20 1960 301781
#> 15656 20 1965 357706
#> 15657 20 1970 382416
#> 15658 20 1975 419680
#> 15659 20 1980 435166
#> 15660 20 1985 538532
#> 15661 20 1990 613588
#> 15662 20 1995 707876
#> 15663 20 2000 873191
#> 15664 20 2005 1028248
#> 15665 20 2010 1231575
#> 15666 20 2015 1528102
#> 15667 20 1950 3310859
#> 15668 20 1955 3610151
#> 15669 20 1960 4015648
#> 15670 20 1965 4464172
#> 15671 20 1970 4871206
#> 15672 20 1975 5311064
#> 15673 20 1980 6239347
#> 15674 20 1985 6996802
#> 15675 20 1990 7995190
#> 15676 20 1995 9537752
#> 15677 20 2000 11266776
#> 15678 20 2005 12810612
#> 15679 20 2010 14102239
#> 15680 20 2015 15671475
#> 15681 20 1950 4563587
#> 15682 20 1955 4934118
#> 15683 20 1960 5082385
#> 15684 20 1965 5271503
#> 15685 20 1970 6522003
#> 15686 20 1975 8014174
#> 15687 20 1980 9623738
#> 15688 20 1985 11302472
#> 15689 20 1990 12774045
#> 15690 20 1995 14288343
#> 15691 20 2000 16612513
#> 15692 20 2005 19001381
#> 15693 20 2010 20280404
#> 15694 20 2015 19953218
#> 15695 20 1950 5486743
#> 15696 20 1955 5170654
#> 15697 20 1960 5317092
#> 15698 20 1965 5874151
#> 15699 20 1970 6847486
#> 15700 20 1975 6323548
#> 15701 20 1980 6648183
#> 15702 20 1985 7383717
#> 15703 20 1990 7138693
#> 15704 20 1995 6391197
#> 15705 20 2000 5833511
#> 15706 20 2005 6233119
#> 15707 20 2010 6733820
#> 15708 20 2015 6661665
#> 15709 20 1950 231764
#> 15710 20 1955 206038
#> 15711 20 1960 207697
#> 15712 20 1965 255976
#> 15713 20 1970 314440
#> 15714 20 1975 302338
#> 15715 20 1980 309760
#> 15716 20 1985 316162
#> 15717 20 1990 337815
#> 15718 20 1995 320408
#> 15719 20 2000 277065
#> 15720 20 2005 274541
#> 15721 20 2010 309147
#> 15722 20 2015 348193
#> 15723 20 1950 1014071
#> 15724 20 1955 986331
#> 15725 20 1960 1095283
#> 15726 20 1965 1309439
#> 15727 20 1970 1712655
#> 15728 20 1975 1840665
#> 15729 20 1980 2016917
#> 15730 20 1985 2186900
#> 15731 20 1990 2248853
#> 15732 20 1995 2396168
#> 15733 20 2000 2288480
#> 15734 20 2005 2549951
#> 15735 20 2010 2841419
#> 15736 20 2015 2990889
#> 15737 20 1950 39902
#> 15738 20 1955 43718
#> 15739 20 1960 48914
#> 15740 20 1965 55343
#> 15741 20 1970 61832
#> 15742 20 1975 73298
#> 15743 20 1980 94783
#> 15744 20 1985 115159
#> 15745 20 1990 138292
#> 15746 20 1995 148715
#> 15747 20 2000 237508
#> 15748 20 2005 264560
#> 15749 20 2010 372612
#> 15750 20 2015 381648
#> 15751 20 1950 3248719
#> 15752 20 1955 3604940
#> 15753 20 1960 4038352
#> 15754 20 1965 4576253
#> 15755 20 1970 4749855
#> 15756 20 1975 5033666
#> 15757 20 1980 6543764
#> 15758 20 1985 8191985
#> 15759 20 1990 9390054
#> 15760 20 1995 10440379
#> 15761 20 2000 12242980
#> 15762 20 2005 14578072
#> 15763 20 2010 17142979
#> 15764 20 2015 18337373
#> 15765 20 1950 74207
#> 15766 20 1955 83864
#> 15767 20 1960 96760
#> 15768 20 1965 112364
#> 15769 20 1970 130883
#> 15770 20 1975 155774
#> 15771 20 1980 185240
#> 15772 20 1985 215378
#> 15773 20 1990 241949
#> 15774 20 1995 267558
#> 15775 20 2000 282187
#> 15776 20 2005 293980
#> 15777 20 2010 309846
#> 15778 20 2015 323373
#> 15779 20 1950 151949
#> 15780 20 1955 162694
#> 15781 20 1960 175605
#> 15782 20 1965 189292
#> 15783 20 1970 214739
#> 15784 20 1975 263491
#> 15785 20 1980 299652
#> 15786 20 1985 342783
#> 15787 20 1990 394706
#> 15788 20 1995 459621
#> 15789 20 2000 529777
#> 15790 20 2005 592030
#> 15791 20 2010 636016
#> 15792 20 2015 709285
#> 15793 20 1950 133057
#> 15794 20 1955 128582
#> 15795 20 1960 150488
#> 15796 20 1965 169977
#> 15797 20 1970 206109
#> 15798 20 1975 256934
#> 15799 20 1980 292656
#> 15800 20 1985 339734
#> 15801 20 1990 387042
#> 15802 20 1995 409383
#> 15803 20 2000 479637
#> 15804 20 2005 567980
#> 15805 20 2010 622162
#> 15806 20 2015 651882
#> 15807 20 1950 661538
#> 15808 20 1955 764925
#> 15809 20 1960 854776
#> 15810 20 1965 949791
#> 15811 20 1970 1114401
#> 15812 20 1975 1345199
#> 15813 20 1980 1567669
#> 15814 20 1985 1866103
#> 15815 20 1990 2117345
#> 15816 20 1995 2290092
#> 15817 20 2000 2496851
#> 15818 20 2005 2575606
#> 15819 20 2010 2761466
#> 15820 20 2015 2809958
#> 15821 20 1950 1450332
#> 15822 20 1955 1842267
#> 15823 20 1960 2141258
#> 15824 20 1965 2534860
#> 15825 20 1970 2973916
#> 15826 20 1975 4055389
#> 15827 20 1980 4618682
#> 15828 20 1985 5260370
#> 15829 20 1990 5855243
#> 15830 20 1995 6458095
#> 15831 20 2000 7208341
#> 15832 20 2005 7954003
#> 15833 20 2010 8501025
#> 15834 20 2015 9609973
#> 15835 20 1950 2369001
#> 15836 20 1955 2385000
#> 15837 20 1960 2217682
#> 15838 20 1965 1938027
#> 15839 20 1970 2816083
#> 15840 20 1975 3386800
#> 15841 20 1980 3472929
#> 15842 20 1985 2708368
#> 15843 20 1990 2500936
#> 15844 20 1995 2803047
#> 15845 20 2000 3174834
#> 15846 20 2005 3323568
#> 15847 20 2010 2863053
#> 15848 20 2015 2493396
#> 15849 20 1950 21701
#> 15850 20 1955 23189
#> 15851 20 1960 25244
#> 15852 20 1965 28381
#> 15853 20 1970 29142
#> 15854 20 1975 36767
#> 15855 20 1980 43049
#> 15856 20 1985 50910
#> 15857 20 1990 57129
#> 15858 20 1995 51991
#> 15859 20 2000 48990
#> 15860 20 2005 53125
#> 15861 20 2010 54768
#> 15862 20 2015 58849
#> 15863 20 1950 760001
#> 15864 20 1955 746351
#> 15865 20 1960 708898
#> 15866 20 1965 636737
#> 15867 20 1970 629510
#> 15868 20 1975 705030
#> 15869 20 1980 759329
#> 15870 20 1985 799293
#> 15871 20 1990 766427
#> 15872 20 1995 825097
#> 15873 20 2000 797974
#> 15874 20 2005 718266
#> 15875 20 2010 598954
#> 15876 20 2015 543476
#> 15877 20 1950 192800
#> 15878 20 1955 179030
#> 15879 20 1960 170978
#> 15880 20 1965 206058
#> 15881 20 1970 233230
#> 15882 20 1975 289794
#> 15883 20 1980 271172
#> 15884 20 1985 282896
#> 15885 20 1990 286815
#> 15886 20 1995 297765
#> 15887 20 2000 300389
#> 15888 20 2005 292515
#> 15889 20 2010 282041
#> 15890 20 2015 279957
#> 15891 20 1950 2145
#> 15892 20 1955 3347
#> 15893 20 1960 4554
#> 15894 20 1965 7878
#> 15895 20 1970 12453
#> 15896 20 1975 18668
#> 15897 20 1980 25794
#> 15898 20 1985 35833
#> 15899 20 1990 36219
#> 15900 20 1995 40720
#> 15901 20 2000 39678
#> 15902 20 2005 69938
#> 15903 20 2010 192107
#> 15904 20 2015 260847
#> 15905 20 1950 1480210
#> 15906 20 1955 1755498
#> 15907 20 1960 2189310
#> 15908 20 1965 2286482
#> 15909 20 1970 2695249
#> 15910 20 1975 3175062
#> 15911 20 1980 4144098
#> 15912 20 1985 4319517
#> 15913 20 1990 4412800
#> 15914 20 1995 4446616
#> 15915 20 2000 3964365
#> 15916 20 2005 3796774
#> 15917 20 2010 3065116
#> 15918 20 2015 3572774
#> 15919 20 1950 224753
#> 15920 20 1955 231954
#> 15921 20 1960 270421
#> 15922 20 1965 230144
#> 15923 20 1970 233491
#> 15924 20 1975 353475
#> 15925 20 1980 367257
#> 15926 20 1985 351536
#> 15927 20 1990 292246
#> 15928 20 1995 319051
#> 15929 20 2000 357293
#> 15930 20 2005 398476
#> 15931 20 2010 411916
#> 15932 20 2015 332072
#> 15933 20 1950 21445
#> 15934 20 1955 23859
#> 15935 20 1960 24487
#> 15936 20 1965 29279
#> 15937 20 1970 32596
#> 15938 20 1975 44355
#> 15939 20 1980 50353
#> 15940 20 1985 57935
#> 15941 20 1990 66404
#> 15942 20 1995 60854
#> 15943 20 2000 59044
#> 15944 20 2005 65159
#> 15945 20 2010 65676
#> 15946 20 2015 59402
#> 15947 20 1950 1574697
#> 15948 20 1955 1592980
#> 15949 20 1960 1617961
#> 15950 20 1965 1280035
#> 15951 20 1970 1586276
#> 15952 20 1975 1888148
#> 15953 20 1980 1810223
#> 15954 20 1985 1409261
#> 15955 20 1990 1947519
#> 15956 20 1995 1885863
#> 15957 20 2000 1862269
#> 15958 20 2005 1600788
#> 15959 20 2010 1488824
#> 15960 20 2015 1148230
#> 15961 20 1950 12150037
#> 15962 20 1955 9987024
#> 15963 20 1960 12355781
#> 15964 20 1965 6772302
#> 15965 20 1970 10330129
#> 15966 20 1975 12018232
#> 15967 20 1980 12985248
#> 15968 20 1985 11756428
#> 15969 20 1990 9456532
#> 15970 20 1995 10251670
#> 15971 20 2000 10908991
#> 15972 20 2005 12255852
#> 15973 20 2010 12501705
#> 15974 20 2015 8925336
#> 15975 20 1950 220142
#> 15976 20 1955 237660
#> 15977 20 1960 230175
#> 15978 20 1965 223840
#> 15979 20 1970 327590
#> 15980 20 1975 407020
#> 15981 20 1980 477789
#> 15982 20 1985 514040
#> 15983 20 1990 597120
#> 15984 20 1995 559288
#> 15985 20 2000 724996
#> 15986 20 2005 968773
#> 15987 20 2010 1100775
#> 15988 20 2015 1005964
#> 15989 20 1950 8392
#> 15990 20 1955 8390
#> 15991 20 1960 6971
#> 15992 20 1965 6965
#> 15993 20 1970 7181
#> 15994 20 1975 8627
#> 15995 20 1980 10369
#> 15996 20 1985 11809
#> 15997 20 1990 12818
#> 15998 20 1995 13091
#> 15999 20 2000 13585
#> 16000 20 2005 15992
#> 16001 20 2010 14297
#> 16002 20 2015 16439
#> 16003 20 1950 5075
#> 16004 20 1955 5191
#> 16005 20 1960 5901
#> 16006 20 1965 5947
#> 16007 20 1970 7330
#> 16008 20 1975 8482
#> 16009 20 1980 9935
#> 16010 20 1985 11186
#> 16011 20 1990 10440
#> 16012 20 1995 10518
#> 16013 20 2000 10289
#> 16014 20 2005 10265
#> 16015 20 2010 9856
#> 16016 20 2015 9523
#> 16017 20 1950 7269
#> 16018 20 1955 7216
#> 16019 20 1960 9116
#> 16020 20 1965 9763
#> 16021 20 1970 9360
#> 16022 20 1975 12343
#> 16023 20 1980 13621
#> 16024 20 1985 16095
#> 16025 20 1990 16360
#> 16026 20 1995 15638
#> 16027 20 2000 14408
#> 16028 20 2005 14101
#> 16029 20 2010 14678
#> 16030 20 2015 16982
#> 16031 20 1950 7545
#> 16032 20 1955 7390
#> 16033 20 1960 8104
#> 16034 20 1965 6916
#> 16035 20 1970 5873
#> 16036 20 1975 6647
#> 16037 20 1980 7687
#> 16038 20 1985 8977
#> 16039 20 1990 9930
#> 16040 20 1995 11036
#> 16041 20 2000 15135
#> 16042 20 2005 13856
#> 16043 20 2010 17210
#> 16044 20 2015 17181
#> 16045 20 1950 265606
#> 16046 20 1955 301880
#> 16047 20 1960 342998
#> 16048 20 1965 406746
#> 16049 20 1970 500931
#> 16050 20 1975 633380
#> 16051 20 1980 823423
#> 16052 20 1985 1162415
#> 16053 20 1990 1552357
#> 16054 20 1995 1338624
#> 16055 20 2000 1799328
#> 16056 20 2005 2047457
#> 16057 20 2010 2456153
#> 16058 20 2015 2542412
#> 16059 20 1950 218151
#> 16060 20 1955 242936
#> 16061 20 1960 271953
#> 16062 20 1965 301638
#> 16063 20 1970 342895
#> 16064 20 1975 427348
#> 16065 20 1980 461747
#> 16066 20 1985 534744
#> 16067 20 1990 643472
#> 16068 20 1995 788938
#> 16069 20 2000 922947
#> 16070 20 2005 1100833
#> 16071 20 2010 1235839
#> 16072 20 2015 1384608
#> 16073 20 1950 689606
#> 16074 20 1955 691161
#> 16075 20 1960 611360
#> 16076 20 1965 511343
#> 16077 20 1970 710209
#> 16078 20 1975 792403
#> 16079 20 1980 679115
#> 16080 20 1985 661833
#> 16081 20 1990 678480
#> 16082 20 1995 741952
#> 16083 20 2000 689215
#> 16084 20 2005 643866
#> 16085 20 2010 635182
#> 16086 20 2015 577124
#> 16087 20 1950 3008
#> 16088 20 1955 3064
#> 16089 20 1960 3186
#> 16090 20 1965 3304
#> 16091 20 1970 2986
#> 16092 20 1975 5495
#> 16093 20 1980 6303
#> 16094 20 1985 7310
#> 16095 20 1990 6546
#> 16096 20 1995 7311
#> 16097 20 2000 7490
#> 16098 20 2005 8218
#> 16099 20 2010 7530
#> 16100 20 2015 6543
#> 16101 20 1950 180180
#> 16102 20 1955 190032
#> 16103 20 1960 202947
#> 16104 20 1965 219714
#> 16105 20 1970 234242
#> 16106 20 1975 245059
#> 16107 20 1980 268206
#> 16108 20 1985 306518
#> 16109 20 1990 359918
#> 16110 20 1995 380967
#> 16111 20 2000 419722
#> 16112 20 2005 529668
#> 16113 20 2010 592718
#> 16114 20 2015 664618
#> 16115 20 1950 84501
#> 16116 20 1955 111000
#> 16117 20 1960 138604
#> 16118 20 1965 138922
#> 16119 20 1970 203823
#> 16120 20 1975 249019
#> 16121 20 1980 296279
#> 16122 20 1985 301480
#> 16123 20 1990 310022
#> 16124 20 1995 271755
#> 16125 20 2000 254954
#> 16126 20 2005 293670
#> 16127 20 2010 332361
#> 16128 20 2015 376772
#> 16129 20 1950 300607
#> 16130 20 1955 301348
#> 16131 20 1960 288488
#> 16132 20 1965 315905
#> 16133 20 1970 362300
#> 16134 20 1975 449341
#> 16135 20 1980 442869
#> 16136 20 1985 402410
#> 16137 20 1990 371170
#> 16138 20 1995 428780
#> 16139 20 2000 478281
#> 16140 20 2005 449292
#> 16141 20 2010 410391
#> 16142 20 2015 364080
#> 16143 20 1950 134101
#> 16144 20 1955 130447
#> 16145 20 1960 124060
#> 16146 20 1965 119996
#> 16147 20 1970 142327
#> 16148 20 1975 148603
#> 16149 20 1980 146734
#> 16150 20 1985 149095
#> 16151 20 1990 151176
#> 16152 20 1995 141692
#> 16153 20 2000 151977
#> 16154 20 2005 142258
#> 16155 20 2010 129926
#> 16156 20 2015 107836
#> 16157 20 1950 7700
#> 16158 20 1955 9742
#> 16159 20 1960 9912
#> 16160 20 1965 12673
#> 16161 20 1970 14137
#> 16162 20 1975 15053
#> 16163 20 1980 19026
#> 16164 20 1985 22854
#> 16165 20 1990 26656
#> 16166 20 1995 35857
#> 16167 20 2000 41522
#> 16168 20 2005 43364
#> 16169 20 2010 45794
#> 16170 20 2015 52487
#> 16171 20 1950 195293
#> 16172 20 1955 208215
#> 16173 20 1960 238279
#> 16174 20 1965 252361
#> 16175 20 1970 295348
#> 16176 20 1975 337538
#> 16177 20 1980 558078
#> 16178 20 1985 597024
#> 16179 20 1990 659162
#> 16180 20 1995 677255
#> 16181 20 2000 733514
#> 16182 20 2005 824495
#> 16183 20 2010 1015624
#> 16184 20 2015 1229436
#> 16185 20 1950 1199886
#> 16186 20 1955 1302201
#> 16187 20 1960 1426429
#> 16188 20 1965 1631984
#> 16189 20 1970 1852571
#> 16190 20 1975 2381088
#> 16191 20 1980 2701334
#> 16192 20 1985 3074403
#> 16193 20 1990 3440744
#> 16194 20 1995 4030939
#> 16195 20 2000 4490551
#> 16196 20 2005 4940183
#> 16197 20 2010 5164779
#> 16198 20 2015 5158967
#> 16199 20 1950 10262262
#> 16200 20 1955 11034600
#> 16201 20 1960 12455762
#> 16202 20 1965 13780487
#> 16203 20 1970 16493330
#> 16204 20 1975 19857015
#> 16205 20 1980 22655856
#> 16206 20 1985 25989121
#> 16207 20 1990 27875754
#> 16208 20 1995 29164377
#> 16209 20 2000 32395750
#> 16210 20 2005 34689849
#> 16211 20 2010 35328820
#> 16212 20 2015 35312980
#> 16213 20 1950 223601
#> 16214 20 1955 249553
#> 16215 20 1960 276475
#> 16216 20 1965 306787
#> 16217 20 1970 328813
#> 16218 20 1975 321181
#> 16219 20 1980 389707
#> 16220 20 1985 472967
#> 16221 20 1990 512802
#> 16222 20 1995 480783
#> 16223 20 2000 583042
#> 16224 20 2005 698028
#> 16225 20 2010 916006
#> 16226 20 2015 1115078
#> 16227 20 1950 46628136
#> 16228 20 1955 49761909
#> 16229 20 1960 53836597
#> 16230 20 1965 55849108
#> 16231 20 1970 62450237
#> 16232 20 1975 76917887
#> 16233 20 1980 88682342
#> 16234 20 1985 101006398
#> 16235 20 1990 111373151
#> 16236 20 1995 123228047
#> 16237 20 2000 138429583
#> 16238 20 2005 157382669
#> 16239 20 2010 168703106
#> 16240 20 2015 173009888
#> 16241 20 1950 14857298
#> 16242 20 1955 16865914
#> 16243 20 1960 18217836
#> 16244 20 1965 19094019
#> 16245 20 1970 21487376
#> 16246 20 1975 28008037
#> 16247 20 1980 33811054
#> 16248 20 1985 38788014
#> 16249 20 1990 43418225
#> 16250 20 1995 46896511
#> 16251 20 2000 49328432
#> 16252 20 2005 52199537
#> 16253 20 2010 53227335
#> 16254 20 2015 55611233
#> 16255 20 1950 1365673
#> 16256 20 1955 1479992
#> 16257 20 1960 1620453
#> 16258 20 1965 1844427
#> 16259 20 1970 2100037
#> 16260 20 1975 2679513
#> 16261 20 1980 3047009
#> 16262 20 1985 3467273
#> 16263 20 1990 3921118
#> 16264 20 1995 4594633
#> 16265 20 2000 5141589
#> 16266 20 2005 5665627
#> 16267 20 2010 5954771
#> 16268 20 2015 6008000
#> 16269 20 1950 44736293
#> 16270 20 1955 47984412
#> 16271 20 1960 51437505
#> 16272 20 1965 54096804
#> 16273 20 1970 60290064
#> 16274 20 1975 73635343
#> 16275 20 1980 84627070
#> 16276 20 1985 96427345
#> 16277 20 1990 107050490
#> 16278 20 1995 118631850
#> 16279 20 2000 133486394
#> 16280 20 2005 151681974
#> 16281 20 2010 161961483
#> 16282 20 2015 166334579
#> 16283 20 1950 9877580
#> 16284 20 1955 9903208
#> 16285 20 1960 9438733
#> 16286 20 1965 8754466
#> 16287 20 1970 9840766
#> 16288 20 1975 10075557
#> 16289 20 1980 10745665
#> 16290 20 1985 11560310
#> 16291 20 1990 11536656
#> 16292 20 1995 11312973
#> 16293 20 2000 10446278
#> 16294 20 2005 9438672
#> 16295 20 2010 8588501
#> 16296 20 2015 7880254
#> 16297 20 1950 2654573
#> 16298 20 1955 2650027
#> 16299 20 1960 2288811
#> 16300 20 1965 2377552
#> 16301 20 1970 2552347
#> 16302 20 1975 2630427
#> 16303 20 1980 3027304
#> 16304 20 1985 3253550
#> 16305 20 1990 3262903
#> 16306 20 1995 3339944
#> 16307 20 2000 3296833
#> 16308 20 2005 2884374
#> 16309 20 2010 2503970
#> 16310 20 2015 2238600
#> 16311 20 1950 677433
#> 16312 20 1955 727803
#> 16313 20 1960 809900
#> 16314 20 1965 934648
#> 16315 20 1970 1152309
#> 16316 20 1975 1285793
#> 16317 20 1980 1502798
#> 16318 20 1985 1558440
#> 16319 20 1990 1662320
#> 16320 20 1995 1656580
#> 16321 20 2000 1730296
#> 16322 20 2005 1772917
#> 16323 20 2010 1586963
#> 16324 20 2015 1534643
#> 16325 20 1950 71941
#> 16326 20 1955 83231
#> 16327 20 1960 95925
#> 16328 20 1965 104249
#> 16329 20 1970 97876
#> 16330 20 1975 105325
#> 16331 20 1980 121333
#> 16332 20 1985 159989
#> 16333 20 1990 192550
#> 16334 20 1995 230769
#> 16335 20 2000 286810
#> 16336 20 2005 320281
#> 16337 20 2010 389249
#> 16338 20 2015 483725
#> 16339 20 1950 15784990
#> 16340 20 1955 17325241
#> 16341 20 1960 19049038
#> 16342 20 1965 21319156
#> 16343 20 1970 23942155
#> 16344 20 1975 27621445
#> 16345 20 1980 31789614
#> 16346 20 1985 36598624
#> 16347 20 1990 42436323
#> 16348 20 1995 50042226
#> 16349 20 2000 58726206
#> 16350 20 2005 68189411
#> 16351 20 2010 77252449
#> 16352 20 2015 87685480
#> 16353 20 1950 494912
#> 16354 20 1955 561409
#> 16355 20 1960 640742
#> 16356 20 1965 737015
#> 16357 20 1970 867505
#> 16358 20 1975 1027305
#> 16359 20 1980 1230117
#> 16360 20 1985 1493029
#> 16361 20 1990 1813487
#> 16362 20 1995 2193827
#> 16363 20 2000 2500549
#> 16364 20 2005 2796763
#> 16365 20 2010 2980602
#> 16366 20 2015 3545481
#> 16367 20 1950 17999
#> 16368 20 1955 20014
#> 16369 20 1960 20993
#> 16370 20 1965 23288
#> 16371 20 1970 26797
#> 16372 20 1975 26792
#> 16373 20 1980 35234
#> 16374 20 1985 41286
#> 16375 20 1990 41062
#> 16376 20 1995 41508
#> 16377 20 2000 38821
#> 16378 20 2005 42497
#> 16379 20 2010 44744
#> 16380 20 2015 47944
#> 16381 20 1950 24089
#> 16382 20 1955 26426
#> 16383 20 1960 29495
#> 16384 20 1965 31529
#> 16385 20 1970 37439
#> 16386 20 1975 42438
#> 16387 20 1980 50568
#> 16388 20 1985 58709
#> 16389 20 1990 75716
#> 16390 20 1995 82569
#> 16391 20 2000 98943
#> 16392 20 2005 115059
#> 16393 20 2010 140244
#> 16394 20 2015 149051
#> 16395 20 1950 463623
#> 16396 20 1955 428210
#> 16397 20 1960 460960
#> 16398 20 1965 595624
#> 16399 20 1970 662961
#> 16400 20 1975 565124
#> 16401 20 1980 556335
#> 16402 20 1985 578523
#> 16403 20 1990 607014
#> 16404 20 1995 582993
#> 16405 20 2000 518772
#> 16406 20 2005 525027
#> 16407 20 2010 625421
#> 16408 20 2015 697931
#> 16409 20 1950 348500
#> 16410 20 1955 373356
#> 16411 20 1960 386601
#> 16412 20 1965 474314
#> 16413 20 1970 512286
#> 16414 20 1975 468019
#> 16415 20 1980 461268
#> 16416 20 1985 511404
#> 16417 20 1990 513503
#> 16418 20 1995 457802
#> 16419 20 2000 411713
#> 16420 20 2005 441926
#> 16421 20 2010 474669
#> 16422 20 2015 510055
#> 16423 20 1950 320389
#> 16424 20 1955 341458
#> 16425 20 1960 341736
#> 16426 20 1965 386051
#> 16427 20 1970 481353
#> 16428 20 1975 688912
#> 16429 20 1980 795741
#> 16430 20 1985 950673
#> 16431 20 1990 1127857
#> 16432 20 1995 1405888
#> 16433 20 2000 1690918
#> 16434 20 2005 1943569
#> 16435 20 2010 2178518
#> 16436 20 2015 1552985
#> 16437 20 1950 118529
#> 16438 20 1955 130747
#> 16439 20 1960 135962
#> 16440 20 1965 135022
#> 16441 20 1970 155494
#> 16442 20 1975 189491
#> 16443 20 1980 175635
#> 16444 20 1985 171032
#> 16445 20 1990 173418
#> 16446 20 1995 153953
#> 16447 20 2000 162596
#> 16448 20 2005 168273
#> 16449 20 2010 164531
#> 16450 20 2015 153932
#> 16451 20 1950 162587
#> 16452 20 1955 174702
#> 16453 20 1960 197095
#> 16454 20 1965 149444
#> 16455 20 1970 166088
#> 16456 20 1975 290219
#> 16457 20 1980 359873
#> 16458 20 1985 433553
#> 16459 20 1990 460960
#> 16460 20 1995 495536
#> 16461 20 2000 545371
#> 16462 20 2005 677991
#> 16463 20 2010 834537
#> 16464 20 2015 844791
#> 16465 20 1950 1918541
#> 16466 20 1955 2206386
#> 16467 20 1960 2506824
#> 16468 20 1965 2574698
#> 16469 20 1970 3035977
#> 16470 20 1975 3776353
#> 16471 20 1980 4566344
#> 16472 20 1985 5162587
#> 16473 20 1990 5835887
#> 16474 20 1995 5889534
#> 16475 20 2000 5330494
#> 16476 20 2005 5280378
#> 16477 20 2010 4746067
#> 16478 20 2015 4829272
#> 16479 20 1950 40502
#> 16480 20 1955 41442
#> 16481 20 1960 45244
#> 16482 20 1965 49651
#> 16483 20 1970 57487
#> 16484 20 1975 60279
#> 16485 20 1980 63414
#> 16486 20 1985 66692
#> 16487 20 1990 80030
#> 16488 20 1995 84981
#> 16489 20 2000 52661
#> 16490 20 2005 89018
#> 16491 20 2010 90990
#> 16492 20 2015 108016
#> 16493 20 1950 118676
#> 16494 20 1955 125962
#> 16495 20 1960 135420
#> 16496 20 1965 146445
#> 16497 20 1970 178993
#> 16498 20 1975 200898
#> 16499 20 1980 225810
#> 16500 20 1985 274707
#> 16501 20 1990 327538
#> 16502 20 1995 383487
#> 16503 20 2000 478555
#> 16504 20 2005 547450
#> 16505 20 2010 610997
#> 16506 20 2015 660741
#> 16507 20 1950 4172
#> 16508 20 1955 4953
#> 16509 20 1960 5229
#> 16510 20 1965 6042
#> 16511 20 1970 6751
#> 16512 20 1975 7005
#> 16513 20 1980 8181
#> 16514 20 1985 9463
#> 16515 20 1990 11345
#> 16516 20 1995 8480
#> 16517 20 2000 9123
#> 16518 20 2005 9551
#> 16519 20 2010 8357
#> 16520 20 2015 9773
#> 16521 20 1950 52983
#> 16522 20 1955 54534
#> 16523 20 1960 64223
#> 16524 20 1965 76780
#> 16525 20 1970 81386
#> 16526 20 1975 99614
#> 16527 20 1980 115282
#> 16528 20 1985 129161
#> 16529 20 1990 103901
#> 16530 20 1995 106639
#> 16531 20 2000 112511
#> 16532 20 2005 135978
#> 16533 20 2010 119624
#> 16534 20 2015 96556
#> 16535 20 1950 298312
#> 16536 20 1955 324979
#> 16537 20 1960 301496
#> 16538 20 1965 320241
#> 16539 20 1970 334619
#> 16540 20 1975 518642
#> 16541 20 1980 600242
#> 16542 20 1985 705173
#> 16543 20 1990 773254
#> 16544 20 1995 835668
#> 16545 20 2000 928181
#> 16546 20 2005 1024728
#> 16547 20 2010 1049389
#> 16548 20 2015 925389
#> 16549 20 1950 1980774
#> 16550 20 1955 2343207
#> 16551 20 1960 2290590
#> 16552 20 1965 2442407
#> 16553 20 1970 2770755
#> 16554 20 1975 3473307
#> 16555 20 1980 3947533
#> 16556 20 1985 4421560
#> 16557 20 1990 4931201
#> 16558 20 1995 5531128
#> 16559 20 2000 6018046
#> 16560 20 2005 6322083
#> 16561 20 2010 6271432
#> 16562 20 2015 6315166
#> 16563 20 1950 121399
#> 16564 20 1955 121431
#> 16565 20 1960 146173
#> 16566 20 1965 112759
#> 16567 20 1970 141352
#> 16568 20 1975 225109
#> 16569 20 1980 289298
#> 16570 20 1985 326680
#> 16571 20 1990 342309
#> 16572 20 1995 375982
#> 16573 20 2000 427114
#> 16574 20 2005 459553
#> 16575 20 2010 540795
#> 16576 20 2015 554364
#> 16577 20 1950 479035
#> 16578 20 1955 539865
#> 16579 20 1960 519880
#> 16580 20 1965 665979
#> 16581 20 1970 785151
#> 16582 20 1975 935888
#> 16583 20 1980 1076836
#> 16584 20 1985 1262666
#> 16585 20 1990 1527508
#> 16586 20 1995 1807307
#> 16587 20 2000 2147765
#> 16588 20 2005 2568163
#> 16589 20 2010 3063984
#> 16590 20 2015 3699871
#> 16591 20 1950 3927272
#> 16592 20 1955 3066165
#> 16593 20 1960 4395511
#> 16594 20 1965 2888348
#> 16595 20 1970 3283206
#> 16596 20 1975 4141468
#> 16597 20 1980 3948199
#> 16598 20 1985 3736951
#> 16599 20 1990 3354886
#> 16600 20 1995 3538526
#> 16601 20 2000 3594122
#> 16602 20 2005 3761203
#> 16603 20 2010 3613759
#> 16604 20 2015 2721509
#> 16605 20 1950 5973
#> 16606 20 1955 6716
#> 16607 20 1960 7603
#> 16608 20 1965 17652
#> 16609 20 1970 26844
#> 16610 20 1975 72802
#> 16611 20 1980 127052
#> 16612 20 1985 128836
#> 16613 20 1990 153889
#> 16614 20 1995 218523
#> 16615 20 2000 291671
#> 16616 20 2005 463047
#> 16617 20 2010 786464
#> 16618 20 2015 605425
#> 16619 20 1950 3444208
#> 16620 20 1955 3219329
#> 16621 20 1960 3314065
#> 16622 20 1965 3588544
#> 16623 20 1970 4248607
#> 16624 20 1975 3815326
#> 16625 20 1980 4104088
#> 16626 20 1985 4759216
#> 16627 20 1990 4563864
#> 16628 20 1995 3902385
#> 16629 20 2000 3505383
#> 16630 20 2005 3906577
#> 16631 20 2010 4284076
#> 16632 20 2015 4174572
#> 16633 20 1950 673851
#> 16634 20 1955 769171
#> 16635 20 1960 880748
#> 16636 20 1965 1017861
#> 16637 20 1970 1196005
#> 16638 20 1975 1355369
#> 16639 20 1980 1608373
#> 16640 20 1985 1899152
#> 16641 20 1990 2247346
#> 16642 20 1995 2708990
#> 16643 20 2000 3165784
#> 16644 20 2005 3609526
#> 16645 20 2010 4141791
#> 16646 20 2015 4791708
#> 16647 20 1950 1724
#> 16648 20 1955 1971
#> 16649 20 1960 2116
#> 16650 20 1965 4902
#> 16651 20 1970 6316
#> 16652 20 1975 5229
#> 16653 20 1980 6730
#> 16654 20 1985 8454
#> 16655 20 1990 7280
#> 16656 20 1995 7734
#> 16657 20 2000 5873
#> 16658 20 2005 7344
#> 16659 20 2010 5843
#> 16660 20 2015 6673
#> 16661 20 1950 12249725
#> 16662 20 1955 10914078
#> 16663 20 1960 11516065
#> 16664 20 1965 13905275
#> 16665 20 1970 16851887
#> 16666 20 1975 19678388
#> 16667 20 1980 21585153
#> 16668 20 1985 21467076
#> 16669 20 1990 19506841
#> 16670 20 1995 18287918
#> 16671 20 2000 19064862
#> 16672 20 2005 20608258
#> 16673 20 2010 21708684
#> 16674 20 2015 22951920
#> 16675 20 1950 85917106
#> 16676 20 1955 90399927
#> 16677 20 1960 96884503
#> 16678 20 1965 92935653
#> 16679 20 1970 116529384
#> 16680 20 1975 153062139
#> 16681 20 1980 156779118
#> 16682 20 1985 183896926
#> 16683 20 1990 208724321
#> 16684 20 1995 208247288
#> 16685 20 2000 191181840
#> 16686 20 2005 204191845
#> 16687 20 2010 233548430
#> 16688 20 2015 199085792
#> 16689 20 1950 194642
#> 16690 20 1955 199668
#> 16691 20 1960 200718
#> 16692 20 1965 202468
#> 16693 20 1970 212490
#> 16694 20 1975 204268
#> 16695 20 1980 221900
#> 16696 20 1985 231835
#> 16697 20 1990 228963
#> 16698 20 1995 256534
#> 16699 20 2000 270698
#> 16700 20 2005 240041
#> 16701 20 2010 249666
#> 16702 20 2015 261630
#> 16703 20 1950 677129
#> 16704 20 1955 680041
#> 16705 20 1960 713619
#> 16706 20 1965 577622
#> 16707 20 1970 722586
#> 16708 20 1975 1176555
#> 16709 20 1980 1574625
#> 16710 20 1985 1876766
#> 16711 20 1990 1816709
#> 16712 20 1995 2012512
#> 16713 20 2000 2254045
#> 16714 20 2005 2636016
#> 16715 20 2010 3088087
#> 16716 20 2015 3195676
#> 16717 20 1950 4178
#> 16718 20 1955 4832
#> 16719 20 1960 5651
#> 16720 20 1965 6625
#> 16721 20 1970 7078
#> 16722 20 1975 8696
#> 16723 20 1980 10483
#> 16724 20 1985 11567
#> 16725 20 1990 12309
#> 16726 20 1995 14080
#> 16727 20 2000 16347
#> 16728 20 2005 20045
#> 16729 20 2010 23148
#> 16730 20 2015 22621
#> 16731 20 1950 474854
#> 16732 20 1955 588304
#> 16733 20 1960 693786
#> 16734 20 1965 818896
#> 16735 20 1970 983532
#> 16736 20 1975 1183811
#> 16737 20 1980 1468460
#> 16738 20 1985 1830278
#> 16739 20 1990 1959506
#> 16740 20 1995 1997712
#> 16741 20 2000 2238099
#> 16742 20 2005 2458274
#> 16743 20 2010 2703160
#> 16744 20 2015 2734592
#> 16745 20 1950 2188878
#> 16746 20 1955 2501861
#> 16747 20 1960 2318288
#> 16748 20 1965 2334923
#> 16749 20 1970 2796912
#> 16750 20 1975 4207932
#> 16751 20 1980 5265706
#> 16752 20 1985 6026842
#> 16753 20 1990 6570591
#> 16754 20 1995 7140071
#> 16755 20 2000 7610155
#> 16756 20 2005 8257305
#> 16757 20 2010 8774665
#> 16758 20 2015 8816792
#> 16759 20 1950 222813608
#> 16760 20 1955 232598753
#> 16761 20 1960 248821448
#> 16762 20 1965 252299701
#> 16763 20 1970 298535465
#> 16764 20 1975 363876110
#> 16765 20 1980 394175561
#> 16766 20 1985 445706578
#> 16767 20 1990 489977616
#> 16768 20 1995 510557783
#> 16769 20 2000 518116354
#> 16770 20 2005 564207347
#> 16771 20 2010 616945996
#> 16772 20 2015 600866847
#> 16773 20 1950 6212170
#> 16774 20 1955 6748143
#> 16775 20 1960 7483158
#> 16776 20 1965 8348521
#> 16777 20 1970 9082018
#> 16778 20 1975 10106870
#> 16779 20 1980 11591920
#> 16780 20 1985 13268509
#> 16781 20 1990 15278918
#> 16782 20 1995 18153007
#> 16783 20 2000 21446365
#> 16784 20 2005 24546869
#> 16785 20 2010 27457130
#> 16786 20 2015 30984785
#> 16787 20 1950 4717009
#> 16788 20 1955 5302061
#> 16789 20 1960 5624562
#> 16790 20 1965 5780460
#> 16791 20 1970 6741913
#> 16792 20 1975 8743543
#> 16793 20 1980 10136595
#> 16794 20 1985 11739245
#> 16795 20 1990 13396977
#> 16796 20 1995 14752285
#> 16797 20 2000 17118412
#> 16798 20 2005 19305375
#> 16799 20 2010 21647087
#> 16800 20 2015 22178540
#> 16801 20 1950 10464591
#> 16802 20 1955 10635736
#> 16803 20 1960 11362623
#> 16804 20 1965 10689718
#> 16805 20 1970 12020916
#> 16806 20 1975 12526011
#> 16807 20 1980 13283305
#> 16808 20 1985 14265188
#> 16809 20 1990 13916144
#> 16810 20 1995 11849012
#> 16811 20 2000 10741107
#> 16812 20 2005 11351634
#> 16813 20 2010 11478666
#> 16814 20 2015 11143414
#> 16815 20 1950 1216
#> 16816 20 1955 2416
#> 16817 20 1960 3923
#> 16818 20 1965 5864
#> 16819 20 1970 7550
#> 16820 20 1975 6727
#> 16821 20 1980 16622
#> 16822 20 1985 16872
#> 16823 20 1990 20036
#> 16824 20 1995 22777
#> 16825 20 2000 30616
#> 16826 20 2005 44005
#> 16827 20 2010 47368
#> 16828 20 2015 49321
#> 16829 20 1950 376788
#> 16830 20 1955 414843
#> 16831 20 1960 458256
#> 16832 20 1965 512850
#> 16833 20 1970 576535
#> 16834 20 1975 552622
#> 16835 20 1980 648939
#> 16836 20 1985 798922
#> 16837 20 1990 1009402
#> 16838 20 1995 1141500
#> 16839 20 2000 1572385
#> 16840 20 2005 1983726
#> 16841 20 2010 2465270
#> 16842 20 2015 2897214
#> 16843 20 1950 202963
#> 16844 20 1955 230511
#> 16845 20 1960 263562
#> 16846 20 1965 302443
#> 16847 20 1970 347593
#> 16848 20 1975 408407
#> 16849 20 1980 496261
#> 16850 20 1985 611309
#> 16851 20 1990 715826
#> 16852 20 1995 858669
#> 16853 20 2000 1024123
#> 16854 20 2005 1146846
#> 16855 20 2010 1292739
#> 16856 20 2015 1499448
#> 16857 20 1950 244679
#> 16858 20 1955 269550
#> 16859 20 1960 305784
#> 16860 20 1965 360518
#> 16861 20 1970 375485
#> 16862 20 1975 531586
#> 16863 20 1980 619910
#> 16864 20 1985 784479
#> 16865 20 1990 937177
#> 16866 20 1995 1083129
#> 16867 20 2000 1295454
#> 16868 20 2005 1455029
#> 16869 20 2010 1529430
#> 16870 20 2015 1573699
#> 16871 25 1950 17383135
#> 16872 25 1955 19309169
#> 16873 25 1960 21216822
#> 16874 25 1965 23023903
#> 16875 25 1970 25436924
#> 16876 25 1975 29003592
#> 16877 25 1980 34321687
#> 16878 25 1985 39826171
#> 16879 25 1990 46220862
#> 16880 25 1995 53306342
#> 16881 25 2000 61911117
#> 16882 25 2005 72653585
#> 16883 25 2010 84272909
#> 16884 25 2015 94836784
#> 16885 25 1950 107804874
#> 16886 25 1955 118911569
#> 16887 25 1960 130715862
#> 16888 25 1965 138847245
#> 16889 25 1970 144298385
#> 16890 25 1975 170752993
#> 16891 25 1980 217730917
#> 16892 25 1985 233964050
#> 16893 25 1990 273741506
#> 16894 25 1995 311738820
#> 16895 25 2000 322893585
#> 16896 25 2005 316777656
#> 16897 25 2010 345525930
#> 16898 25 2015 385471034
#> 16899 25 1950 593610
#> 16900 25 1955 642180
#> 16901 25 1960 686814
#> 16902 25 1965 749597
#> 16903 25 1970 828537
#> 16904 25 1975 929840
#> 16905 25 1980 938476
#> 16906 25 1985 845605
#> 16907 25 1990 852017
#> 16908 25 1995 1196189
#> 16909 25 2000 1387392
#> 16910 25 2005 1842709
#> 16911 25 2010 2103639
#> 16912 25 2015 2511477
#> 16913 25 1950 84420
#> 16914 25 1955 105404
#> 16915 25 1960 118302
#> 16916 25 1965 142818
#> 16917 25 1970 152789
#> 16918 25 1975 167249
#> 16919 25 1980 208894
#> 16920 25 1985 259860
#> 16921 25 1990 298090
#> 16922 25 1995 229244
#> 16923 25 2000 217335
#> 16924 25 2005 190700
#> 16925 25 2010 197855
#> 16926 25 2015 205373
#> 16927 25 1950 620024
#> 16928 25 1955 694894
#> 16929 25 1960 807364
#> 16930 25 1965 835855
#> 16931 25 1970 882720
#> 16932 25 1975 1012132
#> 16933 25 1980 1457838
#> 16934 25 1985 1715331
#> 16935 25 1990 2068102
#> 16936 25 1995 2379837
#> 16937 25 2000 2740305
#> 16938 25 2005 3239728
#> 16939 25 2010 3662616
#> 16940 25 2015 3772343
#> 16941 25 1950 364903
#> 16942 25 1955 393686
#> 16943 25 1960 412930
#> 16944 25 1965 429691
#> 16945 25 1970 437761
#> 16946 25 1975 471278
#> 16947 25 1980 674474
#> 16948 25 1985 762775
#> 16949 25 1990 859553
#> 16950 25 1995 995295
#> 16951 25 2000 1185577
#> 16952 25 2005 1451257
#> 16953 25 2010 1700330
#> 16954 25 2015 2032781
#> 16955 25 1950 3685
#> 16956 25 1955 4638
#> 16957 25 1960 3184
#> 16958 25 1965 4233
#> 16959 25 1970 5368
#> 16960 25 1975 5826
#> 16961 25 1980 7037
#> 16962 25 1985 6661
#> 16963 25 1990 6845
#> 16964 25 1995 7497
#> 16965 25 2000 7147
#> 16966 25 2005 6133
#> 16967 25 2010 7258
#> 16968 25 2015 7581
#> 16969 25 1950 1469113
#> 16970 25 1955 1602105
#> 16971 25 1960 1606710
#> 16972 25 1965 1627398
#> 16973 25 1970 1757392
#> 16974 25 1975 1994783
#> 16975 25 1980 2124592
#> 16976 25 1985 2235698
#> 16977 25 1990 2347990
#> 16978 25 1995 2475098
#> 16979 25 2000 2771184
#> 16980 25 2005 3271385
#> 16981 25 2010 3204895
#> 16982 25 2015 3336420
#> 16983 25 1950 79998
#> 16984 25 1955 161364
#> 16985 25 1960 158495
#> 16986 25 1965 204497
#> 16987 25 1970 127429
#> 16988 25 1975 177759
#> 16989 25 1980 262359
#> 16990 25 1985 342337
#> 16991 25 1990 335648
#> 16992 25 1995 217448
#> 16993 25 2000 193066
#> 16994 25 2005 216402
#> 16995 25 2010 243137
#> 16996 25 2015 271637
#> 16997 25 1950 2847
#> 16998 25 1955 3008
#> 16999 25 1960 3757
#> 17000 25 1965 3994
#> 17001 25 1970 4423
#> 17002 25 1975 5224
#> 17003 25 1980 5222
#> 17004 25 1985 6219
#> 17005 25 1990 5445
#> 17006 25 1995 6957
#> 17007 25 2000 6376
#> 17008 25 2005 5726
#> 17009 25 2010 5533
#> 17010 25 2015 5285
#> 17011 25 1950 672886
#> 17012 25 1955 700597
#> 17013 25 1960 655810
#> 17014 25 1965 722640
#> 17015 25 1970 906124
#> 17016 25 1975 1156533
#> 17017 25 1980 1210801
#> 17018 25 1985 1319709
#> 17019 25 1990 1422095
#> 17020 25 1995 1383655
#> 17021 25 2000 1450588
#> 17022 25 2005 1330279
#> 17023 25 2010 1637906
#> 17024 25 2015 1763281
#> 17025 25 1950 815888
#> 17026 25 1955 853640
#> 17027 25 1960 801836
#> 17028 25 1965 886659
#> 17029 25 1970 1089251
#> 17030 25 1975 1398637
#> 17031 25 1980 1449408
#> 17032 25 1985 1581600
#> 17033 25 1990 1700593
#> 17034 25 1995 1663794
#> 17035 25 2000 1719214
#> 17036 25 2005 1586374
#> 17037 25 2010 1925092
#> 17038 25 2015 2079195
#> 17039 25 1950 519580
#> 17040 25 1955 474658
#> 17041 25 1960 428054
#> 17042 25 1965 483723
#> 17043 25 1970 557589
#> 17044 25 1975 522472
#> 17045 25 1980 494177
#> 17046 25 1985 579717
#> 17047 25 1990 662619
#> 17048 25 1995 692124
#> 17049 25 2000 563003
#> 17050 25 2005 507534
#> 17051 25 2010 555000
#> 17052 25 2015 576471
#> 17053 25 1950 186612
#> 17054 25 1955 321012
#> 17055 25 1960 355002
#> 17056 25 1965 393091
#> 17057 25 1970 234977
#> 17058 25 1975 300034
#> 17059 25 1980 459888
#> 17060 25 1985 644614
#> 17061 25 1990 733388
#> 17062 25 1995 656615
#> 17063 25 2000 635423
#> 17064 25 2005 664501
#> 17065 25 2010 833065
#> 17066 25 2015 943122
#> 17067 25 1950 6060
#> 17068 25 1955 6490
#> 17069 25 1960 7891
#> 17070 25 1965 10632
#> 17071 25 1970 12307
#> 17072 25 1975 15054
#> 17073 25 1980 17001
#> 17074 25 1985 21215
#> 17075 25 1990 26111
#> 17076 25 1995 24826
#> 17077 25 2000 25604
#> 17078 25 2005 28133
#> 17079 25 2010 30660
#> 17080 25 2015 32639
#> 17081 25 1950 10070
#> 17082 25 1955 11367
#> 17083 25 1960 13857
#> 17084 25 1965 15950
#> 17085 25 1970 16037
#> 17086 25 1975 20512
#> 17087 25 1980 43753
#> 17088 25 1985 50525
#> 17089 25 1990 58710
#> 17090 25 1995 64406
#> 17091 25 2000 68012
#> 17092 25 2005 103554
#> 17093 25 2010 180022
#> 17094 25 2015 174467
#> 17095 25 1950 2864359
#> 17096 25 1955 3220237
#> 17097 25 1960 3674676
#> 17098 25 1965 4130007
#> 17099 25 1970 4611436
#> 17100 25 1975 4861914
#> 17101 25 1980 4505230
#> 17102 25 1985 6396304
#> 17103 25 1990 8693781
#> 17104 25 1995 10163120
#> 17105 25 2000 10942989
#> 17106 25 2005 12704008
#> 17107 25 2010 13848206
#> 17108 25 2015 14474520
#> 17109 25 1950 14999
#> 17110 25 1955 15398
#> 17111 25 1960 13501
#> 17112 25 1965 12335
#> 17113 25 1970 12133
#> 17114 25 1975 17479
#> 17115 25 1980 21338
#> 17116 25 1985 25063
#> 17117 25 1990 26079
#> 17118 25 1995 23079
#> 17119 25 2000 21388
#> 17120 25 2005 19281
#> 17121 25 2010 19307
#> 17122 25 2015 17950
#> 17123 25 1950 575929
#> 17124 25 1955 744405
#> 17125 25 1960 715228
#> 17126 25 1965 736342
#> 17127 25 1970 508678
#> 17128 25 1975 599005
#> 17129 25 1980 744237
#> 17130 25 1985 855729
#> 17131 25 1990 821066
#> 17132 25 1995 668201
#> 17133 25 2000 690114
#> 17134 25 2005 695905
#> 17135 25 2010 750700
#> 17136 25 2015 769074
#> 17137 25 1950 694595
#> 17138 25 1955 659436
#> 17139 25 1960 631180
#> 17140 25 1965 587737
#> 17141 25 1970 565141
#> 17142 25 1975 723194
#> 17143 25 1980 737851
#> 17144 25 1985 787835
#> 17145 25 1990 807460
#> 17146 25 1995 755762
#> 17147 25 2000 687409
#> 17148 25 2005 663176
#> 17149 25 2010 704851
#> 17150 25 2015 716380
#> 17151 25 1950 5188
#> 17152 25 1955 5739
#> 17153 25 1960 6053
#> 17154 25 1965 6451
#> 17155 25 1970 6822
#> 17156 25 1975 7569
#> 17157 25 1980 8902
#> 17158 25 1985 11797
#> 17159 25 1990 15992
#> 17160 25 1995 14845
#> 17161 25 2000 21289
#> 17162 25 2005 23151
#> 17163 25 2010 26757
#> 17164 25 2015 31731
#> 17165 25 1950 153385
#> 17166 25 1955 155212
#> 17167 25 1960 165631
#> 17168 25 1965 184433
#> 17169 25 1970 214932
#> 17170 25 1975 221986
#> 17171 25 1980 252769
#> 17172 25 1985 294223
#> 17173 25 1990 350357
#> 17174 25 1995 429905
#> 17175 25 2000 500368
#> 17176 25 2005 592875
#> 17177 25 2010 687718
#> 17178 25 2015 802384
#> 17179 25 1950 13306
#> 17180 25 1955 15639
#> 17181 25 1960 18022
#> 17182 25 1965 20364
#> 17183 25 1970 23959
#> 17184 25 1975 28067
#> 17185 25 1980 28997
#> 17186 25 1985 32578
#> 17187 25 1990 37919
#> 17188 25 1995 39456
#> 17189 25 2000 43861
#> 17190 25 2005 59028
#> 17191 25 2010 75110
#> 17192 25 2015 82473
#> 17193 25 1950 217117
#> 17194 25 1955 247083
#> 17195 25 1960 258501
#> 17196 25 1965 278169
#> 17197 25 1970 331910
#> 17198 25 1975 358703
#> 17199 25 1980 433986
#> 17200 25 1985 467315
#> 17201 25 1990 508213
#> 17202 25 1995 569243
#> 17203 25 2000 649630
#> 17204 25 2005 745813
#> 17205 25 2010 824853
#> 17206 25 2015 889223
#> 17207 25 1950 188500
#> 17208 25 1955 265264
#> 17209 25 1960 300201
#> 17210 25 1965 317149
#> 17211 25 1970 225172
#> 17212 25 1975 313789
#> 17213 25 1980 372182
#> 17214 25 1985 402108
#> 17215 25 1990 411098
#> 17216 25 1995 290404
#> 17217 25 2000 278342
#> 17218 25 2005 273538
#> 17219 25 2010 272659
#> 17220 25 2015 246496
#> 17221 25 1950 33519
#> 17222 25 1955 34079
#> 17223 25 1960 37867
#> 17224 25 1965 41704
#> 17225 25 1970 45603
#> 17226 25 1975 52506
#> 17227 25 1980 79355
#> 17228 25 1985 92681
#> 17229 25 1990 105921
#> 17230 25 1995 125019
#> 17231 25 2000 147790
#> 17232 25 2005 177638
#> 17233 25 2010 208506
#> 17234 25 2015 211909
#> 17235 25 1950 4127298
#> 17236 25 1955 4938398
#> 17237 25 1960 5239408
#> 17238 25 1965 6187018
#> 17239 25 1970 6694606
#> 17240 25 1975 8218411
#> 17241 25 1980 9969430
#> 17242 25 1985 11501393
#> 17243 25 1990 13257602
#> 17244 25 1995 13988831
#> 17245 25 2000 14692330
#> 17246 25 2005 16392033
#> 17247 25 2010 17839223
#> 17248 25 2015 17489704
#> 17249 25 1950 3667
#> 17250 25 1955 5000
#> 17251 25 1960 6201
#> 17252 25 1965 6902
#> 17253 25 1970 8493
#> 17254 25 1975 10403
#> 17255 25 1980 20148
#> 17256 25 1985 22908
#> 17257 25 1990 27114
#> 17258 25 1995 32603
#> 17259 25 2000 36584
#> 17260 25 2005 37407
#> 17261 25 2010 39016
#> 17262 25 2015 38953
#> 17263 25 1950 676999
#> 17264 25 1955 672310
#> 17265 25 1960 657317
#> 17266 25 1965 576339
#> 17267 25 1970 575519
#> 17268 25 1975 681415
#> 17269 25 1980 653887
#> 17270 25 1985 631989
#> 17271 25 1990 584576
#> 17272 25 1995 554324
#> 17273 25 2000 573560
#> 17274 25 2005 572494
#> 17275 25 2010 492730
#> 17276 25 2015 485934
#> 17277 25 1950 346468
#> 17278 25 1955 346800
#> 17279 25 1960 355859
#> 17280 25 1965 377342
#> 17281 25 1970 409681
#> 17282 25 1975 433073
#> 17283 25 1980 466966
#> 17284 25 1985 532878
#> 17285 25 1990 614404
#> 17286 25 1995 722608
#> 17287 25 2000 837261
#> 17288 25 2005 1011603
#> 17289 25 2010 1194423
#> 17290 25 2015 1367244
#> 17291 25 1950 179448
#> 17292 25 1955 190310
#> 17293 25 1960 203917
#> 17294 25 1965 217027
#> 17295 25 1970 232379
#> 17296 25 1975 234092
#> 17297 25 1980 329643
#> 17298 25 1985 380159
#> 17299 25 1990 409926
#> 17300 25 1995 374357
#> 17301 25 2000 356079
#> 17302 25 2005 515032
#> 17303 25 2010 687275
#> 17304 25 2015 850903
#> 17305 25 1950 10225
#> 17306 25 1955 15119
#> 17307 25 1960 15316
#> 17308 25 1965 15972
#> 17309 25 1970 12432
#> 17310 25 1975 10814
#> 17311 25 1980 17028
#> 17312 25 1985 20281
#> 17313 25 1990 27616
#> 17314 25 1995 29905
#> 17315 25 2000 30107
#> 17316 25 2005 34952
#> 17317 25 2010 44611
#> 17318 25 2015 51783
#> 17319 25 1950 341803
#> 17320 25 1955 375910
#> 17321 25 1960 411955
#> 17322 25 1965 449533
#> 17323 25 1970 474298
#> 17324 25 1975 520105
#> 17325 25 1980 561286
#> 17326 25 1985 599744
#> 17327 25 1990 662754
#> 17328 25 1995 806697
#> 17329 25 2000 918979
#> 17330 25 2005 727113
#> 17331 25 2010 1728135
#> 17332 25 2015 1275356
#> 17333 25 1950 333144
#> 17334 25 1955 362121
#> 17335 25 1960 394937
#> 17336 25 1965 432095
#> 17337 25 1970 466504
#> 17338 25 1975 517375
#> 17339 25 1980 589833
#> 17340 25 1985 671212
#> 17341 25 1990 796822
#> 17342 25 1995 943612
#> 17343 25 2000 1116327
#> 17344 25 2005 1333815
#> 17345 25 2010 1616885
#> 17346 25 2015 1874092
#> 17347 25 1950 1114000
#> 17348 25 1955 1192963
#> 17349 25 1960 1215799
#> 17350 25 1965 1214435
#> 17351 25 1970 1528072
#> 17352 25 1975 2000999
#> 17353 25 1980 2201790
#> 17354 25 1985 2445148
#> 17355 25 1990 2568815
#> 17356 25 1995 2191933
#> 17357 25 2000 2078020
#> 17358 25 2005 2164260
#> 17359 25 2010 2399267
#> 17360 25 2015 2451434
#> 17361 25 1950 1278764
#> 17362 25 1955 1364745
#> 17363 25 1960 1466340
#> 17364 25 1965 1630047
#> 17365 25 1970 1711488
#> 17366 25 1975 1892980
#> 17367 25 1980 2255516
#> 17368 25 1985 2482766
#> 17369 25 1990 3051040
#> 17370 25 1995 3124190
#> 17371 25 2000 3125439
#> 17372 25 2005 2953871
#> 17373 25 2010 3231125
#> 17374 25 2015 3462518
#> 17375 25 1950 101105
#> 17376 25 1955 108046
#> 17377 25 1960 113703
#> 17378 25 1965 122649
#> 17379 25 1970 133177
#> 17380 25 1975 136671
#> 17381 25 1980 157283
#> 17382 25 1985 191877
#> 17383 25 1990 210365
#> 17384 25 1995 248475
#> 17385 25 2000 287051
#> 17386 25 2005 322390
#> 17387 25 2010 350978
#> 17388 25 2015 331567
#> 17389 25 1950 2887146
#> 17390 25 1955 3275740
#> 17391 25 1960 3620776
#> 17392 25 1965 3914875
#> 17393 25 1970 4604166
#> 17394 25 1975 5272394
#> 17395 25 1980 6784640
#> 17396 25 1985 7814604
#> 17397 25 1990 8864385
#> 17398 25 1995 10390076
#> 17399 25 2000 12458439
#> 17400 25 2005 12825087
#> 17401 25 2010 13516389
#> 17402 25 2015 14556877
#> 17403 25 1950 1150677
#> 17404 25 1955 1935921
#> 17405 25 1960 1851801
#> 17406 25 1965 2470126
#> 17407 25 1970 1776907
#> 17408 25 1975 2170538
#> 17409 25 1980 3256930
#> 17410 25 1985 3977394
#> 17411 25 1990 4391524
#> 17412 25 1995 4075907
#> 17413 25 2000 4387252
#> 17414 25 2005 4814521
#> 17415 25 2010 5561968
#> 17416 25 2015 6692940
#> 17417 25 1950 192762
#> 17418 25 1955 203295
#> 17419 25 1960 217596
#> 17420 25 1965 235913
#> 17421 25 1970 252462
#> 17422 25 1975 273061
#> 17423 25 1980 329003
#> 17424 25 1985 357863
#> 17425 25 1990 401881
#> 17426 25 1995 461710
#> 17427 25 2000 568117
#> 17428 25 2005 699392
#> 17429 25 2010 843400
#> 17430 25 2015 1026302
#> 17431 25 1950 7679
#> 17432 25 1955 7584
#> 17433 25 1960 7495
#> 17434 25 1965 7816
#> 17435 25 1970 8220
#> 17436 25 1975 11087
#> 17437 25 1980 10145
#> 17438 25 1985 11153
#> 17439 25 1990 12919
#> 17440 25 1995 12851
#> 17441 25 2000 10705
#> 17442 25 2005 10765
#> 17443 25 2010 10612
#> 17444 25 2015 10267
#> 17445 25 1950 463087
#> 17446 25 1955 517847
#> 17447 25 1960 552418
#> 17448 25 1965 589640
#> 17449 25 1970 706206
#> 17450 25 1975 790114
#> 17451 25 1980 971026
#> 17452 25 1985 1080192
#> 17453 25 1990 1186315
#> 17454 25 1995 1267606
#> 17455 25 2000 1238104
#> 17456 25 2005 1227171
#> 17457 25 2010 1316438
#> 17458 25 2015 1442516
#> 17459 25 1950 41709984
#> 17460 25 1955 44762141
#> 17461 25 1960 49233251
#> 17462 25 1965 50371903
#> 17463 25 1970 51747809
#> 17464 25 1975 65536112
#> 17465 25 1980 90525291
#> 17466 25 1985 86601007
#> 17467 25 1990 107522403
#> 17468 25 1995 128514695
#> 17469 25 2000 121385919
#> 17470 25 2005 97485370
#> 17471 25 2010 102745196
#> 17472 25 2015 129735187
#> 17473 25 1950 212299
#> 17474 25 1955 247900
#> 17475 25 1960 256877
#> 17476 25 1965 230694
#> 17477 25 1970 183662
#> 17478 25 1975 320179
#> 17479 25 1980 464701
#> 17480 25 1985 591586
#> 17481 25 1990 622699
#> 17482 25 1995 540585
#> 17483 25 2000 528247
#> 17484 25 2005 499572
#> 17485 25 2010 538906
#> 17486 25 2015 505359
#> 17487 25 1950 19250
#> 17488 25 1955 15481
#> 17489 25 1960 10106
#> 17490 25 1965 8040
#> 17491 25 1970 9670
#> 17492 25 1975 19757
#> 17493 25 1980 26397
#> 17494 25 1985 36711
#> 17495 25 1990 39039
#> 17496 25 1995 33022
#> 17497 25 2000 31817
#> 17498 25 2005 33904
#> 17499 25 2010 50706
#> 17500 25 2015 64344
#> 17501 25 1950 619391
#> 17502 25 1955 700060
#> 17503 25 1960 733027
#> 17504 25 1965 896513
#> 17505 25 1970 811566
#> 17506 25 1975 1113020
#> 17507 25 1980 1707052
#> 17508 25 1985 1884811
#> 17509 25 1990 1974715
#> 17510 25 1995 1876316
#> 17511 25 2000 1735998
#> 17512 25 2005 1960715
#> 17513 25 2010 1903776
#> 17514 25 2015 1607222
#> 17515 25 1950 933275
#> 17516 25 1955 1006310
#> 17517 25 1960 1106456
#> 17518 25 1965 1231108
#> 17519 25 1970 1441291
#> 17520 25 1975 1854474
#> 17521 25 1980 2313294
#> 17522 25 1985 2693291
#> 17523 25 1990 3149198
#> 17524 25 1995 3457857
#> 17525 25 2000 3334472
#> 17526 25 2005 3687056
#> 17527 25 2010 4006689
#> 17528 25 2015 4094029
#> 17529 25 1950 12886
#> 17530 25 1955 13713
#> 17531 25 1960 14270
#> 17532 25 1965 14920
#> 17533 25 1970 15549
#> 17534 25 1975 16196
#> 17535 25 1980 21887
#> 17536 25 1985 26444
#> 17537 25 1990 30460
#> 17538 25 1995 34807
#> 17539 25 2000 40037
#> 17540 25 2005 47116
#> 17541 25 2010 56899
#> 17542 25 2015 65352
#> 17543 25 1950 63608
#> 17544 25 1955 69624
#> 17545 25 1960 76669
#> 17546 25 1965 84956
#> 17547 25 1970 95010
#> 17548 25 1975 108692
#> 17549 25 1980 126069
#> 17550 25 1985 149252
#> 17551 25 1990 178767
#> 17552 25 1995 216488
#> 17553 25 2000 264075
#> 17554 25 2005 312854
#> 17555 25 2010 358649
#> 17556 25 2015 367125
#> 17557 25 1950 70267
#> 17558 25 1955 83734
#> 17559 25 1960 95278
#> 17560 25 1965 110978
#> 17561 25 1970 132230
#> 17562 25 1975 168718
#> 17563 25 1980 187779
#> 17564 25 1985 241319
#> 17565 25 1990 285052
#> 17566 25 1995 299867
#> 17567 25 2000 299630
#> 17568 25 2005 343771
#> 17569 25 2010 389580
#> 17570 25 2015 414014
#> 17571 25 1950 203403
#> 17572 25 1955 240053
#> 17573 25 1960 285421
#> 17574 25 1965 345692
#> 17575 25 1970 395982
#> 17576 25 1975 472607
#> 17577 25 1980 604198
#> 17578 25 1985 742983
#> 17579 25 1990 877584
#> 17580 25 1995 1048186
#> 17581 25 2000 1238995
#> 17582 25 2005 1375041
#> 17583 25 2010 1505058
#> 17584 25 2015 1742733
#> 17585 25 1950 302499
#> 17586 25 1955 350506
#> 17587 25 1960 361333
#> 17588 25 1965 336332
#> 17589 25 1970 276399
#> 17590 25 1975 351304
#> 17591 25 1980 381061
#> 17592 25 1985 372474
#> 17593 25 1990 353597
#> 17594 25 1995 293046
#> 17595 25 2000 299298
#> 17596 25 2005 293992
#> 17597 25 2010 292923
#> 17598 25 2015 274320
#> 17599 25 1950 449382
#> 17600 25 1955 494456
#> 17601 25 1960 544534
#> 17602 25 1965 606482
#> 17603 25 1970 632004
#> 17604 25 1975 658327
#> 17605 25 1980 773248
#> 17606 25 1985 763785
#> 17607 25 1990 1117132
#> 17608 25 1995 1123474
#> 17609 25 2000 1044518
#> 17610 25 2005 716418
#> 17611 25 2010 701903
#> 17612 25 2015 827708
#> 17613 25 1950 7705
#> 17614 25 1955 8523
#> 17615 25 1960 8313
#> 17616 25 1965 8437
#> 17617 25 1970 10260
#> 17618 25 1975 10929
#> 17619 25 1980 11655
#> 17620 25 1985 14104
#> 17621 25 1990 12825
#> 17622 25 1995 9250
#> 17623 25 2000 7191
#> 17624 25 2005 6170
#> 17625 25 2010 7593
#> 17626 25 2015 8698
#> 17627 25 1950 36741
#> 17628 25 1955 38623
#> 17629 25 1960 38203
#> 17630 25 1965 39924
#> 17631 25 1970 41639
#> 17632 25 1975 51232
#> 17633 25 1980 60962
#> 17634 25 1985 61329
#> 17635 25 1990 63727
#> 17636 25 1995 69492
#> 17637 25 2000 75151
#> 17638 25 2005 86581
#> 17639 25 2010 95387
#> 17640 25 2015 105071
#> 17641 25 1950 776079
#> 17642 25 1955 691967
#> 17643 25 1960 617884
#> 17644 25 1965 553397
#> 17645 25 1970 712412
#> 17646 25 1975 872630
#> 17647 25 1980 844847
#> 17648 25 1985 704036
#> 17649 25 1990 670469
#> 17650 25 1995 681191
#> 17651 25 2000 849761
#> 17652 25 2005 900991
#> 17653 25 2010 743929
#> 17654 25 2015 701176
#> 17655 25 1950 748884
#> 17656 25 1955 731838
#> 17657 25 1960 931104
#> 17658 25 1965 1266986
#> 17659 25 1970 1355477
#> 17660 25 1975 1289180
#> 17661 25 1980 926521
#> 17662 25 1985 1788287
#> 17663 25 1990 1663770
#> 17664 25 1995 2323184
#> 17665 25 2000 2280389
#> 17666 25 2005 1620025
#> 17667 25 2010 1833502
#> 17668 25 2015 1872444
#> 17669 25 1950 891108
#> 17670 25 1955 1008144
#> 17671 25 1960 1145100
#> 17672 25 1965 1311041
#> 17673 25 1970 1514453
#> 17674 25 1975 1709925
#> 17675 25 1980 1878013
#> 17676 25 1985 2132743
#> 17677 25 1990 2488060
#> 17678 25 1995 2997541
#> 17679 25 2000 3388727
#> 17680 25 2005 3929956
#> 17681 25 2010 4624901
#> 17682 25 2015 5444181
#> 17683 25 1950 319785
#> 17684 25 1955 291584
#> 17685 25 1960 278515
#> 17686 25 1965 301351
#> 17687 25 1970 375528
#> 17688 25 1975 415656
#> 17689 25 1980 373976
#> 17690 25 1985 371433
#> 17691 25 1990 401134
#> 17692 25 1995 403541
#> 17693 25 2000 383985
#> 17694 25 2005 339024
#> 17695 25 2010 310699
#> 17696 25 2015 345821
#> 17697 25 1950 4561
#> 17698 25 1955 5308
#> 17699 25 1960 6470
#> 17700 25 1965 8812
#> 17701 25 1970 12179
#> 17702 25 1975 17288
#> 17703 25 1980 23302
#> 17704 25 1985 31855
#> 17705 25 1990 47076
#> 17706 25 1995 49288
#> 17707 25 2000 57125
#> 17708 25 2005 67329
#> 17709 25 2010 71363
#> 17710 25 2015 90695
#> 17711 25 1950 172343
#> 17712 25 1955 205355
#> 17713 25 1960 237646
#> 17714 25 1965 261670
#> 17715 25 1970 275273
#> 17716 25 1975 336769
#> 17717 25 1980 435536
#> 17718 25 1985 529443
#> 17719 25 1990 604992
#> 17720 25 1995 658864
#> 17721 25 2000 705678
#> 17722 25 2005 752005
#> 17723 25 2010 820065
#> 17724 25 2015 865158
#> 17725 25 1950 43261548
#> 17726 25 1955 48453834
#> 17727 25 1960 45237040
#> 17728 25 1965 49400642
#> 17729 25 1970 40741121
#> 17730 25 1975 50109638
#> 17731 25 1980 54036770
#> 17732 25 1985 56482246
#> 17733 25 1990 56204099
#> 17734 25 1995 53347637
#> 17735 25 2000 51710719
#> 17736 25 2005 51490427
#> 17737 25 2010 52015440
#> 17738 25 2015 51287010
#> 17739 25 1950 4984496
#> 17740 25 1955 5588083
#> 17741 25 1960 6246136
#> 17742 25 1965 6809723
#> 17743 25 1970 7703725
#> 17744 25 1975 8938160
#> 17745 25 1980 10486750
#> 17746 25 1985 12157727
#> 17747 25 1990 14062457
#> 17748 25 1995 16323267
#> 17749 25 2000 19212734
#> 17750 25 2005 22762483
#> 17751 25 2010 27055255
#> 17752 25 2015 31391821
#> 17753 25 1950 50990114
#> 17754 25 1955 55559548
#> 17755 25 1960 61369636
#> 17756 25 1965 63457549
#> 17757 25 1970 65703950
#> 17758 25 1975 81848003
#> 17759 25 1980 106166814
#> 17760 25 1985 103171948
#> 17761 25 1990 124449831
#> 17762 25 1995 146687608
#> 17763 25 2000 140753431
#> 17764 25 2005 114243319
#> 17765 25 2010 118622407
#> 17766 25 2015 144098779
#> 17767 25 1950 17670470
#> 17768 25 1955 23110714
#> 17769 25 1960 20039368
#> 17770 25 1965 23398084
#> 17771 25 1970 15704541
#> 17772 25 1975 21297036
#> 17773 25 1980 25234336
#> 17774 25 1985 25847484
#> 17775 25 1990 22863451
#> 17776 25 1995 20461182
#> 17777 25 2000 21779025
#> 17778 25 2005 23150543
#> 17779 25 2010 23763443
#> 17780 25 2015 23819499
#> 17781 25 1950 241256
#> 17782 25 1955 276396
#> 17783 25 1960 314345
#> 17784 25 1965 358598
#> 17785 25 1970 424486
#> 17786 25 1975 478510
#> 17787 25 1980 635409
#> 17788 25 1985 735140
#> 17789 25 1990 845186
#> 17790 25 1995 971145
#> 17791 25 2000 1068894
#> 17792 25 2005 1138150
#> 17793 25 2010 1240621
#> 17794 25 2015 1356487
#> 17795 25 1950 1643186
#> 17796 25 1955 1890889
#> 17797 25 1960 2028237
#> 17798 25 1965 2027368
#> 17799 25 1970 2066133
#> 17800 25 1975 2820600
#> 17801 25 1980 2987648
#> 17802 25 1985 3616759
#> 17803 25 1990 4212177
#> 17804 25 1995 4652169
#> 17805 25 2000 5236636
#> 17806 25 2005 6404190
#> 17807 25 2010 7550637
#> 17808 25 2015 8431630
#> 17809 25 1950 162854
#> 17810 25 1955 172858
#> 17811 25 1960 198383
#> 17812 25 1965 227608
#> 17813 25 1970 251857
#> 17814 25 1975 281457
#> 17815 25 1980 328879
#> 17816 25 1985 354894
#> 17817 25 1990 393462
#> 17818 25 1995 430068
#> 17819 25 2000 452649
#> 17820 25 2005 464016
#> 17821 25 2010 462075
#> 17822 25 2015 502355
#> 17823 25 1950 17264
#> 17824 25 1955 18047
#> 17825 25 1960 19042
#> 17826 25 1965 20255
#> 17827 25 1970 22400
#> 17828 25 1975 18033
#> 17829 25 1980 20535
#> 17830 25 1985 26279
#> 17831 25 1990 30127
#> 17832 25 1995 39246
#> 17833 25 2000 49447
#> 17834 25 2005 70068
#> 17835 25 2010 98618
#> 17836 25 2015 121234
#> 17837 25 1950 82800
#> 17838 25 1955 94294
#> 17839 25 1960 108794
#> 17840 25 1965 124526
#> 17841 25 1970 142361
#> 17842 25 1975 160226
#> 17843 25 1980 165175
#> 17844 25 1985 198327
#> 17845 25 1990 222453
#> 17846 25 1995 184918
#> 17847 25 2000 211563
#> 17848 25 2005 316964
#> 17849 25 2010 399259
#> 17850 25 2015 431385
#> 17851 25 1950 76479
#> 17852 25 1955 98886
#> 17853 25 1960 99821
#> 17854 25 1965 106157
#> 17855 25 1970 93108
#> 17856 25 1975 105643
#> 17857 25 1980 116811
#> 17858 25 1985 117806
#> 17859 25 1990 114792
#> 17860 25 1995 92958
#> 17861 25 2000 100494
#> 17862 25 2005 95026
#> 17863 25 2010 95688
#> 17864 25 2015 98961
#> 17865 25 1950 1343503
#> 17866 25 1955 1489168
#> 17867 25 1960 1666293
#> 17868 25 1965 1880693
#> 17869 25 1970 2141503
#> 17870 25 1975 2431632
#> 17871 25 1980 2491027
#> 17872 25 1985 2776161
#> 17873 25 1990 3230379
#> 17874 25 1995 3930162
#> 17875 25 2000 4681839
#> 17876 25 2005 5451389
#> 17877 25 2010 6633179
#> 17878 25 2015 7692689
#> 17879 25 1950 21001
#> 17880 25 1955 23995
#> 17881 25 1960 27399
#> 17882 25 1965 32843
#> 17883 25 1970 39577
#> 17884 25 1975 45860
#> 17885 25 1980 51615
#> 17886 25 1985 66188
#> 17887 25 1990 66112
#> 17888 25 1995 62925
#> 17889 25 2000 61779
#> 17890 25 2005 68605
#> 17891 25 2010 76473
#> 17892 25 2015 71023
#> 17893 25 1950 308706
#> 17894 25 1955 316624
#> 17895 25 1960 292585
#> 17896 25 1965 299488
#> 17897 25 1970 319163
#> 17898 25 1975 451203
#> 17899 25 1980 407484
#> 17900 25 1985 385246
#> 17901 25 1990 377770
#> 17902 25 1995 352830
#> 17903 25 2000 305739
#> 17904 25 2005 331510
#> 17905 25 2010 346120
#> 17906 25 2015 340049
#> 17907 25 1950 3452526
#> 17908 25 1955 3194921
#> 17909 25 1960 3225467
#> 17910 25 1965 3030164
#> 17911 25 1970 2913462
#> 17912 25 1975 4350550
#> 17913 25 1980 4268407
#> 17914 25 1985 4216455
#> 17915 25 1990 4375634
#> 17916 25 1995 4293880
#> 17917 25 2000 4242090
#> 17918 25 2005 3837232
#> 17919 25 2010 3998878
#> 17920 25 2015 3907009
#> 17921 25 1950 2207
#> 17922 25 1955 2122
#> 17923 25 1960 2153
#> 17924 25 1965 2555
#> 17925 25 1970 3471
#> 17926 25 1975 4615
#> 17927 25 1980 5887
#> 17928 25 1985 7482
#> 17929 25 1990 10976
#> 17930 25 1995 10533
#> 17931 25 2000 11388
#> 17932 25 2005 14149
#> 17933 25 2010 17066
#> 17934 25 2015 17627
#> 17935 25 1950 4808
#> 17936 25 1955 5263
#> 17937 25 1960 5764
#> 17938 25 1965 6014
#> 17939 25 1970 7634
#> 17940 25 1975 8327
#> 17941 25 1980 11970
#> 17942 25 1985 15373
#> 17943 25 1990 16766
#> 17944 25 1995 20284
#> 17945 25 2000 19936
#> 17946 25 2005 19374
#> 17947 25 2010 20234
#> 17948 25 2015 22038
#> 17949 25 1950 35927
#> 17950 25 1955 36545
#> 17951 25 1960 37169
#> 17952 25 1965 39394
#> 17953 25 1970 40982
#> 17954 25 1975 41999
#> 17955 25 1980 45676
#> 17956 25 1985 51265
#> 17957 25 1990 61476
#> 17958 25 1995 75949
#> 17959 25 2000 90081
#> 17960 25 2005 111662
#> 17961 25 2010 143116
#> 17962 25 2015 171401
#> 17963 25 1950 20985
#> 17964 25 1955 25096
#> 17965 25 1960 37244
#> 17966 25 1965 34884
#> 17967 25 1970 42980
#> 17968 25 1975 44665
#> 17969 25 1980 53900
#> 17970 25 1985 61201
#> 17971 25 1990 75561
#> 17972 25 1995 86570
#> 17973 25 2000 91414
#> 17974 25 2005 115525
#> 17975 25 2010 133379
#> 17976 25 2015 150481
#> 17977 25 1950 232216
#> 17978 25 1955 369448
#> 17979 25 1960 341871
#> 17980 25 1965 395288
#> 17981 25 1970 275700
#> 17982 25 1975 300094
#> 17983 25 1980 370151
#> 17984 25 1985 436754
#> 17985 25 1990 446589
#> 17986 25 1995 362780
#> 17987 25 2000 329971
#> 17988 25 2005 314490
#> 17989 25 2010 303614
#> 17990 25 2015 287725
#> 17991 25 1950 4851567
#> 17992 25 1955 4895764
#> 17993 25 1960 5059325
#> 17994 25 1965 6228791
#> 17995 25 1970 5500368
#> 17996 25 1975 4954980
#> 17997 25 1980 5440709
#> 17998 25 1985 6065694
#> 17999 25 1990 6902016
#> 18000 25 1995 6760936
#> 18001 25 2000 4989744
#> 18002 25 2005 4734399
#> 18003 25 2010 4934217
#> 18004 25 2015 5213301
#> 18005 25 1950 370017
#> 18006 25 1955 424378
#> 18007 25 1960 495016
#> 18008 25 1965 568412
#> 18009 25 1970 631317
#> 18010 25 1975 735174
#> 18011 25 1980 730894
#> 18012 25 1985 909180
#> 18013 25 1990 1109088
#> 18014 25 1995 1323480
#> 18015 25 2000 1504856
#> 18016 25 2005 1729510
#> 18017 25 2010 2021301
#> 18018 25 2015 2252188
#> 18019 25 1950 586000
#> 18020 25 1955 702690
#> 18021 25 1960 748773
#> 18022 25 1965 687163
#> 18023 25 1970 490333
#> 18024 25 1975 622953
#> 18025 25 1980 649088
#> 18026 25 1985 736638
#> 18027 25 1990 746277
#> 18028 25 1995 867803
#> 18029 25 2000 877862
#> 18030 25 2005 872904
#> 18031 25 2010 813771
#> 18032 25 2015 620251
#> 18033 25 1950 4348
#> 18034 25 1955 4888
#> 18035 25 1960 4917
#> 18036 25 1965 5499
#> 18037 25 1970 4373
#> 18038 25 1975 5513
#> 18039 25 1980 5798
#> 18040 25 1985 8331
#> 18041 25 1990 7153
#> 18042 25 1995 6004
#> 18043 25 2000 7354
#> 18044 25 2005 8295
#> 18045 25 2010 10139
#> 18046 25 2015 11420
#> 18047 25 1950 15991
#> 18048 25 1955 16997
#> 18049 25 1960 17100
#> 18050 25 1965 16433
#> 18051 25 1970 17434
#> 18052 25 1975 18516
#> 18053 25 1980 22455
#> 18054 25 1985 26811
#> 18055 25 1990 35786
#> 18056 25 1995 34471
#> 18057 25 2000 31084
#> 18058 25 2005 28606
#> 18059 25 2010 21172
#> 18060 25 2015 19332
#> 18061 25 1950 7290
#> 18062 25 1955 6453
#> 18063 25 1960 5605
#> 18064 25 1965 6011
#> 18065 25 1970 6440
#> 18066 25 1975 8236
#> 18067 25 1980 9996
#> 18068 25 1985 11611
#> 18069 25 1990 13153
#> 18070 25 1995 14188
#> 18071 25 2000 12790
#> 18072 25 2005 11159
#> 18073 25 2010 10865
#> 18074 25 2015 11920
#> 18075 25 1950 247516
#> 18076 25 1955 291415
#> 18077 25 1960 315436
#> 18078 25 1965 335432
#> 18079 25 1970 369652
#> 18080 25 1975 421958
#> 18081 25 1980 526849
#> 18082 25 1985 572168
#> 18083 25 1990 633740
#> 18084 25 1995 725530
#> 18085 25 2000 849535
#> 18086 25 2005 1026413
#> 18087 25 2010 1225460
#> 18088 25 2015 1379822
#> 18089 25 1950 241972
#> 18090 25 1955 253368
#> 18091 25 1960 264740
#> 18092 25 1965 283015
#> 18093 25 1970 302966
#> 18094 25 1975 301858
#> 18095 25 1980 352963
#> 18096 25 1985 383378
#> 18097 25 1990 435580
#> 18098 25 1995 545730
#> 18099 25 2000 614274
#> 18100 25 2005 698165
#> 18101 25 2010 804517
#> 18102 25 2015 927358
#> 18103 25 1950 45913
#> 18104 25 1955 43728
#> 18105 25 1960 42958
#> 18106 25 1965 43724
#> 18107 25 1970 51299
#> 18108 25 1975 55816
#> 18109 25 1980 65751
#> 18110 25 1985 66549
#> 18111 25 1990 69175
#> 18112 25 1995 75533
#> 18113 25 2000 88146
#> 18114 25 2005 102933
#> 18115 25 2010 126760
#> 18116 25 2015 146916
#> 18117 25 1950 28450
#> 18118 25 1955 33207
#> 18119 25 1960 36284
#> 18120 25 1965 39501
#> 18121 25 1970 40513
#> 18122 25 1975 48145
#> 18123 25 1980 60130
#> 18124 25 1985 65837
#> 18125 25 1990 69007
#> 18126 25 1995 67254
#> 18127 25 2000 65334
#> 18128 25 2005 54944
#> 18129 25 2010 54984
#> 18130 25 2015 48009
#> 18131 25 1950 245211
#> 18132 25 1955 257347
#> 18133 25 1960 285295
#> 18134 25 1965 321232
#> 18135 25 1970 344516
#> 18136 25 1975 347354
#> 18137 25 1980 424722
#> 18138 25 1985 470543
#> 18139 25 1990 536067
#> 18140 25 1995 576255
#> 18141 25 2000 606530
#> 18142 25 2005 729925
#> 18143 25 2010 909673
#> 18144 25 2015 964795
#> 18145 25 1950 53025102
#> 18146 25 1955 53770914
#> 18147 25 1960 53776332
#> 18148 25 1965 55706764
#> 18149 25 1970 58809259
#> 18150 25 1975 70483291
#> 18151 25 1980 74090921
#> 18152 25 1985 78895020
#> 18153 25 1990 81534042
#> 18154 25 1995 79921484
#> 18155 25 2000 78765584
#> 18156 25 2005 76989085
#> 18157 25 2010 78819595
#> 18158 25 2015 78728145
#> 18159 25 1950 114782
#> 18160 25 1955 126803
#> 18161 25 1960 145749
#> 18162 25 1965 158309
#> 18163 25 1970 172705
#> 18164 25 1975 207401
#> 18165 25 1980 266216
#> 18166 25 1985 313173
#> 18167 25 1990 365158
#> 18168 25 1995 436557
#> 18169 25 2000 510781
#> 18170 25 2005 613126
#> 18171 25 2010 712557
#> 18172 25 2015 800993
#> 18173 25 1950 788515
#> 18174 25 1955 778303
#> 18175 25 1960 716852
#> 18176 25 1965 670289
#> 18177 25 1970 749220
#> 18178 25 1975 767467
#> 18179 25 1980 906610
#> 18180 25 1985 783827
#> 18181 25 1990 604440
#> 18182 25 1995 687222
#> 18183 25 2000 758158
#> 18184 25 2005 856744
#> 18185 25 2010 642182
#> 18186 25 2015 609570
#> 18187 25 1950 11239
#> 18188 25 1955 11869
#> 18189 25 1960 12013
#> 18190 25 1965 11342
#> 18191 25 1970 13572
#> 18192 25 1975 16908
#> 18193 25 1980 18720
#> 18194 25 1985 21040
#> 18195 25 1990 21802
#> 18196 25 1995 20281
#> 18197 25 2000 20687
#> 18198 25 2005 20994
#> 18199 25 2010 24475
#> 18200 25 2015 23100
#> 18201 25 1950 30386087
#> 18202 25 1955 32446141
#> 18203 25 1960 34855237
#> 18204 25 1965 37483724
#> 18205 25 1970 39146939
#> 18206 25 1975 44356347
#> 18207 25 1980 56267941
#> 18208 25 1985 62977667
#> 18209 25 1990 70106237
#> 18210 25 1995 77009590
#> 18211 25 2000 85444175
#> 18212 25 2005 94266496
#> 18213 25 2010 105700703
#> 18214 25 2015 112808845
#> 18215 25 1950 5181252
#> 18216 25 1955 6231041
#> 18217 25 1960 7122267
#> 18218 25 1965 7913133
#> 18219 25 1970 8192476
#> 18220 25 1975 8504808
#> 18221 25 1980 10532701
#> 18222 25 1985 13424830
#> 18223 25 1990 15665491
#> 18224 25 1995 17744583
#> 18225 25 2000 19303367
#> 18226 25 2005 20504260
#> 18227 25 2010 21366369
#> 18228 25 2015 21243284
#> 18229 25 1950 1455601
#> 18230 25 1955 1543771
#> 18231 25 1960 1679803
#> 18232 25 1965 1710393
#> 18233 25 1970 1686206
#> 18234 25 1975 2124279
#> 18235 25 1980 3045718
#> 18236 25 1985 3558499
#> 18237 25 1990 4038799
#> 18238 25 1995 4429705
#> 18239 25 2000 5317580
#> 18240 25 2005 6832714
#> 18241 25 2010 9005107
#> 18242 25 2015 9200354
#> 18243 25 1950 425083
#> 18244 25 1955 441918
#> 18245 25 1960 497096
#> 18246 25 1965 562291
#> 18247 25 1970 648934
#> 18248 25 1975 683612
#> 18249 25 1980 1043572
#> 18250 25 1985 986918
#> 18251 25 1990 1129260
#> 18252 25 1995 1599444
#> 18253 25 2000 1955049
#> 18254 25 2005 2249765
#> 18255 25 2010 2448903
#> 18256 25 2015 2877334
#> 18257 25 1950 197549
#> 18258 25 1955 172300
#> 18259 25 1960 145726
#> 18260 25 1965 156397
#> 18261 25 1970 172776
#> 18262 25 1975 235776
#> 18263 25 1980 259078
#> 18264 25 1985 255286
#> 18265 25 1990 259455
#> 18266 25 1995 250022
#> 18267 25 2000 314152
#> 18268 25 2005 368464
#> 18269 25 2010 387915
#> 18270 25 2015 295180
#> 18271 25 1950 113841
#> 18272 25 1955 126768
#> 18273 25 1960 141594
#> 18274 25 1965 156638
#> 18275 25 1970 176992
#> 18276 25 1975 265165
#> 18277 25 1980 319942
#> 18278 25 1985 310000
#> 18279 25 1990 328145
#> 18280 25 1995 382814
#> 18281 25 2000 463203
#> 18282 25 2005 522861
#> 18283 25 2010 556575
#> 18284 25 2015 563762
#> 18285 25 1950 3884306
#> 18286 25 1955 3882702
#> 18287 25 1960 3714958
#> 18288 25 1965 3851311
#> 18289 25 1970 3482622
#> 18290 25 1975 4013458
#> 18291 25 1980 3849887
#> 18292 25 1985 4107399
#> 18293 25 1990 4569835
#> 18294 25 1995 4597253
#> 18295 25 2000 4310742
#> 18296 25 2005 3786584
#> 18297 25 2010 3308702
#> 18298 25 2015 3052801
#> 18299 25 1950 109601
#> 18300 25 1955 112614
#> 18301 25 1960 112609
#> 18302 25 1965 100992
#> 18303 25 1970 103048
#> 18304 25 1975 109501
#> 18305 25 1980 148669
#> 18306 25 1985 186198
#> 18307 25 1990 206693
#> 18308 25 1995 217758
#> 18309 25 2000 218490
#> 18310 25 2005 204188
#> 18311 25 2010 227019
#> 18312 25 2015 247093
#> 18313 25 1950 6185120
#> 18314 25 1955 7598528
#> 18315 25 1960 8273540
#> 18316 25 1965 8430057
#> 18317 25 1970 9275355
#> 18318 25 1975 10882013
#> 18319 25 1980 9326215
#> 18320 25 1985 7996509
#> 18321 25 1990 8127713
#> 18322 25 1995 8798521
#> 18323 25 2000 10094116
#> 18324 25 2005 8430631
#> 18325 25 2010 7580466
#> 18326 25 2015 6756332
#> 18327 25 1950 30216
#> 18328 25 1955 46175
#> 18329 25 1960 69038
#> 18330 25 1965 88846
#> 18331 25 1970 130373
#> 18332 25 1975 144994
#> 18333 25 1980 136613
#> 18334 25 1985 191713
#> 18335 25 1990 264888
#> 18336 25 1995 418059
#> 18337 25 2000 462854
#> 18338 25 2005 500273
#> 18339 25 2010 633305
#> 18340 25 2015 763201
#> 18341 25 1950 415117
#> 18342 25 1955 784800
#> 18343 25 1960 706406
#> 18344 25 1965 1177943
#> 18345 25 1970 772849
#> 18346 25 1975 958795
#> 18347 25 1980 1268068
#> 18348 25 1985 1446459
#> 18349 25 1990 1468920
#> 18350 25 1995 1199503
#> 18351 25 2000 1198562
#> 18352 25 2005 1269441
#> 18353 25 2010 1402737
#> 18354 25 2015 1698994
#> 18355 25 1950 438245
#> 18356 25 1955 505218
#> 18357 25 1960 579992
#> 18358 25 1965 592555
#> 18359 25 1970 620860
#> 18360 25 1975 844796
#> 18361 25 1980 1121461
#> 18362 25 1985 1368914
#> 18363 25 1990 1660006
#> 18364 25 1995 2042278
#> 18365 25 2000 2484023
#> 18366 25 2005 3019486
#> 18367 25 2010 3592795
#> 18368 25 2015 4059235
#> 18369 25 1950 3232
#> 18370 25 1955 3046
#> 18371 25 1960 2847
#> 18372 25 1965 2928
#> 18373 25 1970 2858
#> 18374 25 1975 3833
#> 18375 25 1980 4433
#> 18376 25 1985 5063
#> 18377 25 1990 6096
#> 18378 25 1995 6852
#> 18379 25 2000 5577
#> 18380 25 2005 6759
#> 18381 25 2010 8382
#> 18382 25 2015 9826
#> 18383 25 1950 16099
#> 18384 25 1955 20871
#> 18385 25 1960 37983
#> 18386 25 1965 59627
#> 18387 25 1970 74343
#> 18388 25 1975 89931
#> 18389 25 1980 139689
#> 18390 25 1985 184566
#> 18391 25 1990 236530
#> 18392 25 1995 207025
#> 18393 25 2000 198912
#> 18394 25 2005 276332
#> 18395 25 2010 384538
#> 18396 25 2015 356797
#> 18397 25 1950 117379
#> 18398 25 1955 183181
#> 18399 25 1960 172184
#> 18400 25 1965 207978
#> 18401 25 1970 143915
#> 18402 25 1975 180236
#> 18403 25 1980 277788
#> 18404 25 1985 345046
#> 18405 25 1990 374493
#> 18406 25 1995 352594
#> 18407 25 2000 391033
#> 18408 25 2005 415116
#> 18409 25 2010 459043
#> 18410 25 2015 587359
#> 18411 25 1950 12901540
#> 18412 25 1955 14732651
#> 18413 25 1960 15866673
#> 18414 25 1965 17729627
#> 18415 25 1970 19819989
#> 18416 25 1975 23377036
#> 18417 25 1980 28498792
#> 18418 25 1985 32603457
#> 18419 25 1990 37517010
#> 18420 25 1995 40946083
#> 18421 25 2000 44243653
#> 18422 25 2005 47654554
#> 18423 25 2010 50988047
#> 18424 25 2015 52958020
#> 18425 25 1950 136630
#> 18426 25 1955 146925
#> 18427 25 1960 155549
#> 18428 25 1965 171511
#> 18429 25 1970 192233
#> 18430 25 1975 225389
#> 18431 25 1980 224294
#> 18432 25 1985 260002
#> 18433 25 1990 317756
#> 18434 25 1995 364048
#> 18435 25 2000 405182
#> 18436 25 2005 438875
#> 18437 25 2010 519661
#> 18438 25 2015 606744
#> 18439 25 1950 137480
#> 18440 25 1955 174729
#> 18441 25 1960 174873
#> 18442 25 1965 187875
#> 18443 25 1970 177212
#> 18444 25 1975 169718
#> 18445 25 1980 187571
#> 18446 25 1985 202726
#> 18447 25 1990 204703
#> 18448 25 1995 168646
#> 18449 25 2000 165235
#> 18450 25 2005 151591
#> 18451 25 2010 152823
#> 18452 25 2015 145953
#> 18453 25 1950 15025592
#> 18454 25 1955 16470377
#> 18455 25 1960 18017386
#> 18456 25 1965 19628121
#> 18457 25 1970 21891861
#> 18458 25 1975 24301829
#> 18459 25 1980 27253448
#> 18460 25 1985 31901488
#> 18461 25 1990 37732120
#> 18462 25 1995 44040667
#> 18463 25 2000 50133408
#> 18464 25 2005 58370110
#> 18465 25 2010 67593285
#> 18466 25 2015 75578242
#> 18467 25 1950 97216
#> 18468 25 1955 120878
#> 18469 25 1960 132490
#> 18470 25 1965 137210
#> 18471 25 1970 138405
#> 18472 25 1975 167524
#> 18473 25 1980 209514
#> 18474 25 1985 213778
#> 18475 25 1990 225861
#> 18476 25 1995 259585
#> 18477 25 2000 284424
#> 18478 25 2005 323203
#> 18479 25 2010 386715
#> 18480 25 2015 543579
#> 18481 25 1950 54303
#> 18482 25 1955 52479
#> 18483 25 1960 54671
#> 18484 25 1965 59582
#> 18485 25 1970 64203
#> 18486 25 1975 79191
#> 18487 25 1980 92089
#> 18488 25 1985 102188
#> 18489 25 1990 110669
#> 18490 25 1995 135915
#> 18491 25 2000 141968
#> 18492 25 2005 160935
#> 18493 25 2010 187320
#> 18494 25 2015 210716
#> 18495 25 1950 132107779
#> 18496 25 1955 145572510
#> 18497 25 1960 159761347
#> 18498 25 1965 171430806
#> 18499 25 1970 180570871
#> 18500 25 1975 212580056
#> 18501 25 1980 271624301
#> 18502 25 1985 298865316
#> 18503 25 1990 349882655
#> 18504 25 1995 397789614
#> 18505 25 2000 419625552
#> 18506 25 2005 429401303
#> 18507 25 2010 474029781
#> 18508 25 2015 527384117
#> 18509 25 1950 89546855
#> 18510 25 1955 99846928
#> 18511 25 1960 109528086
#> 18512 25 1965 119923656
#> 18513 25 1970 127818164
#> 18514 25 1975 145590988
#> 18515 25 1980 178900860
#> 18516 25 1985 209751201
#> 18517 25 1990 239723799
#> 18518 25 1995 266824996
#> 18519 25 2000 295943571
#> 18520 25 2005 329421742
#> 18521 25 2010 368791197
#> 18522 25 2015 395472005
#> 18523 25 1950 117082187
#> 18524 25 1955 129102133
#> 18525 25 1960 141743961
#> 18526 25 1965 151802685
#> 18527 25 1970 158679010
#> 18528 25 1975 188278227
#> 18529 25 1980 244370853
#> 18530 25 1985 266963828
#> 18531 25 1990 312150535
#> 18532 25 1995 353748947
#> 18533 25 2000 369492144
#> 18534 25 2005 371031193
#> 18535 25 2010 406436496
#> 18536 25 2015 451805875
#> 18537 25 1950 74116
#> 18538 25 1955 79168
#> 18539 25 1960 86802
#> 18540 25 1965 97564
#> 18541 25 1970 108705
#> 18542 25 1975 110338
#> 18543 25 1980 132030
#> 18544 25 1985 154704
#> 18545 25 1990 149587
#> 18546 25 1995 151540
#> 18547 25 2000 218320
#> 18548 25 2005 252132
#> 18549 25 2010 309546
#> 18550 25 2015 344171
#> 18551 25 1950 88401
#> 18552 25 1955 94620
#> 18553 25 1960 109064
#> 18554 25 1965 126080
#> 18555 25 1970 147061
#> 18556 25 1975 167138
#> 18557 25 1980 215470
#> 18558 25 1985 283151
#> 18559 25 1990 334844
#> 18560 25 1995 426020
#> 18561 25 2000 531225
#> 18562 25 2005 619941
#> 18563 25 2010 628337
#> 18564 25 2015 573688
#> 18565 25 1950 186141
#> 18566 25 1955 226143
#> 18567 25 1960 237891
#> 18568 25 1965 236007
#> 18569 25 1970 226365
#> 18570 25 1975 225227
#> 18571 25 1980 247128
#> 18572 25 1985 291097
#> 18573 25 1990 303502
#> 18574 25 1995 270147
#> 18575 25 2000 248775
#> 18576 25 2005 215052
#> 18577 25 2010 205692
#> 18578 25 2015 195583
#> 18579 25 1950 9703655
#> 18580 25 1955 10509206
#> 18581 25 1960 11616083
#> 18582 25 1965 12979817
#> 18583 25 1970 14568281
#> 18584 25 1975 15946308
#> 18585 25 1980 17736272
#> 18586 25 1985 20545476
#> 18587 25 1990 23024729
#> 18588 25 1995 27249613
#> 18589 25 2000 31336539
#> 18590 25 2005 36000905
#> 18591 25 2010 42332347
#> 18592 25 2015 48841009
#> 18593 25 1950 61006698
#> 18594 25 1955 68091319
#> 18595 25 1960 73195891
#> 18596 25 1965 80157220
#> 18597 25 1970 82662281
#> 18598 25 1975 93124867
#> 18599 25 1980 115284685
#> 18600 25 1985 134650381
#> 18601 25 1990 153603012
#> 18602 25 1995 170069259
#> 18603 25 2000 188674128
#> 18604 25 2005 210365408
#> 18605 25 2010 235659354
#> 18606 25 2015 252369280
#> 18607 25 1950 20998
#> 18608 25 1955 25001
#> 18609 25 1960 23373
#> 18610 25 1965 22992
#> 18611 25 1970 22402
#> 18612 25 1975 25953
#> 18613 25 1980 28969
#> 18614 25 1985 30540
#> 18615 25 1990 32939
#> 18616 25 1995 33097
#> 18617 25 2000 31151
#> 18618 25 2005 29016
#> 18619 25 2010 35387
#> 18620 25 2015 39814
#> 18621 25 1950 311993
#> 18622 25 1955 343405
#> 18623 25 1960 380035
#> 18624 25 1965 398805
#> 18625 25 1970 413369
#> 18626 25 1975 471492
#> 18627 25 1980 632988
#> 18628 25 1985 739851
#> 18629 25 1990 856085
#> 18630 25 1995 1000935
#> 18631 25 2000 1190243
#> 18632 25 2005 1401500
#> 18633 25 2010 1595788
#> 18634 25 2015 1855738
#> 18635 25 1950 211706
#> 18636 25 1955 233873
#> 18637 25 1960 261426
#> 18638 25 1965 296138
#> 18639 25 1970 347462
#> 18640 25 1975 409100
#> 18641 25 1980 417511
#> 18642 25 1985 493986
#> 18643 25 1990 697549
#> 18644 25 1995 727561
#> 18645 25 2000 843473
#> 18646 25 2005 986962
#> 18647 25 2010 1151337
#> 18648 25 2015 1443774
#> 18649 25 1950 439998
#> 18650 25 1955 500809
#> 18651 25 1960 549092
#> 18652 25 1965 682441
#> 18653 25 1970 691206
#> 18654 25 1975 913504
#> 18655 25 1980 1133359
#> 18656 25 1985 1310772
#> 18657 25 1990 1599573
#> 18658 25 1995 1662971
#> 18659 25 2000 1935293
#> 18660 25 2005 2297042
#> 18661 25 2010 2670449
#> 18662 25 2015 3076413
#> 18663 25 1950 5725
#> 18664 25 1955 6596
#> 18665 25 1960 8163
#> 18666 25 1965 9143
#> 18667 25 1970 8333
#> 18668 25 1975 7023
#> 18669 25 1980 8739
#> 18670 25 1985 13332
#> 18671 25 1990 15985
#> 18672 25 1995 18250
#> 18673 25 2000 20548
#> 18674 25 2005 29126
#> 18675 25 2010 44228
#> 18676 25 2015 57892
#> 18677 25 1950 381710
#> 18678 25 1955 377759
#> 18679 25 1960 376665
#> 18680 25 1965 389675
#> 18681 25 1970 438319
#> 18682 25 1975 450383
#> 18683 25 1980 517479
#> 18684 25 1985 542975
#> 18685 25 1990 543576
#> 18686 25 1995 654106
#> 18687 25 2000 806584
#> 18688 25 2005 969695
#> 18689 25 2010 1118809
#> 18690 25 2015 1229009
#> 18691 25 1950 22999
#> 18692 25 1955 19509
#> 18693 25 1960 19016
#> 18694 25 1965 19703
#> 18695 25 1970 22184
#> 18696 25 1975 29447
#> 18697 25 1980 26699
#> 18698 25 1985 29006
#> 18699 25 1990 27652
#> 18700 25 1995 23824
#> 18701 25 2000 28727
#> 18702 25 2005 29604
#> 18703 25 2010 30178
#> 18704 25 2015 31337
#> 18705 25 1950 17000
#> 18706 25 1955 16907
#> 18707 25 1960 18805
#> 18708 25 1965 18126
#> 18709 25 1970 18562
#> 18710 25 1975 17240
#> 18711 25 1980 21929
#> 18712 25 1985 27016
#> 18713 25 1990 32896
#> 18714 25 1995 30431
#> 18715 25 2000 27164
#> 18716 25 2005 19314
#> 18717 25 2010 18961
#> 18718 25 2015 20932
#> 18719 25 1950 51828
#> 18720 25 1955 57464
#> 18721 25 1960 63680
#> 18722 25 1965 71727
#> 18723 25 1970 79908
#> 18724 25 1975 89823
#> 18725 25 1980 107608
#> 18726 25 1985 131691
#> 18727 25 1990 151959
#> 18728 25 1995 174832
#> 18729 25 2000 211353
#> 18730 25 2005 248788
#> 18731 25 2010 288207
#> 18732 25 2015 335776
#> 18733 25 1950 36034
#> 18734 25 1955 41672
#> 18735 25 1960 47224
#> 18736 25 1965 53001
#> 18737 25 1970 61925
#> 18738 25 1975 71476
#> 18739 25 1980 84489
#> 18740 25 1985 89874
#> 18741 25 1990 98664
#> 18742 25 1995 110823
#> 18743 25 2000 93806
#> 18744 25 2005 106957
#> 18745 25 2010 91251
#> 18746 25 2015 89040
#> 18747 25 1950 843
#> 18748 25 1955 1047
#> 18749 25 1960 1454
#> 18750 25 1965 1940
#> 18751 25 1970 2472
#> 18752 25 1975 2920
#> 18753 25 1980 3677
#> 18754 25 1985 4755
#> 18755 25 1990 6642
#> 18756 25 1995 9470
#> 18757 25 2000 11545
#> 18758 25 2005 14006
#> 18759 25 2010 15475
#> 18760 25 2015 17202
#> 18761 25 1950 169378
#> 18762 25 1955 183149
#> 18763 25 1960 200657
#> 18764 25 1965 220786
#> 18765 25 1970 248711
#> 18766 25 1975 283325
#> 18767 25 1980 342119
#> 18768 25 1985 399417
#> 18769 25 1990 449471
#> 18770 25 1995 506479
#> 18771 25 2000 583409
#> 18772 25 2005 665642
#> 18773 25 2010 740840
#> 18774 25 2015 787236
#> 18775 25 1950 2120097
#> 18776 25 1955 2409425
#> 18777 25 1960 2652537
#> 18778 25 1965 2841009
#> 18779 25 1970 3401817
#> 18780 25 1975 3890980
#> 18781 25 1980 5068453
#> 18782 25 1985 5850303
#> 18783 25 1990 6658136
#> 18784 25 1995 7901331
#> 18785 25 2000 9652457
#> 18786 25 2005 9606265
#> 18787 25 2010 9873289
#> 18788 25 2015 10552363
#> 18789 25 1950 15082
#> 18790 25 1955 14394
#> 18791 25 1960 14041
#> 18792 25 1965 15487
#> 18793 25 1970 16615
#> 18794 25 1975 19657
#> 18795 25 1980 24979
#> 18796 25 1985 31224
#> 18797 25 1990 36410
#> 18798 25 1995 40372
#> 18799 25 2000 40285
#> 18800 25 2005 34716
#> 18801 25 2010 35651
#> 18802 25 2015 39509
#> 18803 25 1950 2402
#> 18804 25 1955 2717
#> 18805 25 1960 3088
#> 18806 25 1965 3527
#> 18807 25 1970 4034
#> 18808 25 1975 3204
#> 18809 25 1980 5421
#> 18810 25 1985 6359
#> 18811 25 1990 6980
#> 18812 25 1995 6726
#> 18813 25 2000 7180
#> 18814 25 2005 7376
#> 18815 25 2010 9111
#> 18816 25 2015 9720
#> 18817 25 1950 2007070
#> 18818 25 1955 2206610
#> 18819 25 1960 2424935
#> 18820 25 1965 2681931
#> 18821 25 1970 2967203
#> 18822 25 1975 3281895
#> 18823 25 1980 3826251
#> 18824 25 1985 4349892
#> 18825 25 1990 5034946
#> 18826 25 1995 5987152
#> 18827 25 2000 6959334
#> 18828 25 2005 8245370
#> 18829 25 2010 9749614
#> 18830 25 2015 11384737
#> 18831 25 1950 133570413
#> 18832 25 1955 151589571
#> 18833 25 1960 161208437
#> 18834 25 1965 174409932
#> 18835 25 1970 173830111
#> 18836 25 1975 207964637
#> 18837 25 1980 266650719
#> 18838 25 1985 289732947
#> 18839 25 1990 335231684
#> 18840 25 1995 376249840
#> 18841 25 2000 394257926
#> 18842 25 2005 399342747
#> 18843 25 2010 437378510
#> 18844 25 2015 484649391
#> 18845 25 1950 59269
#> 18846 25 1955 63513
#> 18847 25 1960 68544
#> 18848 25 1965 74059
#> 18849 25 1970 76766
#> 18850 25 1975 82039
#> 18851 25 1980 110376
#> 18852 25 1985 138682
#> 18853 25 1990 189053
#> 18854 25 1995 201286
#> 18855 25 2000 219846
#> 18856 25 2005 234645
#> 18857 25 2010 260432
#> 18858 25 2015 309686
#> 18859 25 1950 25708
#> 18860 25 1955 37057
#> 18861 25 1960 43468
#> 18862 25 1965 47193
#> 18863 25 1970 36495
#> 18864 25 1975 41632
#> 18865 25 1980 51541
#> 18866 25 1985 55128
#> 18867 25 1990 51531
#> 18868 25 1995 46182
#> 18869 25 2000 44135
#> 18870 25 2005 45241
#> 18871 25 2010 46596
#> 18872 25 2015 43060
#> 18873 25 1950 64253698
#> 18874 25 1955 70361502
#> 18875 25 1960 66910048
#> 18876 25 1965 71737774
#> 18877 25 1970 66717553
#> 18878 25 1975 81896208
#> 18879 25 1980 86964172
#> 18880 25 1985 90445418
#> 18881 25 1990 90077301
#> 18882 25 1995 85809688
#> 18883 25 2000 84908210
#> 18884 25 2005 83112923
#> 18885 25 2010 84679833
#> 18886 25 2015 85018567
#> 18887 25 1950 740918
#> 18888 25 1955 928247
#> 18889 25 1960 972414
#> 18890 25 1965 947906
#> 18891 25 1970 895931
#> 18892 25 1975 868649
#> 18893 25 1980 1404853
#> 18894 25 1985 1826890
#> 18895 25 1990 2137313
#> 18896 25 1995 2233277
#> 18897 25 2000 2344614
#> 18898 25 2005 2531778
#> 18899 25 2010 2849279
#> 18900 25 2015 2941423
#> 18901 25 1950 472019
#> 18902 25 1955 507191
#> 18903 25 1960 550600
#> 18904 25 1965 602669
#> 18905 25 1970 665587
#> 18906 25 1975 730967
#> 18907 25 1980 877415
#> 18908 25 1985 933700
#> 18909 25 1990 823911
#> 18910 25 1995 1121135
#> 18911 25 2000 1328517
#> 18912 25 2005 1555617
#> 18913 25 2010 1798134
#> 18914 25 2015 2048059
#> 18915 25 1950 1469600
#> 18916 25 1955 1580346
#> 18917 25 1960 1584782
#> 18918 25 1965 1507848
#> 18919 25 1970 1593102
#> 18920 25 1975 1942971
#> 18921 25 1980 2693856
#> 18922 25 1985 3020728
#> 18923 25 1990 3327466
#> 18924 25 1995 3686967
#> 18925 25 2000 4028697
#> 18926 25 2005 4262088
#> 18927 25 2010 4243712
#> 18928 25 2015 4216335
#> 18929 25 1950 13991142
#> 18930 25 1955 13455500
#> 18931 25 1960 12597632
#> 18932 25 1965 13020416
#> 18933 25 1970 15611826
#> 18934 25 1975 19505920
#> 18935 25 1980 22151779
#> 18936 25 1985 24385063
#> 18937 25 1990 24044896
#> 18938 25 1995 21999736
#> 18939 25 2000 21384161
#> 18940 25 2005 21605491
#> 18941 25 2010 23158835
#> 18942 25 2015 24896030
#> 18943 25 1950 37920
#> 18944 25 1955 42170
#> 18945 25 1960 43247
#> 18946 25 1965 46883
#> 18947 25 1970 54726
#> 18948 25 1975 63329
#> 18949 25 1980 67067
#> 18950 25 1985 75796
#> 18951 25 1990 110094
#> 18952 25 1995 135248
#> 18953 25 2000 163235
#> 18954 25 2005 170134
#> 18955 25 2010 176713
#> 18956 25 2015 212566
#> 18957 25 1950 720705
#> 18958 25 1955 761613
#> 18959 25 1960 772823
#> 18960 25 1965 825768
#> 18961 25 1970 888674
#> 18962 25 1975 925218
#> 18963 25 1980 1190212
#> 18964 25 1985 1272124
#> 18965 25 1990 1361428
#> 18966 25 1995 1607352
#> 18967 25 2000 1811157
#> 18968 25 2005 1934742
#> 18969 25 2010 2031359
#> 18970 25 2015 2305142
#> 18971 25 1950 799026
#> 18972 25 1955 765056
#> 18973 25 1960 783694
#> 18974 25 1965 801622
#> 18975 25 1970 913092
#> 18976 25 1975 1204047
#> 18977 25 1980 1155767
#> 18978 25 1985 1211777
#> 18979 25 1990 1303041
#> 18980 25 1995 1297421
#> 18981 25 2000 1143412
#> 18982 25 2005 995972
#> 18983 25 2010 1003224
#> 18984 25 2015 1066096
#> 18985 25 1950 4911
#> 18986 25 1955 4934
#> 18987 25 1960 5776
#> 18988 25 1965 6611
#> 18989 25 1970 8140
#> 18990 25 1975 9816
#> 18991 25 1980 10658
#> 18992 25 1985 11329
#> 18993 25 1990 13123
#> 18994 25 1995 16195
#> 18995 25 2000 19789
#> 18996 25 2005 18008
#> 18997 25 2010 16604
#> 18998 25 2015 20031
#> 18999 25 1950 143002
#> 19000 25 1955 153043
#> 19001 25 1960 146026
#> 19002 25 1965 164019
#> 19003 25 1970 183127
#> 19004 25 1975 242104
#> 19005 25 1980 238607
#> 19006 25 1985 261891
#> 19007 25 1990 278498
#> 19008 25 1995 280139
#> 19009 25 2000 268626
#> 19010 25 2005 256095
#> 19011 25 2010 287186
#> 19012 25 2015 315914
#> 19013 25 1950 102574
#> 19014 25 1955 114752
#> 19015 25 1960 126511
#> 19016 25 1965 141330
#> 19017 25 1970 159799
#> 19018 25 1975 166460
#> 19019 25 1980 245258
#> 19020 25 1985 289195
#> 19021 25 1990 300776
#> 19022 25 1995 341630
#> 19023 25 2000 405236
#> 19024 25 2005 466137
#> 19025 25 2010 532014
#> 19026 25 2015 564264
#> 19027 25 1950 187654
#> 19028 25 1955 211557
#> 19029 25 1960 239602
#> 19030 25 1965 281601
#> 19031 25 1970 334943
#> 19032 25 1975 356460
#> 19033 25 1980 429919
#> 19034 25 1985 419957
#> 19035 25 1990 600840
#> 19036 25 1995 586169
#> 19037 25 2000 719829
#> 19038 25 2005 878775
#> 19039 25 2010 1031979
#> 19040 25 2015 1233522
#> 19041 25 1950 2873919
#> 19042 25 1955 3112086
#> 19043 25 1960 3409001
#> 19044 25 1965 3810922
#> 19045 25 1970 4244952
#> 19046 25 1975 4651865
#> 19047 25 1980 5244113
#> 19048 25 1985 5895199
#> 19049 25 1990 6722142
#> 19050 25 1995 7681764
#> 19051 25 2000 9154240
#> 19052 25 2005 10783587
#> 19053 25 2010 12292024
#> 19054 25 2015 13565289
#> 19055 25 1950 3781847
#> 19056 25 1955 4370518
#> 19057 25 1960 4747546
#> 19058 25 1965 4860030
#> 19059 25 1970 5012004
#> 19060 25 1975 6030213
#> 19061 25 1980 7595940
#> 19062 25 1985 9249746
#> 19063 25 1990 10925763
#> 19064 25 1995 12305285
#> 19065 25 2000 13749406
#> 19066 25 2005 16099203
#> 19067 25 2010 18296236
#> 19068 25 2015 19642074
#> 19069 25 1950 5950988
#> 19070 25 1955 5439300
#> 19071 25 1960 5168812
#> 19072 25 1965 5350852
#> 19073 25 1970 5821364
#> 19074 25 1975 6838223
#> 19075 25 1980 6290260
#> 19076 25 1985 6574027
#> 19077 25 1990 7339474
#> 19078 25 1995 7121082
#> 19079 25 2000 6529871
#> 19080 25 2005 6129009
#> 19081 25 2010 6708214
#> 19082 25 2015 6942151
#> 19083 25 1950 267851
#> 19084 25 1955 229495
#> 19085 25 1960 201148
#> 19086 25 1965 204910
#> 19087 25 1970 252827
#> 19088 25 1975 315291
#> 19089 25 1980 303797
#> 19090 25 1985 312814
#> 19091 25 1990 323537
#> 19092 25 1995 344509
#> 19093 25 2000 329875
#> 19094 25 2005 289275
#> 19095 25 2010 309113
#> 19096 25 2015 358601
#> 19097 25 1950 1019238
#> 19098 25 1955 1071289
#> 19099 25 1960 1037366
#> 19100 25 1965 1146747
#> 19101 25 1970 1380179
#> 19102 25 1975 1727085
#> 19103 25 1980 1848528
#> 19104 25 1985 2049747
#> 19105 25 1990 2231583
#> 19106 25 1995 2260684
#> 19107 25 2000 2390527
#> 19108 25 2005 2332513
#> 19109 25 2010 2748453
#> 19110 25 2015 2953806
#> 19111 25 1950 34155
#> 19112 25 1955 35601
#> 19113 25 1960 39483
#> 19114 25 1965 44709
#> 19115 25 1970 52407
#> 19116 25 1975 66486
#> 19117 25 1980 90695
#> 19118 25 1985 113460
#> 19119 25 1990 138439
#> 19120 25 1995 205737
#> 19121 25 2000 205108
#> 19122 25 2005 262492
#> 19123 25 2010 412728
#> 19124 25 2015 693796
#> 19125 25 1950 2812581
#> 19126 25 1955 3108784
#> 19127 25 1960 3475289
#> 19128 25 1965 3904541
#> 19129 25 1970 4428728
#> 19130 25 1975 4631485
#> 19131 25 1980 5081199
#> 19132 25 1985 6712091
#> 19133 25 1990 8117520
#> 19134 25 1995 9098848
#> 19135 25 2000 10200604
#> 19136 25 2005 12007862
#> 19137 25 2010 14197110
#> 19138 25 2015 16799090
#> 19139 25 1950 63868
#> 19140 25 1955 71014
#> 19141 25 1960 80829
#> 19142 25 1965 93758
#> 19143 25 1970 109284
#> 19144 25 1975 127851
#> 19145 25 1980 152304
#> 19146 25 1985 181755
#> 19147 25 1990 212069
#> 19148 25 1995 240248
#> 19149 25 2000 266862
#> 19150 25 2005 282208
#> 19151 25 2010 294657
#> 19152 25 2015 311335
#> 19153 25 1950 132999
#> 19154 25 1955 142824
#> 19155 25 1960 153393
#> 19156 25 1965 166254
#> 19157 25 1970 182140
#> 19158 25 1975 207290
#> 19159 25 1980 256175
#> 19160 25 1985 293314
#> 19161 25 1990 336382
#> 19162 25 1995 388260
#> 19163 25 2000 452916
#> 19164 25 2005 523206
#> 19165 25 2010 585824
#> 19166 25 2015 629825
#> 19167 25 1950 106434
#> 19168 25 1955 116730
#> 19169 25 1960 112880
#> 19170 25 1965 135576
#> 19171 25 1970 155840
#> 19172 25 1975 192973
#> 19173 25 1980 245589
#> 19174 25 1985 285763
#> 19175 25 1990 331211
#> 19176 25 1995 369761
#> 19177 25 2000 392337
#> 19178 25 2005 461076
#> 19179 25 2010 547451
#> 19180 25 2015 605472
#> 19181 25 1950 550932
#> 19182 25 1955 634700
#> 19183 25 1960 737015
#> 19184 25 1965 827818
#> 19185 25 1970 922698
#> 19186 25 1975 1086943
#> 19187 25 1980 1303194
#> 19188 25 1985 1529962
#> 19189 25 1990 1814667
#> 19190 25 1995 2047782
#> 19191 25 2000 2167969
#> 19192 25 2005 2384682
#> 19193 25 2010 2491568
#> 19194 25 2015 2710542
#> 19195 25 1950 1323046
#> 19196 25 1955 1416730
#> 19197 25 1960 1803772
#> 19198 25 1965 2100965
#> 19199 25 1970 2440812
#> 19200 25 1975 2882868
#> 19201 25 1980 3938538
#> 19202 25 1985 4524494
#> 19203 25 1990 5140509
#> 19204 25 1995 5697440
#> 19205 25 2000 6248542
#> 19206 25 2005 6931751
#> 19207 25 2010 7496451
#> 19208 25 2015 8314575
#> 19209 25 1950 2108000
#> 19210 25 1955 2333988
#> 19211 25 1960 2328978
#> 19212 25 1965 2196949
#> 19213 25 1970 1909049
#> 19214 25 1975 2774234
#> 19215 25 1980 3330091
#> 19216 25 1985 3370582
#> 19217 25 1990 2654621
#> 19218 25 1995 2457944
#> 19219 25 2000 2776620
#> 19220 25 2005 3120358
#> 19221 25 2010 3252002
#> 19222 25 2015 2839783
#> 19223 25 1950 18890
#> 19224 25 1955 20106
#> 19225 25 1960 20832
#> 19226 25 1965 23815
#> 19227 25 1970 25602
#> 19228 25 1975 25466
#> 19229 25 1980 32022
#> 19230 25 1985 37506
#> 19231 25 1990 45109
#> 19232 25 1995 50039
#> 19233 25 2000 47619
#> 19234 25 2005 45781
#> 19235 25 2010 46870
#> 19236 25 2015 47866
#> 19237 25 1950 679572
#> 19238 25 1955 700665
#> 19239 25 1960 679392
#> 19240 25 1965 627874
#> 19241 25 1970 527814
#> 19242 25 1975 621067
#> 19243 25 1980 678266
#> 19244 25 1985 728036
#> 19245 25 1990 735902
#> 19246 25 1995 760363
#> 19247 25 2000 810399
#> 19248 25 2005 812255
#> 19249 25 2010 686193
#> 19250 25 2015 570090
#> 19251 25 1950 157702
#> 19252 25 1955 145014
#> 19253 25 1960 135040
#> 19254 25 1965 178192
#> 19255 25 1970 182867
#> 19256 25 1975 240549
#> 19257 25 1980 234459
#> 19258 25 1985 254183
#> 19259 25 1990 270071
#> 19260 25 1995 259046
#> 19261 25 2000 270936
#> 19262 25 2005 275288
#> 19263 25 2010 268513
#> 19264 25 2015 263917
#> 19265 25 1950 1829
#> 19266 25 1955 2975
#> 19267 25 1960 4126
#> 19268 25 1965 7288
#> 19269 25 1970 12334
#> 19270 25 1975 18592
#> 19271 25 1980 28001
#> 19272 25 1985 54037
#> 19273 25 1990 50325
#> 19274 25 1995 57839
#> 19275 25 2000 55083
#> 19276 25 2005 102430
#> 19277 25 2010 300142
#> 19278 25 2015 430807
#> 19279 25 1950 1435917
#> 19280 25 1955 1440087
#> 19281 25 1960 1863187
#> 19282 25 1965 2179297
#> 19283 25 1970 2243645
#> 19284 25 1975 2605703
#> 19285 25 1980 3080261
#> 19286 25 1985 4134355
#> 19287 25 1990 4310439
#> 19288 25 1995 4399999
#> 19289 25 2000 4477099
#> 19290 25 2005 3978457
#> 19291 25 2010 3709423
#> 19292 25 2015 3248205
#> 19293 25 1950 200601
#> 19294 25 1955 232252
#> 19295 25 1960 240428
#> 19296 25 1965 274796
#> 19297 25 1970 233131
#> 19298 25 1975 244366
#> 19299 25 1980 345936
#> 19300 25 1985 373179
#> 19301 25 1990 340278
#> 19302 25 1995 278500
#> 19303 25 2000 294537
#> 19304 25 2005 354436
#> 19305 25 2010 363090
#> 19306 25 2015 425802
#> 19307 25 1950 20571
#> 19308 25 1955 20847
#> 19309 25 1960 23223
#> 19310 25 1965 22822
#> 19311 25 1970 26167
#> 19312 25 1975 27960
#> 19313 25 1980 36813
#> 19314 25 1985 47612
#> 19315 25 1990 57159
#> 19316 25 1995 63258
#> 19317 25 2000 57774
#> 19318 25 2005 55876
#> 19319 25 2010 52261
#> 19320 25 2015 50917
#> 19321 25 1950 1368659
#> 19322 25 1955 1557361
#> 19323 25 1960 1578403
#> 19324 25 1965 1607192
#> 19325 25 1970 1271285
#> 19326 25 1975 1576385
#> 19327 25 1980 1858079
#> 19328 25 1985 1761415
#> 19329 25 1990 1363042
#> 19330 25 1995 1838797
#> 19331 25 2000 1702493
#> 19332 25 2005 1700892
#> 19333 25 2010 1323546
#> 19334 25 2015 1427078
#> 19335 25 1950 8012741
#> 19336 25 1955 11880536
#> 19337 25 1960 9794835
#> 19338 25 1965 12103107
#> 19339 25 1970 6656208
#> 19340 25 1975 10138547
#> 19341 25 1980 11993063
#> 19342 25 1985 13024596
#> 19343 25 1990 11718652
#> 19344 25 1995 9598060
#> 19345 25 2000 10315818
#> 19346 25 2005 10946321
#> 19347 25 2010 12052096
#> 19348 25 2015 12576698
#> 19349 25 1950 162499
#> 19350 25 1955 210549
#> 19351 25 1960 227827
#> 19352 25 1965 195408
#> 19353 25 1970 219078
#> 19354 25 1975 311790
#> 19355 25 1980 388921
#> 19356 25 1985 453889
#> 19357 25 1990 502194
#> 19358 25 1995 465197
#> 19359 25 2000 550795
#> 19360 25 2005 688870
#> 19361 25 2010 932462
#> 19362 25 2015 1066715
#> 19363 25 1950 6558
#> 19364 25 1955 6568
#> 19365 25 1960 5452
#> 19366 25 1965 5291
#> 19367 25 1970 5032
#> 19368 25 1975 6242
#> 19369 25 1980 7361
#> 19370 25 1985 9146
#> 19371 25 1990 11480
#> 19372 25 1995 12070
#> 19373 25 2000 12682
#> 19374 25 2005 13383
#> 19375 25 2010 14186
#> 19376 25 2015 13910
#> 19377 25 1950 3782
#> 19378 25 1955 4277
#> 19379 25 1960 4310
#> 19380 25 1965 4636
#> 19381 25 1970 4639
#> 19382 25 1975 5357
#> 19383 25 1980 6471
#> 19384 25 1985 7923
#> 19385 25 1990 9628
#> 19386 25 1995 8997
#> 19387 25 2000 8853
#> 19388 25 2005 9178
#> 19389 25 2010 9263
#> 19390 25 2015 8885
#> 19391 25 1950 6558
#> 19392 25 1955 6544
#> 19393 25 1960 7035
#> 19394 25 1965 8358
#> 19395 25 1970 8548
#> 19396 25 1975 7022
#> 19397 25 1980 9493
#> 19398 25 1985 10134
#> 19399 25 1990 13164
#> 19400 25 1995 13377
#> 19401 25 2000 13110
#> 19402 25 2005 12630
#> 19403 25 2010 12714
#> 19404 25 2015 12317
#> 19405 25 1950 7249
#> 19406 25 1955 7102
#> 19407 25 1960 7789
#> 19408 25 1965 5937
#> 19409 25 1970 4454
#> 19410 25 1975 4861
#> 19411 25 1980 5365
#> 19412 25 1985 6626
#> 19413 25 1990 7895
#> 19414 25 1995 8836
#> 19415 25 2000 9932
#> 19416 25 2005 13976
#> 19417 25 2010 12737
#> 19418 25 2015 16054
#> 19419 25 1950 225944
#> 19420 25 1955 257882
#> 19421 25 1960 293444
#> 19422 25 1965 347389
#> 19423 25 1970 423798
#> 19424 25 1975 569051
#> 19425 25 1980 797299
#> 19426 25 1985 1184844
#> 19427 25 1990 1595985
#> 19428 25 1995 1552371
#> 19429 25 2000 1862113
#> 19430 25 2005 2337284
#> 19431 25 2010 2426909
#> 19432 25 2015 2819423
#> 19433 25 1950 187246
#> 19434 25 1955 211685
#> 19435 25 1960 238375
#> 19436 25 1965 267823
#> 19437 25 1970 303053
#> 19438 25 1975 340186
#> 19439 25 1980 387038
#> 19440 25 1985 433270
#> 19441 25 1990 512664
#> 19442 25 1995 618544
#> 19443 25 2000 734044
#> 19444 25 2005 876907
#> 19445 25 2010 1051545
#> 19446 25 2015 1201252
#> 19447 25 1950 562191
#> 19448 25 1955 686651
#> 19449 25 1960 681358
#> 19450 25 1965 600308
#> 19451 25 1970 502458
#> 19452 25 1975 705536
#> 19453 25 1980 789629
#> 19454 25 1985 675441
#> 19455 25 1990 657005
#> 19456 25 1995 687885
#> 19457 25 2000 666638
#> 19458 25 2005 662264
#> 19459 25 2010 612199
#> 19460 25 2015 614400
#> 19461 25 1950 2908
#> 19462 25 1955 2966
#> 19463 25 1960 2951
#> 19464 25 1965 2972
#> 19465 25 1970 2746
#> 19466 25 1975 2928
#> 19467 25 1980 5070
#> 19468 25 1985 6279
#> 19469 25 1990 6341
#> 19470 25 1995 6605
#> 19471 25 2000 6998
#> 19472 25 2005 8237
#> 19473 25 2010 7741
#> 19474 25 2015 7039
#> 19475 25 1950 159599
#> 19476 25 1955 167962
#> 19477 25 1960 177626
#> 19478 25 1965 190236
#> 19479 25 1970 206772
#> 19480 25 1975 222019
#> 19481 25 1980 233160
#> 19482 25 1985 255096
#> 19483 25 1990 293859
#> 19484 25 1995 302054
#> 19485 25 2000 342729
#> 19486 25 2005 437463
#> 19487 25 2010 510945
#> 19488 25 2015 568088
#> 19489 25 1950 81100
#> 19490 25 1955 97200
#> 19491 25 1960 122501
#> 19492 25 1965 137804
#> 19493 25 1970 132625
#> 19494 25 1975 207023
#> 19495 25 1980 252986
#> 19496 25 1985 311605
#> 19497 25 1990 343607
#> 19498 25 1995 333448
#> 19499 25 2000 320216
#> 19500 25 2005 343858
#> 19501 25 2010 366715
#> 19502 25 2015 355856
#> 19503 25 1950 307124
#> 19504 25 1955 298137
#> 19505 25 1960 296623
#> 19506 25 1965 280064
#> 19507 25 1970 300557
#> 19508 25 1975 356933
#> 19509 25 1980 441813
#> 19510 25 1985 433806
#> 19511 25 1990 395167
#> 19512 25 1995 366442
#> 19513 25 2000 423822
#> 19514 25 2005 476861
#> 19515 25 2010 443182
#> 19516 25 2015 411023
#> 19517 25 1950 114200
#> 19518 25 1955 128930
#> 19519 25 1960 129169
#> 19520 25 1965 121695
#> 19521 25 1970 116134
#> 19522 25 1975 142522
#> 19523 25 1980 157198
#> 19524 25 1985 157763
#> 19525 25 1990 156444
#> 19526 25 1995 148486
#> 19527 25 2000 142976
#> 19528 25 2005 154162
#> 19529 25 2010 148522
#> 19530 25 2015 132884
#> 19531 25 1950 7000
#> 19532 25 1955 7384
#> 19533 25 1960 9429
#> 19534 25 1965 9605
#> 19535 25 1970 12516
#> 19536 25 1975 12908
#> 19537 25 1980 15015
#> 19538 25 1985 18677
#> 19539 25 1990 22329
#> 19540 25 1995 26147
#> 19541 25 2000 35293
#> 19542 25 2005 39645
#> 19543 25 2010 41955
#> 19544 25 2015 43300
#> 19545 25 1950 173361
#> 19546 25 1955 184854
#> 19547 25 1960 197556
#> 19548 25 1965 226920
#> 19549 25 1970 241760
#> 19550 25 1975 283445
#> 19551 25 1980 479382
#> 19552 25 1985 510113
#> 19553 25 1990 549612
#> 19554 25 1995 573394
#> 19555 25 2000 648714
#> 19556 25 2005 699018
#> 19557 25 2010 806570
#> 19558 25 2015 992193
#> 19559 25 1950 1051999
#> 19560 25 1955 1162835
#> 19561 25 1960 1268018
#> 19562 25 1965 1411130
#> 19563 25 1970 1631684
#> 19564 25 1975 1858578
#> 19565 25 1980 2351695
#> 19566 25 1985 2684524
#> 19567 25 1990 3013035
#> 19568 25 1995 3495354
#> 19569 25 2000 3981790
#> 19570 25 2005 4383228
#> 19571 25 2010 4840177
#> 19572 25 2015 5134452
#> 19573 25 1950 8735630
#> 19574 25 1955 10092166
#> 19575 25 1960 10779557
#> 19576 25 1965 12184705
#> 19577 25 1970 13504335
#> 19578 25 1975 16211662
#> 19579 25 1980 19458636
#> 19580 25 1985 22306087
#> 19581 25 1990 25601585
#> 19582 25 1995 27431817
#> 19583 25 2000 28659775
#> 19584 25 2005 31875596
#> 19585 25 2010 34240533
#> 19586 25 2015 34938625
#> 19587 25 1950 189327
#> 19588 25 1955 208951
#> 19589 25 1960 234618
#> 19590 25 1965 261061
#> 19591 25 1970 290879
#> 19592 25 1975 314775
#> 19593 25 1980 311043
#> 19594 25 1985 383669
#> 19595 25 1990 422050
#> 19596 25 1995 408518
#> 19597 25 2000 496315
#> 19598 25 2005 598108
#> 19599 25 2010 739781
#> 19600 25 2015 927419
#> 19601 25 1950 40595943
#> 19602 25 1955 44342283
#> 19603 25 1960 47730319
#> 19604 25 1965 52095620
#> 19605 25 1970 54317958
#> 19606 25 1975 61157676
#> 19607 25 1980 75559641
#> 19608 25 1985 87214157
#> 19609 25 1990 99127397
#> 19610 25 1995 109233084
#> 19611 25 2000 121049909
#> 19612 25 2005 136140336
#> 19613 25 2010 154192560
#> 19614 25 2015 166381707
#> 19615 25 1950 12580681
#> 19616 25 1955 14422472
#> 19617 25 1960 16427428
#> 19618 25 1965 17766991
#> 19619 25 1970 18611120
#> 19620 25 1975 21075089
#> 19621 25 1980 27209943
#> 19622 25 1985 33225021
#> 19623 25 1990 38171339
#> 19624 25 1995 42347613
#> 19625 25 2000 45715368
#> 19626 25 2005 48362593
#> 19627 25 2010 51622224
#> 19628 25 2015 52360050
#> 19629 25 1950 1198476
#> 19630 25 1955 1314081
#> 19631 25 1960 1428795
#> 19632 25 1965 1585358
#> 19633 25 1970 1823771
#> 19634 25 1975 2086324
#> 19635 25 1980 2628612
#> 19636 25 1985 3000348
#> 19637 25 1990 3398088
#> 19638 25 1995 3956481
#> 19639 25 2000 4509272
#> 19640 25 2005 4975860
#> 19641 25 2010 5520878
#> 19642 25 2015 5904288
#> 19643 25 1950 39445266
#> 19644 25 1955 42406362
#> 19645 25 1960 45878518
#> 19646 25 1965 49625494
#> 19647 25 1970 52541051
#> 19648 25 1975 58987138
#> 19649 25 1980 72302711
#> 19650 25 1985 83236763
#> 19651 25 1990 94735873
#> 19652 25 1995 105157177
#> 19653 25 2000 116662657
#> 19654 25 2005 131325815
#> 19655 25 2010 148630592
#> 19656 25 2015 159688767
#> 19657 25 1950 8941090
#> 19658 25 1955 9519588
#> 19659 25 1960 9485951
#> 19660 25 1965 9072394
#> 19661 25 1970 8241410
#> 19662 25 1975 9667007
#> 19663 25 1980 9918711
#> 19664 25 1985 10675182
#> 19665 25 1990 11367470
#> 19666 25 1995 11361132
#> 19667 25 2000 11257833
#> 19668 25 2005 10976150
#> 19669 25 2010 9795500
#> 19670 25 2015 8437530
#> 19671 25 1950 2387758
#> 19672 25 1955 2520038
#> 19673 25 1960 2563050
#> 19674 25 1965 2186283
#> 19675 25 1970 2276177
#> 19676 25 1975 2506886
#> 19677 25 1980 2563164
#> 19678 25 1985 2975022
#> 19679 25 1990 3190808
#> 19680 25 1995 3251709
#> 19681 25 2000 3419600
#> 19682 25 2005 3684700
#> 19683 25 2010 3209356
#> 19684 25 2015 2474831
#> 19685 25 1950 593292
#> 19686 25 1955 661401
#> 19687 25 1960 707691
#> 19688 25 1965 791957
#> 19689 25 1970 918239
#> 19690 25 1975 1122965
#> 19691 25 1980 1236199
#> 19692 25 1985 1428563
#> 19693 25 1990 1512187
#> 19694 25 1995 1594667
#> 19695 25 2000 1494351
#> 19696 25 2005 1649130
#> 19697 25 2010 1625130
#> 19698 25 2015 1448974
#> 19699 25 1950 59403
#> 19700 25 1955 64551
#> 19701 25 1960 75365
#> 19702 25 1965 87011
#> 19703 25 1970 79487
#> 19704 25 1975 93446
#> 19705 25 1980 97525
#> 19706 25 1985 115238
#> 19707 25 1990 155334
#> 19708 25 1995 193936
#> 19709 25 2000 234962
#> 19710 25 2005 269713
#> 19711 25 2010 311097
#> 19712 25 2015 383590
#> 19713 25 1950 13601288
#> 19714 25 1955 14938651
#> 19715 25 1960 16469276
#> 19716 25 1965 18163873
#> 19717 25 1970 20424920
#> 19718 25 1975 22973379
#> 19719 25 1980 26725747
#> 19720 25 1985 30576425
#> 19721 25 1990 35295099
#> 19722 25 1995 41001057
#> 19723 25 2000 48161711
#> 19724 25 2005 56554382
#> 19725 25 2010 65976673
#> 19726 25 2015 75194710
#> 19727 25 1950 421148
#> 19728 25 1955 476576
#> 19729 25 1960 542370
#> 19730 25 1965 620570
#> 19731 25 1970 715570
#> 19732 25 1975 845836
#> 19733 25 1980 1014637
#> 19734 25 1985 1216063
#> 19735 25 1990 1468338
#> 19736 25 1995 1818985
#> 19737 25 2000 2066039
#> 19738 25 2005 2383192
#> 19739 25 2010 2564410
#> 19740 25 2015 2861658
#> 19741 25 1950 16001
#> 19742 25 1955 18002
#> 19743 25 1960 20015
#> 19744 25 1965 21294
#> 19745 25 1970 20090
#> 19746 25 1975 20197
#> 19747 25 1980 24779
#> 19748 25 1985 31220
#> 19749 25 1990 40051
#> 19750 25 1995 39679
#> 19751 25 2000 41769
#> 19752 25 2005 37761
#> 19753 25 2010 41374
#> 19754 25 2015 43649
#> 19755 25 1950 20735
#> 19756 25 1955 22518
#> 19757 25 1960 24992
#> 19758 25 1965 26059
#> 19759 25 1970 27555
#> 19760 25 1975 32720
#> 19761 25 1980 38406
#> 19762 25 1985 45159
#> 19763 25 1990 58369
#> 19764 25 1995 64945
#> 19765 25 2000 74489
#> 19766 25 2005 83925
#> 19767 25 2010 108162
#> 19768 25 2015 134645
#> 19769 25 1950 544162
#> 19770 25 1955 469461
#> 19771 25 1960 437682
#> 19772 25 1965 474927
#> 19773 25 1970 613272
#> 19774 25 1975 662961
#> 19775 25 1980 583690
#> 19776 25 1985 562728
#> 19777 25 1990 604104
#> 19778 25 1995 629112
#> 19779 25 2000 593998
#> 19780 25 2005 545127
#> 19781 25 2010 575051
#> 19782 25 2015 667229
#> 19783 25 1950 358200
#> 19784 25 1955 367300
#> 19785 25 1960 389395
#> 19786 25 1965 421764
#> 19787 25 1970 498264
#> 19788 25 1975 522111
#> 19789 25 1980 463731
#> 19790 25 1985 488555
#> 19791 25 1990 545867
#> 19792 25 1995 566533
#> 19793 25 2000 483024
#> 19794 25 2005 463855
#> 19795 25 2010 512847
#> 19796 25 2015 564690
#> 19797 25 1950 271101
#> 19798 25 1955 294794
#> 19799 25 1960 328269
#> 19800 25 1965 329717
#> 19801 25 1970 374654
#> 19802 25 1975 456089
#> 19803 25 1980 645488
#> 19804 25 1985 769802
#> 19805 25 1990 912710
#> 19806 25 1995 1106616
#> 19807 25 2000 1370707
#> 19808 25 2005 1565131
#> 19809 25 2010 2006160
#> 19810 25 2015 1360530
#> 19811 25 1950 99541
#> 19812 25 1955 116733
#> 19813 25 1960 123313
#> 19814 25 1965 130233
#> 19815 25 1970 127621
#> 19816 25 1975 144662
#> 19817 25 1980 182503
#> 19818 25 1985 167039
#> 19819 25 1990 159162
#> 19820 25 1995 154082
#> 19821 25 2000 152516
#> 19822 25 2005 159020
#> 19823 25 2010 166391
#> 19824 25 2015 163224
#> 19825 25 1950 104687
#> 19826 25 1955 163997
#> 19827 25 1960 170870
#> 19828 25 1965 196366
#> 19829 25 1970 149406
#> 19830 25 1975 176669
#> 19831 25 1980 285682
#> 19832 25 1985 358132
#> 19833 25 1990 418981
#> 19834 25 1995 426499
#> 19835 25 2000 467457
#> 19836 25 2005 529712
#> 19837 25 2010 647877
#> 19838 25 2015 812034
#> 19839 25 1950 1518734
#> 19840 25 1955 1868994
#> 19841 25 1960 2158910
#> 19842 25 1965 2459996
#> 19843 25 1970 2528625
#> 19844 25 1975 3061670
#> 19845 25 1980 3785347
#> 19846 25 1985 4514741
#> 19847 25 1990 5081810
#> 19848 25 1995 5544300
#> 19849 25 2000 5439590
#> 19850 25 2005 5340522
#> 19851 25 2010 5076902
#> 19852 25 2015 4477495
#> 19853 25 1950 34100
#> 19854 25 1955 37369
#> 19855 25 1960 38618
#> 19856 25 1965 42446
#> 19857 25 1970 46855
#> 19858 25 1975 54576
#> 19859 25 1980 52560
#> 19860 25 1985 60449
#> 19861 25 1990 66491
#> 19862 25 1995 77557
#> 19863 25 2000 59430
#> 19864 25 2005 51852
#> 19865 25 2010 77862
#> 19866 25 2015 80939
#> 19867 25 1950 102474
#> 19868 25 1955 108149
#> 19869 25 1960 115177
#> 19870 25 1965 123482
#> 19871 25 1970 151593
#> 19872 25 1975 169435
#> 19873 25 1980 187868
#> 19874 25 1985 224327
#> 19875 25 1990 265165
#> 19876 25 1995 302726
#> 19877 25 2000 387433
#> 19878 25 2005 462497
#> 19879 25 2010 529899
#> 19880 25 2015 595448
#> 19881 25 1950 3393
#> 19882 25 1955 4231
#> 19883 25 1960 4263
#> 19884 25 1965 5318
#> 19885 25 1970 5362
#> 19886 25 1975 5421
#> 19887 25 1980 5689
#> 19888 25 1985 5755
#> 19889 25 1990 7261
#> 19890 25 1995 8015
#> 19891 25 2000 6867
#> 19892 25 2005 7049
#> 19893 25 2010 7777
#> 19894 25 2015 6821
#> 19895 25 1950 50025
#> 19896 25 1955 51733
#> 19897 25 1960 53385
#> 19898 25 1965 58269
#> 19899 25 1970 62928
#> 19900 25 1975 73839
#> 19901 25 1980 91864
#> 19902 25 1985 102124
#> 19903 25 1990 113340
#> 19904 25 1995 94942
#> 19905 25 2000 96988
#> 19906 25 2005 105857
#> 19907 25 2010 128889
#> 19908 25 2015 116347
#> 19909 25 1950 267126
#> 19910 25 1955 283349
#> 19911 25 1960 284622
#> 19912 25 1965 296727
#> 19913 25 1970 297023
#> 19914 25 1975 310574
#> 19915 25 1980 500848
#> 19916 25 1985 573811
#> 19917 25 1990 685631
#> 19918 25 1995 772298
#> 19919 25 2000 801876
#> 19920 25 2005 876253
#> 19921 25 2010 992914
#> 19922 25 2015 1009830
#> 19923 25 1950 1491626
#> 19924 25 1955 1917158
#> 19925 25 1960 2273904
#> 19926 25 1965 2224215
#> 19927 25 1970 2374941
#> 19928 25 1975 2685619
#> 19929 25 1980 3386473
#> 19930 25 1985 3864404
#> 19931 25 1990 4355236
#> 19932 25 1995 4860780
#> 19933 25 2000 5462265
#> 19934 25 2005 5962555
#> 19935 25 2010 6269280
#> 19936 25 2015 6311594
#> 19937 25 1950 80234
#> 19938 25 1955 120034
#> 19939 25 1960 122077
#> 19940 25 1965 146046
#> 19941 25 1970 113113
#> 19942 25 1975 144337
#> 19943 25 1980 222092
#> 19944 25 1985 284883
#> 19945 25 1990 318233
#> 19946 25 1995 343030
#> 19947 25 2000 367376
#> 19948 25 2005 406415
#> 19949 25 2010 448572
#> 19950 25 2015 532084
#> 19951 25 1950 403520
#> 19952 25 1955 458206
#> 19953 25 1960 518439
#> 19954 25 1965 510367
#> 19955 25 1970 648061
#> 19956 25 1975 742305
#> 19957 25 1980 893832
#> 19958 25 1985 1032679
#> 19959 25 1990 1229177
#> 19960 25 1995 1465538
#> 19961 25 2000 1732193
#> 19962 25 2005 2085820
#> 19963 25 2010 2494010
#> 19964 25 2015 2982573
#> 19965 25 1950 2855823
#> 19966 25 1955 3921455
#> 19967 25 1960 3092820
#> 19968 25 1965 4399609
#> 19969 25 1970 2788482
#> 19970 25 1975 3286054
#> 19971 25 1980 4115773
#> 19972 25 1985 3908325
#> 19973 25 1990 3711140
#> 19974 25 1995 3330501
#> 19975 25 2000 3394142
#> 19976 25 2005 3525541
#> 19977 25 2010 3699986
#> 19978 25 2015 3573361
#> 19979 25 1950 5095
#> 19980 25 1955 5749
#> 19981 25 1960 6532
#> 19982 25 1965 14962
#> 19983 25 1970 30282
#> 19984 25 1975 87492
#> 19985 25 1980 180023
#> 19986 25 1985 203971
#> 19987 25 1990 187904
#> 19988 25 1995 322422
#> 19989 25 2000 414860
#> 19990 25 2005 744950
#> 19991 25 2010 1352580
#> 19992 25 2015 1325915
#> 19993 25 1950 3887773
#> 19994 25 1955 3435507
#> 19995 25 1960 3276924
#> 19996 25 1965 3360245
#> 19997 25 1970 3563854
#> 19998 25 1975 4221582
#> 19999 25 1980 3775134
#> 20000 25 1985 4035764
#> 20001 25 1990 4707646
#> 20002 25 1995 4568010
#> 20003 25 2000 4048674
#> 20004 25 2005 3755132
#> 20005 25 2010 4283269
#> 20006 25 2015 4454151
#> 20007 25 1950 564926
#> 20008 25 1955 645820
#> 20009 25 1960 739118
#> 20010 25 1965 849843
#> 20011 25 1970 984490
#> 20012 25 1975 1164964
#> 20013 25 1980 1312213
#> 20014 25 1985 1562478
#> 20015 25 1990 1844766
#> 20016 25 1995 2212190
#> 20017 25 2000 2599436
#> 20018 25 2005 3038150
#> 20019 25 2010 3513523
#> 20020 25 2015 4034402
#> 20021 25 1950 1820
#> 20022 25 1955 1777
#> 20023 25 1960 2015
#> 20024 25 1965 3782
#> 20025 25 1970 6360
#> 20026 25 1975 7369
#> 20027 25 1980 6342
#> 20028 25 1985 6747
#> 20029 25 1990 7352
#> 20030 25 1995 6870
#> 20031 25 2000 6376
#> 20032 25 2005 5997
#> 20033 25 2010 5893
#> 20034 25 2015 5004
#> 20035 25 1950 12872040
#> 20036 25 1955 12256874
#> 20037 25 1960 11375723
#> 20038 25 1965 11799227
#> 20039 25 1970 14074988
#> 20040 25 1975 17495457
#> 20041 25 1980 19940085
#> 20042 25 1985 21928046
#> 20043 25 1990 21463147
#> 20044 25 1995 19796656
#> 20045 25 2000 19298048
#> 20046 25 2005 19433480
#> 20047 25 2010 20751032
#> 20048 25 2015 22436116
#> 20049 25 1950 72563715
#> 20050 25 1955 83498252
#> 20051 25 1960 88012546
#> 20052 25 1965 94252712
#> 20053 25 1970 91167830
#> 20054 25 1975 114839770
#> 20055 25 1980 151366034
#> 20056 25 1985 155082566
#> 20057 25 1990 181628672
#> 20058 25 1995 206180581
#> 20059 25 2000 205583798
#> 20060 25 2005 188977339
#> 20061 25 2010 201719156
#> 20062 25 2015 232280111
#> 20063 25 1950 176554
#> 20064 25 1955 194881
#> 20065 25 1960 201721
#> 20066 25 1965 198483
#> 20067 25 1970 195903
#> 20068 25 1975 190069
#> 20069 25 1980 199027
#> 20070 25 1985 217810
#> 20071 25 1990 225298
#> 20072 25 1995 224606
#> 20073 25 2000 250621
#> 20074 25 2005 250789
#> 20075 25 2010 229947
#> 20076 25 2015 243096
#> 20077 25 1950 433260
#> 20078 25 1955 683909
#> 20079 25 1960 680264
#> 20080 25 1965 741793
#> 20081 25 1970 597624
#> 20082 25 1975 710501
#> 20083 25 1980 1203300
#> 20084 25 1985 1542874
#> 20085 25 1990 1810897
#> 20086 25 1995 1754281
#> 20087 25 2000 1962824
#> 20088 25 2005 2193837
#> 20089 25 2010 2603739
#> 20090 25 2015 3062469
#> 20091 25 1950 3467
#> 20092 25 1955 4012
#> 20093 25 1960 4660
#> 20094 25 1965 5473
#> 20095 25 1970 6338
#> 20096 25 1975 7451
#> 20097 25 1980 8656
#> 20098 25 1985 9909
#> 20099 25 1990 11525
#> 20100 25 1995 12952
#> 20101 25 2000 13632
#> 20102 25 2005 16178
#> 20103 25 2010 19984
#> 20104 25 2015 23057
#> 20105 25 1950 403756
#> 20106 25 1955 504243
#> 20107 25 1960 591494
#> 20108 25 1965 687355
#> 20109 25 1970 809723
#> 20110 25 1975 973453
#> 20111 25 1980 1172205
#> 20112 25 1985 1454862
#> 20113 25 1990 1815706
#> 20114 25 1995 1942207
#> 20115 25 2000 1975526
#> 20116 25 2005 2210403
#> 20117 25 2010 2425255
#> 20118 25 2015 2661680
#> 20119 25 1950 2050751
#> 20120 25 1955 2162148
#> 20121 25 1960 2473781
#> 20122 25 1965 2294412
#> 20123 25 1970 2310395
#> 20124 25 1975 2751772
#> 20125 25 1980 4014868
#> 20126 25 1985 5174748
#> 20127 25 1990 5938768
#> 20128 25 1995 6396999
#> 20129 25 2000 7019488
#> 20130 25 2005 7427825
#> 20131 25 2010 8036952
#> 20132 25 2015 8674100
#> 20133 25 1950 196361477
#> 20134 25 1955 215934012
#> 20135 25 1960 226671395
#> 20136 25 1965 243168580
#> 20137 25 1970 247288424
#> 20138 25 1975 294476264
#> 20139 25 1980 358588473
#> 20140 25 1985 389310734
#> 20141 25 1990 439959956
#> 20142 25 1995 483599302
#> 20143 25 2000 504533762
#> 20144 25 2005 512514226
#> 20145 25 2010 558709614
#> 20146 25 2015 612402684
#> 20147 25 1950 5411246
#> 20148 25 1955 5829877
#> 20149 25 1960 6369410
#> 20150 25 1965 7086861
#> 20151 25 1970 7930221
#> 20152 25 1975 8667000
#> 20153 25 1980 9784134
#> 20154 25 1985 11068458
#> 20155 25 1990 12799608
#> 20156 25 1995 14734157
#> 20157 25 2000 17480371
#> 20158 25 2005 20570669
#> 20159 25 2010 23650926
#> 20160 25 2015 26513864
#> 20161 25 1950 3638136
#> 20162 25 1955 4587266
#> 20163 25 1960 5188479
#> 20164 25 1965 5527085
#> 20165 25 1970 5665357
#> 20166 25 1975 6672225
#> 20167 25 1980 8794519
#> 20168 25 1985 10352924
#> 20169 25 1990 11992939
#> 20170 25 1995 13470515
#> 20171 25 2000 15374877
#> 20172 25 2005 18031408
#> 20173 25 2010 21088739
#> 20174 25 2015 22630498
#> 20175 25 1950 10699000
#> 20176 25 1955 10384232
#> 20177 25 1960 10542909
#> 20178 25 1965 11579312
#> 20179 25 1970 10973806
#> 20180 25 1975 12307372
#> 20181 25 1980 12593463
#> 20182 25 1985 13385553
#> 20183 25 1990 14633704
#> 20184 25 1995 14404241
#> 20185 25 2000 12143990
#> 20186 25 2005 11234725
#> 20187 25 2010 11748283
#> 20188 25 2015 12087830
#> 20189 25 1950 1044
#> 20190 25 1955 1943
#> 20191 25 1960 3475
#> 20192 25 1965 5524
#> 20193 25 1970 7566
#> 20194 25 1975 5284
#> 20195 25 1980 14646
#> 20196 25 1985 17741
#> 20197 25 1990 19358
#> 20198 25 1995 22699
#> 20199 25 2000 28711
#> 20200 25 2005 44121
#> 20201 25 2010 48043
#> 20202 25 2015 51502
#> 20203 25 1950 320891
#> 20204 25 1955 350132
#> 20205 25 1960 381727
#> 20206 25 1965 418432
#> 20207 25 1970 452625
#> 20208 25 1975 494593
#> 20209 25 1980 522572
#> 20210 25 1985 624634
#> 20211 25 1990 774260
#> 20212 25 1995 933146
#> 20213 25 2000 1103714
#> 20214 25 2005 1528891
#> 20215 25 2010 1944582
#> 20216 25 2015 2418148
#> 20217 25 1950 172586
#> 20218 25 1955 194766
#> 20219 25 1960 221853
#> 20220 25 1965 254769
#> 20221 25 1970 291634
#> 20222 25 1975 341952
#> 20223 25 1980 399739
#> 20224 25 1985 490562
#> 20225 25 1990 586196
#> 20226 25 1995 678123
#> 20227 25 2000 834689
#> 20228 25 2005 967396
#> 20229 25 2010 1088994
#> 20230 25 2015 1258465
#> 20231 25 1950 200760
#> 20232 25 1955 235925
#> 20233 25 1960 260076
#> 20234 25 1965 294475
#> 20235 25 1970 343264
#> 20236 25 1975 357856
#> 20237 25 1980 491162
#> 20238 25 1985 626420
#> 20239 25 1990 781811
#> 20240 25 1995 864710
#> 20241 25 2000 987570
#> 20242 25 2005 1138650
#> 20243 25 2010 1327158
#> 20244 25 2015 1428026
#> 20245 30 1950 14877290
#> 20246 30 1955 16427079
#> 20247 30 1960 18373773
#> 20248 30 1965 20250411
#> 20249 30 1970 22027738
#> 20250 30 1975 24326426
#> 20251 30 1980 28091620
#> 20252 30 1985 33100008
#> 20253 30 1990 38578337
#> 20254 30 1995 44738321
#> 20255 30 2000 50997347
#> 20256 30 2005 59260844
#> 20257 30 2010 69786936
#> 20258 30 2015 81751688
#> 20259 30 1950 98071361
#> 20260 30 1955 103183316
#> 20261 30 1960 114677398
#> 20262 30 1965 126428066
#> 20263 30 1970 135689764
#> 20264 30 1975 142042868
#> 20265 30 1980 168150286
#> 20266 30 1985 215288963
#> 20267 30 1990 231293346
#> 20268 30 1995 270390036
#> 20269 30 2000 308544123
#> 20270 30 2005 319408217
#> 20271 30 2010 313592952
#> 20272 30 2015 342464735
#> 20273 30 1950 508447
#> 20274 30 1955 545494
#> 20275 30 1960 594617
#> 20276 30 1965 639957
#> 20277 30 1970 702435
#> 20278 30 1975 780681
#> 20279 30 1980 820984
#> 20280 30 1985 711795
#> 20281 30 1990 720471
#> 20282 30 1995 977373
#> 20283 30 2000 1132992
#> 20284 30 2005 1446187
#> 20285 30 2010 1730013
#> 20286 30 2015 2118839
#> 20287 30 1950 77190
#> 20288 30 1955 82776
#> 20289 30 1960 103832
#> 20290 30 1965 117137
#> 20291 30 1970 141373
#> 20292 30 1975 151259
#> 20293 30 1980 165848
#> 20294 30 1985 207381
#> 20295 30 1990 258127
#> 20296 30 1995 233197
#> 20297 30 2000 215336
#> 20298 30 2005 187253
#> 20299 30 2010 166817
#> 20300 30 2015 208479
#> 20301 30 1950 565608
#> 20302 30 1955 541491
#> 20303 30 1960 654170
#> 20304 30 1965 756164
#> 20305 30 1970 795344
#> 20306 30 1975 813130
#> 20307 30 1980 957963
#> 20308 30 1985 1421008
#> 20309 30 1990 1665846
#> 20310 30 1995 2012283
#> 20311 30 2000 2289904
#> 20312 30 2005 2629927
#> 20313 30 2010 3102859
#> 20314 30 2015 3597150
#> 20315 30 1950 316422
#> 20316 30 1955 341515
#> 20317 30 1960 364314
#> 20318 30 1965 379992
#> 20319 30 1970 392270
#> 20320 30 1975 410699
#> 20321 30 1980 449416
#> 20322 30 1985 658095
#> 20323 30 1990 718438
#> 20324 30 1995 830583
#> 20325 30 2000 947158
#> 20326 30 2005 1157213
#> 20327 30 2010 1418695
#> 20328 30 2015 1670423
#> 20329 30 1950 2998
#> 20330 30 1955 3615
#> 20331 30 1960 3342
#> 20332 30 1965 2844
#> 20333 30 1970 3959
#> 20334 30 1975 4925
#> 20335 30 1980 5323
#> 20336 30 1985 5877
#> 20337 30 1990 5264
#> 20338 30 1995 6859
#> 20339 30 2000 8625
#> 20340 30 2005 7638
#> 20341 30 2010 6108
#> 20342 30 2015 7218
#> 20343 30 1950 1320361
#> 20344 30 1955 1476763
#> 20345 30 1960 1596220
#> 20346 30 1965 1601135
#> 20347 30 1970 1623098
#> 20348 30 1975 1768487
#> 20349 30 1980 1944107
#> 20350 30 1985 2116131
#> 20351 30 1990 2241181
#> 20352 30 1995 2336349
#> 20353 30 2000 2448853
#> 20354 30 2005 2744982
#> 20355 30 2010 3243309
#> 20356 30 2015 3189089
#> 20357 30 1950 47800
#> 20358 30 1955 81930
#> 20359 30 1960 164682
#> 20360 30 1965 162662
#> 20361 30 1970 210411
#> 20362 30 1975 132481
#> 20363 30 1980 180691
#> 20364 30 1985 256674
#> 20365 30 1990 335003
#> 20366 30 1995 275799
#> 20367 30 2000 189153
#> 20368 30 2005 181054
#> 20369 30 2010 196650
#> 20370 30 2015 240312
#> 20371 30 1950 2720
#> 20372 30 1955 2691
#> 20373 30 1960 3069
#> 20374 30 1965 3598
#> 20375 30 1970 3756
#> 20376 30 1975 4551
#> 20377 30 1980 4977
#> 20378 30 1985 5445
#> 20379 30 1990 6316
#> 20380 30 1995 8002
#> 20381 30 2000 7799
#> 20382 30 2005 7329
#> 20383 30 2010 6523
#> 20384 30 2015 5708
#> 20385 30 1950 614459
#> 20386 30 1955 727787
#> 20387 30 1960 743469
#> 20388 30 1965 691617
#> 20389 30 1970 788149
#> 20390 30 1975 930429
#> 20391 30 1980 1182789
#> 20392 30 1985 1255276
#> 20393 30 1990 1397571
#> 20394 30 1995 1464221
#> 20395 30 2000 1407741
#> 20396 30 2005 1515614
#> 20397 30 2010 1477411
#> 20398 30 2015 1753076
#> 20399 30 1950 750461
#> 20400 30 1955 880787
#> 20401 30 1960 901507
#> 20402 30 1965 839636
#> 20403 30 1970 951728
#> 20404 30 1975 1129826
#> 20405 30 1980 1418100
#> 20406 30 1985 1509375
#> 20407 30 1990 1672368
#> 20408 30 1995 1764394
#> 20409 30 2000 1700981
#> 20410 30 2005 1809829
#> 20411 30 2010 1747134
#> 20412 30 2015 2040613
#> 20413 30 1950 350426
#> 20414 30 1955 502735
#> 20415 30 1960 462397
#> 20416 30 1965 427570
#> 20417 30 1970 488601
#> 20418 30 1975 567143
#> 20419 30 1980 520240
#> 20420 30 1985 494323
#> 20421 30 1990 594676
#> 20422 30 1995 711132
#> 20423 30 2000 700134
#> 20424 30 2005 584585
#> 20425 30 2010 528377
#> 20426 30 2015 593648
#> 20427 30 1950 121112
#> 20428 30 1955 184986
#> 20429 30 1960 318451
#> 20430 30 1965 352285
#> 20431 30 1970 390247
#> 20432 30 1975 232793
#> 20433 30 1980 288690
#> 20434 30 1985 452967
#> 20435 30 1990 620529
#> 20436 30 1995 722009
#> 20437 30 2000 659663
#> 20438 30 2005 632966
#> 20439 30 2010 673669
#> 20440 30 2015 828679
#> 20441 30 1950 5223
#> 20442 30 1955 5627
#> 20443 30 1960 7111
#> 20444 30 1965 8955
#> 20445 30 1970 12105
#> 20446 30 1975 12660
#> 20447 30 1980 13887
#> 20448 30 1985 16775
#> 20449 30 1990 20920
#> 20450 30 1995 25339
#> 20451 30 2000 24048
#> 20452 30 2005 25150
#> 20453 30 2010 26259
#> 20454 30 2015 31644
#> 20455 30 1950 7803
#> 20456 30 1955 10325
#> 20457 30 1960 12718
#> 20458 30 1965 12686
#> 20459 30 1970 13310
#> 20460 30 1975 17614
#> 20461 30 1980 30209
#> 20462 30 1985 49484
#> 20463 30 1990 61624
#> 20464 30 1995 66809
#> 20465 30 2000 71482
#> 20466 30 2005 99970
#> 20467 30 2010 162095
#> 20468 30 2015 192437
#> 20469 30 1950 2459698
#> 20470 30 1955 2791035
#> 20471 30 1960 3151162
#> 20472 30 1965 3591430
#> 20473 30 1970 4045656
#> 20474 30 1975 4537745
#> 20475 30 1980 4510763
#> 20476 30 1985 4446550
#> 20477 30 1990 6280546
#> 20478 30 1995 8525147
#> 20479 30 2000 9976557
#> 20480 30 2005 10694484
#> 20481 30 2010 12238038
#> 20482 30 2015 13502355
#> 20483 30 1950 15999
#> 20484 30 1955 13398
#> 20485 30 1960 13199
#> 20486 30 1965 11310
#> 20487 30 1970 10824
#> 20488 30 1975 13164
#> 20489 30 1980 16441
#> 20490 30 1985 20419
#> 20491 30 1990 23955
#> 20492 30 1995 24496
#> 20493 30 2000 21242
#> 20494 30 2005 21069
#> 20495 30 2010 19131
#> 20496 30 2015 19171
#> 20497 30 1950 374019
#> 20498 30 1955 542485
#> 20499 30 1960 717825
#> 20500 30 1965 696864
#> 20501 30 1970 734741
#> 20502 30 1975 513724
#> 20503 30 1980 636513
#> 20504 30 1985 748596
#> 20505 30 1990 862453
#> 20506 30 1995 812603
#> 20507 30 2000 679908
#> 20508 30 2005 675948
#> 20509 30 2010 684358
#> 20510 30 2015 751201
#> 20511 30 1950 470964
#> 20512 30 1955 695747
#> 20513 30 1960 658724
#> 20514 30 1965 633859
#> 20515 30 1970 591883
#> 20516 30 1975 569541
#> 20517 30 1980 726801
#> 20518 30 1985 737461
#> 20519 30 1990 784201
#> 20520 30 1995 817849
#> 20521 30 2000 760046
#> 20522 30 2005 705878
#> 20523 30 2010 712794
#> 20524 30 2015 737831
#> 20525 30 1950 4315
#> 20526 30 1955 4648
#> 20527 30 1960 5581
#> 20528 30 1965 5621
#> 20529 30 1970 5960
#> 20530 30 1975 5165
#> 20531 30 1980 6556
#> 20532 30 1985 8552
#> 20533 30 1990 11234
#> 20534 30 1995 15459
#> 20535 30 2000 17480
#> 20536 30 2005 22821
#> 20537 30 2010 22712
#> 20538 30 2015 27537
#> 20539 30 1950 141084
#> 20540 30 1955 140502
#> 20541 30 1960 143011
#> 20542 30 1965 153362
#> 20543 30 1970 172499
#> 20544 30 1975 202509
#> 20545 30 1980 210999
#> 20546 30 1985 242593
#> 20547 30 1990 284923
#> 20548 30 1995 353310
#> 20549 30 2000 418608
#> 20550 30 2005 492012
#> 20551 30 2010 571788
#> 20552 30 2015 666631
#> 20553 30 1950 11267
#> 20554 30 1955 13193
#> 20555 30 1960 15411
#> 20556 30 1965 17680
#> 20557 30 1970 20761
#> 20558 30 1975 24335
#> 20559 30 1980 28365
#> 20560 30 1985 27943
#> 20561 30 1990 31707
#> 20562 30 1995 30214
#> 20563 30 2000 38551
#> 20564 30 2005 46208
#> 20565 30 2010 60569
#> 20566 30 2015 75523
#> 20567 30 1950 182754
#> 20568 30 1955 201988
#> 20569 30 1960 231495
#> 20570 30 1965 242207
#> 20571 30 1970 261137
#> 20572 30 1975 312501
#> 20573 30 1980 336000
#> 20574 30 1985 405018
#> 20575 30 1990 434819
#> 20576 30 1995 479084
#> 20577 30 2000 541642
#> 20578 30 2005 620415
#> 20579 30 2010 717460
#> 20580 30 2015 801148
#> 20581 30 1950 118800
#> 20582 30 1955 178544
#> 20583 30 1960 254750
#> 20584 30 1965 289581
#> 20585 30 1970 298997
#> 20586 30 1975 212709
#> 20587 30 1980 302318
#> 20588 30 1985 365177
#> 20589 30 1990 375500
#> 20590 30 1995 326131
#> 20591 30 2000 270129
#> 20592 30 2005 276299
#> 20593 30 2010 263777
#> 20594 30 2015 245154
#> 20595 30 1950 24781
#> 20596 30 1955 31449
#> 20597 30 1960 29588
#> 20598 30 1965 34185
#> 20599 30 1970 39510
#> 20600 30 1975 44854
#> 20601 30 1980 53810
#> 20602 30 1985 78113
#> 20603 30 1990 92003
#> 20604 30 1995 105447
#> 20605 30 2000 119546
#> 20606 30 2005 137445
#> 20607 30 2010 171055
#> 20608 30 2015 205173
#> 20609 30 1950 3444611
#> 20610 30 1955 4041017
#> 20611 30 1960 4806389
#> 20612 30 1965 5121171
#> 20613 30 1970 6073403
#> 20614 30 1975 6591258
#> 20615 30 1980 8094400
#> 20616 30 1985 9821877
#> 20617 30 1990 11333160
#> 20618 30 1995 13072012
#> 20619 30 2000 13811375
#> 20620 30 2005 14533635
#> 20621 30 2010 16239051
#> 20622 30 2015 17682362
#> 20623 30 1950 3271
#> 20624 30 1955 4402
#> 20625 30 1960 5701
#> 20626 30 1965 6898
#> 20627 30 1970 8399
#> 20628 30 1975 10091
#> 20629 30 1980 14231
#> 20630 30 1985 20421
#> 20631 30 1990 26472
#> 20632 30 1995 26949
#> 20633 30 2000 33981
#> 20634 30 2005 36485
#> 20635 30 2010 36306
#> 20636 30 2015 39154
#> 20637 30 1950 413000
#> 20638 30 1955 660837
#> 20639 30 1960 663632
#> 20640 30 1965 654845
#> 20641 30 1970 574283
#> 20642 30 1975 570872
#> 20643 30 1980 670320
#> 20644 30 1985 650810
#> 20645 30 1990 612605
#> 20646 30 1995 550777
#> 20647 30 2000 532084
#> 20648 30 2005 558385
#> 20649 30 2010 551158
#> 20650 30 2015 481720
#> 20651 30 1950 301995
#> 20652 30 1955 306727
#> 20653 30 1960 309153
#> 20654 30 1965 312757
#> 20655 30 1970 334826
#> 20656 30 1975 363409
#> 20657 30 1980 380797
#> 20658 30 1985 418269
#> 20659 30 1990 487871
#> 20660 30 1995 571331
#> 20661 30 2000 677614
#> 20662 30 2005 792490
#> 20663 30 2010 965590
#> 20664 30 2015 1147328
#> 20665 30 1950 155289
#> 20666 30 1955 165648
#> 20667 30 1960 176741
#> 20668 30 1965 189480
#> 20669 30 1970 201740
#> 20670 30 1975 198134
#> 20671 30 1980 223451
#> 20672 30 1985 308343
#> 20673 30 1990 363723
#> 20674 30 1995 346654
#> 20675 30 2000 315203
#> 20676 30 2005 362566
#> 20677 30 2010 503488
#> 20678 30 2015 656645
#> 20679 30 1950 10111
#> 20680 30 1955 9217
#> 20681 30 1960 13361
#> 20682 30 1965 14554
#> 20683 30 1970 14938
#> 20684 30 1975 8957
#> 20685 30 1980 8030
#> 20686 30 1985 15307
#> 20687 30 1990 17504
#> 20688 30 1995 26586
#> 20689 30 2000 27319
#> 20690 30 2005 28414
#> 20691 30 2010 33601
#> 20692 30 2015 42594
#> 20693 30 1950 290905
#> 20694 30 1955 321026
#> 20695 30 1960 352837
#> 20696 30 1965 386537
#> 20697 30 1970 407459
#> 20698 30 1975 430974
#> 20699 30 1980 405620
#> 20700 30 1985 528549
#> 20701 30 1990 570670
#> 20702 30 1995 666934
#> 20703 30 2000 827166
#> 20704 30 2005 867809
#> 20705 30 2010 673338
#> 20706 30 2015 1685307
#> 20707 30 1950 291136
#> 20708 30 1955 316394
#> 20709 30 1960 345085
#> 20710 30 1965 377768
#> 20711 30 1970 414658
#> 20712 30 1975 449225
#> 20713 30 1980 500162
#> 20714 30 1985 570599
#> 20715 30 1990 648821
#> 20716 30 1995 763986
#> 20717 30 2000 898195
#> 20718 30 2005 1064086
#> 20719 30 2010 1281679
#> 20720 30 2015 1563561
#> 20721 30 1950 1034001
#> 20722 30 1955 1185423
#> 20723 30 1960 1272923
#> 20724 30 1965 1240706
#> 20725 30 1970 1292436
#> 20726 30 1975 1608836
#> 20727 30 1980 2024932
#> 20728 30 1985 2225153
#> 20729 30 1990 2536387
#> 20730 30 1995 2619621
#> 20731 30 2000 2266995
#> 20732 30 2005 2184847
#> 20733 30 2010 2303471
#> 20734 30 2015 2527703
#> 20735 30 1950 1141707
#> 20736 30 1955 1199253
#> 20737 30 1960 1282978
#> 20738 30 1965 1403142
#> 20739 30 1970 1518960
#> 20740 30 1975 1635580
#> 20741 30 1980 1828071
#> 20742 30 1985 2158969
#> 20743 30 1990 2384470
#> 20744 30 1995 2928561
#> 20745 30 2000 3019994
#> 20746 30 2005 2996494
#> 20747 30 2010 2831486
#> 20748 30 2015 3121802
#> 20749 30 1950 88113
#> 20750 30 1955 95052
#> 20751 30 1960 102015
#> 20752 30 1965 109646
#> 20753 30 1970 118869
#> 20754 30 1975 124507
#> 20755 30 1980 132322
#> 20756 30 1985 158228
#> 20757 30 1990 177832
#> 20758 30 1995 208349
#> 20759 30 2000 236736
#> 20760 30 2005 263482
#> 20761 30 2010 285644
#> 20762 30 2015 274739
#> 20763 30 1950 2227027
#> 20764 30 1955 2762724
#> 20765 30 1960 3146541
#> 20766 30 1965 3483293
#> 20767 30 1970 3749629
#> 20768 30 1975 4387691
#> 20769 30 1980 4993328
#> 20770 30 1985 6440642
#> 20771 30 1990 7443340
#> 20772 30 1995 8527252
#> 20773 30 2000 9892724
#> 20774 30 2005 11898434
#> 20775 30 2010 12624701
#> 20776 30 2015 13326220
#> 20777 30 1950 818382
#> 20778 30 1955 1184573
#> 20779 30 1960 1983909
#> 20780 30 1965 1877004
#> 20781 30 1970 2509895
#> 20782 30 1975 1752886
#> 20783 30 1980 2187016
#> 20784 30 1985 3154705
#> 20785 30 1990 3885576
#> 20786 30 1995 4114274
#> 20787 30 2000 3891948
#> 20788 30 2005 4272007
#> 20789 30 2010 4678818
#> 20790 30 2015 5456266
#> 20791 30 1950 170542
#> 20792 30 1955 182230
#> 20793 30 1960 192496
#> 20794 30 1965 206394
#> 20795 30 1970 222059
#> 20796 30 1975 238370
#> 20797 30 1980 250842
#> 20798 30 1985 307630
#> 20799 30 1990 343770
#> 20800 30 1995 384253
#> 20801 30 2000 444505
#> 20802 30 2005 552291
#> 20803 30 2010 671250
#> 20804 30 2015 816507
#> 20805 30 1950 6871
#> 20806 30 1955 6951
#> 20807 30 1960 7022
#> 20808 30 1965 7497
#> 20809 30 1970 8067
#> 20810 30 1975 8149
#> 20811 30 1980 10181
#> 20812 30 1985 10304
#> 20813 30 1990 11352
#> 20814 30 1995 12656
#> 20815 30 2000 12818
#> 20816 30 2005 11928
#> 20817 30 2010 11221
#> 20818 30 2015 11092
#> 20819 30 1950 416817
#> 20820 30 1955 445165
#> 20821 30 1960 499687
#> 20822 30 1965 536902
#> 20823 30 1970 574730
#> 20824 30 1975 687344
#> 20825 30 1980 769674
#> 20826 30 1985 952803
#> 20827 30 1990 1069094
#> 20828 30 1995 1180395
#> 20829 30 2000 1262997
#> 20830 30 2005 1237221
#> 20831 30 2010 1231133
#> 20832 30 2015 1324003
#> 20833 30 1950 41132600
#> 20834 30 1955 40182099
#> 20835 30 1960 43196428
#> 20836 30 1965 47473660
#> 20837 30 1970 49396178
#> 20838 30 1975 51109624
#> 20839 30 1980 65010619
#> 20840 30 1985 89880283
#> 20841 30 1990 85989072
#> 20842 30 1995 106774975
#> 20843 30 2000 127741657
#> 20844 30 2005 120512328
#> 20845 30 2010 96707760
#> 20846 30 2015 102116391
#> 20847 30 1950 186602
#> 20848 30 1955 223501
#> 20849 30 1960 261850
#> 20850 30 1965 261755
#> 20851 30 1970 221469
#> 20852 30 1975 174372
#> 20853 30 1980 379579
#> 20854 30 1985 479263
#> 20855 30 1990 622626
#> 20856 30 1995 662168
#> 20857 30 2000 590865
#> 20858 30 2005 555054
#> 20859 30 2010 545650
#> 20860 30 2015 571791
#> 20861 30 1950 17560
#> 20862 30 1955 15263
#> 20863 30 1960 10611
#> 20864 30 1965 11345
#> 20865 30 1970 11201
#> 20866 30 1975 10445
#> 20867 30 1980 18094
#> 20868 30 1985 30325
#> 20869 30 1990 43068
#> 20870 30 1995 43100
#> 20871 30 2000 35222
#> 20872 30 2005 38426
#> 20873 30 2010 38584
#> 20874 30 2015 59972
#> 20875 30 1950 565484
#> 20876 30 1955 610268
#> 20877 30 1960 691780
#> 20878 30 1965 745071
#> 20879 30 1970 920832
#> 20880 30 1975 827696
#> 20881 30 1980 1103344
#> 20882 30 1985 1677957
#> 20883 30 1990 1859450
#> 20884 30 1995 1946589
#> 20885 30 2000 1855874
#> 20886 30 2005 1749126
#> 20887 30 2010 2006158
#> 20888 30 2015 1926045
#> 20889 30 1950 771102
#> 20890 30 1955 881360
#> 20891 30 1960 951077
#> 20892 30 1965 1046347
#> 20893 30 1970 1167407
#> 20894 30 1975 1375137
#> 20895 30 1980 1782406
#> 20896 30 1985 2238348
#> 20897 30 1990 2612869
#> 20898 30 1995 3059942
#> 20899 30 2000 3376647
#> 20900 30 2005 3265144
#> 20901 30 2010 3614362
#> 20902 30 2015 3932683
#> 20903 30 1950 11589
#> 20904 30 1955 12203
#> 20905 30 1960 12602
#> 20906 30 1965 13046
#> 20907 30 1970 13937
#> 20908 30 1975 14620
#> 20909 30 1980 16232
#> 20910 30 1985 20944
#> 20911 30 1990 25472
#> 20912 30 1995 29593
#> 20913 30 2000 33713
#> 20914 30 2005 38575
#> 20915 30 2010 45561
#> 20916 30 2015 55274
#> 20917 30 1950 55488
#> 20918 30 1955 60890
#> 20919 30 1960 67015
#> 20920 30 1965 74126
#> 20921 30 1970 82474
#> 20922 30 1975 93436
#> 20923 30 1980 104645
#> 20924 30 1985 123171
#> 20925 30 1990 145328
#> 20926 30 1995 176629
#> 20927 30 2000 216084
#> 20928 30 2005 263083
#> 20929 30 2010 322065
#> 20930 30 2015 341408
#> 20931 30 1950 58793
#> 20932 30 1955 69543
#> 20933 30 1960 83341
#> 20934 30 1965 95230
#> 20935 30 1970 110961
#> 20936 30 1975 132831
#> 20937 30 1980 169833
#> 20938 30 1985 189290
#> 20939 30 1990 242457
#> 20940 30 1995 293195
#> 20941 30 2000 310761
#> 20942 30 2005 303864
#> 20943 30 2010 346171
#> 20944 30 2015 390299
#> 20945 30 1950 172313
#> 20946 30 1955 202393
#> 20947 30 1960 242167
#> 20948 30 1965 300259
#> 20949 30 1970 358353
#> 20950 30 1975 437103
#> 20951 30 1980 515691
#> 20952 30 1985 646035
#> 20953 30 1990 766752
#> 20954 30 1995 900754
#> 20955 30 2000 1026020
#> 20956 30 2005 1126274
#> 20957 30 2010 1283777
#> 20958 30 2015 1452651
#> 20959 30 1950 196401
#> 20960 30 1955 300005
#> 20961 30 1960 347596
#> 20962 30 1965 360187
#> 20963 30 1970 332490
#> 20964 30 1975 263187
#> 20965 30 1980 342431
#> 20966 30 1985 384108
#> 20967 30 1990 373764
#> 20968 30 1995 332210
#> 20969 30 2000 291904
#> 20970 30 2005 297733
#> 20971 30 2010 296102
#> 20972 30 2015 289073
#> 20973 30 1950 413202
#> 20974 30 1955 437339
#> 20975 30 1960 480483
#> 20976 30 1965 514717
#> 20977 30 1970 572806
#> 20978 30 1975 605969
#> 20979 30 1980 635694
#> 20980 30 1985 737686
#> 20981 30 1990 750870
#> 20982 30 1995 1095831
#> 20983 30 2000 1101659
#> 20984 30 2005 1024661
#> 20985 30 2010 696996
#> 20986 30 2015 691949
#> 20987 30 1950 7265
#> 20988 30 1955 7604
#> 20989 30 1960 7821
#> 20990 30 1965 7882
#> 20991 30 1970 7710
#> 20992 30 1975 9807
#> 20993 30 1980 10424
#> 20994 30 1985 11411
#> 20995 30 1990 13071
#> 20996 30 1995 12133
#> 20997 30 2000 8731
#> 20998 30 2005 8189
#> 20999 30 2010 7734
#> 21000 30 2015 8985
#> 21001 30 1950 32752
#> 21002 30 1955 34957
#> 21003 30 1960 37282
#> 21004 30 1965 36399
#> 21005 30 1970 37635
#> 21006 30 1975 44963
#> 21007 30 1980 52324
#> 21008 30 1985 55589
#> 21009 30 1990 61655
#> 21010 30 1995 67123
#> 21011 30 2000 70296
#> 21012 30 2005 77006
#> 21013 30 2010 92864
#> 21014 30 2015 94718
#> 21015 30 1950 401181
#> 21016 30 1955 778959
#> 21017 30 1960 674874
#> 21018 30 1965 620682
#> 21019 30 1970 538050
#> 21020 30 1975 709852
#> 21021 30 1980 869605
#> 21022 30 1985 826839
#> 21023 30 1990 701910
#> 21024 30 1995 672043
#> 21025 30 2000 686432
#> 21026 30 2005 853900
#> 21027 30 2010 923502
#> 21028 30 2015 751365
#> 21029 30 1950 616061
#> 21030 30 1955 596247
#> 21031 30 1960 696544
#> 21032 30 1965 890967
#> 21033 30 1970 1227551
#> 21034 30 1975 1325692
#> 21035 30 1980 1268354
#> 21036 30 1985 914442
#> 21037 30 1990 1768672
#> 21038 30 1995 1652918
#> 21039 30 2000 2283979
#> 21040 30 2005 2248554
#> 21041 30 2010 1595079
#> 21042 30 2015 1810665
#> 21043 30 1950 754496
#> 21044 30 1955 847122
#> 21045 30 1960 965935
#> 21046 30 1965 1101723
#> 21047 30 1970 1271101
#> 21048 30 1975 1455232
#> 21049 30 1980 1649744
#> 21050 30 1985 1779355
#> 21051 30 1990 2061431
#> 21052 30 1995 2487779
#> 21053 30 2000 2827954
#> 21054 30 2005 3268000
#> 21055 30 2010 3823076
#> 21056 30 2015 4517674
#> 21057 30 1950 309480
#> 21058 30 1955 315678
#> 21059 30 1960 286669
#> 21060 30 1965 278770
#> 21061 30 1970 302147
#> 21062 30 1975 375112
#> 21063 30 1980 413255
#> 21064 30 1985 371508
#> 21065 30 1990 372215
#> 21066 30 1995 405227
#> 21067 30 2000 408553
#> 21068 30 2005 384471
#> 21069 30 2010 347476
#> 21070 30 2015 312152
#> 21071 30 1950 3784
#> 21072 30 1955 4411
#> 21073 30 1960 5389
#> 21074 30 1965 7334
#> 21075 30 1970 10040
#> 21076 30 1975 13996
#> 21077 30 1980 21740
#> 21078 30 1985 23290
#> 21079 30 1990 36536
#> 21080 30 1995 42986
#> 21081 30 2000 49136
#> 21082 30 2005 54043
#> 21083 30 2010 65328
#> 21084 30 2015 70669
#> 21085 30 1950 139658
#> 21086 30 1955 168118
#> 21087 30 1960 199649
#> 21088 30 1965 231295
#> 21089 30 1970 255414
#> 21090 30 1975 267635
#> 21091 30 1980 325572
#> 21092 30 1985 413941
#> 21093 30 1990 503181
#> 21094 30 1995 575168
#> 21095 30 2000 625715
#> 21096 30 2005 671022
#> 21097 30 2010 717219
#> 21098 30 2015 785215
#> 21099 30 1950 31218071
#> 21100 30 1955 42536540
#> 21101 30 1960 47636260
#> 21102 30 1965 44733216
#> 21103 30 1970 48697503
#> 21104 30 1975 40631146
#> 21105 30 1980 49767540
#> 21106 30 1985 53728953
#> 21107 30 1990 56294162
#> 21108 30 1995 56264973
#> 21109 30 2000 53277625
#> 21110 30 2005 52417512
#> 21111 30 2010 52119083
#> 21112 30 2015 52053018
#> 21113 30 1950 4220751
#> 21114 30 1955 4704543
#> 21115 30 1960 5297671
#> 21116 30 1965 5934275
#> 21117 30 1970 6505419
#> 21118 30 1975 7349898
#> 21119 30 1980 8636335
#> 21120 30 1985 10051522
#> 21121 30 1990 11655659
#> 21122 30 1995 13300364
#> 21123 30 2000 15367051
#> 21124 30 2005 18229408
#> 21125 30 2010 21791868
#> 21126 30 2015 26299489
#> 21127 30 1950 48994420
#> 21128 30 1955 49151389
#> 21129 30 1960 53921521
#> 21130 30 1965 59499947
#> 21131 30 1970 62485026
#> 21132 30 1975 65053633
#> 21133 30 1980 81277646
#> 21134 30 1985 105467208
#> 21135 30 1990 102540076
#> 21136 30 1995 123653084
#> 21137 30 2000 145872482
#> 21138 30 2005 139867448
#> 21139 30 2010 113461815
#> 21140 30 2015 118148834
#> 21141 30 1950 12239740
#> 21142 30 1955 17413576
#> 21143 30 1960 22754415
#> 21144 30 1965 19669287
#> 21145 30 1970 22969050
#> 21146 30 1975 15532344
#> 21147 30 1980 21109349
#> 21148 30 1985 25001150
#> 21149 30 1990 25538247
#> 21150 30 1995 22709848
#> 21151 30 2000 20232753
#> 21152 30 2005 21431007
#> 21153 30 2010 22697605
#> 21154 30 2015 23500532
#> 21155 30 1950 209410
#> 21156 30 1955 233215
#> 21157 30 1960 267195
#> 21158 30 1965 305298
#> 21159 30 1970 350142
#> 21160 30 1975 415710
#> 21161 30 1980 469536
#> 21162 30 1985 624030
#> 21163 30 1990 723292
#> 21164 30 1995 832015
#> 21165 30 2000 945120
#> 21166 30 2005 1031051
#> 21167 30 2010 1116166
#> 21168 30 2015 1219881
#> 21169 30 1950 1419034
#> 21170 30 1955 1605733
#> 21171 30 1960 1851822
#> 21172 30 1965 1989691
#> 21173 30 1970 1960178
#> 21174 30 1975 1994353
#> 21175 30 1980 2759667
#> 21176 30 1985 2966616
#> 21177 30 1990 3659089
#> 21178 30 1995 4149450
#> 21179 30 2000 4576989
#> 21180 30 2005 5176374
#> 21181 30 2010 6302575
#> 21182 30 2015 7389933
#> 21183 30 1950 135529
#> 21184 30 1955 152104
#> 21185 30 1960 163619
#> 21186 30 1965 192838
#> 21187 30 1970 219673
#> 21188 30 1975 240967
#> 21189 30 1980 261448
#> 21190 30 1985 299107
#> 21191 30 1990 329262
#> 21192 30 1995 371954
#> 21193 30 2000 394028
#> 21194 30 2005 410015
#> 21195 30 2010 424166
#> 21196 30 2015 427960
#> 21197 30 1950 15705
#> 21198 30 1955 16268
#> 21199 30 1960 17055
#> 21200 30 1965 18439
#> 21201 30 1970 19905
#> 21202 30 1975 16722
#> 21203 30 1980 15252
#> 21204 30 1985 24022
#> 21205 30 1990 26629
#> 21206 30 1995 31714
#> 21207 30 2000 44779
#> 21208 30 2005 57547
#> 21209 30 2010 83179
#> 21210 30 2015 115086
#> 21211 30 1950 68098
#> 21212 30 1955 78085
#> 21213 30 1960 89645
#> 21214 30 1965 104569
#> 21215 30 1970 119694
#> 21216 30 1975 137671
#> 21217 30 1980 155059
#> 21218 30 1985 160000
#> 21219 30 1990 185213
#> 21220 30 1995 159331
#> 21221 30 2000 168666
#> 21222 30 2005 218855
#> 21223 30 2010 287653
#> 21224 30 2015 370534
#> 21225 30 1950 55872
#> 21226 30 1955 77968
#> 21227 30 1960 103564
#> 21228 30 1965 101837
#> 21229 30 1970 111072
#> 21230 30 1975 93124
#> 21231 30 1980 106993
#> 21232 30 1985 116198
#> 21233 30 1990 119904
#> 21234 30 1995 101039
#> 21235 30 2000 92379
#> 21236 30 2005 97573
#> 21237 30 2010 91722
#> 21238 30 2015 93397
#> 21239 30 1950 1139057
#> 21240 30 1955 1263475
#> 21241 30 1960 1407995
#> 21242 30 1965 1585589
#> 21243 30 1970 1794727
#> 21244 30 1975 2047632
#> 21245 30 1980 2239701
#> 21246 30 1985 2402719
#> 21247 30 1990 2745226
#> 21248 30 1995 3172711
#> 21249 30 2000 3761574
#> 21250 30 2005 4500305
#> 21251 30 2010 5211819
#> 21252 30 2015 6503070
#> 21253 30 1950 18998
#> 21254 30 1955 20072
#> 21255 30 1960 22578
#> 21256 30 1965 27091
#> 21257 30 1970 31855
#> 21258 30 1975 37103
#> 21259 30 1980 42838
#> 21260 30 1985 49809
#> 21261 30 1990 57922
#> 21262 30 1995 60834
#> 21263 30 2000 55102
#> 21264 30 2005 56721
#> 21265 30 2010 66385
#> 21266 30 2015 71318
#> 21267 30 1950 265400
#> 21268 30 1955 300528
#> 21269 30 1960 308545
#> 21270 30 1965 281560
#> 21271 30 1970 290958
#> 21272 30 1975 322790
#> 21273 30 1980 441972
#> 21274 30 1985 409510
#> 21275 30 1990 385792
#> 21276 30 1995 381417
#> 21277 30 2000 352634
#> 21278 30 2005 308108
#> 21279 30 2010 337756
#> 21280 30 2015 354731
#> 21281 30 1950 1757320
#> 21282 30 1955 3465310
#> 21283 30 1960 3251792
#> 21284 30 1965 3340168
#> 21285 30 1970 3069718
#> 21286 30 1975 3009086
#> 21287 30 1980 4366154
#> 21288 30 1985 4263197
#> 21289 30 1990 4263710
#> 21290 30 1995 4388460
#> 21291 30 2000 4312837
#> 21292 30 2005 4287408
#> 21293 30 2010 3888367
#> 21294 30 2015 4046320
#> 21295 30 1950 2036
#> 21296 30 1955 2234
#> 21297 30 1960 2053
#> 21298 30 1965 2399
#> 21299 30 1970 3085
#> 21300 30 1975 3738
#> 21301 30 1980 5490
#> 21302 30 1985 8172
#> 21303 30 1990 9812
#> 21304 30 1995 12503
#> 21305 30 2000 12844
#> 21306 30 2005 15774
#> 21307 30 2010 18225
#> 21308 30 2015 17989
#> 21309 30 1950 3691
#> 21310 30 1955 4520
#> 21311 30 1960 4862
#> 21312 30 1965 6069
#> 21313 30 1970 6941
#> 21314 30 1975 8303
#> 21315 30 1980 9062
#> 21316 30 1985 13603
#> 21317 30 1990 15182
#> 21318 30 1995 17890
#> 21319 30 2000 21388
#> 21320 30 2005 20172
#> 21321 30 2010 19817
#> 21322 30 2015 20666
#> 21323 30 1950 33969
#> 21324 30 1955 34488
#> 21325 30 1960 35202
#> 21326 30 1965 37915
#> 21327 30 1970 40059
#> 21328 30 1975 40025
#> 21329 30 1980 41541
#> 21330 30 1985 45342
#> 21331 30 1990 50969
#> 21332 30 1995 60853
#> 21333 30 2000 75380
#> 21334 30 2005 92704
#> 21335 30 2010 121661
#> 21336 30 2015 155770
#> 21337 30 1950 18197
#> 21338 30 1955 20011
#> 21339 30 1960 27529
#> 21340 30 1965 31487
#> 21341 30 1970 31305
#> 21342 30 1975 38129
#> 21343 30 1980 35230
#> 21344 30 1985 50020
#> 21345 30 1990 60626
#> 21346 30 1995 69016
#> 21347 30 2000 79139
#> 21348 30 2005 85927
#> 21349 30 2010 109631
#> 21350 30 2015 127587
#> 21351 30 1950 175796
#> 21352 30 1955 233178
#> 21353 30 1960 368948
#> 21354 30 1965 342226
#> 21355 30 1970 393978
#> 21356 30 1975 269089
#> 21357 30 1980 285480
#> 21358 30 1985 368620
#> 21359 30 1990 426724
#> 21360 30 1995 396141
#> 21361 30 2000 327736
#> 21362 30 2005 303338
#> 21363 30 2010 281872
#> 21364 30 2015 271247
#> 21365 30 1950 3562634
#> 21366 30 1955 4800050
#> 21367 30 1960 4883693
#> 21368 30 1965 5075502
#> 21369 30 1970 6330666
#> 21370 30 1975 5545581
#> 21371 30 1980 4907084
#> 21372 30 1985 5433047
#> 21373 30 1990 6225554
#> 21374 30 1995 7159533
#> 21375 30 2000 6754202
#> 21376 30 2005 5081555
#> 21377 30 2010 4720310
#> 21378 30 2015 5058402
#> 21379 30 1950 309005
#> 21380 30 1955 358005
#> 21381 30 1960 416472
#> 21382 30 1965 476419
#> 21383 30 1970 524566
#> 21384 30 1975 599688
#> 21385 30 1980 675842
#> 21386 30 1985 723147
#> 21387 30 1990 884107
#> 21388 30 1995 1079225
#> 21389 30 2000 1270396
#> 21390 30 2005 1459503
#> 21391 30 2010 1707889
#> 21392 30 2015 1972499
#> 21393 30 1950 504000
#> 21394 30 1955 570705
#> 21395 30 1960 670968
#> 21396 30 1965 707822
#> 21397 30 1970 593944
#> 21398 30 1975 488761
#> 21399 30 1980 649710
#> 21400 30 1985 647429
#> 21401 30 1990 750048
#> 21402 30 1995 798835
#> 21403 30 2000 897403
#> 21404 30 2005 877863
#> 21405 30 2010 890463
#> 21406 30 2015 784655
#> 21407 30 1950 3685
#> 21408 30 1955 4038
#> 21409 30 1960 4370
#> 21410 30 1965 3860
#> 21411 30 1970 4217
#> 21412 30 1975 3430
#> 21413 30 1980 4339
#> 21414 30 1985 5726
#> 21415 30 1990 6183
#> 21416 30 1995 7349
#> 21417 30 2000 5864
#> 21418 30 2005 6527
#> 21419 30 2010 7465
#> 21420 30 2015 9304
#> 21421 30 1950 13995
#> 21422 30 1955 15994
#> 21423 30 1960 17097
#> 21424 30 1965 14500
#> 21425 30 1970 14533
#> 21426 30 1975 15932
#> 21427 30 1980 20373
#> 21428 30 1985 25412
#> 21429 30 1990 29194
#> 21430 30 1995 33569
#> 21431 30 2000 35182
#> 21432 30 2005 29042
#> 21433 30 2010 24247
#> 21434 30 2015 20261
#> 21435 30 1950 5466
#> 21436 30 1955 6047
#> 21437 30 1960 6654
#> 21438 30 1965 6484
#> 21439 30 1970 6205
#> 21440 30 1975 7638
#> 21441 30 1980 9341
#> 21442 30 1985 10174
#> 21443 30 1990 11508
#> 21444 30 1995 12993
#> 21445 30 2000 12895
#> 21446 30 2005 11940
#> 21447 30 2010 10422
#> 21448 30 2015 10315
#> 21449 30 1950 193742
#> 21450 30 1955 236457
#> 21451 30 1960 280006
#> 21452 30 1965 303939
#> 21453 30 1970 321338
#> 21454 30 1975 345412
#> 21455 30 1980 382495
#> 21456 30 1985 481604
#> 21457 30 1990 524421
#> 21458 30 1995 577997
#> 21459 30 2000 665015
#> 21460 30 2005 802230
#> 21461 30 2010 996475
#> 21462 30 2015 1200747
#> 21463 30 1950 213600
#> 21464 30 1955 226451
#> 21465 30 1960 237393
#> 21466 30 1965 248672
#> 21467 30 1970 266614
#> 21468 30 1975 269628
#> 21469 30 1980 264897
#> 21470 30 1985 336559
#> 21471 30 1990 383955
#> 21472 30 1995 478368
#> 21473 30 2000 515736
#> 21474 30 2005 571268
#> 21475 30 2010 659879
#> 21476 30 2015 768456
#> 21477 30 1950 41746
#> 21478 30 1955 42406
#> 21479 30 1960 40588
#> 21480 30 1965 39442
#> 21481 30 1970 41204
#> 21482 30 1975 48146
#> 21483 30 1980 48897
#> 21484 30 1985 61468
#> 21485 30 1990 62642
#> 21486 30 1995 65347
#> 21487 30 2000 68561
#> 21488 30 2005 83856
#> 21489 30 2010 98599
#> 21490 30 2015 123048
#> 21491 30 1950 26566
#> 21492 30 1955 28634
#> 21493 30 1960 33585
#> 21494 30 1965 33470
#> 21495 30 1970 34810
#> 21496 30 1975 39769
#> 21497 30 1980 43891
#> 21498 30 1985 51143
#> 21499 30 1990 56105
#> 21500 30 1995 59860
#> 21501 30 2000 60861
#> 21502 30 2005 55677
#> 21503 30 2010 55233
#> 21504 30 2015 50617
#> 21505 30 1950 220733
#> 21506 30 1955 228646
#> 21507 30 1960 240767
#> 21508 30 1965 266664
#> 21509 30 1970 301112
#> 21510 30 1975 322747
#> 21511 30 1980 324895
#> 21512 30 1985 394686
#> 21513 30 1990 437254
#> 21514 30 1995 498298
#> 21515 30 2000 540206
#> 21516 30 2005 570277
#> 21517 30 2010 691882
#> 21518 30 2015 867629
#> 21519 30 1950 42979822
#> 21520 30 1955 52522840
#> 21521 30 1960 53473662
#> 21522 30 1965 53813135
#> 21523 30 1970 55785650
#> 21524 30 1975 59425114
#> 21525 30 1980 70835627
#> 21526 30 1985 74788095
#> 21527 30 1990 79700134
#> 21528 30 1995 83072200
#> 21529 30 2000 81489946
#> 21530 30 2005 81398367
#> 21531 30 2010 80499565
#> 21532 30 2015 81430009
#> 21533 30 1950 87765
#> 21534 30 1955 109447
#> 21535 30 1960 120153
#> 21536 30 1965 136763
#> 21537 30 1970 147245
#> 21538 30 1975 160962
#> 21539 30 1980 194514
#> 21540 30 1985 251062
#> 21541 30 1990 296171
#> 21542 30 1995 347227
#> 21543 30 2000 420356
#> 21544 30 2005 497696
#> 21545 30 2010 601861
#> 21546 30 2015 702008
#> 21547 30 1950 495322
#> 21548 30 1955 816513
#> 21549 30 1960 747606
#> 21550 30 1965 714289
#> 21551 30 1970 667257
#> 21552 30 1975 737828
#> 21553 30 1980 758077
#> 21554 30 1985 885189
#> 21555 30 1990 763105
#> 21556 30 1995 606724
#> 21557 30 2000 686430
#> 21558 30 2005 760315
#> 21559 30 2010 818424
#> 21560 30 2015 644422
#> 21561 30 1950 9875
#> 21562 30 1955 11020
#> 21563 30 1960 11840
#> 21564 30 1965 11790
#> 21565 30 1970 11012
#> 21566 30 1975 13391
#> 21567 30 1980 16343
#> 21568 30 1985 18758
#> 21569 30 1990 20999
#> 21570 30 1995 21411
#> 21571 30 2000 20300
#> 21572 30 2005 20763
#> 21573 30 2010 22649
#> 21574 30 2015 23452
#> 21575 30 1950 26933215
#> 21576 30 1955 28459082
#> 21577 30 1960 30698268
#> 21578 30 1965 33350499
#> 21579 30 1970 36211173
#> 21580 30 1975 38418186
#> 21581 30 1980 43586611
#> 21582 30 1985 55327805
#> 21583 30 1990 61928470
#> 21584 30 1995 68975580
#> 21585 30 2000 75843027
#> 21586 30 2005 84075511
#> 21587 30 2010 92780883
#> 21588 30 2015 104208032
#> 21589 30 1950 4418313
#> 21590 30 1955 4997588
#> 21591 30 1960 6022382
#> 21592 30 1965 6896989
#> 21593 30 1970 7704472
#> 21594 30 1975 8004730
#> 21595 30 1980 8321136
#> 21596 30 1985 10342718
#> 21597 30 1990 13192263
#> 21598 30 1995 15391279
#> 21599 30 2000 17454209
#> 21600 30 2005 18773968
#> 21601 30 2010 19862340
#> 21602 30 2015 21054005
#> 21603 30 1950 1070001
#> 21604 30 1955 1418847
#> 21605 30 1960 1506985
#> 21606 30 1965 1640985
#> 21607 30 1970 1677827
#> 21608 30 1975 1658094
#> 21609 30 1980 2119901
#> 21610 30 1985 2991917
#> 21611 30 1990 3512535
#> 21612 30 1995 3894012
#> 21613 30 2000 4443221
#> 21614 30 2005 5204363
#> 21615 30 2010 6795815
#> 21616 30 2015 9083340
#> 21617 30 1950 420650
#> 21618 30 1955 405019
#> 21619 30 1960 425293
#> 21620 30 1965 482349
#> 21621 30 1970 548302
#> 21622 30 1975 635073
#> 21623 30 1980 663857
#> 21624 30 1985 965312
#> 21625 30 1990 862335
#> 21626 30 1995 1087219
#> 21627 30 2000 1579601
#> 21628 30 2005 1895542
#> 21629 30 2010 2153106
#> 21630 30 2015 2481738
#> 21631 30 1950 189930
#> 21632 30 1955 183589
#> 21633 30 1960 139117
#> 21634 30 1965 136228
#> 21635 30 1970 150456
#> 21636 30 1975 179097
#> 21637 30 1980 236915
#> 21638 30 1985 250128
#> 21639 30 1990 234082
#> 21640 30 1995 255866
#> 21641 30 2000 263581
#> 21642 30 2005 357313
#> 21643 30 2010 400964
#> 21644 30 2015 364429
#> 21645 30 1950 89111
#> 21646 30 1955 126773
#> 21647 30 1960 136297
#> 21648 30 1965 149396
#> 21649 30 1970 160692
#> 21650 30 1975 184743
#> 21651 30 1980 269704
#> 21652 30 1985 318981
#> 21653 30 1990 314929
#> 21654 30 1995 360038
#> 21655 30 2000 391550
#> 21656 30 2005 469836
#> 21657 30 2010 546462
#> 21658 30 2015 558907
#> 21659 30 1950 2625578
#> 21660 30 1955 3807323
#> 21661 30 1960 3722528
#> 21662 30 1965 3659225
#> 21663 30 1970 3797036
#> 21664 30 1975 3470795
#> 21665 30 1980 4018440
#> 21666 30 1985 3888948
#> 21667 30 1990 4089269
#> 21668 30 1995 4556909
#> 21669 30 2000 4585507
#> 21670 30 2005 4553115
#> 21671 30 2010 3924211
#> 21672 30 2015 3344739
#> 21673 30 1950 103800
#> 21674 30 1955 101412
#> 21675 30 1960 94439
#> 21676 30 1965 93606
#> 21677 30 1970 85420
#> 21678 30 1975 89933
#> 21679 30 1980 116941
#> 21680 30 1985 136397
#> 21681 30 1990 169004
#> 21682 30 1995 191492
#> 21683 30 2000 205332
#> 21684 30 2005 195681
#> 21685 30 2010 190879
#> 21686 30 2015 214066
#> 21687 30 1950 5202207
#> 21688 30 1955 6075853
#> 21689 30 1960 7496800
#> 21690 30 1965 8203115
#> 21691 30 1970 8461803
#> 21692 30 1975 9322009
#> 21693 30 1980 10837330
#> 21694 30 1985 9300027
#> 21695 30 1990 7991844
#> 21696 30 1995 8104479
#> 21697 30 2000 8773389
#> 21698 30 2005 10066043
#> 21699 30 2010 8430151
#> 21700 30 2015 7609439
#> 21701 30 1950 24259
#> 21702 30 1955 37974
#> 21703 30 1960 54694
#> 21704 30 1965 71637
#> 21705 30 1970 109548
#> 21706 30 1975 128792
#> 21707 30 1980 110752
#> 21708 30 1985 143518
#> 21709 30 1990 191578
#> 21710 30 1995 326292
#> 21711 30 2000 388338
#> 21712 30 2005 450805
#> 21713 30 2010 547715
#> 21714 30 2015 704247
#> 21715 30 1950 318185
#> 21716 30 1955 447746
#> 21717 30 1960 844499
#> 21718 30 1965 747400
#> 21719 30 1970 1168545
#> 21720 30 1975 743415
#> 21721 30 1980 966278
#> 21722 30 1985 1212781
#> 21723 30 1990 1413180
#> 21724 30 1995 1310183
#> 21725 30 2000 1090433
#> 21726 30 2005 1180394
#> 21727 30 2010 1242122
#> 21728 30 2015 1371938
#> 21729 30 1950 378882
#> 21730 30 1955 418881
#> 21731 30 1960 484796
#> 21732 30 1965 555973
#> 21733 30 1970 570279
#> 21734 30 1975 600227
#> 21735 30 1980 822858
#> 21736 30 1985 1096328
#> 21737 30 1990 1334335
#> 21738 30 1995 1629755
#> 21739 30 2000 1919457
#> 21740 30 2005 2350209
#> 21741 30 2010 2903487
#> 21742 30 2015 3522250
#> 21743 30 1950 1881
#> 21744 30 1955 2984
#> 21745 30 1960 2810
#> 21746 30 1965 2629
#> 21747 30 1970 2733
#> 21748 30 1975 2646
#> 21749 30 1980 3463
#> 21750 30 1985 4149
#> 21751 30 1990 5272
#> 21752 30 1995 5852
#> 21753 30 2000 6602
#> 21754 30 2005 5561
#> 21755 30 2010 6700
#> 21756 30 2015 7991
#> 21757 30 1950 12600
#> 21758 30 1955 16071
#> 21759 30 1960 28312
#> 21760 30 1965 41935
#> 21761 30 1970 59791
#> 21762 30 1975 80675
#> 21763 30 1980 117477
#> 21764 30 1985 178797
#> 21765 30 1990 225971
#> 21766 30 1995 198241
#> 21767 30 2000 239260
#> 21768 30 2005 273077
#> 21769 30 2010 392586
#> 21770 30 2015 503115
#> 21771 30 1950 82465
#> 21772 30 1955 115188
#> 21773 30 1960 180586
#> 21774 30 1965 176175
#> 21775 30 1970 210704
#> 21776 30 1975 139117
#> 21777 30 1980 193766
#> 21778 30 1985 271675
#> 21779 30 1990 333263
#> 21780 30 1995 347698
#> 21781 30 2000 346545
#> 21782 30 2005 368648
#> 21783 30 2010 371293
#> 21784 30 2015 435049
#> 21785 30 1950 10807525
#> 21786 30 1955 12522301
#> 21787 30 1960 14257563
#> 21788 30 1965 15399498
#> 21789 30 1970 17182364
#> 21790 30 1975 19266519
#> 21791 30 1980 22675809
#> 21792 30 1985 27706945
#> 21793 30 1990 31761246
#> 21794 30 1995 36620703
#> 21795 30 2000 39841643
#> 21796 30 2005 43073970
#> 21797 30 2010 46904543
#> 21798 30 2015 50294333
#> 21799 30 1950 120218
#> 21800 30 1955 129978
#> 21801 30 1960 140195
#> 21802 30 1965 148860
#> 21803 30 1970 164579
#> 21804 30 1975 184960
#> 21805 30 1980 175447
#> 21806 30 1985 209346
#> 21807 30 1990 252249
#> 21808 30 1995 297949
#> 21809 30 2000 328082
#> 21810 30 2005 367226
#> 21811 30 2010 422717
#> 21812 30 2015 503673
#> 21813 30 1950 94141
#> 21814 30 1955 139804
#> 21815 30 1960 180867
#> 21816 30 1965 178484
#> 21817 30 1970 198341
#> 21818 30 1975 177679
#> 21819 30 1980 168101
#> 21820 30 1985 186049
#> 21821 30 1990 204653
#> 21822 30 1995 182182
#> 21823 30 2000 158193
#> 21824 30 2005 157024
#> 21825 30 2010 139597
#> 21826 30 2015 137120
#> 21827 30 1950 12932198
#> 21828 30 1955 14179630
#> 21829 30 1960 15612288
#> 21830 30 1965 17109768
#> 21831 30 1970 18733846
#> 21832 30 1975 20906595
#> 21833 30 1980 22945086
#> 21834 30 1985 25953609
#> 21835 30 1990 30586010
#> 21836 30 1995 36587207
#> 21837 30 2000 42227112
#> 21838 30 2005 48293930
#> 21839 30 2010 55917259
#> 21840 30 2015 65693883
#> 21841 30 1950 68419
#> 21842 30 1955 95779
#> 21843 30 1960 121828
#> 21844 30 1965 132849
#> 21845 30 1970 133172
#> 21846 30 1975 136338
#> 21847 30 1980 138367
#> 21848 30 1985 173090
#> 21849 30 1990 186938
#> 21850 30 1995 238803
#> 21851 30 2000 257848
#> 21852 30 2005 269508
#> 21853 30 2010 317706
#> 21854 30 2015 480823
#> 21855 30 1950 46481
#> 21856 30 1955 47196
#> 21857 30 1960 45509
#> 21858 30 1965 49958
#> 21859 30 1970 52916
#> 21860 30 1975 55778
#> 21861 30 1980 72499
#> 21862 30 1985 81090
#> 21863 30 1990 87409
#> 21864 30 1995 99750
#> 21865 30 2000 110441
#> 21866 30 2005 116984
#> 21867 30 2010 137904
#> 21868 30 2015 174010
#> 21869 30 1950 118726841
#> 21870 30 1955 126246407
#> 21871 30 1960 140016735
#> 21872 30 1965 154101511
#> 21873 30 1970 166688651
#> 21874 30 1975 176593226
#> 21875 30 1980 208399494
#> 21876 30 1985 267187934
#> 21877 30 1990 294093098
#> 21878 30 1995 344163934
#> 21879 30 2000 391190800
#> 21880 30 2005 412328017
#> 21881 30 2010 422584153
#> 21882 30 2015 467704296
#> 21883 30 1950 76824595
#> 21884 30 1955 85215276
#> 21885 30 1960 95856066
#> 21886 30 1965 105609680
#> 21887 30 1970 116138971
#> 21888 30 1975 124471089
#> 21889 30 1980 141887858
#> 21890 30 1985 175120106
#> 21891 30 1990 205578882
#> 21892 30 1995 234737102
#> 21893 30 2000 260967182
#> 21894 30 2005 289473083
#> 21895 30 2010 323286001
#> 21896 30 2015 363030097
#> 21897 30 1950 105794643
#> 21898 30 1955 112066777
#> 21899 30 1960 124404447
#> 21900 30 1965 136991743
#> 21901 30 1970 147954805
#> 21902 30 1975 155686631
#> 21903 30 1980 185454408
#> 21904 30 1985 241234325
#> 21905 30 1990 263507088
#> 21906 30 1995 307576727
#> 21907 30 2000 348963688
#> 21908 30 2005 364034087
#> 21909 30 2010 366666894
#> 21910 30 2015 402010413
#> 21911 30 1950 61589
#> 21912 30 1955 69129
#> 21913 30 1960 74711
#> 21914 30 1965 82194
#> 21915 30 1970 92892
#> 21916 30 1975 104325
#> 21917 30 1980 106950
#> 21918 30 1985 127781
#> 21919 30 1990 124534
#> 21920 30 1995 125655
#> 21921 30 2000 178259
#> 21922 30 2005 207826
#> 21923 30 2010 258552
#> 21924 30 2015 301772
#> 21925 30 1950 71062
#> 21926 30 1955 84478
#> 21927 30 1960 98120
#> 21928 30 1965 113103
#> 21929 30 1970 130418
#> 21930 30 1975 153866
#> 21931 30 1980 176885
#> 21932 30 1985 238690
#> 21933 30 1990 282274
#> 21934 30 1995 334067
#> 21935 30 2000 434526
#> 21936 30 2005 545744
#> 21937 30 2010 614813
#> 21938 30 2015 567792
#> 21939 30 1950 120370
#> 21940 30 1955 179536
#> 21941 30 1960 230184
#> 21942 30 1965 237360
#> 21943 30 1970 238902
#> 21944 30 1975 228502
#> 21945 30 1980 229881
#> 21946 30 1985 248033
#> 21947 30 1990 293100
#> 21948 30 1995 289842
#> 21949 30 2000 253423
#> 21950 30 2005 233100
#> 21951 30 2010 198291
#> 21952 30 2015 178824
#> 21953 30 1950 8293978
#> 21954 30 1955 8972546
#> 21955 30 1960 9881418
#> 21956 30 1965 10950204
#> 21957 30 1970 12349559
#> 21958 30 1975 13847356
#> 21959 30 1980 15193078
#> 21960 30 1985 16689633
#> 21961 30 1990 19593380
#> 21962 30 1995 22189740
#> 21963 30 2000 25914456
#> 21964 30 2005 30144614
#> 21965 30 2010 34535114
#> 21966 30 2015 41142064
#> 21967 30 1950 52440844
#> 21968 30 1955 58026681
#> 21969 30 1960 65192440
#> 21970 30 1965 70537234
#> 21971 30 1970 77624536
#> 21972 30 1975 80660779
#> 21973 30 1980 90794917
#> 21974 30 1985 113074063
#> 21975 30 1990 132036644
#> 21976 30 1995 150381255
#> 21977 30 2000 166101324
#> 21978 30 2005 183704818
#> 21979 30 2010 205203287
#> 21980 30 2015 230475422
#> 21981 30 1950 19999
#> 21982 30 1955 21999
#> 21983 30 1960 24785
#> 21984 30 1965 23935
#> 21985 30 1970 23371
#> 21986 30 1975 24118
#> 21987 30 1980 27837
#> 21988 30 1985 29497
#> 21989 30 1990 32513
#> 21990 30 1995 36076
#> 21991 30 2000 37228
#> 21992 30 2005 34219
#> 21993 30 2010 37678
#> 21994 30 2015 44713
#> 21995 30 1950 253863
#> 21996 30 1955 295036
#> 21997 30 1960 326398
#> 21998 30 1965 363061
#> 21999 30 1970 381498
#> 22000 30 1975 395545
#> 22001 30 1980 452822
#> 22002 30 1985 609564
#> 22003 30 1990 712983
#> 22004 30 1995 828878
#> 22005 30 2000 978141
#> 22006 30 2005 1164539
#> 22007 30 2010 1373213
#> 22008 30 2015 1569177
#> 22009 30 1950 193447
#> 22010 30 1955 195981
#> 22011 30 1960 215882
#> 22012 30 1965 239501
#> 22013 30 1970 273219
#> 22014 30 1975 325202
#> 22015 30 1980 388973
#> 22016 30 1985 398683
#> 22017 30 1990 589000
#> 22018 30 1995 587312
#> 22019 30 2000 677158
#> 22020 30 2005 783019
#> 22021 30 2010 939297
#> 22022 30 2015 1120310
#> 22023 30 1950 402901
#> 22024 30 1955 424838
#> 22025 30 1960 486074
#> 22026 30 1965 535186
#> 22027 30 1970 666693
#> 22028 30 1975 698274
#> 22029 30 1980 901319
#> 22030 30 1985 1116329
#> 22031 30 1990 1381313
#> 22032 30 1995 1640308
#> 22033 30 2000 1749938
#> 22034 30 2005 1961526
#> 22035 30 2010 2099714
#> 22036 30 2015 2659987
#> 22037 30 1950 4759
#> 22038 30 1955 5497
#> 22039 30 1960 6324
#> 22040 30 1965 7775
#> 22041 30 1970 8455
#> 22042 30 1975 8448
#> 22043 30 1980 6750
#> 22044 30 1985 8503
#> 22045 30 1990 12413
#> 22046 30 1995 15502
#> 22047 30 2000 18252
#> 22048 30 2005 23374
#> 22049 30 2010 31222
#> 22050 30 2015 49580
#> 22051 30 1950 352338
#> 22052 30 1955 346203
#> 22053 30 1960 341401
#> 22054 30 1965 337879
#> 22055 30 1970 348688
#> 22056 30 1975 398689
#> 22057 30 1980 401415
#> 22058 30 1985 461513
#> 22059 30 1990 444228
#> 22060 30 1995 496780
#> 22061 30 2000 607762
#> 22062 30 2005 773106
#> 22063 30 2010 927461
#> 22064 30 2015 1041627
#> 22065 30 1950 17998
#> 22066 30 1955 16523
#> 22067 30 1960 18509
#> 22068 30 1965 18734
#> 22069 30 1970 20326
#> 22070 30 1975 21853
#> 22071 30 1980 29221
#> 22072 30 1985 28102
#> 22073 30 1990 29222
#> 22074 30 1995 27116
#> 22075 30 2000 25069
#> 22076 30 2005 27651
#> 22077 30 2010 29890
#> 22078 30 2015 31571
#> 22079 30 1950 14998
#> 22080 30 1955 14894
#> 22081 30 1960 15805
#> 22082 30 1965 17200
#> 22083 30 1970 17723
#> 22084 30 1975 14760
#> 22085 30 1980 19390
#> 22086 30 1985 23298
#> 22087 30 1990 27372
#> 22088 30 1995 30281
#> 22089 30 2000 31135
#> 22090 30 2005 26647
#> 22091 30 2010 19401
#> 22092 30 2015 19126
#> 22093 30 1950 43980
#> 22094 30 1955 48872
#> 22095 30 1960 54263
#> 22096 30 1965 60730
#> 22097 30 1970 68483
#> 22098 30 1975 75314
#> 22099 30 1980 85850
#> 22100 30 1985 102616
#> 22101 30 1990 124144
#> 22102 30 1995 144119
#> 22103 30 2000 173851
#> 22104 30 2005 208936
#> 22105 30 2010 246498
#> 22106 30 2015 290448
#> 22107 30 1950 29966
#> 22108 30 1955 34700
#> 22109 30 1960 39984
#> 22110 30 1965 44940
#> 22111 30 1970 50770
#> 22112 30 1975 60374
#> 22113 30 1980 72743
#> 22114 30 1985 79350
#> 22115 30 1990 84491
#> 22116 30 1995 96743
#> 22117 30 2000 99509
#> 22118 30 2005 91439
#> 22119 30 2010 103147
#> 22120 30 2015 87472
#> 22121 30 1950 692
#> 22122 30 1955 986
#> 22123 30 1960 1184
#> 22124 30 1965 1590
#> 22125 30 1970 1938
#> 22126 30 1975 2471
#> 22127 30 1980 2925
#> 22128 30 1985 3967
#> 22129 30 1990 5206
#> 22130 30 1995 7356
#> 22131 30 2000 9698
#> 22132 30 2005 11982
#> 22133 30 2010 13947
#> 22134 30 2015 15924
#> 22135 30 1950 146749
#> 22136 30 1955 158862
#> 22137 30 1960 172607
#> 22138 30 1965 191251
#> 22139 30 1970 212427
#> 22140 30 1975 239383
#> 22141 30 1980 273568
#> 22142 30 1985 332671
#> 22143 30 1990 383812
#> 22144 30 1995 438359
#> 22145 30 2000 491173
#> 22146 30 2005 569255
#> 22147 30 2010 655585
#> 22148 30 2015 726812
#> 22149 30 1950 1609703
#> 22150 30 1955 2033152
#> 22151 30 1960 2316990
#> 22152 30 1965 2550645
#> 22153 30 1970 2718967
#> 22154 30 1975 3245133
#> 22155 30 1980 3698360
#> 22156 30 1985 4833873
#> 22157 30 1990 5593289
#> 22158 30 1995 6426068
#> 22159 30 2000 7523419
#> 22160 30 2005 9214960
#> 22161 30 2010 9507264
#> 22162 30 2015 9769807
#> 22163 30 1950 11392
#> 22164 30 1955 13546
#> 22165 30 1960 14449
#> 22166 30 1965 14659
#> 22167 30 1970 15257
#> 22168 30 1975 16120
#> 22169 30 1980 20658
#> 22170 30 1985 26762
#> 22171 30 1990 33320
#> 22172 30 1995 38680
#> 22173 30 2000 42096
#> 22174 30 2005 35706
#> 22175 30 2010 29930
#> 22176 30 2015 32435
#> 22177 30 1950 2071
#> 22178 30 1955 2339
#> 22179 30 1960 2653
#> 22180 30 1965 3026
#> 22181 30 1970 3460
#> 22182 30 1975 2525
#> 22183 30 1980 3551
#> 22184 30 1985 5353
#> 22185 30 1990 6134
#> 22186 30 1995 6962
#> 22187 30 2000 6876
#> 22188 30 2005 5304
#> 22189 30 2010 5375
#> 22190 30 2015 7738
#> 22191 30 1950 1731738
#> 22192 30 1955 1899707
#> 22193 30 1960 2095435
#> 22194 30 1965 2310420
#> 22195 30 1970 2564405
#> 22196 30 1975 2831571
#> 22197 30 1980 3147634
#> 22198 30 1985 3671016
#> 22199 30 1990 4179031
#> 22200 30 1995 4951210
#> 22201 30 2000 5698785
#> 22202 30 2005 6727484
#> 22203 30 2010 8020323
#> 22204 30 2015 9467035
#> 22205 30 1950 117752245
#> 22206 30 1955 128259231
#> 22207 30 1960 146307480
#> 22208 30 1965 155828353
#> 22209 30 1970 169889267
#> 22210 30 1975 170353944
#> 22211 30 1980 204124775
#> 22212 30 1985 262713288
#> 22213 30 1990 285364190
#> 22214 30 1995 329758996
#> 22215 30 2000 370275551
#> 22216 30 2005 386782161
#> 22217 30 2010 391819002
#> 22218 30 2015 430449065
#> 22219 30 1950 58411
#> 22220 30 1955 57825
#> 22221 30 1960 62211
#> 22222 30 1965 67371
#> 22223 30 1970 73006
#> 22224 30 1975 75839
#> 22225 30 1980 81074
#> 22226 30 1985 109124
#> 22227 30 1990 137343
#> 22228 30 1995 180153
#> 22229 30 2000 192454
#> 22230 30 2005 215137
#> 22231 30 2010 229862
#> 22232 30 2015 256135
#> 22233 30 1950 18196
#> 22234 30 1955 27013
#> 22235 30 1960 36346
#> 22236 30 1965 42731
#> 22237 30 1970 38095
#> 22238 30 1975 35949
#> 22239 30 1980 39372
#> 22240 30 1985 50951
#> 22241 30 1990 48512
#> 22242 30 1995 48934
#> 22243 30 2000 41324
#> 22244 30 2005 42336
#> 22245 30 2010 43364
#> 22246 30 2015 46251
#> 22247 30 1950 50352665
#> 22248 30 1955 63567556
#> 22249 30 1960 69708340
#> 22250 30 1965 66557135
#> 22251 30 1970 71409160
#> 22252 30 1975 67104233
#> 22253 30 1980 81845802
#> 22254 30 1985 87124880
#> 22255 30 1990 90708749
#> 22256 30 1995 91028617
#> 22257 30 2000 86678501
#> 22258 30 2005 86181197
#> 22259 30 2010 84447356
#> 22260 30 2015 85495372
#> 22261 30 1950 515564
#> 22262 30 1955 716949
#> 22263 30 1960 897998
#> 22264 30 1965 913529
#> 22265 30 1970 911524
#> 22266 30 1975 831170
#> 22267 30 1980 834986
#> 22268 30 1985 1352337
#> 22269 30 1990 1760088
#> 22270 30 1995 2027343
#> 22271 30 2000 2094181
#> 22272 30 2005 2186536
#> 22273 30 2010 2418825
#> 22274 30 2015 2805841
#> 22275 30 1950 407694
#> 22276 30 1955 437805
#> 22277 30 1960 473358
#> 22278 30 1965 516738
#> 22279 30 1970 568105
#> 22280 30 1975 630343
#> 22281 30 1980 719166
#> 22282 30 1985 777641
#> 22283 30 1990 685555
#> 22284 30 1995 940752
#> 22285 30 2000 1059967
#> 22286 30 2005 1266498
#> 22287 30 2010 1482033
#> 22288 30 2015 1727181
#> 22289 30 1950 1331192
#> 22290 30 1955 1383144
#> 22291 30 1960 1504225
#> 22292 30 1965 1517136
#> 22293 30 1970 1456378
#> 22294 30 1975 1544267
#> 22295 30 1980 1889694
#> 22296 30 1985 2620182
#> 22297 30 1990 2927395
#> 22298 30 1995 3167137
#> 22299 30 2000 3545606
#> 22300 30 2005 3788008
#> 22301 30 2010 4041691
#> 22302 30 2015 4067110
#> 22303 30 1950 13181926
#> 22304 30 1955 14074376
#> 22305 30 1960 13673773
#> 22306 30 1965 12781168
#> 22307 30 1970 13298126
#> 22308 30 1975 16021252
#> 22309 30 1980 19822832
#> 22310 30 1985 22586525
#> 22311 30 1990 24750375
#> 22312 30 1995 24894771
#> 22313 30 2000 22926506
#> 22314 30 2005 21887813
#> 22315 30 2010 22150988
#> 22316 30 2015 23792302
#> 22317 30 1950 32947
#> 22318 30 1955 36128
#> 22319 30 1960 40448
#> 22320 30 1965 41698
#> 22321 30 1970 45252
#> 22322 30 1975 52667
#> 22323 30 1980 54505
#> 22324 30 1985 60841
#> 22325 30 1990 86242
#> 22326 30 1995 111496
#> 22327 30 2000 135413
#> 22328 30 2005 145120
#> 22329 30 2010 152614
#> 22330 30 2015 171441
#> 22331 30 1950 615028
#> 22332 30 1955 668191
#> 22333 30 1960 702945
#> 22334 30 1965 716006
#> 22335 30 1970 781541
#> 22336 30 1975 847258
#> 22337 30 1980 880061
#> 22338 30 1985 1130658
#> 22339 30 1990 1197097
#> 22340 30 1995 1326097
#> 22341 30 2000 1533091
#> 22342 30 2005 1720068
#> 22343 30 2010 1793788
#> 22344 30 2015 1986202
#> 22345 30 1950 689960
#> 22346 30 1955 771634
#> 22347 30 1960 750465
#> 22348 30 1965 782388
#> 22349 30 1970 804873
#> 22350 30 1975 932898
#> 22351 30 1980 1205989
#> 22352 30 1985 1160357
#> 22353 30 1990 1224327
#> 22354 30 1995 1317306
#> 22355 30 2000 1318838
#> 22356 30 2005 1166514
#> 22357 30 2010 1004286
#> 22358 30 2015 1013584
#> 22359 30 1950 4497
#> 22360 30 1955 4703
#> 22361 30 1960 5228
#> 22362 30 1965 6204
#> 22363 30 1970 6946
#> 22364 30 1975 9197
#> 22365 30 1980 9974
#> 22366 30 1985 10364
#> 22367 30 1990 11609
#> 22368 30 1995 14648
#> 22369 30 2000 16726
#> 22370 30 2005 20333
#> 22371 30 2010 17739
#> 22372 30 2015 17329
#> 22373 30 1950 136002
#> 22374 30 1955 153000
#> 22375 30 1960 158038
#> 22376 30 1965 148019
#> 22377 30 1970 163579
#> 22378 30 1975 199397
#> 22379 30 1980 235311
#> 22380 30 1985 254099
#> 22381 30 1990 274797
#> 22382 30 1995 300173
#> 22383 30 2000 293240
#> 22384 30 2005 294215
#> 22385 30 2010 269723
#> 22386 30 2015 287537
#> 22387 30 1950 82000
#> 22388 30 1955 96669
#> 22389 30 1960 108870
#> 22390 30 1965 120457
#> 22391 30 1970 134871
#> 22392 30 1975 150967
#> 22393 30 1980 155503
#> 22394 30 1985 228082
#> 22395 30 1990 267907
#> 22396 30 1995 285048
#> 22397 30 2000 322314
#> 22398 30 2005 380237
#> 22399 30 2010 443296
#> 22400 30 2015 511725
#> 22401 30 1950 156943
#> 22402 30 1955 176670
#> 22403 30 1960 192708
#> 22404 30 1965 222709
#> 22405 30 1970 262683
#> 22406 30 1975 330169
#> 22407 30 1980 388866
#> 22408 30 1985 414408
#> 22409 30 1990 483070
#> 22410 30 1995 593595
#> 22411 30 2000 638861
#> 22412 30 2005 744456
#> 22413 30 2010 901033
#> 22414 30 2015 1052283
#> 22415 30 1950 2463861
#> 22416 30 1955 2696016
#> 22417 30 1960 2933017
#> 22418 30 1965 3229170
#> 22419 30 1970 3616749
#> 22420 30 1975 4046421
#> 22421 30 1980 4592000
#> 22422 30 1985 4937322
#> 22423 30 1990 5652967
#> 22424 30 1995 6446406
#> 22425 30 2000 7356287
#> 22426 30 2005 8739212
#> 22427 30 2010 10319200
#> 22428 30 2015 11795198
#> 22429 30 1950 3163638
#> 22430 30 1955 3606824
#> 22431 30 1960 4226489
#> 22432 30 1965 4592855
#> 22433 30 1970 4680014
#> 22434 30 1975 4765727
#> 22435 30 1980 5872129
#> 22436 30 1985 7479096
#> 22437 30 1990 9157533
#> 22438 30 1995 10718133
#> 22439 30 2000 11889636
#> 22440 30 2005 13294178
#> 22441 30 2010 15498798
#> 22442 30 2015 17835354
#> 22443 30 1950 5347526
#> 22444 30 1955 5844770
#> 22445 30 1960 5391474
#> 22446 30 1965 5154323
#> 22447 30 1970 5298953
#> 22448 30 1975 5775148
#> 22449 30 1980 6786001
#> 22450 30 1985 6216039
#> 22451 30 1990 6568439
#> 22452 30 1995 7272982
#> 22453 30 2000 7203845
#> 22454 30 2005 6699248
#> 22455 30 2010 6562403
#> 22456 30 2015 6850466
#> 22457 30 1950 259679
#> 22458 30 1955 264700
#> 22459 30 1960 225011
#> 22460 30 1965 199549
#> 22461 30 1970 203768
#> 22462 30 1975 253313
#> 22463 30 1980 316153
#> 22464 30 1985 305809
#> 22465 30 1990 317659
#> 22466 30 1995 327447
#> 22467 30 2000 351605
#> 22468 30 2005 338970
#> 22469 30 2010 315904
#> 22470 30 2015 349908
#> 22471 30 1950 923333
#> 22472 30 1955 1070351
#> 22473 30 1960 1106308
#> 22474 30 1965 1066287
#> 22475 30 1970 1202316
#> 22476 30 1975 1409248
#> 22477 30 1980 1737209
#> 22478 30 1985 1901420
#> 22479 30 1990 2124381
#> 22480 30 1995 2283747
#> 22481 30 2000 2282057
#> 22482 30 2005 2460858
#> 22483 30 2010 2477007
#> 22484 30 2015 2843592
#> 22485 30 1950 29180
#> 22486 30 1955 29571
#> 22487 30 1960 31132
#> 22488 30 1965 35035
#> 22489 30 1970 41777
#> 22490 30 1975 58578
#> 22491 30 1980 88003
#> 22492 30 1985 113722
#> 22493 30 1990 135278
#> 22494 30 1995 212128
#> 22495 30 2000 192780
#> 22496 30 2005 213467
#> 22497 30 2010 345931
#> 22498 30 2015 636742
#> 22499 30 1950 2409826
#> 22500 30 1955 2686654
#> 22501 30 1960 2991522
#> 22502 30 1965 3357915
#> 22503 30 1970 3781848
#> 22504 30 1975 4318841
#> 22505 30 1980 4619799
#> 22506 30 1985 5147106
#> 22507 30 1990 6631408
#> 22508 30 1995 7906733
#> 22509 30 2000 8916409
#> 22510 30 2005 10023869
#> 22511 30 2010 11746874
#> 22512 30 2015 13910216
#> 22513 30 1950 55180
#> 22514 30 1955 60704
#> 22515 30 1960 67981
#> 22516 30 1965 77800
#> 22517 30 1970 90614
#> 22518 30 1975 106254
#> 22519 30 1980 124619
#> 22520 30 1985 149072
#> 22521 30 1990 178599
#> 22522 30 1995 210304
#> 22523 30 2000 239351
#> 22524 30 2005 266611
#> 22525 30 2010 282756
#> 22526 30 2015 296137
#> 22527 30 1950 114992
#> 22528 30 1955 124069
#> 22529 30 1960 133793
#> 22530 30 1965 144344
#> 22531 30 1970 158850
#> 22532 30 1975 174614
#> 22533 30 1980 200417
#> 22534 30 1985 249670
#> 22535 30 1990 286463
#> 22536 30 1995 329481
#> 22537 30 2000 381114
#> 22538 30 2005 445762
#> 22539 30 2010 516187
#> 22540 30 2015 578524
#> 22541 30 1950 84883
#> 22542 30 1955 95874
#> 22543 30 1960 107845
#> 22544 30 1965 106665
#> 22545 30 1970 131112
#> 22546 30 1975 152189
#> 22547 30 1980 189352
#> 22548 30 1985 242117
#> 22549 30 1990 280993
#> 22550 30 1995 320198
#> 22551 30 2000 350638
#> 22552 30 2005 372059
#> 22553 30 2010 439324
#> 22554 30 2015 529558
#> 22555 30 1950 470290
#> 22556 30 1955 528994
#> 22557 30 1960 611785
#> 22558 30 1965 713688
#> 22559 30 1970 803828
#> 22560 30 1975 899078
#> 22561 30 1980 1051979
#> 22562 30 1985 1267855
#> 22563 30 1990 1485849
#> 22564 30 1995 1753158
#> 22565 30 2000 1939489
#> 22566 30 2005 2076360
#> 22567 30 2010 2312490
#> 22568 30 2015 2443873
#> 22569 30 1950 1135652
#> 22570 30 1955 1289994
#> 22571 30 1960 1384417
#> 22572 30 1965 1766193
#> 22573 30 1970 2022773
#> 22574 30 1975 2364022
#> 22575 30 1980 2791105
#> 22576 30 1985 3852409
#> 22577 30 1990 4416933
#> 22578 30 1995 5001810
#> 22579 30 2000 5518759
#> 22580 30 2005 6019511
#> 22581 30 2010 6823582
#> 22582 30 2015 7328524
#> 22583 30 1950 1355002
#> 22584 30 1955 2074059
#> 22585 30 1960 2305549
#> 22586 30 1965 2302724
#> 22587 30 1970 2170962
#> 22588 30 1975 1880584
#> 22589 30 1980 2729811
#> 22590 30 1985 3278008
#> 22591 30 1990 3272356
#> 22592 30 1995 2611422
#> 22593 30 2000 2430597
#> 22594 30 2005 2707159
#> 22595 30 2010 3061986
#> 22596 30 2015 3227637
#> 22597 30 1950 14731
#> 22598 30 1955 17156
#> 22599 30 1960 17745
#> 22600 30 1965 20741
#> 22601 30 1970 22904
#> 22602 30 1975 23919
#> 22603 30 1980 24883
#> 22604 30 1985 32612
#> 22605 30 1990 34881
#> 22606 30 1995 42314
#> 22607 30 2000 47807
#> 22608 30 2005 46068
#> 22609 30 2010 44358
#> 22610 30 2015 43732
#> 22611 30 1950 534292
#> 22612 30 1955 637480
#> 22613 30 1960 638532
#> 22614 30 1965 622187
#> 22615 30 1970 544089
#> 22616 30 1975 536289
#> 22617 30 1980 624185
#> 22618 30 1985 668358
#> 22619 30 1990 695813
#> 22620 30 1995 746031
#> 22621 30 2000 762608
#> 22622 30 2005 829200
#> 22623 30 2010 792313
#> 22624 30 2015 663574
#> 22625 30 1950 131800
#> 22626 30 1955 127994
#> 22627 30 1960 126814
#> 22628 30 1965 158354
#> 22629 30 1970 156893
#> 22630 30 1975 184566
#> 22631 30 1980 228823
#> 22632 30 1985 242288
#> 22633 30 1990 253478
#> 22634 30 1995 261557
#> 22635 30 2000 262578
#> 22636 30 2005 258067
#> 22637 30 2010 264104
#> 22638 30 2015 260017
#> 22639 30 1950 1557
#> 22640 30 1955 2483
#> 22641 30 1960 3425
#> 22642 30 1965 5956
#> 22643 30 1970 10110
#> 22644 30 1975 16239
#> 22645 30 1980 23296
#> 22646 30 1985 52974
#> 22647 30 1990 64058
#> 22648 30 1995 66521
#> 22649 30 2000 68483
#> 22650 30 2005 113290
#> 22651 30 2010 280277
#> 22652 30 2015 403961
#> 22653 30 1950 1215495
#> 22654 30 1955 1390333
#> 22655 30 1960 1505297
#> 22656 30 1965 1846663
#> 22657 30 1970 2172986
#> 22658 30 1975 2207956
#> 22659 30 1980 2579252
#> 22660 30 1985 3075787
#> 22661 30 1990 4128001
#> 22662 30 1995 4288702
#> 22663 30 2000 4399042
#> 22664 30 2005 4482780
#> 22665 30 2010 3908571
#> 22666 30 2015 3798396
#> 22667 30 1950 131745
#> 22668 30 1955 207047
#> 22669 30 1960 239828
#> 22670 30 1965 244728
#> 22671 30 1970 277243
#> 22672 30 1975 232696
#> 22673 30 1980 266495
#> 22674 30 1985 346424
#> 22675 30 1990 374700
#> 22676 30 1995 328251
#> 22677 30 2000 253166
#> 22678 30 2005 292096
#> 22679 30 2010 312449
#> 22680 30 2015 358732
#> 22681 30 1950 16779
#> 22682 30 1955 19903
#> 22683 30 1960 20238
#> 22684 30 1965 23284
#> 22685 30 1970 25491
#> 22686 30 1975 25155
#> 22687 30 1980 27254
#> 22688 30 1985 40616
#> 22689 30 1990 47164
#> 22690 30 1995 60030
#> 22691 30 2000 66151
#> 22692 30 2005 53280
#> 22693 30 2010 50133
#> 22694 30 2015 48994
#> 22695 30 1950 814293
#> 22696 30 1955 1352096
#> 22697 30 1960 1541630
#> 22698 30 1965 1566160
#> 22699 30 1970 1594499
#> 22700 30 1975 1262039
#> 22701 30 1980 1549354
#> 22702 30 1985 1812339
#> 22703 30 1990 1715711
#> 22704 30 1995 1269910
#> 22705 30 2000 1709482
#> 22706 30 2005 1620441
#> 22707 30 2010 1598267
#> 22708 30 2015 1270139
#> 22709 30 1950 6071509
#> 22710 30 1955 7820891
#> 22711 30 1960 11718509
#> 22712 30 1965 9508306
#> 22713 30 1970 11809654
#> 22714 30 1975 6546345
#> 22715 30 1980 9987152
#> 22716 30 1985 11915602
#> 22717 30 1990 12935001
#> 22718 30 1995 11759075
#> 22719 30 2000 9656335
#> 22720 30 2005 10233855
#> 22721 30 2010 10825021
#> 22722 30 2015 11932230
#> 22723 30 1950 111427
#> 22724 30 1955 154734
#> 22725 30 1960 200986
#> 22726 30 1965 198895
#> 22727 30 1970 190064
#> 22728 30 1975 207456
#> 22729 30 1980 296930
#> 22730 30 1985 369014
#> 22731 30 1990 440792
#> 22732 30 1995 399295
#> 22733 30 2000 436304
#> 22734 30 2005 516499
#> 22735 30 2010 662644
#> 22736 30 2015 907447
#> 22737 30 1950 5322
#> 22738 30 1955 5413
#> 22739 30 1960 4651
#> 22740 30 1965 4325
#> 22741 30 1970 4052
#> 22742 30 1975 4830
#> 22743 30 1980 5930
#> 22744 30 1985 7260
#> 22745 30 1990 8983
#> 22746 30 1995 11340
#> 22747 30 2000 11791
#> 22748 30 2005 12562
#> 22749 30 2010 12979
#> 22750 30 2015 13884
#> 22751 30 1950 3240
#> 22752 30 1955 3177
#> 22753 30 1960 3931
#> 22754 30 1965 3363
#> 22755 30 1970 3653
#> 22756 30 1975 3600
#> 22757 30 1980 4419
#> 22758 30 1985 5536
#> 22759 30 1990 7209
#> 22760 30 1995 8601
#> 22761 30 2000 7847
#> 22762 30 2005 8081
#> 22763 30 2010 8323
#> 22764 30 2015 8499
#> 22765 30 1950 5061
#> 22766 30 1955 5442
#> 22767 30 1960 5687
#> 22768 30 1965 6864
#> 22769 30 1970 7253
#> 22770 30 1975 7241
#> 22771 30 1980 6355
#> 22772 30 1985 8940
#> 22773 30 1990 8639
#> 22774 30 1995 11744
#> 22775 30 2000 12003
#> 22776 30 2005 11947
#> 22777 30 2010 11611
#> 22778 30 2015 10914
#> 22779 30 1950 5867
#> 22780 30 1955 5748
#> 22781 30 1960 6318
#> 22782 30 1965 4417
#> 22783 30 1970 3010
#> 22784 30 1975 3355
#> 22785 30 1980 3710
#> 22786 30 1985 4574
#> 22787 30 1990 5813
#> 22788 30 1995 7064
#> 22789 30 2000 7994
#> 22790 30 2005 9078
#> 22791 30 2010 13074
#> 22792 30 2015 11867
#> 22793 30 1950 193442
#> 22794 30 1955 219165
#> 22795 30 1960 250387
#> 22796 30 1965 297129
#> 22797 30 1970 359499
#> 22798 30 1975 476196
#> 22799 30 1980 706907
#> 22800 30 1985 1106229
#> 22801 30 1990 1358925
#> 22802 30 1995 1675550
#> 22803 30 2000 1776155
#> 22804 30 2005 2300492
#> 22805 30 2010 2792798
#> 22806 30 2015 3103365
#> 22807 30 1950 160893
#> 22808 30 1955 181472
#> 22809 30 1960 207342
#> 22810 30 1965 234291
#> 22811 30 1970 268216
#> 22812 30 1975 299968
#> 22813 30 1980 306341
#> 22814 30 1985 362494
#> 22815 30 1990 414348
#> 22816 30 1995 491393
#> 22817 30 2000 571903
#> 22818 30 2005 694817
#> 22819 30 2010 834707
#> 22820 30 2015 1020860
#> 22821 30 1950 326405
#> 22822 30 1955 558429
#> 22823 30 1960 676311
#> 22824 30 1965 668712
#> 22825 30 1970 589494
#> 22826 30 1975 498343
#> 22827 30 1980 702331
#> 22828 30 1985 784789
#> 22829 30 1990 669762
#> 22830 30 1995 665147
#> 22831 30 2000 628980
#> 22832 30 2005 642410
#> 22833 30 2010 638612
#> 22834 30 2015 594017
#> 22835 30 1950 2405
#> 22836 30 1955 2656
#> 22837 30 1960 2711
#> 22838 30 1965 2629
#> 22839 30 1970 2614
#> 22840 30 1975 2758
#> 22841 30 1980 2917
#> 22842 30 1985 4960
#> 22843 30 1990 5485
#> 22844 30 1995 6494
#> 22845 30 2000 6433
#> 22846 30 2005 7936
#> 22847 30 2010 7761
#> 22848 30 2015 7730
#> 22849 30 1950 140068
#> 22850 30 1955 148618
#> 22851 30 1960 156830
#> 22852 30 1965 166322
#> 22853 30 1970 178830
#> 22854 30 1975 195748
#> 22855 30 1980 211026
#> 22856 30 1985 221486
#> 22857 30 1990 244286
#> 22858 30 1995 246469
#> 22859 30 2000 271345
#> 22860 30 2005 357477
#> 22861 30 2010 422264
#> 22862 30 2015 489787
#> 22863 30 1950 81401
#> 22864 30 1955 89501
#> 22865 30 1960 104500
#> 22866 30 1965 117299
#> 22867 30 1970 136402
#> 22868 30 1975 133925
#> 22869 30 1980 211179
#> 22870 30 1985 266625
#> 22871 30 1990 337602
#> 22872 30 1995 369216
#> 22873 30 2000 349021
#> 22874 30 2005 374663
#> 22875 30 2010 401855
#> 22876 30 2015 392226
#> 22877 30 1950 169411
#> 22878 30 1955 310262
#> 22879 30 1960 297710
#> 22880 30 1965 293724
#> 22881 30 1970 271966
#> 22882 30 1975 298728
#> 22883 30 1980 350424
#> 22884 30 1985 433418
#> 22885 30 1990 425156
#> 22886 30 1995 391152
#> 22887 30 2000 361918
#> 22888 30 2005 422207
#> 22889 30 2010 466948
#> 22890 30 2015 439305
#> 22891 30 1950 71499
#> 22892 30 1955 110049
#> 22893 30 1960 127627
#> 22894 30 1965 126700
#> 22895 30 1970 120974
#> 22896 30 1975 116295
#> 22897 30 1980 137614
#> 22898 30 1985 166393
#> 22899 30 1990 162813
#> 22900 30 1995 152482
#> 22901 30 2000 150806
#> 22902 30 2005 144467
#> 22903 30 2010 158375
#> 22904 30 2015 149294
#> 22905 30 1950 5401
#> 22906 30 1955 6704
#> 22907 30 1960 7151
#> 22908 30 1965 9111
#> 22909 30 1970 9393
#> 22910 30 1975 12294
#> 22911 30 1980 13318
#> 22912 30 1985 14709
#> 22913 30 1990 18199
#> 22914 30 1995 21857
#> 22915 30 2000 25687
#> 22916 30 2005 32800
#> 22917 30 2010 39169
#> 22918 30 2015 39756
#> 22919 30 1950 152954
#> 22920 30 1955 163168
#> 22921 30 1960 174484
#> 22922 30 1965 187200
#> 22923 30 1970 216391
#> 22924 30 1975 230997
#> 22925 30 1980 400744
#> 22926 30 1985 436884
#> 22927 30 1990 466702
#> 22928 30 1995 475328
#> 22929 30 2000 546407
#> 22930 30 2005 615618
#> 22931 30 2010 670691
#> 22932 30 2015 786551
#> 22933 30 1950 962001
#> 22934 30 1955 1015670
#> 22935 30 1960 1128458
#> 22936 30 1965 1249141
#> 22937 30 1970 1407322
#> 22938 30 1975 1637469
#> 22939 30 1980 1832454
#> 22940 30 1985 2333867
#> 22941 30 1990 2621717
#> 22942 30 1995 3066535
#> 22943 30 2000 3428197
#> 22944 30 2005 3806087
#> 22945 30 2010 4150990
#> 22946 30 2015 4688764
#> 22947 30 1950 7438791
#> 22948 30 1955 8560324
#> 22949 30 1960 9828044
#> 22950 30 1965 10513063
#> 22951 30 1970 11913775
#> 22952 30 1975 13243248
#> 22953 30 1980 15854410
#> 22954 30 1985 19107334
#> 22955 30 1990 21933436
#> 22956 30 1995 25164890
#> 22957 30 2000 26928925
#> 22958 30 2005 28179042
#> 22959 30 2010 31448356
#> 22960 30 2015 33846311
#> 22961 30 1950 159162
#> 22962 30 1955 175643
#> 22963 30 1960 195159
#> 22964 30 1965 220218
#> 22965 30 1970 246164
#> 22966 30 1975 277063
#> 22967 30 1980 303040
#> 22968 30 1985 305275
#> 22969 30 1990 340904
#> 22970 30 1995 334447
#> 22971 30 2000 419392
#> 22972 30 2005 505279
#> 22973 30 2010 626697
#> 22974 30 2015 743567
#> 22975 30 1950 35328194
#> 22976 30 1955 38349864
#> 22977 30 1960 42291508
#> 22978 30 1965 45889385
#> 22979 30 1970 50516046
#> 22980 30 1975 53236335
#> 22981 30 1980 59830969
#> 22982 30 1985 74107115
#> 22983 30 1990 85584313
#> 22984 30 1995 97210596
#> 22985 30 2000 107259610
#> 22986 30 2005 118940939
#> 22987 30 2010 133468295
#> 22988 30 2015 151907211
#> 22989 30 1950 10861323
#> 22990 30 1955 12157272
#> 22991 30 1960 13983283
#> 22992 30 1965 15960725
#> 22993 30 1970 17278473
#> 22994 30 1975 18156504
#> 22995 30 1980 20351305
#> 22996 30 1985 26755452
#> 22997 30 1990 32827996
#> 22998 30 1995 37370336
#> 22999 30 2000 41821457
#> 23000 30 2005 44689957
#> 23001 30 2010 47091676
#> 23002 30 2015 50545437
#> 23003 30 1950 1084081
#> 23004 30 1955 1149723
#> 23005 30 1960 1265196
#> 23006 30 1965 1397443
#> 23007 30 1970 1569004
#> 23008 30 1975 1817327
#> 23009 30 1980 2043959
#> 23010 30 1985 2590544
#> 23011 30 1990 2933527
#> 23012 30 1995 3435767
#> 23013 30 2000 3853493
#> 23014 30 2005 4270000
#> 23015 30 2010 4688192
#> 23016 30 2015 5341109
#> 23017 30 1950 34509812
#> 23018 30 1955 37165291
#> 23019 30 1960 40307599
#> 23020 30 1965 44012381
#> 23021 30 1970 48006151
#> 23022 30 1975 51483449
#> 23023 30 1980 57643953
#> 23024 30 1985 70952410
#> 23025 30 1990 81698737
#> 23026 30 1995 93096322
#> 23027 30 2000 103367662
#> 23028 30 2005 114668932
#> 23029 30 2010 128789477
#> 23030 30 2015 146450945
#> 23031 30 1950 6468530
#> 23032 30 1955 8654831
#> 23033 30 1960 9085640
#> 23034 30 1965 9219932
#> 23035 30 1970 8683100
#> 23036 30 1975 8181444
#> 23037 30 1980 9609757
#> 23038 30 1985 9907789
#> 23039 30 1990 10536178
#> 23040 30 1995 11241504
#> 23041 30 2000 11363927
#> 23042 30 2005 11888949
#> 23043 30 2010 11439281
#> 23044 30 2015 9603217
#> 23045 30 1950 1911414
#> 23046 30 1955 2264680
#> 23047 30 1960 2378693
#> 23048 30 1965 2487492
#> 23049 30 1970 2076120
#> 23050 30 1975 2265305
#> 23051 30 1980 2447481
#> 23052 30 1985 2532968
#> 23053 30 1990 2916829
#> 23054 30 1995 3193398
#> 23055 30 2000 3331235
#> 23056 30 2005 3848493
#> 23057 30 2010 4065936
#> 23058 30 2015 3070849
#> 23059 30 1950 497571
#> 23060 30 1955 577298
#> 23061 30 1960 640365
#> 23062 30 1965 690134
#> 23063 30 1970 776455
#> 23064 30 1975 889861
#> 23065 30 1980 1070719
#> 23066 30 1985 1160133
#> 23067 30 1990 1384090
#> 23068 30 1995 1445664
#> 23069 30 2000 1465562
#> 23070 30 2005 1434868
#> 23071 30 2010 1612275
#> 23072 30 2015 1516858
#> 23073 30 1950 47692
#> 23074 30 1955 53184
#> 23075 30 1960 58164
#> 23076 30 1965 68062
#> 23077 30 1970 66503
#> 23078 30 1975 75657
#> 23079 30 1980 86625
#> 23080 30 1985 92556
#> 23081 30 1990 111644
#> 23082 30 1995 156300
#> 23083 30 2000 197243
#> 23084 30 2005 220649
#> 23085 30 2010 261966
#> 23086 30 2015 306393
#> 23087 30 1950 11713652
#> 23088 30 1955 12820255
#> 23089 30 1960 14147284
#> 23090 30 1965 15657556
#> 23091 30 1970 17347724
#> 23092 30 1975 19560699
#> 23093 30 1980 22219491
#> 23094 30 1985 25620912
#> 23095 30 1990 29420804
#> 23096 30 1995 34020188
#> 23097 30 2000 39107711
#> 23098 30 2005 45966666
#> 23099 30 2010 54288138
#> 23100 30 2015 63916334
#> 23101 30 1950 353778
#> 23102 30 1955 404026
#> 23103 30 1960 458884
#> 23104 30 1965 523728
#> 23105 30 1970 600868
#> 23106 30 1975 695828
#> 23107 30 1980 833300
#> 23108 30 1985 1000491
#> 23109 30 1990 1193014
#> 23110 30 1995 1491209
#> 23111 30 2000 1709361
#> 23112 30 2005 1973395
#> 23113 30 2010 2164051
#> 23114 30 2015 2458495
#> 23115 30 1950 12004
#> 23116 30 1955 15997
#> 23117 30 1960 17001
#> 23118 30 1965 19116
#> 23119 30 1970 19292
#> 23120 30 1975 18346
#> 23121 30 1980 18808
#> 23122 30 1985 23459
#> 23123 30 1990 30354
#> 23124 30 1995 38716
#> 23125 30 2000 37924
#> 23126 30 2005 40399
#> 23127 30 2010 36849
#> 23128 30 2015 40481
#> 23129 30 1950 17871
#> 23130 30 1955 19280
#> 23131 30 1960 21193
#> 23132 30 1965 22461
#> 23133 30 1970 24004
#> 23134 30 1975 26559
#> 23135 30 1980 30691
#> 23136 30 1985 36633
#> 23137 30 1990 46156
#> 23138 30 1995 52539
#> 23139 30 2000 59896
#> 23140 30 2005 64364
#> 23141 30 2010 75629
#> 23142 30 2015 101721
#> 23143 30 1950 532110
#> 23144 30 1955 545528
#> 23145 30 1960 474290
#> 23146 30 1965 443094
#> 23147 30 1970 483273
#> 23148 30 1975 605406
#> 23149 30 1980 667693
#> 23150 30 1985 582387
#> 23151 30 1990 577674
#> 23152 30 1995 621618
#> 23153 30 2000 634953
#> 23154 30 2005 611797
#> 23155 30 2010 576919
#> 23156 30 2015 610344
#> 23157 30 1950 309000
#> 23158 30 1955 363400
#> 23159 30 1960 370400
#> 23160 30 1965 403824
#> 23161 30 1970 434482
#> 23162 30 1975 490160
#> 23163 30 1980 503696
#> 23164 30 1985 482372
#> 23165 30 1990 521153
#> 23166 30 1995 605525
#> 23167 30 2000 588423
#> 23168 30 2005 533308
#> 23169 30 2010 524150
#> 23170 30 2015 600163
#> 23171 30 1950 213591
#> 23172 30 1955 248082
#> 23173 30 1960 282322
#> 23174 30 1965 316000
#> 23175 30 1970 319013
#> 23176 30 1975 352619
#> 23177 30 1980 419343
#> 23178 30 1985 622482
#> 23179 30 1990 736406
#> 23180 30 1995 893784
#> 23181 30 2000 1075530
#> 23182 30 2005 1202086
#> 23183 30 2010 1615820
#> 23184 30 2015 1300250
#> 23185 30 1950 63589
#> 23186 30 1955 97800
#> 23187 30 1960 106276
#> 23188 30 1965 115215
#> 23189 30 1970 125365
#> 23190 30 1975 115143
#> 23191 30 1980 143907
#> 23192 30 1985 174557
#> 23193 30 1990 156629
#> 23194 30 1995 149708
#> 23195 30 2000 152699
#> 23196 30 2005 149790
#> 23197 30 2010 157040
#> 23198 30 2015 165112
#> 23199 30 1950 75397
#> 23200 30 1955 105101
#> 23201 30 1960 159753
#> 23202 30 1965 169731
#> 23203 30 1970 195121
#> 23204 30 1975 149750
#> 23205 30 1980 181694
#> 23206 30 1985 278945
#> 23207 30 1990 353679
#> 23208 30 1995 388650
#> 23209 30 2000 407072
#> 23210 30 2005 453222
#> 23211 30 2010 507032
#> 23212 30 2015 629883
#> 23213 30 1950 1264386
#> 23214 30 1955 1472276
#> 23215 30 1960 1821005
#> 23216 30 1965 2111486
#> 23217 30 1970 2410020
#> 23218 30 1975 2480429
#> 23219 30 1980 3008403
#> 23220 30 1985 3821488
#> 23221 30 1990 4588414
#> 23222 30 1995 4921581
#> 23223 30 2000 5666838
#> 23224 30 2005 5565443
#> 23225 30 2010 5437687
#> 23226 30 2015 4798800
#> 23227 30 1950 30200
#> 23228 30 1955 31099
#> 23229 30 1960 34579
#> 23230 30 1965 35891
#> 23231 30 1970 39742
#> 23232 30 1975 44141
#> 23233 30 1980 44072
#> 23234 30 1985 49851
#> 23235 30 1990 55140
#> 23236 30 1995 64219
#> 23237 30 2000 47524
#> 23238 30 2005 58416
#> 23239 30 2010 48984
#> 23240 30 2015 69212
#> 23241 30 1950 89040
#> 23242 30 1955 93301
#> 23243 30 1960 98800
#> 23244 30 1965 104924
#> 23245 30 1970 127726
#> 23246 30 1975 143340
#> 23247 30 1980 158271
#> 23248 30 1985 186391
#> 23249 30 1990 216108
#> 23250 30 1995 244102
#> 23251 30 2000 306268
#> 23252 30 2005 373890
#> 23253 30 2010 447079
#> 23254 30 2015 515742
#> 23255 30 1950 2750
#> 23256 30 1955 3585
#> 23257 30 1960 3704
#> 23258 30 1965 4384
#> 23259 30 1970 4802
#> 23260 30 1975 4687
#> 23261 30 1980 5162
#> 23262 30 1985 4986
#> 23263 30 1990 4849
#> 23264 30 1995 5320
#> 23265 30 2000 6489
#> 23266 30 2005 6515
#> 23267 30 2010 6879
#> 23268 30 2015 6501
#> 23269 30 1950 46108
#> 23270 30 1955 48825
#> 23271 30 1960 50628
#> 23272 30 1965 49665
#> 23273 30 1970 50282
#> 23274 30 1975 60297
#> 23275 30 1980 70573
#> 23276 30 1985 85318
#> 23277 30 1990 95682
#> 23278 30 1995 107745
#> 23279 30 2000 89887
#> 23280 30 2005 95010
#> 23281 30 2010 103985
#> 23282 30 2015 127417
#> 23283 30 1950 237700
#> 23284 30 1955 252752
#> 23285 30 1960 263045
#> 23286 30 1965 292404
#> 23287 30 1970 275424
#> 23288 30 1975 272852
#> 23289 30 1980 297993
#> 23290 30 1985 484521
#> 23291 30 1990 577760
#> 23292 30 1995 682427
#> 23293 30 2000 757174
#> 23294 30 2005 741023
#> 23295 30 2010 849507
#> 23296 30 2015 966074
#> 23297 30 1950 1124374
#> 23298 30 1955 1443878
#> 23299 30 1960 1861283
#> 23300 30 1965 2213183
#> 23301 30 1970 2167279
#> 23302 30 1975 2309307
#> 23303 30 1980 2620859
#> 23304 30 1985 3318896
#> 23305 30 1990 3805104
#> 23306 30 1995 4291804
#> 23307 30 2000 4797404
#> 23308 30 2005 5406435
#> 23309 30 2010 5908200
#> 23310 30 2015 6302730
#> 23311 30 1950 62249
#> 23312 30 1955 79127
#> 23313 30 1960 119877
#> 23314 30 1965 121853
#> 23315 30 1970 145701
#> 23316 30 1975 111367
#> 23317 30 1980 147631
#> 23318 30 1985 214786
#> 23319 30 1990 276947
#> 23320 30 1995 317805
#> 23321 30 2000 333898
#> 23322 30 2005 348260
#> 23323 30 2010 395679
#> 23324 30 2015 439950
#> 23325 30 1950 330635
#> 23326 30 1955 384239
#> 23327 30 1960 438242
#> 23328 30 1965 506190
#> 23329 30 1970 495330
#> 23330 30 1975 611256
#> 23331 30 1980 706626
#> 23332 30 1985 854124
#> 23333 30 1990 994059
#> 23334 30 1995 1145325
#> 23335 30 2000 1355240
#> 23336 30 2005 1647703
#> 23337 30 2010 2005602
#> 23338 30 2015 2412255
#> 23339 30 1950 2014258
#> 23340 30 1955 2850427
#> 23341 30 1960 3847252
#> 23342 30 1965 3066965
#> 23343 30 1970 4330395
#> 23344 30 1975 2779676
#> 23345 30 1980 3291598
#> 23346 30 1985 4103925
#> 23347 30 1990 3875250
#> 23348 30 1995 3707891
#> 23349 30 2000 3236401
#> 23350 30 2005 3306701
#> 23351 30 2010 3455492
#> 23352 30 2015 3643781
#> 23353 30 1950 4334
#> 23354 30 1955 4904
#> 23355 30 1960 5584
#> 23356 30 1965 11947
#> 23357 30 1970 22710
#> 23358 30 1975 62298
#> 23359 30 1980 140981
#> 23360 30 1985 188020
#> 23361 30 1990 238837
#> 23362 30 1995 312226
#> 23363 30 2000 407998
#> 23364 30 2005 731808
#> 23365 30 2010 1506602
#> 23366 30 2015 1550782
#> 23367 30 1950 3498101
#> 23368 30 1955 3813740
#> 23369 30 1960 3419629
#> 23370 30 1965 3273509
#> 23371 30 1970 3296106
#> 23372 30 1975 3512512
#> 23373 30 1980 4170955
#> 23374 30 1985 3710526
#> 23375 30 1990 4023120
#> 23376 30 1995 4665850
#> 23377 30 2000 4646731
#> 23378 30 2005 4169859
#> 23379 30 2010 4112082
#> 23380 30 2015 4407575
#> 23381 30 1950 471636
#> 23382 30 1955 539099
#> 23383 30 1960 618106
#> 23384 30 1965 710491
#> 23385 30 1970 819074
#> 23386 30 1975 955889
#> 23387 30 1980 1124508
#> 23388 30 1985 1270368
#> 23389 30 1990 1509477
#> 23390 30 1995 1795817
#> 23391 30 2000 2082972
#> 23392 30 2005 2452055
#> 23393 30 2010 2927812
#> 23394 30 2015 3403261
#> 23395 30 1950 1708
#> 23396 30 1955 1906
#> 23397 30 1960 1913
#> 23398 30 1965 3118
#> 23399 30 1970 5775
#> 23400 30 1975 7015
#> 23401 30 1980 8730
#> 23402 30 1985 7140
#> 23403 30 1990 7399
#> 23404 30 1995 7928
#> 23405 30 2000 7188
#> 23406 30 2005 6487
#> 23407 30 2010 6132
#> 23408 30 2015 5267
#> 23409 30 1950 12143468
#> 23410 30 1955 12883976
#> 23411 30 1960 12395229
#> 23412 30 1965 11534351
#> 23413 30 1970 11998546
#> 23414 30 1975 14403532
#> 23415 30 1980 17788629
#> 23416 30 1985 20351495
#> 23417 30 1990 22202258
#> 23418 30 1995 22262520
#> 23419 30 2000 20648419
#> 23420 30 2005 19694679
#> 23421 30 2010 19839692
#> 23422 30 2015 21256693
#> 23423 30 1950 65311401
#> 23424 30 1955 70232550
#> 23425 30 1960 81115040
#> 23426 30 1965 85291119
#> 23427 30 1970 92264731
#> 23428 30 1975 89693165
#> 23429 30 1980 113329858
#> 23430 30 1985 149639225
#> 23431 30 1990 153327546
#> 23432 30 1995 179377741
#> 23433 30 2000 204174227
#> 23434 30 2005 203077343
#> 23435 30 2010 186615715
#> 23436 30 2015 199973643
#> 23437 30 1950 154207
#> 23438 30 1955 176532
#> 23439 30 1960 196410
#> 23440 30 1965 199527
#> 23441 30 1970 193260
#> 23442 30 1975 179501
#> 23443 30 1980 185623
#> 23444 30 1985 195545
#> 23445 30 1990 213707
#> 23446 30 1995 222067
#> 23447 30 2000 219772
#> 23448 30 2005 234238
#> 23449 30 2010 242303
#> 23450 30 2015 224634
#> 23451 30 1950 280086
#> 23452 30 1955 437411
#> 23453 30 1960 679194
#> 23454 30 1965 661845
#> 23455 30 1970 789824
#> 23456 30 1975 609237
#> 23457 30 1980 697647
#> 23458 30 1985 1176518
#> 23459 30 1990 1508507
#> 23460 30 1995 1749938
#> 23461 30 2000 1714000
#> 23462 30 2005 1921483
#> 23463 30 2010 2162692
#> 23464 30 2015 2579446
#> 23465 30 1950 2861
#> 23466 30 1955 3314
#> 23467 30 1960 3857
#> 23468 30 1965 4501
#> 23469 30 1970 5383
#> 23470 30 1975 6175
#> 23471 30 1980 7021
#> 23472 30 1985 8119
#> 23473 30 1990 9619
#> 23474 30 1995 11539
#> 23475 30 2000 12544
#> 23476 30 2005 13639
#> 23477 30 2010 16105
#> 23478 30 2015 19885
#> 23479 30 1950 343605
#> 23480 30 1955 432413
#> 23481 30 1960 507174
#> 23482 30 1965 584999
#> 23483 30 1970 678300
#> 23484 30 1975 800007
#> 23485 30 1980 962890
#> 23486 30 1985 1160756
#> 23487 30 1990 1442072
#> 23488 30 1995 1798397
#> 23489 30 2000 1920518
#> 23490 30 2005 1951871
#> 23491 30 2010 2182277
#> 23492 30 2015 2389824
#> 23493 30 1950 1782884
#> 23494 30 1955 2013426
#> 23495 30 1960 2127368
#> 23496 30 1965 2438250
#> 23497 30 1970 2261556
#> 23498 30 1975 2260691
#> 23499 30 1980 2589099
#> 23500 30 1985 3927534
#> 23501 30 1990 5079545
#> 23502 30 1995 5822954
#> 23503 30 2000 6300333
#> 23504 30 2005 6876902
#> 23505 30 2010 7243462
#> 23506 30 2015 7947439
#> 23507 30 1950 169079506
#> 23508 30 1955 189813963
#> 23509 30 1960 209725075
#> 23510 30 1965 220658646
#> 23511 30 1970 238097811
#> 23512 30 1975 243697459
#> 23513 30 1980 290245296
#> 23514 30 1985 354312814
#> 23515 30 1990 384801847
#> 23516 30 1995 435192551
#> 23517 30 2000 477869301
#> 23518 30 2005 498509214
#> 23519 30 2010 507031509
#> 23520 30 2015 553199668
#> 23521 30 1950 4677082
#> 23522 30 1955 5066282
#> 23523 30 1960 5488982
#> 23524 30 1965 6015418
#> 23525 30 1970 6708896
#> 23526 30 1975 7561903
#> 23527 30 1980 8391563
#> 23528 30 1985 9307830
#> 23529 30 1990 10652587
#> 23530 30 1995 12332847
#> 23531 30 2000 14188382
#> 23532 30 2005 16739774
#> 23533 30 2010 19787755
#> 23534 30 2015 22808701
#> 23535 30 1950 2887424
#> 23536 30 1955 3524791
#> 23537 30 1960 4481086
#> 23538 30 1965 5078009
#> 23539 30 1970 5410219
#> 23540 30 1975 5596396
#> 23541 30 1980 6690366
#> 23542 30 1985 8959188
#> 23543 30 1990 10340961
#> 23544 30 1995 12156020
#> 23545 30 2000 13590574
#> 23546 30 2005 15909873
#> 23547 30 2010 19571166
#> 23548 30 2015 21863253
#> 23549 30 1950 7162275
#> 23550 30 1955 10623363
#> 23551 30 1960 10404731
#> 23552 30 1965 10689674
#> 23553 30 1970 11746400
#> 23554 30 1975 11142210
#> 23555 30 1980 12262433
#> 23556 30 1985 12603975
#> 23557 30 1990 13651298
#> 23558 30 1995 15040639
#> 23559 30 2000 14477100
#> 23560 30 2005 12398308
#> 23561 30 2010 11419794
#> 23562 30 2015 12098803
#> 23563 30 1950 892
#> 23564 30 1955 1395
#> 23565 30 1960 2450
#> 23566 30 1965 4236
#> 23567 30 1970 6258
#> 23568 30 1975 4528
#> 23569 30 1980 11335
#> 23570 30 1985 15433
#> 23571 30 1990 19462
#> 23572 30 1995 21354
#> 23573 30 2000 27501
#> 23574 30 2005 41179
#> 23575 30 2010 46168
#> 23576 30 2015 50069
#> 23577 30 1950 272952
#> 23578 30 1955 296532
#> 23579 30 1960 320284
#> 23580 30 1965 346273
#> 23581 30 1970 366242
#> 23582 30 1975 382941
#> 23583 30 1980 466801
#> 23584 30 1985 501277
#> 23585 30 1990 603423
#> 23586 30 1995 809233
#> 23587 30 2000 900054
#> 23588 30 2005 1068544
#> 23589 30 2010 1494847
#> 23590 30 2015 1902807
#> 23591 30 1950 145178
#> 23592 30 1955 164932
#> 23593 30 1960 186736
#> 23594 30 1965 213717
#> 23595 30 1970 244879
#> 23596 30 1975 286108
#> 23597 30 1980 333711
#> 23598 30 1985 393154
#> 23599 30 1990 462180
#> 23600 30 1995 537693
#> 23601 30 2000 635730
#> 23602 30 2005 761889
#> 23603 30 2010 900266
#> 23604 30 2015 1051762
#> 23605 30 1950 188214
#> 23606 30 1955 192958
#> 23607 30 1960 227035
#> 23608 30 1965 249830
#> 23609 30 1970 279465
#> 23610 30 1975 327001
#> 23611 30 1980 324935
#> 23612 30 1985 496298
#> 23613 30 1990 621156
#> 23614 30 1995 703864
#> 23615 30 2000 746200
#> 23616 30 2005 827119
#> 23617 30 2010 1011289
#> 23618 30 2015 1239416
#> 23619 35 1950 12610627
#> 23620 35 1955 13998461
#> 23621 35 1960 15557683
#> 23622 35 1965 17471331
#> 23623 35 1970 19319563
#> 23624 35 1975 21104227
#> 23625 35 1980 23478965
#> 23626 35 1985 27094944
#> 23627 35 1990 31949216
#> 23628 35 1995 37382606
#> 23629 35 2000 42677767
#> 23630 35 2005 48489214
#> 23631 35 2010 56680230
#> 23632 35 2015 67494788
#> 23633 35 1950 88383583
#> 23634 35 1955 93269571
#> 23635 35 1960 98781263
#> 23636 35 1965 110221208
#> 23637 35 1970 122961749
#> 23638 35 1975 132984963
#> 23639 35 1980 139513371
#> 23640 35 1985 165932127
#> 23641 35 1990 212337069
#> 23642 35 1995 228022156
#> 23643 35 2000 267204085
#> 23644 35 2005 304945815
#> 23645 35 2010 316526111
#> 23646 35 2015 310088758
#> 23647 35 1950 434118
#> 23648 35 1955 461381
#> 23649 35 1960 499313
#> 23650 35 1965 548260
#> 23651 35 1970 593893
#> 23652 35 1975 655977
#> 23653 35 1980 673882
#> 23654 35 1985 616978
#> 23655 35 1990 611601
#> 23656 35 1995 811737
#> 23657 35 2000 926878
#> 23658 35 2005 1155968
#> 23659 35 2010 1370396
#> 23660 35 2015 1723653
#> 23661 35 1950 70286
#> 23662 35 1955 75518
#> 23663 35 1960 81396
#> 23664 35 1965 102703
#> 23665 35 1970 115830
#> 23666 35 1975 139823
#> 23667 35 1980 149865
#> 23668 35 1985 164541
#> 23669 35 1990 205908
#> 23670 35 1995 210893
#> 23671 35 2000 232225
#> 23672 35 2005 202996
#> 23673 35 2010 178422
#> 23674 35 2015 189896
#> 23675 35 1950 474653
#> 23676 35 1955 504163
#> 23677 35 1960 510202
#> 23678 35 1965 618937
#> 23679 35 1970 723831
#> 23680 35 1975 745350
#> 23681 35 1980 767826
#> 23682 35 1985 936280
#> 23683 35 1990 1380581
#> 23684 35 1995 1624393
#> 23685 35 2000 1944134
#> 23686 35 2005 2211838
#> 23687 35 2010 2513835
#> 23688 35 2015 3059980
#> 23689 35 1950 268331
#> 23690 35 1955 293545
#> 23691 35 1960 313376
#> 23692 35 1965 332671
#> 23693 35 1970 344372
#> 23694 35 1975 365619
#> 23695 35 1980 389212
#> 23696 35 1985 437317
#> 23697 35 1990 616794
#> 23698 35 1995 690443
#> 23699 35 2000 786595
#> 23700 35 2005 920912
#> 23701 35 2010 1127863
#> 23702 35 2015 1390399
#> 23703 35 1950 2974
#> 23704 35 1955 2925
#> 23705 35 1960 2420
#> 23706 35 1965 3083
#> 23707 35 1970 2598
#> 23708 35 1975 3553
#> 23709 35 1980 4477
#> 23710 35 1985 4263
#> 23711 35 1990 4256
#> 23712 35 1995 5402
#> 23713 35 2000 7549
#> 23714 35 2005 8952
#> 23715 35 2010 7596
#> 23716 35 2015 6071
#> 23717 35 1950 1240852
#> 23718 35 1955 1316457
#> 23719 35 1960 1464178
#> 23720 35 1965 1582634
#> 23721 35 1970 1587812
#> 23722 35 1975 1621103
#> 23723 35 1980 1725271
#> 23724 35 1985 1925132
#> 23725 35 1990 2104362
#> 23726 35 1995 2223961
#> 23727 35 2000 2309031
#> 23728 35 2005 2422505
#> 23729 35 2010 2718364
#> 23730 35 2015 3222069
#> 23731 35 1950 75129
#> 23732 35 1955 49037
#> 23733 35 1960 84038
#> 23734 35 1965 167144
#> 23735 35 1970 168209
#> 23736 35 1975 212881
#> 23737 35 1980 120013
#> 23738 35 1985 175337
#> 23739 35 1990 251193
#> 23740 35 1995 283166
#> 23741 35 2000 249040
#> 23742 35 2005 180822
#> 23743 35 2010 168789
#> 23744 35 2015 193938
#> 23745 35 1950 2592
#> 23746 35 1955 2555
#> 23747 35 1960 2805
#> 23748 35 1965 2898
#> 23749 35 1970 3459
#> 23750 35 1975 3858
#> 23751 35 1980 4107
#> 23752 35 1985 4892
#> 23753 35 1990 5600
#> 23754 35 1995 7809
#> 23755 35 2000 9064
#> 23756 35 2005 8586
#> 23757 35 2010 7419
#> 23758 35 2015 6658
#> 23759 35 1950 620474
#> 23760 35 1955 647873
#> 23761 35 1960 756911
#> 23762 35 1965 765889
#> 23763 35 1970 733519
#> 23764 35 1975 815165
#> 23765 35 1980 937061
#> 23766 35 1985 1225855
#> 23767 35 1990 1315769
#> 23768 35 1995 1428570
#> 23769 35 2000 1527953
#> 23770 35 2005 1456957
#> 23771 35 2010 1619143
#> 23772 35 2015 1574157
#> 23773 35 1950 757475
#> 23774 35 1955 787921
#> 23775 35 1960 910930
#> 23776 35 1965 927934
#> 23777 35 1970 881704
#> 23778 35 1975 982514
#> 23779 35 1980 1128172
#> 23780 35 1985 1460054
#> 23781 35 1990 1559230
#> 23782 35 1995 1713580
#> 23783 35 2000 1835796
#> 23784 35 2005 1765942
#> 23785 35 2010 1921150
#> 23786 35 2015 1847696
#> 23787 35 1950 497358
#> 23788 35 1955 337868
#> 23789 35 1960 491928
#> 23790 35 1965 460048
#> 23791 35 1970 429450
#> 23792 35 1975 493917
#> 23793 35 1980 563310
#> 23794 35 1985 518420
#> 23795 35 1990 503898
#> 23796 35 1995 622453
#> 23797 35 2000 715183
#> 23798 35 2005 705616
#> 23799 35 2010 593944
#> 23800 35 2015 547163
#> 23801 35 1950 155163
#> 23802 35 1955 119975
#> 23803 35 1960 183448
#> 23804 35 1965 315621
#> 23805 35 1970 339175
#> 23806 35 1975 384894
#> 23807 35 1980 230212
#> 23808 35 1985 277133
#> 23809 35 1990 445067
#> 23810 35 1995 599698
#> 23811 35 2000 710746
#> 23812 35 2005 655826
#> 23813 35 2010 630552
#> 23814 35 2015 668864
#> 23815 35 1950 5015
#> 23816 35 1955 5302
#> 23817 35 1960 6218
#> 23818 35 1965 7760
#> 23819 35 1970 9667
#> 23820 35 1975 10848
#> 23821 35 1980 11372
#> 23822 35 1985 13647
#> 23823 35 1990 16525
#> 23824 35 1995 20448
#> 23825 35 2000 25070
#> 23826 35 2005 26779
#> 23827 35 2010 28486
#> 23828 35 2015 26780
#> 23829 35 1950 6421
#> 23830 35 1955 7639
#> 23831 35 1960 10438
#> 23832 35 1965 10781
#> 23833 35 1970 12362
#> 23834 35 1975 14527
#> 23835 35 1980 20910
#> 23836 35 1985 38567
#> 23837 35 1990 47550
#> 23838 35 1995 56741
#> 23839 35 2000 65528
#> 23840 35 2005 90142
#> 23841 35 2010 129824
#> 23842 35 2015 147091
#> 23843 35 1950 2110170
#> 23844 35 1955 2386001
#> 23845 35 1960 2718324
#> 23846 35 1965 3072619
#> 23847 35 1970 3511428
#> 23848 35 1975 3969031
#> 23849 35 1980 4406362
#> 23850 35 1985 4516334
#> 23851 35 1990 4394357
#> 23852 35 1995 6172809
#> 23853 35 2000 8344915
#> 23854 35 2005 9712307
#> 23855 35 2010 10222801
#> 23856 35 2015 11874133
#> 23857 35 1950 14999
#> 23858 35 1955 14400
#> 23859 35 1960 11800
#> 23860 35 1965 11773
#> 23861 35 1970 10263
#> 23862 35 1975 10778
#> 23863 35 1980 11242
#> 23864 35 1985 15756
#> 23865 35 1990 19495
#> 23866 35 1995 22779
#> 23867 35 2000 22913
#> 23868 35 2005 20799
#> 23869 35 2010 20748
#> 23870 35 2015 18833
#> 23871 35 1950 533024
#> 23872 35 1955 346463
#> 23873 35 1960 520412
#> 23874 35 1965 698034
#> 23875 35 1970 693642
#> 23876 35 1975 730454
#> 23877 35 1980 485803
#> 23878 35 1985 628818
#> 23879 35 1990 745525
#> 23880 35 1995 847320
#> 23881 35 2000 799537
#> 23882 35 2005 665322
#> 23883 35 2010 662669
#> 23884 35 2015 677661
#> 23885 35 1950 626472
#> 23886 35 1955 470978
#> 23887 35 1960 692703
#> 23888 35 1965 653805
#> 23889 35 1970 629778
#> 23890 35 1975 592438
#> 23891 35 1980 570295
#> 23892 35 1985 722083
#> 23893 35 1990 732949
#> 23894 35 1995 785818
#> 23895 35 2000 818130
#> 23896 35 2005 773177
#> 23897 35 2010 741190
#> 23898 35 2015 740680
#> 23899 35 1950 4339
#> 23900 35 1955 3900
#> 23901 35 1960 4561
#> 23902 35 1965 5235
#> 23903 35 1970 5246
#> 23904 35 1975 4748
#> 23905 35 1980 5074
#> 23906 35 1985 6286
#> 23907 35 1990 8646
#> 23908 35 1995 11200
#> 23909 35 2000 14439
#> 23910 35 2005 19484
#> 23911 35 2010 21026
#> 23912 35 2015 23154
#> 23913 35 1950 130398
#> 23914 35 1955 129535
#> 23915 35 1960 129726
#> 23916 35 1965 132567
#> 23917 35 1970 143044
#> 23918 35 1975 162075
#> 23919 35 1980 192261
#> 23920 35 1985 202003
#> 23921 35 1990 234346
#> 23922 35 1995 285553
#> 23923 35 2000 343075
#> 23924 35 2005 409960
#> 23925 35 2010 474173
#> 23926 35 2015 553702
#> 23927 35 1950 9471
#> 23928 35 1955 10933
#> 23929 35 1960 12749
#> 23930 35 1965 14830
#> 23931 35 1970 17576
#> 23932 35 1975 20610
#> 23933 35 1980 24082
#> 23934 35 1985 27011
#> 23935 35 1990 26894
#> 23936 35 1995 26260
#> 23937 35 2000 29296
#> 23938 35 2005 41492
#> 23939 35 2010 47093
#> 23940 35 2015 60503
#> 23941 35 1950 167343
#> 23942 35 1955 170425
#> 23943 35 1960 189383
#> 23944 35 1965 217515
#> 23945 35 1970 227865
#> 23946 35 1975 245771
#> 23947 35 1980 293731
#> 23948 35 1985 313841
#> 23949 35 1990 379160
#> 23950 35 1995 411420
#> 23951 35 2000 456792
#> 23952 35 2005 518124
#> 23953 35 2010 597254
#> 23954 35 2015 696928
#> 23955 35 1950 139501
#> 23956 35 1955 111524
#> 23957 35 1960 170728
#> 23958 35 1965 246172
#> 23959 35 1970 282330
#> 23960 35 1975 291354
#> 23961 35 1980 208565
#> 23962 35 1985 296535
#> 23963 35 1990 344303
#> 23964 35 1995 303109
#> 23965 35 2000 309157
#> 23966 35 2005 268019
#> 23967 35 2010 266447
#> 23968 35 2015 244906
#> 23969 35 1950 18346
#> 23970 35 1955 23130
#> 23971 35 1960 27815
#> 23972 35 1965 26723
#> 23973 35 1970 32337
#> 23974 35 1975 38653
#> 23975 35 1980 45490
#> 23976 35 1985 52806
#> 23977 35 1990 77160
#> 23978 35 1995 90563
#> 23979 35 2000 98633
#> 23980 35 2005 107731
#> 23981 35 2010 128958
#> 23982 35 2015 165478
#> 23983 35 1950 3070913
#> 23984 35 1955 3351572
#> 23985 35 1960 3911174
#> 23986 35 1965 4675338
#> 23987 35 1970 5005245
#> 23988 35 1975 5954825
#> 23989 35 1980 6464183
#> 23990 35 1985 7941461
#> 23991 35 1990 9643124
#> 23992 35 1995 11141099
#> 23993 35 2000 12871147
#> 23994 35 2005 13629508
#> 23995 35 2010 14366977
#> 23996 35 2015 16068733
#> 23997 35 1950 2907
#> 23998 35 1955 3801
#> 23999 35 1960 4899
#> 24000 35 1965 6099
#> 24001 35 1970 7901
#> 24002 35 1975 9501
#> 24003 35 1980 9521
#> 24004 35 1985 14402
#> 24005 35 1990 21374
#> 24006 35 1995 25410
#> 24007 35 2000 28587
#> 24008 35 2005 31129
#> 24009 35 2010 33214
#> 24010 35 2015 36326
#> 24011 35 1950 536002
#> 24012 35 1955 404146
#> 24013 35 1960 650054
#> 24014 35 1965 658380
#> 24015 35 1970 649488
#> 24016 35 1975 568661
#> 24017 35 1980 562547
#> 24018 35 1985 665995
#> 24019 35 1990 631895
#> 24020 35 1995 576058
#> 24021 35 2000 538503
#> 24022 35 2005 517116
#> 24023 35 2010 545725
#> 24024 35 2015 541233
#> 24025 35 1950 258900
#> 24026 35 1955 268904
#> 24027 35 1960 275209
#> 24028 35 1965 274286
#> 24029 35 1970 279195
#> 24030 35 1975 298797
#> 24031 35 1980 322821
#> 24032 35 1985 343499
#> 24033 35 1990 383825
#> 24034 35 1995 454221
#> 24035 35 2000 535866
#> 24036 35 2005 641433
#> 24037 35 2010 755696
#> 24038 35 2015 926908
#> 24039 35 1950 133199
#> 24040 35 1955 142438
#> 24041 35 1960 152902
#> 24042 35 1965 163316
#> 24043 35 1970 175389
#> 24044 35 1975 172359
#> 24045 35 1980 181963
#> 24046 35 1985 205392
#> 24047 35 1990 287136
#> 24048 35 1995 314251
#> 24049 35 2000 294526
#> 24050 35 2005 326339
#> 24051 35 2010 367998
#> 24052 35 2015 477742
#> 24053 35 1950 11418
#> 24054 35 1955 9690
#> 24055 35 1960 7863
#> 24056 35 1965 12668
#> 24057 35 1970 13831
#> 24058 35 1975 12239
#> 24059 35 1980 6679
#> 24060 35 1985 7411
#> 24061 35 1990 14413
#> 24062 35 1995 17083
#> 24063 35 2000 25792
#> 24064 35 2005 26342
#> 24065 35 2010 27268
#> 24066 35 2015 32102
#> 24067 35 1950 245923
#> 24068 35 1955 272006
#> 24069 35 1960 300134
#> 24070 35 1965 329925
#> 24071 35 1970 348725
#> 24072 35 1975 369860
#> 24073 35 1980 341600
#> 24074 35 1985 380561
#> 24075 35 1990 502217
#> 24076 35 1995 570303
#> 24077 35 2000 712269
#> 24078 35 2005 815635
#> 24079 35 2010 854435
#> 24080 35 2015 647899
#> 24081 35 1950 252374
#> 24082 35 1955 274694
#> 24083 35 1960 299696
#> 24084 35 1965 328282
#> 24085 35 1970 360724
#> 24086 35 1975 397525
#> 24087 35 1980 432545
#> 24088 35 1985 482041
#> 24089 35 1990 549238
#> 24090 35 1995 617957
#> 24091 35 2000 719008
#> 24092 35 2005 843376
#> 24093 35 2010 1008582
#> 24094 35 2015 1223079
#> 24095 35 1950 965999
#> 24096 35 1955 1097184
#> 24097 35 1960 1247884
#> 24098 35 1965 1283575
#> 24099 35 1970 1272582
#> 24100 35 1975 1322309
#> 24101 35 1980 1603327
#> 24102 35 1985 2017571
#> 24103 35 1990 2283626
#> 24104 35 1995 2574011
#> 24105 35 2000 2680003
#> 24106 35 2005 2357464
#> 24107 35 2010 2295522
#> 24108 35 2015 2387787
#> 24109 35 1950 1057496
#> 24110 35 1955 1101532
#> 24111 35 1960 1151187
#> 24112 35 1965 1235040
#> 24113 35 1970 1318687
#> 24114 35 1975 1459868
#> 24115 35 1980 1598629
#> 24116 35 1985 1735457
#> 24117 35 1990 2082149
#> 24118 35 1995 2309606
#> 24119 35 2000 2849929
#> 24120 35 2005 2933413
#> 24121 35 2010 2917271
#> 24122 35 2015 2751875
#> 24123 35 1950 79884
#> 24124 35 1955 82172
#> 24125 35 1960 89087
#> 24126 35 1965 97380
#> 24127 35 1970 105266
#> 24128 35 1975 111106
#> 24129 35 1980 119897
#> 24130 35 1985 131788
#> 24131 35 1990 146682
#> 24132 35 1995 173629
#> 24133 35 2000 194488
#> 24134 35 2005 211218
#> 24135 35 2010 228557
#> 24136 35 2015 224433
#> 24137 35 1950 2023233
#> 24138 35 1955 2130359
#> 24139 35 1960 2659449
#> 24140 35 1965 3040088
#> 24141 35 1970 3366131
#> 24142 35 1975 3618208
#> 24143 35 1980 4227404
#> 24144 35 1985 4811728
#> 24145 35 1990 6240968
#> 24146 35 1995 7210237
#> 24147 35 2000 8183866
#> 24148 35 2005 9500518
#> 24149 35 2010 11721430
#> 24150 35 2015 12451973
#> 24151 35 1950 1032634
#> 24152 35 1955 842724
#> 24153 35 1960 1223409
#> 24154 35 1965 1987642
#> 24155 35 1970 1866537
#> 24156 35 1975 2402303
#> 24157 35 1980 1629886
#> 24158 35 1985 2087100
#> 24159 35 1990 3055660
#> 24160 35 1995 3620601
#> 24161 35 2000 3881831
#> 24162 35 2005 3848034
#> 24163 35 2010 4174193
#> 24164 35 2015 4587289
#> 24165 35 1950 148833
#> 24166 35 1955 160070
#> 24167 35 1960 171386
#> 24168 35 1965 181416
#> 24169 35 1970 193090
#> 24170 35 1975 208527
#> 24171 35 1980 218180
#> 24172 35 1985 232971
#> 24173 35 1990 294069
#> 24174 35 1995 326806
#> 24175 35 2000 367064
#> 24176 35 2005 427706
#> 24177 35 2010 524101
#> 24178 35 2015 642599
#> 24179 35 1950 7858
#> 24180 35 1955 7660
#> 24181 35 1960 7441
#> 24182 35 1965 7418
#> 24183 35 1970 7418
#> 24184 35 1975 8037
#> 24185 35 1980 8149
#> 24186 35 1985 10621
#> 24187 35 1990 10461
#> 24188 35 1995 11358
#> 24189 35 2000 13036
#> 24190 35 2005 12239
#> 24191 35 2010 11840
#> 24192 35 2015 11542
#> 24193 35 1950 375257
#> 24194 35 1955 399419
#> 24195 35 1960 428095
#> 24196 35 1965 484322
#> 24197 35 1970 521789
#> 24198 35 1975 558269
#> 24199 35 1980 670106
#> 24200 35 1985 754787
#> 24201 35 1990 941848
#> 24202 35 1995 1062256
#> 24203 35 2000 1174592
#> 24204 35 2005 1259455
#> 24205 35 2010 1237334
#> 24206 35 2015 1234330
#> 24207 35 1950 37135722
#> 24208 35 1955 39405451
#> 24209 35 1960 38518378
#> 24210 35 1965 41354096
#> 24211 35 1970 46331101
#> 24212 35 1975 48670494
#> 24213 35 1980 50599655
#> 24214 35 1985 64429033
#> 24215 35 1990 89127969
#> 24216 35 1995 85286600
#> 24217 35 2000 106010834
#> 24218 35 2005 126749343
#> 24219 35 2010 119589716
#> 24220 35 2015 96077714
#> 24221 35 1950 155901
#> 24222 35 1955 195000
#> 24223 35 1960 230989
#> 24224 35 1965 258271
#> 24225 35 1970 247779
#> 24226 35 1975 207405
#> 24227 35 1980 217409
#> 24228 35 1985 387631
#> 24229 35 1990 489235
#> 24230 35 1995 640332
#> 24231 35 2000 691317
#> 24232 35 2005 590780
#> 24233 35 2010 564093
#> 24234 35 2015 562292
#> 24235 35 1950 16827
#> 24236 35 1955 14054
#> 24237 35 1960 10822
#> 24238 35 1965 11930
#> 24239 35 1970 13037
#> 24240 35 1975 10632
#> 24241 35 1980 10917
#> 24242 35 1985 20563
#> 24243 35 1990 32840
#> 24244 35 1995 44199
#> 24245 35 2000 46823
#> 24246 35 2005 40137
#> 24247 35 2010 45109
#> 24248 35 2015 42537
#> 24249 35 1950 462970
#> 24250 35 1955 528355
#> 24251 35 1960 586037
#> 24252 35 1965 731258
#> 24253 35 1970 811907
#> 24254 35 1975 933050
#> 24255 35 1980 900359
#> 24256 35 1985 1088344
#> 24257 35 1990 1652032
#> 24258 35 1995 1830500
#> 24259 35 2000 1919209
#> 24260 35 2005 1863789
#> 24261 35 2010 1768650
#> 24262 35 2015 2008650
#> 24263 35 1950 684321
#> 24264 35 1955 727476
#> 24265 35 1960 833758
#> 24266 35 1965 899864
#> 24267 35 1970 992202
#> 24268 35 1975 1111641
#> 24269 35 1980 1317062
#> 24270 35 1985 1722432
#> 24271 35 1990 2172135
#> 24272 35 1995 2539253
#> 24273 35 2000 2989204
#> 24274 35 2005 3309754
#> 24275 35 2010 3205814
#> 24276 35 2015 3553127
#> 24277 35 1950 10105
#> 24278 35 1955 10887
#> 24279 35 1960 11133
#> 24280 35 1965 11444
#> 24281 35 1970 12108
#> 24282 35 1975 13031
#> 24283 35 1980 14541
#> 24284 35 1985 15445
#> 24285 35 1990 20088
#> 24286 35 1995 24653
#> 24287 35 2000 28563
#> 24288 35 2005 32372
#> 24289 35 2010 37183
#> 24290 35 2015 44118
#> 24291 35 1950 48048
#> 24292 35 1955 52830
#> 24293 35 1960 58339
#> 24294 35 1965 64535
#> 24295 35 1970 71689
#> 24296 35 1975 80670
#> 24297 35 1980 89840
#> 24298 35 1985 101889
#> 24299 35 1990 119406
#> 24300 35 1995 142100
#> 24301 35 2000 172935
#> 24302 35 2005 209350
#> 24303 35 2010 265757
#> 24304 35 2015 305289
#> 24305 35 1950 53265
#> 24306 35 1955 57987
#> 24307 35 1960 68997
#> 24308 35 1965 83026
#> 24309 35 1970 94969
#> 24310 35 1975 111234
#> 24311 35 1980 133609
#> 24312 35 1985 170810
#> 24313 35 1990 190108
#> 24314 35 1995 249088
#> 24315 35 2000 301937
#> 24316 35 2005 313750
#> 24317 35 2010 305539
#> 24318 35 2015 346358
#> 24319 35 1950 144340
#> 24320 35 1955 168733
#> 24321 35 1960 200705
#> 24322 35 1965 248766
#> 24323 35 1970 304452
#> 24324 35 1975 381520
#> 24325 35 1980 460996
#> 24326 35 1985 539284
#> 24327 35 1990 656013
#> 24328 35 1995 773967
#> 24329 35 2000 872346
#> 24330 35 2005 933793
#> 24331 35 2010 1049598
#> 24332 35 2015 1232789
#> 24333 35 1950 252498
#> 24334 35 1955 194221
#> 24335 35 1960 296783
#> 24336 35 1965 343572
#> 24337 35 1970 358335
#> 24338 35 1975 327399
#> 24339 35 1980 258761
#> 24340 35 1985 344035
#> 24341 35 1990 383162
#> 24342 35 1995 356296
#> 24343 35 2000 326914
#> 24344 35 2005 290111
#> 24345 35 2010 295148
#> 24346 35 2015 291302
#> 24347 35 1950 391018
#> 24348 35 1955 400627
#> 24349 35 1960 423461
#> 24350 35 1965 452291
#> 24351 35 1970 483345
#> 24352 35 1975 548194
#> 24353 35 1980 584460
#> 24354 35 1985 603388
#> 24355 35 1990 724915
#> 24356 35 1995 735216
#> 24357 35 2000 1076761
#> 24358 35 2005 1083665
#> 24359 35 2010 1007121
#> 24360 35 2015 688073
#> 24361 35 1950 6098
#> 24362 35 1955 7140
#> 24363 35 1960 7179
#> 24364 35 1965 7435
#> 24365 35 1970 7415
#> 24366 35 1975 7857
#> 24367 35 1980 8929
#> 24368 35 1985 10057
#> 24369 35 1990 11018
#> 24370 35 1995 12879
#> 24371 35 2000 11402
#> 24372 35 2005 9952
#> 24373 35 2010 9792
#> 24374 35 2015 8992
#> 24375 35 1950 30710
#> 24376 35 1955 32019
#> 24377 35 1960 30766
#> 24378 35 1965 32701
#> 24379 35 1970 34561
#> 24380 35 1975 40763
#> 24381 35 1980 46881
#> 24382 35 1985 49254
#> 24383 35 1990 54538
#> 24384 35 1995 64029
#> 24385 35 2000 69168
#> 24386 35 2005 71857
#> 24387 35 2010 81201
#> 24388 35 2015 86045
#> 24389 35 1950 715439
#> 24390 35 1955 403755
#> 24391 35 1960 758751
#> 24392 35 1965 673108
#> 24393 35 1970 599867
#> 24394 35 1975 534941
#> 24395 35 1980 705767
#> 24396 35 1985 849563
#> 24397 35 1990 820218
#> 24398 35 1995 700562
#> 24399 35 2000 673935
#> 24400 35 2005 688687
#> 24401 35 2010 870779
#> 24402 35 2015 926820
#> 24403 35 1950 525549
#> 24404 35 1955 503280
#> 24405 35 1960 566980
#> 24406 35 1965 665911
#> 24407 35 1970 862032
#> 24408 35 1975 1198457
#> 24409 35 1980 1302082
#> 24410 35 1985 1249911
#> 24411 35 1990 903195
#> 24412 35 1995 1755262
#> 24413 35 2000 1623964
#> 24414 35 2005 2253019
#> 24415 35 2010 2218894
#> 24416 35 2015 1575694
#> 24417 35 1950 633443
#> 24418 35 1955 712634
#> 24419 35 1960 806772
#> 24420 35 1965 923987
#> 24421 35 1970 1062383
#> 24422 35 1975 1215319
#> 24423 35 1980 1397324
#> 24424 35 1985 1556609
#> 24425 35 1990 1712478
#> 24426 35 1995 2052928
#> 24427 35 2000 2337110
#> 24428 35 2005 2717139
#> 24429 35 2010 3169211
#> 24430 35 2015 3724330
#> 24431 35 1950 316514
#> 24432 35 1955 304047
#> 24433 35 1960 311534
#> 24434 35 1965 286232
#> 24435 35 1970 279223
#> 24436 35 1975 301340
#> 24437 35 1980 372747
#> 24438 35 1985 410128
#> 24439 35 1990 370143
#> 24440 35 1995 374595
#> 24441 35 2000 408505
#> 24442 35 2005 402073
#> 24443 35 2010 388435
#> 24444 35 2015 358023
#> 24445 35 1950 3112
#> 24446 35 1955 3640
#> 24447 35 1960 4452
#> 24448 35 1965 6069
#> 24449 35 1970 8305
#> 24450 35 1975 11473
#> 24451 35 1980 17556
#> 24452 35 1985 21610
#> 24453 35 1990 27305
#> 24454 35 1995 33136
#> 24455 35 2000 42355
#> 24456 35 2005 46302
#> 24457 35 2010 52039
#> 24458 35 2015 64128
#> 24459 35 1950 114197
#> 24460 35 1955 135975
#> 24461 35 1960 164070
#> 24462 35 1965 194986
#> 24463 35 1970 226756
#> 24464 35 1975 251059
#> 24465 35 1980 261910
#> 24466 35 1985 315835
#> 24467 35 1990 397526
#> 24468 35 1995 481852
#> 24469 35 2000 550621
#> 24470 35 2005 598721
#> 24471 35 2010 643875
#> 24472 35 2015 690148
#> 24473 35 1950 40388204
#> 24474 35 1955 30589049
#> 24475 35 1960 41769074
#> 24476 35 1965 47156778
#> 24477 35 1970 43936750
#> 24478 35 1975 48329334
#> 24479 35 1980 40245743
#> 24480 35 1985 49305237
#> 24481 35 1990 53411356
#> 24482 35 1995 56069922
#> 24483 35 2000 55965023
#> 24484 35 2005 53613831
#> 24485 35 2010 52594420
#> 24486 35 2015 51883507
#> 24487 35 1950 3571999
#> 24488 35 1955 3957446
#> 24489 35 1960 4432815
#> 24490 35 1965 5010185
#> 24491 35 1970 5644037
#> 24492 35 1975 6181000
#> 24493 35 1980 7070130
#> 24494 35 1985 8235807
#> 24495 35 1990 9571721
#> 24496 35 1995 10985790
#> 24497 35 2000 12400937
#> 24498 35 2005 14307750
#> 24499 35 2010 17308140
#> 24500 35 2015 21028513
#> 24501 35 1950 44501397
#> 24502 35 1955 46976094
#> 24503 35 1960 47378870
#> 24504 35 1965 51983487
#> 24505 35 1970 58374316
#> 24506 35 1975 61712793
#> 24507 35 1980 64584633
#> 24508 35 1985 80622559
#> 24509 35 1990 104604513
#> 24510 35 1995 101745277
#> 24511 35 2000 122814834
#> 24512 35 2005 144828382
#> 24513 35 2010 138879819
#> 24514 35 2015 112776398
#> 24515 35 1950 16545387
#> 24516 35 1955 11960622
#> 24517 35 1960 17078086
#> 24518 35 1965 22374977
#> 24519 35 1970 19150156
#> 24520 35 1975 22631433
#> 24521 35 1980 15268920
#> 24522 35 1985 20806999
#> 24523 35 1990 24610699
#> 24524 35 1995 25204749
#> 24525 35 2000 22375662
#> 24526 35 2005 19872024
#> 24527 35 2010 21109548
#> 24528 35 2015 22372323
#> 24529 35 1950 194481
#> 24530 35 1955 201273
#> 24531 35 1960 224234
#> 24532 35 1965 258317
#> 24533 35 1970 296854
#> 24534 35 1975 341509
#> 24535 35 1980 406488
#> 24536 35 1985 459270
#> 24537 35 1990 612235
#> 24538 35 1995 710295
#> 24539 35 2000 807369
#> 24540 35 2005 909625
#> 24541 35 2010 1010308
#> 24542 35 2015 1096887
#> 24543 35 1950 1222530
#> 24544 35 1955 1382437
#> 24545 35 1960 1568021
#> 24546 35 1965 1812280
#> 24547 35 1970 1928198
#> 24548 35 1975 1954874
#> 24549 35 1980 2002433
#> 24550 35 1985 2819653
#> 24551 35 1990 3055620
#> 24552 35 1995 3654470
#> 24553 35 2000 4123038
#> 24554 35 2005 4553809
#> 24555 35 2010 5146160
#> 24556 35 2015 6316849
#> 24557 35 1950 112781
#> 24558 35 1955 126523
#> 24559 35 1960 143572
#> 24560 35 1965 157224
#> 24561 35 1970 184946
#> 24562 35 1975 211859
#> 24563 35 1980 228799
#> 24564 35 1985 243436
#> 24565 35 1990 281918
#> 24566 35 1995 316254
#> 24567 35 2000 346256
#> 24568 35 2005 363349
#> 24569 35 2010 381969
#> 24570 35 2015 399165
#> 24571 35 1950 13810
#> 24572 35 1955 14684
#> 24573 35 1960 15262
#> 24574 35 1965 16347
#> 24575 35 1970 17900
#> 24576 35 1975 14703
#> 24577 35 1980 14111
#> 24578 35 1985 18439
#> 24579 35 1990 24217
#> 24580 35 1995 27550
#> 24581 35 2000 32317
#> 24582 35 2005 45612
#> 24583 35 2010 59173
#> 24584 35 2015 81322
#> 24585 35 1950 56001
#> 24586 35 1955 63701
#> 24587 35 1960 73658
#> 24588 35 1965 85508
#> 24589 35 1970 99846
#> 24590 35 1975 114926
#> 24591 35 1980 132326
#> 24592 35 1985 149122
#> 24593 35 1990 149388
#> 24594 35 1995 140181
#> 24595 35 2000 146399
#> 24596 35 2005 171995
#> 24597 35 2010 197621
#> 24598 35 2015 266475
#> 24599 35 1950 75322
#> 24600 35 1955 57048
#> 24601 35 1960 83434
#> 24602 35 1965 104864
#> 24603 35 1970 103286
#> 24604 35 1975 110548
#> 24605 35 1980 92415
#> 24606 35 1985 105667
#> 24607 35 1990 114859
#> 24608 35 1995 105161
#> 24609 35 2000 100850
#> 24610 35 2005 89286
#> 24611 35 2010 94584
#> 24612 35 2015 89547
#> 24613 35 1950 967188
#> 24614 35 1955 1062842
#> 24615 35 1960 1186231
#> 24616 35 1965 1331656
#> 24617 35 1970 1504680
#> 24618 35 1975 1707061
#> 24619 35 1980 1890983
#> 24620 35 1985 2144240
#> 24621 35 1990 2339908
#> 24622 35 1995 2756246
#> 24623 35 2000 2995555
#> 24624 35 2005 3591364
#> 24625 35 2010 4340958
#> 24626 35 2015 5080253
#> 24627 35 1950 15001
#> 24628 35 1955 17536
#> 24629 35 1960 19119
#> 24630 35 1965 22324
#> 24631 35 1970 26205
#> 24632 35 1975 30493
#> 24633 35 1980 35275
#> 24634 35 1985 39861
#> 24635 35 1990 43257
#> 24636 35 1995 53763
#> 24637 35 2000 54682
#> 24638 35 2005 55400
#> 24639 35 2010 55603
#> 24640 35 2015 62352
#> 24641 35 1950 291564
#> 24642 35 1955 258624
#> 24643 35 1960 294373
#> 24644 35 1965 302048
#> 24645 35 1970 277753
#> 24646 35 1975 291546
#> 24647 35 1980 317998
#> 24648 35 1985 442464
#> 24649 35 1990 408573
#> 24650 35 1995 387464
#> 24651 35 2000 380222
#> 24652 35 2005 352962
#> 24653 35 2010 310949
#> 24654 35 2015 343075
#> 24655 35 1950 2979362
#> 24656 35 1955 1778778
#> 24657 35 1960 3534457
#> 24658 35 1965 3334444
#> 24659 35 1970 3353232
#> 24660 35 1975 3102374
#> 24661 35 1980 3005787
#> 24662 35 1985 4345069
#> 24663 35 1990 4290067
#> 24664 35 1995 4265507
#> 24665 35 2000 4390101
#> 24666 35 2005 4361348
#> 24667 35 2010 4339677
#> 24668 35 2015 3945081
#> 24669 35 1950 1838
#> 24670 35 1955 2011
#> 24671 35 1960 2024
#> 24672 35 1965 2398
#> 24673 35 1970 2777
#> 24674 35 1975 3192
#> 24675 35 1980 4293
#> 24676 35 1985 5758
#> 24677 35 1990 9690
#> 24678 35 1995 10158
#> 24679 35 2000 13047
#> 24680 35 2005 15558
#> 24681 35 2010 17625
#> 24682 35 2015 18861
#> 24683 35 1950 3470
#> 24684 35 1955 3424
#> 24685 35 1960 4355
#> 24686 35 1965 5217
#> 24687 35 1970 6544
#> 24688 35 1975 7194
#> 24689 35 1980 9004
#> 24690 35 1985 9433
#> 24691 35 1990 13117
#> 24692 35 1995 14715
#> 24693 35 2000 19324
#> 24694 35 2005 21147
#> 24695 35 2010 20237
#> 24696 35 2015 20273
#> 24697 35 1950 31906
#> 24698 35 1955 32275
#> 24699 35 1960 32906
#> 24700 35 1965 35051
#> 24701 35 1970 39348
#> 24702 35 1975 38834
#> 24703 35 1980 39267
#> 24704 35 1985 40964
#> 24705 35 1990 44832
#> 24706 35 1995 50188
#> 24707 35 2000 60813
#> 24708 35 2005 76444
#> 24709 35 2010 100429
#> 24710 35 2015 131572
#> 24711 35 1950 15635
#> 24712 35 1955 16879
#> 24713 35 1960 19377
#> 24714 35 1965 23115
#> 24715 35 1970 24466
#> 24716 35 1975 26170
#> 24717 35 1980 30865
#> 24718 35 1985 31658
#> 24719 35 1990 44398
#> 24720 35 1995 54616
#> 24721 35 2000 60389
#> 24722 35 2005 73357
#> 24723 35 2010 80106
#> 24724 35 2015 103511
#> 24725 35 1950 238748
#> 24726 35 1955 174742
#> 24727 35 1960 234362
#> 24728 35 1965 367951
#> 24729 35 1970 341060
#> 24730 35 1975 388639
#> 24731 35 1980 262115
#> 24732 35 1985 285648
#> 24733 35 1990 366306
#> 24734 35 1995 378200
#> 24735 35 2000 361699
#> 24736 35 2005 300266
#> 24737 35 2010 278818
#> 24738 35 2015 269571
#> 24739 35 1950 5207727
#> 24740 35 1955 3519127
#> 24741 35 1960 4735184
#> 24742 35 1965 4932757
#> 24743 35 1970 5072043
#> 24744 35 1975 6307403
#> 24745 35 1980 5449032
#> 24746 35 1985 4834344
#> 24747 35 1990 5533859
#> 24748 35 1995 6409732
#> 24749 35 2000 7113146
#> 24750 35 2005 6755465
#> 24751 35 2010 5012199
#> 24752 35 2015 4782027
#> 24753 35 1950 258173
#> 24754 35 1955 298114
#> 24755 35 1960 350311
#> 24756 35 1965 399695
#> 24757 35 1970 438471
#> 24758 35 1975 496930
#> 24759 35 1980 548611
#> 24760 35 1985 666031
#> 24761 35 1990 701294
#> 24762 35 1995 856470
#> 24763 35 2000 1033679
#> 24764 35 2005 1223251
#> 24765 35 2010 1416678
#> 24766 35 2015 1663147
#> 24767 35 1950 513002
#> 24768 35 1955 491223
#> 24769 35 1960 537440
#> 24770 35 1965 627446
#> 24771 35 1970 646476
#> 24772 35 1975 606379
#> 24773 35 1980 532158
#> 24774 35 1985 659938
#> 24775 35 1990 673511
#> 24776 35 1995 793281
#> 24777 35 2000 822529
#> 24778 35 2005 894933
#> 24779 35 2010 886860
#> 24780 35 2015 868004
#> 24781 35 1950 3253
#> 24782 35 1955 3562
#> 24783 35 1960 3723
#> 24784 35 1965 4133
#> 24785 35 1970 2815
#> 24786 35 1975 3498
#> 24787 35 1980 2728
#> 24788 35 1985 4275
#> 24789 35 1990 4961
#> 24790 35 1995 6173
#> 24791 35 2000 6706
#> 24792 35 2005 5264
#> 24793 35 2010 5922
#> 24794 35 2015 6862
#> 24795 35 1950 13992
#> 24796 35 1955 13997
#> 24797 35 1960 16199
#> 24798 35 1965 14500
#> 24799 35 1970 14501
#> 24800 35 1975 15433
#> 24801 35 1980 17612
#> 24802 35 1985 21420
#> 24803 35 1990 26598
#> 24804 35 1995 30133
#> 24805 35 2000 35744
#> 24806 35 2005 36262
#> 24807 35 2010 33123
#> 24808 35 2015 24213
#> 24809 35 1950 4052
#> 24810 35 1955 4592
#> 24811 35 1960 5180
#> 24812 35 1965 5350
#> 24813 35 1970 5503
#> 24814 35 1975 5877
#> 24815 35 1980 6279
#> 24816 35 1985 8048
#> 24817 35 1990 9854
#> 24818 35 1995 11295
#> 24819 35 2000 12769
#> 24820 35 2005 12019
#> 24821 35 2010 11134
#> 24822 35 2015 9884
#> 24823 35 1950 161688
#> 24824 35 1955 184104
#> 24825 35 1960 226210
#> 24826 35 1965 269001
#> 24827 35 1970 291339
#> 24828 35 1975 302852
#> 24829 35 1980 317794
#> 24830 35 1985 351941
#> 24831 35 1990 449330
#> 24832 35 1995 486518
#> 24833 35 2000 537995
#> 24834 35 2005 632547
#> 24835 35 2010 779743
#> 24836 35 2015 975906
#> 24837 35 1950 185568
#> 24838 35 1955 199240
#> 24839 35 1960 211492
#> 24840 35 1965 222290
#> 24841 35 1970 233533
#> 24842 35 1975 236523
#> 24843 35 1980 236948
#> 24844 35 1985 251727
#> 24845 35 1990 335863
#> 24846 35 1995 420493
#> 24847 35 2000 451025
#> 24848 35 2005 478265
#> 24849 35 2010 538407
#> 24850 35 2015 628634
#> 24851 35 1950 36898
#> 24852 35 1955 38438
#> 24853 35 1960 39267
#> 24854 35 1965 37167
#> 24855 35 1970 37076
#> 24856 35 1975 38527
#> 24857 35 1980 40237
#> 24858 35 1985 45403
#> 24859 35 1990 57794
#> 24860 35 1995 59069
#> 24861 35 2000 57730
#> 24862 35 2005 64950
#> 24863 35 2010 80115
#> 24864 35 2015 95434
#> 24865 35 1950 24010
#> 24866 35 1955 26605
#> 24867 35 1960 28295
#> 24868 35 1965 31667
#> 24869 35 1970 31824
#> 24870 35 1975 34233
#> 24871 35 1980 34855
#> 24872 35 1985 33460
#> 24873 35 1990 43752
#> 24874 35 1995 49762
#> 24875 35 2000 53274
#> 24876 35 2005 53942
#> 24877 35 2010 51734
#> 24878 35 2015 51941
#> 24879 35 1950 197558
#> 24880 35 1955 206379
#> 24881 35 1960 212952
#> 24882 35 1965 224123
#> 24883 35 1970 250582
#> 24884 35 1975 281692
#> 24885 35 1980 303119
#> 24886 35 1985 300826
#> 24887 35 1990 368543
#> 24888 35 1995 408861
#> 24889 35 2000 469324
#> 24890 35 2005 508087
#> 24891 35 2010 538407
#> 24892 35 2015 657112
#> 24893 35 1950 47617007
#> 24894 35 1955 42448920
#> 24895 35 1960 52050042
#> 24896 35 1965 53323157
#> 24897 35 1970 53560674
#> 24898 35 1975 55782249
#> 24899 35 1980 58985940
#> 24900 35 1985 70778811
#> 24901 35 1990 74681906
#> 24902 35 1995 80186981
#> 24903 35 2000 83546054
#> 24904 35 2005 82923399
#> 24905 35 2010 83538246
#> 24906 35 2015 81696099
#> 24907 35 1950 83283
#> 24908 35 1955 83107
#> 24909 35 1960 103160
#> 24910 35 1965 112189
#> 24911 35 1970 127633
#> 24912 35 1975 137728
#> 24913 35 1980 150972
#> 24914 35 1985 183109
#> 24915 35 1990 237896
#> 24916 35 1995 282239
#> 24917 35 2000 334513
#> 24918 35 2005 409389
#> 24919 35 2010 487819
#> 24920 35 2015 591931
#> 24921 35 1950 727202
#> 24922 35 1955 443204
#> 24923 35 1960 798463
#> 24924 35 1965 740605
#> 24925 35 1970 709273
#> 24926 35 1975 658213
#> 24927 35 1980 727921
#> 24928 35 1985 740361
#> 24929 35 1990 860321
#> 24930 35 1995 758302
#> 24931 35 2000 605821
#> 24932 35 2005 687595
#> 24933 35 2010 786688
#> 24934 35 2015 817621
#> 24935 35 1950 9138
#> 24936 35 1955 9739
#> 24937 35 1960 10984
#> 24938 35 1965 11577
#> 24939 35 1970 11502
#> 24940 35 1975 10849
#> 24941 35 1980 13096
#> 24942 35 1985 16422
#> 24943 35 1990 18871
#> 24944 35 1995 20828
#> 24945 35 2000 21442
#> 24946 35 2005 20707
#> 24947 35 2010 21822
#> 24948 35 2015 21785
#> 24949 35 1950 23481448
#> 24950 35 1955 24990915
#> 24951 35 1960 26681257
#> 24952 35 1965 29103317
#> 24953 35 1970 31985645
#> 24954 35 1975 35286882
#> 24955 35 1980 37590709
#> 24956 35 1985 42725990
#> 24957 35 1990 54262258
#> 24958 35 1995 60800320
#> 24959 35 2000 67792408
#> 24960 35 2005 74495723
#> 24961 35 2010 82611850
#> 24962 35 2015 91299493
#> 24963 35 1950 4083694
#> 24964 35 1955 4249613
#> 24965 35 1960 4804896
#> 24966 35 1965 5802336
#> 24967 35 1970 6681034
#> 24968 35 1975 7490867
#> 24969 35 1980 7798113
#> 24970 35 1985 8139013
#> 24971 35 1990 10123594
#> 24972 35 1995 12925974
#> 24973 35 2000 15112856
#> 24974 35 2005 16804592
#> 24975 35 2010 18560196
#> 24976 35 2015 19552563
#> 24977 35 1950 905724
#> 24978 35 1955 1034136
#> 24979 35 1960 1375022
#> 24980 35 1965 1463205
#> 24981 35 1970 1600918
#> 24982 35 1975 1641929
#> 24983 35 1980 1634599
#> 24984 35 1985 2075054
#> 24985 35 1990 3008715
#> 24986 35 1995 3378020
#> 24987 35 2000 3879763
#> 24988 35 2005 4693621
#> 24989 35 2010 5187837
#> 24990 35 2015 6778037
#> 24991 35 1950 389508
#> 24992 35 1955 398005
#> 24993 35 1960 387666
#> 24994 35 1965 410889
#> 24995 35 1970 468793
#> 24996 35 1975 534988
#> 24997 35 1980 616432
#> 24998 35 1985 617501
#> 24999 35 1990 873784
#> [ reached 'max' / getOption("max.print") -- omitted 45855 rows ]
# Tidy data for multiple locations across different years
age_population(
data = world_data,
location_col = country,
location = c("Asia", "Afghanistan"),
age_col = lower.age.limit,
year_col = year,
year = c(2010:2020)
)
#> # A tibble: 42 × 5 (conmat_population)
#> - age: lower.age.limit
#> - population: population
#> country year population lower.age.limit upper.age.limit
#> <chr> <int> <dbl> <dbl> <dbl>
#> 1 Afghanistan 2010 5199366 0 4
#> 2 Afghanistan 2015 5239401 0 4
#> 3 Afghanistan 2010 4662577 5 9
#> 4 Afghanistan 2015 5141850 5 9
#> 5 Afghanistan 2010 3905430 10 14
#> 6 Afghanistan 2015 4642280 10 14
#> 7 Afghanistan 2010 3025604 15 19
#> 8 Afghanistan 2015 3944912 15 19
#> 9 Afghanistan 2010 2450674 20 24
#> 10 Afghanistan 2015 3117448 20 24
#> # … with 32 more rows
# Tidy data for a given location irrespective of year
age_population(
data = world_data,
location_col = country,
location = "Afghanistan",
age_col = lower.age.limit
)
#> # A tibble: 294 × 5 (conmat_population)
#> - age: lower.age.limit
#> - population: population
#> country year population lower.age.limit upper.age.limit
#> <chr> <int> <dbl> <dbl> <dbl>
#> 1 Afghanistan 1950 1291622 0 4
#> 2 Afghanistan 1955 1355054 0 4
#> 3 Afghanistan 1960 1539494 0 4
#> 4 Afghanistan 1965 1762117 0 4
#> 5 Afghanistan 1970 2025591 0 4
#> 6 Afghanistan 1975 2326731 0 4
#> 7 Afghanistan 1980 2484405 0 4
#> 8 Afghanistan 1985 2276913 0 4
#> 9 Afghanistan 1990 2377868 0 4
#> 10 Afghanistan 1995 3325482 0 4
#> # … with 284 more rows
# Tidy data for a given location irrespective of location
age_population(
data = world_data,
age_col = lower.age.limit
)
#> # A tibble: 70,854 × 5 (conmat_population)
#> - age: lower.age.limit
#> - population: population
#> country year population lower.age.limit upper.age.limit
#> <chr> <int> <dbl> <dbl> <dbl>
#> 1 AFRICA 1950 38705049 0 4
#> 2 AFRICA 1955 44304214 0 4
#> 3 AFRICA 1960 50491493 0 4
#> 4 AFRICA 1965 57690110 0 4
#> 5 AFRICA 1970 65452837 0 4
#> 6 AFRICA 1975 75017430 0 4
#> 7 AFRICA 1980 86666665 0 4
#> 8 AFRICA 1985 98999023 0 4
#> 9 AFRICA 1990 110362756 0 4
#> 10 AFRICA 1995 119693019 0 4
#> # … with 70,844 more rows
age_population(
data = world_data,
age_col = lower.age.limit,
year_col = year,
year = c(2011:2015)
)
#> # A tibble: 5,061 × 5 (conmat_population)
#> - age: lower.age.limit
#> - population: population
#> country year population lower.age.limit upper.age.limit
#> <chr> <int> <dbl> <dbl> <dbl>
#> 1 AFRICA 2015 186990397 0 4
#> 2 ASIA 2015 368116974 0 4
#> 3 Afghanistan 2015 5239401 0 4
#> 4 Albania 2015 171785 0 4
#> 5 Algeria 2015 4663613 0 4
#> 6 Angola 2015 5158376 0 4
#> 7 Antigua and Barbuda 2015 8037 0 4
#> 8 Argentina 2015 3718140 0 4
#> 9 Armenia 2015 206148 0 4
#> 10 Aruba 2015 5627 0 4
#> # … with 5,051 more rows
# Tidy datasets with age groups
population_age_groups <- abs_pop_age_lga_2020
population_age_groups
#> # A tibble: 9,774 × 5
#> year state lga age_group population
#> <dbl> <chr> <chr> <fct> <dbl>
#> 1 2020 ACT Unincorporated ACT 0-4 27861
#> 2 2020 ACT Unincorporated ACT 5-9 28871
#> 3 2020 ACT Unincorporated ACT 10-14 26015
#> 4 2020 ACT Unincorporated ACT 15-19 23867
#> 5 2020 ACT Unincorporated ACT 20-24 32626
#> 6 2020 ACT Unincorporated ACT 25-29 33992
#> 7 2020 ACT Unincorporated ACT 30-34 35734
#> 8 2020 ACT Unincorporated ACT 35-39 35354
#> 9 2020 ACT Unincorporated ACT 40-44 30155
#> 10 2020 ACT Unincorporated ACT 45-49 29103
#> # … with 9,764 more rows
age_population(
data = population_age_groups,
age_col = age_group,
year_col = year,
year = 2020
)
#> # A tibble: 9,774 × 6 (conmat_population)
#> - age: lower.age.limit
#> - population: population
#> year state lga lower.age.limit upper.age.limit population
#> <dbl> <chr> <chr> <dbl> <dbl> <dbl>
#> 1 2020 ACT Unincorporated ACT 0 4 27861
#> 2 2020 ACT Unincorporated ACT 5 9 28871
#> 3 2020 ACT Unincorporated ACT 10 14 26015
#> 4 2020 ACT Unincorporated ACT 15 19 23867
#> 5 2020 ACT Unincorporated ACT 20 24 32626
#> 6 2020 ACT Unincorporated ACT 25 29 33992
#> 7 2020 ACT Unincorporated ACT 30 34 35734
#> 8 2020 ACT Unincorporated ACT 35 39 35354
#> 9 2020 ACT Unincorporated ACT 40 44 30155
#> 10 2020 ACT Unincorporated ACT 45 49 29103
#> # … with 9,764 more rows
# Tidy datasets with numeric age
population_numeric_age <- abs_age_state("WA")
population_numeric_age
#> # A tibble: 18 × 4 (conmat_population)
#> - age: lower.age.limit
#> - population: population
#> year state lower.age.limit population
#> <dbl> <chr> <dbl> <dbl>
#> 1 2020 WA 0 171560
#> 2 2020 WA 5 175176
#> 3 2020 WA 10 170537
#> 4 2020 WA 15 154883
#> 5 2020 WA 20 166709
#> 6 2020 WA 25 184863
#> 7 2020 WA 30 204015
#> 8 2020 WA 35 198269
#> 9 2020 WA 40 174141
#> 10 2020 WA 45 178038
#> 11 2020 WA 50 168290
#> 12 2020 WA 55 162297
#> 13 2020 WA 60 147253
#> 14 2020 WA 65 127249
#> 15 2020 WA 70 108229
#> 16 2020 WA 75 73485
#> 17 2020 WA 80 50317
#> 18 2020 WA 85 48250
age_population(
data = population_numeric_age,
age_col = lower.age.limit,
year_col = year,
year = 2020
)
#> # A tibble: 18 × 5 (conmat_population)
#> - age: lower.age.limit
#> - population: population
#> year state population lower.age.limit upper.age.limit
#> <dbl> <chr> <dbl> <dbl> <dbl>
#> 1 2020 WA 171560 0 4
#> 2 2020 WA 175176 5 9
#> 3 2020 WA 170537 10 14
#> 4 2020 WA 154883 15 19
#> 5 2020 WA 166709 20 24
#> 6 2020 WA 184863 25 29
#> 7 2020 WA 204015 30 34
#> 8 2020 WA 198269 35 39
#> 9 2020 WA 174141 40 44
#> 10 2020 WA 178038 45 49
#> 11 2020 WA 168290 50 54
#> 12 2020 WA 162297 55 59
#> 13 2020 WA 147253 60 64
#> 14 2020 WA 127249 65 69
#> 15 2020 WA 108229 70 74
#> 16 2020 WA 73485 75 79
#> 17 2020 WA 50317 80 84
#> 18 2020 WA 48250 85 89