An integrated development environment (IDE) for R and Python, with a console, syntax-highlighting editor that supports direct code execution, and tools for plotting, history, debugging and workspace management (From https://rstudio.com/).
Watch the video: https://www.youtube.com/watch?v=PviVimazpz8
Register on https://rstudio.cloud/ to get an account.
This is an R Markdown document. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents. For more details on using R Markdown see http://rmarkdown.rstudio.com.
When you click the Knit button a document will be generated that includes both content as well as the output of any embedded R code chunks within the document. You can embed an R code chunk like this:
x = 4
y = 7
z = 67
a = x*y + x/y - sqrt(x) - 2*abs(y) + exp(-0.3*x) +3*z
a
## [1] 213.8726
For Python fans, the following is simple python code. To run python code within RStudio, the package “reticulate” must be loaded in the “setup” code chunk (at the beginning of this document, below YAML).
fruits = ["apple", "banana", "cherry"]
for x in fruits:
print(x)
## apple
## banana
## cherry
Basic data structures in R include the vector, matrix, data frame, and list. Some of these structures require that all members be of the same data type (e.g. vectors, matrices) while others permit multiple data types (e.g. data frames, lists).
x = c(3, 6, 7, 10, 12, 18, 20) # This is a numeric vector
class(x)
## [1] "numeric"
y = c("Tom", "Jerry", "Donald", "Bob") # This is a character vector
class(y)
## [1] "character"
z1 = c(4, 6, 9)
z2 = c(a = 4, b = 6, c = 9) # A named vector, looking like a table
print(x)
## [1] 3 6 7 10 12 18 20
y
## [1] "Tom" "Jerry" "Donald" "Bob"
z1
## [1] 4 6 9
z2
## a b c
## 4 6 9
letters # a constant vector built in base R
## [1] "a" "b" "c" "d" "e" "f" "g" "h" "i" "j" "k" "l" "m" "n" "o" "p" "q" "r" "s"
## [20] "t" "u" "v" "w" "x" "y" "z"
state.name # another constant vector built in base R
## [1] "Alabama" "Alaska" "Arizona" "Arkansas"
## [5] "California" "Colorado" "Connecticut" "Delaware"
## [9] "Florida" "Georgia" "Hawaii" "Idaho"
## [13] "Illinois" "Indiana" "Iowa" "Kansas"
## [17] "Kentucky" "Louisiana" "Maine" "Maryland"
## [21] "Massachusetts" "Michigan" "Minnesota" "Mississippi"
## [25] "Missouri" "Montana" "Nebraska" "Nevada"
## [29] "New Hampshire" "New Jersey" "New Mexico" "New York"
## [33] "North Carolina" "North Dakota" "Ohio" "Oklahoma"
## [37] "Oregon" "Pennsylvania" "Rhode Island" "South Carolina"
## [41] "South Dakota" "Tennessee" "Texas" "Utah"
## [45] "Vermont" "Virginia" "Washington" "West Virginia"
## [49] "Wisconsin" "Wyoming"
M = matrix(data = 1:12, nrow = 3, byrow = TRUE)
M # Print the matrix.
## [,1] [,2] [,3] [,4]
## [1,] 1 2 3 4
## [2,] 5 6 7 8
## [3,] 9 10 11 12
dim(M) # Dimension of matrix M
## [1] 3 4
M[2,3] # the element in row 2 and column 3, which is a scalar
## [1] 7
M[2,] # the second row, which is a vector
## [1] 5 6 7 8
M[,3] # the third column, which is a vector
## [1] 3 7 11
M2 = matrix(0, nrow = 3, ncol = 4)
M2
## [,1] [,2] [,3] [,4]
## [1,] 0 0 0 0
## [2,] 0 0 0 0
## [3,] 0 0 0 0
class(M2)
## [1] "matrix" "array"
DF = data.frame(Name = c("John", "Alice", "Tod", "Megan", "Jessica"),
Major = c("Software Engineering", "Statistics", "Accounting", "Computer Science", "Statistics"),
`Score of Stat` = c(89, 92, 87, 90, 88)
)
DF
## Name Major Score.of.Stat
## 1 John Software Engineering 89
## 2 Alice Statistics 92
## 3 Tod Accounting 87
## 4 Megan Computer Science 90
## 5 Jessica Statistics 88
DF[2,1]
## [1] "Alice"
DF[2,]
## Name Major Score.of.Stat
## 2 Alice Statistics 92
DF[, 3]
## [1] 89 92 87 90 88
DF[, c(1,3)]
## Name Score.of.Stat
## 1 John 89
## 2 Alice 92
## 3 Tod 87
## 4 Megan 90
## 5 Jessica 88
dim(DF)
## [1] 5 3
dimnames(DF)
## [[1]]
## [1] "1" "2" "3" "4" "5"
##
## [[2]]
## [1] "Name" "Major" "Score.of.Stat"
colnames(DF)
## [1] "Name" "Major" "Score.of.Stat"
rownames(DF)
## [1] "1" "2" "3" "4" "5"
names(DF)
## [1] "Name" "Major" "Score.of.Stat"
class(DF)
## [1] "data.frame"
colnames(DF)[2] = "Specialty" # rename a column
DF
## Name Specialty Score.of.Stat
## 1 John Software Engineering 89
## 2 Alice Statistics 92
## 3 Tod Accounting 87
## 4 Megan Computer Science 90
## 5 Jessica Statistics 88
L = list(Name = "Tom", Age = 19, Sex = "Male", Major = "Computer Science")
L
## $Name
## [1] "Tom"
##
## $Age
## [1] 19
##
## $Sex
## [1] "Male"
##
## $Major
## [1] "Computer Science"
L[[3]] ## The third object (z) in the list L
## [1] "Male"
L$Age
## [1] 19
length(L)
## [1] 4
class(L)
## [1] "list"
y = c(4, 8, 6, 4, 9, 3, 14, 13, 12, 2, 4, 10, 12, 14, 13, 2, 5, 4, 12, 2)
sum(y)
## [1] 153
mean(y)
## [1] 7.65
median(y)
## [1] 7
sd(y)
## [1] 4.487116
summary(y)
## Min. 1st Qu. Median Mean 3rd Qu. Max.
## 2.00 4.00 7.00 7.65 12.00 14.00
c(summary(y), sd=sd(y))
## Min. 1st Qu. Median Mean 3rd Qu. Max. sd
## 2.000000 4.000000 7.000000 7.650000 12.000000 14.000000 4.487116
x = c(3, 6, 7, 10, 12, 18, 20)
y = c(5, 8, 11, 15, 20, 26, 31)
plot(x=x,y=y) # A scatterplot
a = c(4, 8, 6, 4, 9, 3, 14, 13, 12, 2, 4, 10, 12, 14, 13, 2, 5, 4, 12, 2)
table(a)
## a
## 2 3 4 5 6 8 9 10 12 13 14
## 3 1 4 1 1 1 1 1 3 2 2
barplot(table(a), xlab="Number", ylab="Frequency", col = "red", main = "")
title("Do You Know What This Graph Says?", col.main="blue", font.main = 2, cex.main = 2)
barplot(table(a)/length(a)*100, xlab="Number", ylab="Percent", col = "red")
hist(a, main = "hhhhh")
hist(a, probability = TRUE, xlab = "Age", main = "Histogram of Ages of Kids in a Big Family")
In any programming language, logical expressions, if-else conditions, and for- or while- Loops are fundamental.
x = 3
X = 3
y = 4
a = (x == X)
a
## [1] TRUE
b = (x > y)
b
## [1] FALSE
m = (x != X)
m
## [1] FALSE
A simple if-else structure is for the situation that there are only two cases to consider. It may look like:
x = 3
if (x < 0) {
print("Negative")
} else if (x<=1){
print("Between 0 and 1")
} else {
print("Greater than 1")
} ## Note: the "else" branche should follow an "{" immediately!
## [1] "Greater than 1"
A more complicated if-else structure is for the situation that there are three cases to consider. It may look like:
x = 3
if (x < 0) {
print("Negative")
} else if (x<=1){
print("Between 0 and 1")
} else {
print("Greater than 1")
} ## Note: "else if" and "else" branches should follow an "{" immediately!
## [1] "Greater than 1"
For more than three cases, an example is:
x = 3
if (x < 0) {
print("Negative")
} else if (x<= 1){
print("Between 0 and 1")
} else if (x<=5){
print("greater than 1 and no more than 5")
} else {
print("Greater than 5")
}
## [1] "greater than 1 and no more than 5"
## Find the sum of a given sequence
x = 1:100
s = 0 ## Initialize s to 0
for (a in x) {
s = s + a ## Update s as x is retrieved
}
print(s)
## [1] 5050
# Print the first a few terms of a Fibbonacci Sequence
a = 1 # the first term of the Fibbonacci sequence
b = 1 # the second term
for (i in 1:10){
cat(i, ": ", a, "\n") # Outputs the objects, concatenating the representations.
temp <- a
a <- b
b <- temp + b # a correction: in the code sent to you, this line was b <- a + b
}
## 1 : 1
## 2 : 1
## 3 : 2
## 4 : 3
## 5 : 5
## 6 : 8
## 7 : 13
## 8 : 21
## 9 : 34
## 10 : 55
i <- 10
while (i > 5) {
print(i)
i = i-1
}
## [1] 10
## [1] 9
## [1] 8
## [1] 7
## [1] 6
Names = c("Abel", "Bernoulli", "Catherine", "Dick", "Alice", "Issac") # A vector of individuals (can be viewed as a population)
sample(x = Names, size = 2, replace = FALSE) ## Randomly select two individuals without replacement from the population
## [1] "Abel" "Issac"
M = data.frame(x = c(8, 6, 7, 5, 9, 8),
y = c(23, 43, 22, 17, 56, 48),
z = c(45, 78, 90, 34, 67, 23)
)
apply(M, 2, mean) # Apply the function "mean" to each column of M. The result is a vector
## x y z
## 7.166667 34.833333 56.166667
apply(M, 2, summary) # Apply the function "summary" to each column of M. The result is a vector
## x y z
## Min. 5.000000 17.00000 23.00000
## 1st Qu. 6.250000 22.25000 36.75000
## Median 7.500000 33.00000 56.00000
## Mean 7.166667 34.83333 56.16667
## 3rd Qu. 8.000000 46.75000 75.25000
## Max. 9.000000 56.00000 90.00000
apply(M, c(1,2), sqrt)
## x y z
## [1,] 2.828427 4.795832 6.708204
## [2,] 2.449490 6.557439 8.831761
## [3,] 2.645751 4.690416 9.486833
## [4,] 2.236068 4.123106 5.830952
## [5,] 3.000000 7.483315 8.185353
## [6,] 2.828427 6.928203 4.795832
x=c(9, 16, 25, 100)
sapply(x, sqrt) # Apply the function "sqrt" to each element of vector x. The result is a vector
## [1] 3 4 5 10
s1 = "Happy new year!"
s2 = c("tom robinson", "Alice", "jessica")
nchar(s1) # Number of chars in string s1
## [1] 15
nchar(s2)
## [1] 12 5 7
toupper(s1) # convert s1 in uppercase
## [1] "HAPPY NEW YEAR!"
toupper(s2)
## [1] "TOM ROBINSON" "ALICE" "JESSICA"
tolower(s1)
## [1] "happy new year!"
tolower(s2)
## [1] "tom robinson" "alice" "jessica"
substr(s1, start = 3, stop = 8) # substring of s1 from third char to 8th char; must provide a stop.
## [1] "ppy ne"
substr(s2, 1, 1)
## [1] "t" "A" "j"
substring(s2, first = 2, last = 6)
## [1] "om ro" "lice" "essic"
substring(s2, first = 2) # basically to the end
## [1] "om robinson" "lice" "essica"
Summary = function(x){
Mean=mean(x)
Sd = sd(x)
Median = median(x)
Summary=c(Mean = Mean, " Standard Deviation" = Sd, Median = Median)
return(Summary) # A function must return something
}
x=c(2, 4, 6, 1, 0, -3, 7)
Summary(x) # Apply the function just defined
## Mean Standard Deviation Median
## 2.428571 3.505098 2.000000
# The following will apply a user-defined function to sapply()
myfun = function(a){
if (nchar(a) < 4) {
comment = "The name is short."
} else if (nchar(a) < 6) {
comment = "The name is just right."
} else {
comment = "The name is long!"
}
return(comment)
}
sapply(s2, myfun)
## tom robinson Alice jessica
## "The name is long!" "The name is just right." "The name is long!"
The idea:
In mathematics, we can create a composite function such as
\[f(g(h(x)))\] Since each function is just an operator, we can instruct a machine to do this:
\[x \rightarrow h \rightarrow g \rightarrow f\] So, in R, if \(f\), \(g\), and \(h\) are functions, and \(x\) is an input, we can instruct the machine by “x%>%h%>%g%>%f.”
To use the pipe operator, we need to install the “dplyr” package.
x = c(2, 3, 7, 1, 9, 6, 5)
x %>% mean() # Normally you do: mean(x)
## [1] 4.714286
mtcars %>% plot() # Normally you do: plot(mtcars)
mtcars %>% cor() # Normally you do: cor(mtcars)
## mpg cyl disp hp drat wt
## mpg 1.0000000 -0.8521620 -0.8475514 -0.7761684 0.68117191 -0.8676594
## cyl -0.8521620 1.0000000 0.9020329 0.8324475 -0.69993811 0.7824958
## disp -0.8475514 0.9020329 1.0000000 0.7909486 -0.71021393 0.8879799
## hp -0.7761684 0.8324475 0.7909486 1.0000000 -0.44875912 0.6587479
## drat 0.6811719 -0.6999381 -0.7102139 -0.4487591 1.00000000 -0.7124406
## wt -0.8676594 0.7824958 0.8879799 0.6587479 -0.71244065 1.0000000
## qsec 0.4186840 -0.5912421 -0.4336979 -0.7082234 0.09120476 -0.1747159
## vs 0.6640389 -0.8108118 -0.7104159 -0.7230967 0.44027846 -0.5549157
## am 0.5998324 -0.5226070 -0.5912270 -0.2432043 0.71271113 -0.6924953
## gear 0.4802848 -0.4926866 -0.5555692 -0.1257043 0.69961013 -0.5832870
## carb -0.5509251 0.5269883 0.3949769 0.7498125 -0.09078980 0.4276059
## qsec vs am gear carb
## mpg 0.41868403 0.6640389 0.59983243 0.4802848 -0.55092507
## cyl -0.59124207 -0.8108118 -0.52260705 -0.4926866 0.52698829
## disp -0.43369788 -0.7104159 -0.59122704 -0.5555692 0.39497686
## hp -0.70822339 -0.7230967 -0.24320426 -0.1257043 0.74981247
## drat 0.09120476 0.4402785 0.71271113 0.6996101 -0.09078980
## wt -0.17471588 -0.5549157 -0.69249526 -0.5832870 0.42760594
## qsec 1.00000000 0.7445354 -0.22986086 -0.2126822 -0.65624923
## vs 0.74453544 1.0000000 0.16834512 0.2060233 -0.56960714
## am -0.22986086 0.1683451 1.00000000 0.7940588 0.05753435
## gear -0.21268223 0.2060233 0.79405876 1.0000000 0.27407284
## carb -0.65624923 -0.5696071 0.05753435 0.2740728 1.00000000
mtcars %>% apply(2, var) %>% sqrt() # Normally you do: sqrt(apply(mtcars, 2, var))
## mpg cyl disp hp drat wt
## 6.0269481 1.7859216 123.9386938 68.5628685 0.5346787 0.9784574
## qsec vs am gear carb
## 1.7869432 0.5040161 0.4989909 0.7378041 1.6152000
sqrt(apply(mtcars, 2, var))
## mpg cyl disp hp drat wt
## 6.0269481 1.7859216 123.9386938 68.5628685 0.5346787 0.9784574
## qsec vs am gear carb
## 1.7869432 0.5040161 0.4989909 0.7378041 1.6152000
# If you feel uncomfortable, don't use the pipe operator
mtcars %>% ggplot(mapping=aes(x = hp, y = mpg)) +
geom_point(color = "red")
mtcars
## mpg cyl disp hp drat wt qsec vs am gear carb
## Mazda RX4 21.0 6 160.0 110 3.90 2.620 16.46 0 1 4 4
## Mazda RX4 Wag 21.0 6 160.0 110 3.90 2.875 17.02 0 1 4 4
## Datsun 710 22.8 4 108.0 93 3.85 2.320 18.61 1 1 4 1
## Hornet 4 Drive 21.4 6 258.0 110 3.08 3.215 19.44 1 0 3 1
## Hornet Sportabout 18.7 8 360.0 175 3.15 3.440 17.02 0 0 3 2
## Valiant 18.1 6 225.0 105 2.76 3.460 20.22 1 0 3 1
## Duster 360 14.3 8 360.0 245 3.21 3.570 15.84 0 0 3 4
## Merc 240D 24.4 4 146.7 62 3.69 3.190 20.00 1 0 4 2
## Merc 230 22.8 4 140.8 95 3.92 3.150 22.90 1 0 4 2
## Merc 280 19.2 6 167.6 123 3.92 3.440 18.30 1 0 4 4
## Merc 280C 17.8 6 167.6 123 3.92 3.440 18.90 1 0 4 4
## Merc 450SE 16.4 8 275.8 180 3.07 4.070 17.40 0 0 3 3
## Merc 450SL 17.3 8 275.8 180 3.07 3.730 17.60 0 0 3 3
## Merc 450SLC 15.2 8 275.8 180 3.07 3.780 18.00 0 0 3 3
## Cadillac Fleetwood 10.4 8 472.0 205 2.93 5.250 17.98 0 0 3 4
## Lincoln Continental 10.4 8 460.0 215 3.00 5.424 17.82 0 0 3 4
## Chrysler Imperial 14.7 8 440.0 230 3.23 5.345 17.42 0 0 3 4
## Fiat 128 32.4 4 78.7 66 4.08 2.200 19.47 1 1 4 1
## Honda Civic 30.4 4 75.7 52 4.93 1.615 18.52 1 1 4 2
## Toyota Corolla 33.9 4 71.1 65 4.22 1.835 19.90 1 1 4 1
## Toyota Corona 21.5 4 120.1 97 3.70 2.465 20.01 1 0 3 1
## Dodge Challenger 15.5 8 318.0 150 2.76 3.520 16.87 0 0 3 2
## AMC Javelin 15.2 8 304.0 150 3.15 3.435 17.30 0 0 3 2
## Camaro Z28 13.3 8 350.0 245 3.73 3.840 15.41 0 0 3 4
## Pontiac Firebird 19.2 8 400.0 175 3.08 3.845 17.05 0 0 3 2
## Fiat X1-9 27.3 4 79.0 66 4.08 1.935 18.90 1 1 4 1
## Porsche 914-2 26.0 4 120.3 91 4.43 2.140 16.70 0 1 5 2
## Lotus Europa 30.4 4 95.1 113 3.77 1.513 16.90 1 1 5 2
## Ford Pantera L 15.8 8 351.0 264 4.22 3.170 14.50 0 1 5 4
## Ferrari Dino 19.7 6 145.0 175 3.62 2.770 15.50 0 1 5 6
## Maserati Bora 15.0 8 301.0 335 3.54 3.570 14.60 0 1 5 8
## Volvo 142E 21.4 4 121.0 109 4.11 2.780 18.60 1 1 4 2
ggplot(mtcars, mapping=aes(x = hp, y = mpg)) +
geom_point(color = "red")
## Want to do other plots?
ggplot(mtcars, aes(x = hp, y = mpg)) +
geom_line(color = "red")
ggplot(mtcars, aes(x = mpg)) +
geom_histogram(color = "blue", fill = "red", bins=6)
ggplot(mtcars, aes(x = mpg)) +
geom_density(color = "red")
ggplot(mtcars, aes(x = mpg, fill= factor(cyl))) +
geom_histogram(bins = 6) # bad
ggplot(mtcars, aes(x = mpg, fill= cyl)) +
geom_density() +
labs(fill = "Cylinder") # rename legend title
ggplot(mtcars, aes(x = mpg, color= factor(cyl))) +
geom_density() +
labs(title = "gggggg", x="Miles per Gallon", y= "Density", color="Cylinder") # rename legend title
ggplot(mtcars, aes(y = mpg)) +
geom_boxplot(fill = "red")
# More to learn about the theme()
ggplot(mtcars, aes(x = as.factor(cyl), y = mpg, fill = factor(cyl))) +
geom_boxplot() +
labs(title = "Mpg vs Cyl", subtitle = "Hello World!", x="Cyl", caption = "Data courtesy: xyz") +
theme(plot.background = element_rect(fill = "gray"),
panel.background = element_rect(fill = "yellow"),
plot.margin = unit(c(t=1,r=2,b=3,l=4), "cm"),
axis.title.x = element_text(hjust = 0.5, size = 20, color = "pink", angle = 45, vjust = -1),
plot.title = element_text(hjust = 0.5, size = 28, color = "green"),
plot.subtitle = element_text(hjust = 0.5, size = 15, color = "red"),
plot.caption = element_text(hjust = 0, size = 10, color = "green"),
legend.position = "none",
panel.grid.major.y = element_blank(),
panel.grid.minor.y = element_blank()
)
myData = data.frame(
Student = 1:24,
Major = c("Accounting", "IS", "CS", "Statistics", "EE", "Math", "Accounting", "CS", "CS", "Statistics", "EE", "Math","Accounting", "IS", "IS", "Statistics", "Math", "Math", "Accounting", "IS", "Statistics", "Statistics", "EE", "CS"),
Sex = c("Male", "Female", "Male", "Male", "Female", "Male", "Female", "Male", "Male", "Female", "Female", "Female", "Male", "Male", "Female", "Male", "Female", "Female", "Male", "Female", "Male", "Male", "Male", "Male"),
Score = c(87, 92, 69, 90, 88, 79, 94, 86, 92, 84, 78, 67, 95, 91, 93, 83, 82, 94, 86, 74, 95, 55, 93, 85)
)
myData
## Student Major Sex Score
## 1 1 Accounting Male 87
## 2 2 IS Female 92
## 3 3 CS Male 69
## 4 4 Statistics Male 90
## 5 5 EE Female 88
## 6 6 Math Male 79
## 7 7 Accounting Female 94
## 8 8 CS Male 86
## 9 9 CS Male 92
## 10 10 Statistics Female 84
## 11 11 EE Female 78
## 12 12 Math Female 67
## 13 13 Accounting Male 95
## 14 14 IS Male 91
## 15 15 IS Female 93
## 16 16 Statistics Male 83
## 17 17 Math Female 82
## 18 18 Math Female 94
## 19 19 Accounting Male 86
## 20 20 IS Female 74
## 21 21 Statistics Male 95
## 22 22 Statistics Male 55
## 23 23 EE Male 93
## 24 24 CS Male 85
ggplot(myData, aes(x = Score, color= Sex)) +
geom_density()
ggplot(myData, aes(x = Major)) +
geom_bar(stat = "count") # The default;
ggplot(myData, aes(x = Major)) +
geom_bar(stat = "count") # For simplicity, the default can be unspecified;
ggplot(myData, aes(x = Major, fill = Sex)) +
geom_bar(postion = "stack") # The default
## Warning: Ignoring unknown parameters: postion
ggplot(myData, aes(x = Major, fill = Sex)) +
geom_bar(postion = "dodge") # Side-by-side
## Warning: Ignoring unknown parameters: postion
# Name-value kind of data
popData = data.frame(City = c("St Cloud", "Sartell", "Waite Park", "St Joseph"),
Population = c(66169, 18428, 7718, 7147))
popData
## City Population
## 1 St Cloud 66169
## 2 Sartell 18428
## 3 Waite Park 7718
## 4 St Joseph 7147
ggplot(popData, aes(x = City, y = Population)) +
geom_col() + # for Name-value kind of data
theme(axis.text.x = element_text(angle = 45))
# The Titanic Data
D=as.data.frame(Titanic)
D1=D %>% group_by(Class)
D2=D1 %>% summarise(Freq=sum(Freq))
D2
## # A tibble: 4 x 2
## Class Freq
## <fct> <dbl>
## 1 1st 325
## 2 2nd 285
## 3 3rd 706
## 4 Crew 885
ggplot(D2, aes(x=Class, y = Freq)) +
geom_col() +
geom_text(aes(label=Freq), vjust=2.5, col ="red", size=13)
ggplot(D, aes(x=Class, y = Freq, fill = Survived)) +
geom_col(position = "stack") +
labs(fill = "Survival Status") # Change title of legend
ggplot(D, aes(x=Class, y = Freq, fill = Survived)) +
geom_col(position = "dodge")
ggplot(D, aes(x=Class, y = Freq, fill = Survived)) +
geom_col(position = "dodge")
# Which one to use: geom_bar() or geom_col?
# Both functions create bar graphs. In general, for individual data, such as myData above, use geom_bar();
# for grouped data, such as D above, use geom_col().
# The function geom_bar() can also be applied to grouped data, if you use it this way: geom_bar(stat="identity").
“Data scientists, according to interviews and expert estimates, spend from 50 percent to 80 percent of their time mired in the mundane labor of collecting and preparing data, before it can be explored for useful information.” (New York Times)
A short video: https://www.youtube.com/watch?v=bAEwIciE-68 A long video: https://www.youtube.com/watch?v=MtiLTLr8hew
filter(mtcars, am == 0)
## mpg cyl disp hp drat wt qsec vs am gear carb
## Hornet 4 Drive 21.4 6 258.0 110 3.08 3.215 19.44 1 0 3 1
## Hornet Sportabout 18.7 8 360.0 175 3.15 3.440 17.02 0 0 3 2
## Valiant 18.1 6 225.0 105 2.76 3.460 20.22 1 0 3 1
## Duster 360 14.3 8 360.0 245 3.21 3.570 15.84 0 0 3 4
## Merc 240D 24.4 4 146.7 62 3.69 3.190 20.00 1 0 4 2
## Merc 230 22.8 4 140.8 95 3.92 3.150 22.90 1 0 4 2
## Merc 280 19.2 6 167.6 123 3.92 3.440 18.30 1 0 4 4
## Merc 280C 17.8 6 167.6 123 3.92 3.440 18.90 1 0 4 4
## Merc 450SE 16.4 8 275.8 180 3.07 4.070 17.40 0 0 3 3
## Merc 450SL 17.3 8 275.8 180 3.07 3.730 17.60 0 0 3 3
## Merc 450SLC 15.2 8 275.8 180 3.07 3.780 18.00 0 0 3 3
## Cadillac Fleetwood 10.4 8 472.0 205 2.93 5.250 17.98 0 0 3 4
## Lincoln Continental 10.4 8 460.0 215 3.00 5.424 17.82 0 0 3 4
## Chrysler Imperial 14.7 8 440.0 230 3.23 5.345 17.42 0 0 3 4
## Toyota Corona 21.5 4 120.1 97 3.70 2.465 20.01 1 0 3 1
## Dodge Challenger 15.5 8 318.0 150 2.76 3.520 16.87 0 0 3 2
## AMC Javelin 15.2 8 304.0 150 3.15 3.435 17.30 0 0 3 2
## Camaro Z28 13.3 8 350.0 245 3.73 3.840 15.41 0 0 3 4
## Pontiac Firebird 19.2 8 400.0 175 3.08 3.845 17.05 0 0 3 2
filter(mtcars, hp > 100)
## mpg cyl disp hp drat wt qsec vs am gear carb
## Mazda RX4 21.0 6 160.0 110 3.90 2.620 16.46 0 1 4 4
## Mazda RX4 Wag 21.0 6 160.0 110 3.90 2.875 17.02 0 1 4 4
## Hornet 4 Drive 21.4 6 258.0 110 3.08 3.215 19.44 1 0 3 1
## Hornet Sportabout 18.7 8 360.0 175 3.15 3.440 17.02 0 0 3 2
## Valiant 18.1 6 225.0 105 2.76 3.460 20.22 1 0 3 1
## Duster 360 14.3 8 360.0 245 3.21 3.570 15.84 0 0 3 4
## Merc 280 19.2 6 167.6 123 3.92 3.440 18.30 1 0 4 4
## Merc 280C 17.8 6 167.6 123 3.92 3.440 18.90 1 0 4 4
## Merc 450SE 16.4 8 275.8 180 3.07 4.070 17.40 0 0 3 3
## Merc 450SL 17.3 8 275.8 180 3.07 3.730 17.60 0 0 3 3
## Merc 450SLC 15.2 8 275.8 180 3.07 3.780 18.00 0 0 3 3
## Cadillac Fleetwood 10.4 8 472.0 205 2.93 5.250 17.98 0 0 3 4
## Lincoln Continental 10.4 8 460.0 215 3.00 5.424 17.82 0 0 3 4
## Chrysler Imperial 14.7 8 440.0 230 3.23 5.345 17.42 0 0 3 4
## Dodge Challenger 15.5 8 318.0 150 2.76 3.520 16.87 0 0 3 2
## AMC Javelin 15.2 8 304.0 150 3.15 3.435 17.30 0 0 3 2
## Camaro Z28 13.3 8 350.0 245 3.73 3.840 15.41 0 0 3 4
## Pontiac Firebird 19.2 8 400.0 175 3.08 3.845 17.05 0 0 3 2
## Lotus Europa 30.4 4 95.1 113 3.77 1.513 16.90 1 1 5 2
## Ford Pantera L 15.8 8 351.0 264 4.22 3.170 14.50 0 1 5 4
## Ferrari Dino 19.7 6 145.0 175 3.62 2.770 15.50 0 1 5 6
## Maserati Bora 15.0 8 301.0 335 3.54 3.570 14.60 0 1 5 8
## Volvo 142E 21.4 4 121.0 109 4.11 2.780 18.60 1 1 4 2
filter(mtcars, am == 0 & hp > 100)
## mpg cyl disp hp drat wt qsec vs am gear carb
## Hornet 4 Drive 21.4 6 258.0 110 3.08 3.215 19.44 1 0 3 1
## Hornet Sportabout 18.7 8 360.0 175 3.15 3.440 17.02 0 0 3 2
## Valiant 18.1 6 225.0 105 2.76 3.460 20.22 1 0 3 1
## Duster 360 14.3 8 360.0 245 3.21 3.570 15.84 0 0 3 4
## Merc 280 19.2 6 167.6 123 3.92 3.440 18.30 1 0 4 4
## Merc 280C 17.8 6 167.6 123 3.92 3.440 18.90 1 0 4 4
## Merc 450SE 16.4 8 275.8 180 3.07 4.070 17.40 0 0 3 3
## Merc 450SL 17.3 8 275.8 180 3.07 3.730 17.60 0 0 3 3
## Merc 450SLC 15.2 8 275.8 180 3.07 3.780 18.00 0 0 3 3
## Cadillac Fleetwood 10.4 8 472.0 205 2.93 5.250 17.98 0 0 3 4
## Lincoln Continental 10.4 8 460.0 215 3.00 5.424 17.82 0 0 3 4
## Chrysler Imperial 14.7 8 440.0 230 3.23 5.345 17.42 0 0 3 4
## Dodge Challenger 15.5 8 318.0 150 2.76 3.520 16.87 0 0 3 2
## AMC Javelin 15.2 8 304.0 150 3.15 3.435 17.30 0 0 3 2
## Camaro Z28 13.3 8 350.0 245 3.73 3.840 15.41 0 0 3 4
## Pontiac Firebird 19.2 8 400.0 175 3.08 3.845 17.05 0 0 3 2
# Using the pipe operator
mtcars %>% filter(am == 0) %>% filter(hp > 100)
## mpg cyl disp hp drat wt qsec vs am gear carb
## Hornet 4 Drive 21.4 6 258.0 110 3.08 3.215 19.44 1 0 3 1
## Hornet Sportabout 18.7 8 360.0 175 3.15 3.440 17.02 0 0 3 2
## Valiant 18.1 6 225.0 105 2.76 3.460 20.22 1 0 3 1
## Duster 360 14.3 8 360.0 245 3.21 3.570 15.84 0 0 3 4
## Merc 280 19.2 6 167.6 123 3.92 3.440 18.30 1 0 4 4
## Merc 280C 17.8 6 167.6 123 3.92 3.440 18.90 1 0 4 4
## Merc 450SE 16.4 8 275.8 180 3.07 4.070 17.40 0 0 3 3
## Merc 450SL 17.3 8 275.8 180 3.07 3.730 17.60 0 0 3 3
## Merc 450SLC 15.2 8 275.8 180 3.07 3.780 18.00 0 0 3 3
## Cadillac Fleetwood 10.4 8 472.0 205 2.93 5.250 17.98 0 0 3 4
## Lincoln Continental 10.4 8 460.0 215 3.00 5.424 17.82 0 0 3 4
## Chrysler Imperial 14.7 8 440.0 230 3.23 5.345 17.42 0 0 3 4
## Dodge Challenger 15.5 8 318.0 150 2.76 3.520 16.87 0 0 3 2
## AMC Javelin 15.2 8 304.0 150 3.15 3.435 17.30 0 0 3 2
## Camaro Z28 13.3 8 350.0 245 3.73 3.840 15.41 0 0 3 4
## Pontiac Firebird 19.2 8 400.0 175 3.08 3.845 17.05 0 0 3 2
select(mtcars, c("hp", "am"))
## hp am
## Mazda RX4 110 1
## Mazda RX4 Wag 110 1
## Datsun 710 93 1
## Hornet 4 Drive 110 0
## Hornet Sportabout 175 0
## Valiant 105 0
## Duster 360 245 0
## Merc 240D 62 0
## Merc 230 95 0
## Merc 280 123 0
## Merc 280C 123 0
## Merc 450SE 180 0
## Merc 450SL 180 0
## Merc 450SLC 180 0
## Cadillac Fleetwood 205 0
## Lincoln Continental 215 0
## Chrysler Imperial 230 0
## Fiat 128 66 1
## Honda Civic 52 1
## Toyota Corolla 65 1
## Toyota Corona 97 0
## Dodge Challenger 150 0
## AMC Javelin 150 0
## Camaro Z28 245 0
## Pontiac Firebird 175 0
## Fiat X1-9 66 1
## Porsche 914-2 91 1
## Lotus Europa 113 1
## Ford Pantera L 264 1
## Ferrari Dino 175 1
## Maserati Bora 335 1
## Volvo 142E 109 1
select(mtcars, c("hp", "am")) # The same
## hp am
## Mazda RX4 110 1
## Mazda RX4 Wag 110 1
## Datsun 710 93 1
## Hornet 4 Drive 110 0
## Hornet Sportabout 175 0
## Valiant 105 0
## Duster 360 245 0
## Merc 240D 62 0
## Merc 230 95 0
## Merc 280 123 0
## Merc 280C 123 0
## Merc 450SE 180 0
## Merc 450SL 180 0
## Merc 450SLC 180 0
## Cadillac Fleetwood 205 0
## Lincoln Continental 215 0
## Chrysler Imperial 230 0
## Fiat 128 66 1
## Honda Civic 52 1
## Toyota Corolla 65 1
## Toyota Corona 97 0
## Dodge Challenger 150 0
## AMC Javelin 150 0
## Camaro Z28 245 0
## Pontiac Firebird 175 0
## Fiat X1-9 66 1
## Porsche 914-2 91 1
## Lotus Europa 113 1
## Ford Pantera L 264 1
## Ferrari Dino 175 1
## Maserati Bora 335 1
## Volvo 142E 109 1
select(mtcars, c(am, hp)) # The same, except order of columns
## am hp
## Mazda RX4 1 110
## Mazda RX4 Wag 1 110
## Datsun 710 1 93
## Hornet 4 Drive 0 110
## Hornet Sportabout 0 175
## Valiant 0 105
## Duster 360 0 245
## Merc 240D 0 62
## Merc 230 0 95
## Merc 280 0 123
## Merc 280C 0 123
## Merc 450SE 0 180
## Merc 450SL 0 180
## Merc 450SLC 0 180
## Cadillac Fleetwood 0 205
## Lincoln Continental 0 215
## Chrysler Imperial 0 230
## Fiat 128 1 66
## Honda Civic 1 52
## Toyota Corolla 1 65
## Toyota Corona 0 97
## Dodge Challenger 0 150
## AMC Javelin 0 150
## Camaro Z28 0 245
## Pontiac Firebird 0 175
## Fiat X1-9 1 66
## Porsche 914-2 1 91
## Lotus Europa 1 113
## Ford Pantera L 1 264
## Ferrari Dino 1 175
## Maserati Bora 1 335
## Volvo 142E 1 109
arrange(mtcars, cyl) # In ascending order by cyl (by default)
## mpg cyl disp hp drat wt qsec vs am gear carb
## Datsun 710 22.8 4 108.0 93 3.85 2.320 18.61 1 1 4 1
## Merc 240D 24.4 4 146.7 62 3.69 3.190 20.00 1 0 4 2
## Merc 230 22.8 4 140.8 95 3.92 3.150 22.90 1 0 4 2
## Fiat 128 32.4 4 78.7 66 4.08 2.200 19.47 1 1 4 1
## Honda Civic 30.4 4 75.7 52 4.93 1.615 18.52 1 1 4 2
## Toyota Corolla 33.9 4 71.1 65 4.22 1.835 19.90 1 1 4 1
## Toyota Corona 21.5 4 120.1 97 3.70 2.465 20.01 1 0 3 1
## Fiat X1-9 27.3 4 79.0 66 4.08 1.935 18.90 1 1 4 1
## Porsche 914-2 26.0 4 120.3 91 4.43 2.140 16.70 0 1 5 2
## Lotus Europa 30.4 4 95.1 113 3.77 1.513 16.90 1 1 5 2
## Volvo 142E 21.4 4 121.0 109 4.11 2.780 18.60 1 1 4 2
## Mazda RX4 21.0 6 160.0 110 3.90 2.620 16.46 0 1 4 4
## Mazda RX4 Wag 21.0 6 160.0 110 3.90 2.875 17.02 0 1 4 4
## Hornet 4 Drive 21.4 6 258.0 110 3.08 3.215 19.44 1 0 3 1
## Valiant 18.1 6 225.0 105 2.76 3.460 20.22 1 0 3 1
## Merc 280 19.2 6 167.6 123 3.92 3.440 18.30 1 0 4 4
## Merc 280C 17.8 6 167.6 123 3.92 3.440 18.90 1 0 4 4
## Ferrari Dino 19.7 6 145.0 175 3.62 2.770 15.50 0 1 5 6
## Hornet Sportabout 18.7 8 360.0 175 3.15 3.440 17.02 0 0 3 2
## Duster 360 14.3 8 360.0 245 3.21 3.570 15.84 0 0 3 4
## Merc 450SE 16.4 8 275.8 180 3.07 4.070 17.40 0 0 3 3
## Merc 450SL 17.3 8 275.8 180 3.07 3.730 17.60 0 0 3 3
## Merc 450SLC 15.2 8 275.8 180 3.07 3.780 18.00 0 0 3 3
## Cadillac Fleetwood 10.4 8 472.0 205 2.93 5.250 17.98 0 0 3 4
## Lincoln Continental 10.4 8 460.0 215 3.00 5.424 17.82 0 0 3 4
## Chrysler Imperial 14.7 8 440.0 230 3.23 5.345 17.42 0 0 3 4
## Dodge Challenger 15.5 8 318.0 150 2.76 3.520 16.87 0 0 3 2
## AMC Javelin 15.2 8 304.0 150 3.15 3.435 17.30 0 0 3 2
## Camaro Z28 13.3 8 350.0 245 3.73 3.840 15.41 0 0 3 4
## Pontiac Firebird 19.2 8 400.0 175 3.08 3.845 17.05 0 0 3 2
## Ford Pantera L 15.8 8 351.0 264 4.22 3.170 14.50 0 1 5 4
## Maserati Bora 15.0 8 301.0 335 3.54 3.570 14.60 0 1 5 8
arrange(mtcars, cyl, disp) # In ascending order by cyl then by disp
## mpg cyl disp hp drat wt qsec vs am gear carb
## Toyota Corolla 33.9 4 71.1 65 4.22 1.835 19.90 1 1 4 1
## Honda Civic 30.4 4 75.7 52 4.93 1.615 18.52 1 1 4 2
## Fiat 128 32.4 4 78.7 66 4.08 2.200 19.47 1 1 4 1
## Fiat X1-9 27.3 4 79.0 66 4.08 1.935 18.90 1 1 4 1
## Lotus Europa 30.4 4 95.1 113 3.77 1.513 16.90 1 1 5 2
## Datsun 710 22.8 4 108.0 93 3.85 2.320 18.61 1 1 4 1
## Toyota Corona 21.5 4 120.1 97 3.70 2.465 20.01 1 0 3 1
## Porsche 914-2 26.0 4 120.3 91 4.43 2.140 16.70 0 1 5 2
## Volvo 142E 21.4 4 121.0 109 4.11 2.780 18.60 1 1 4 2
## Merc 230 22.8 4 140.8 95 3.92 3.150 22.90 1 0 4 2
## Merc 240D 24.4 4 146.7 62 3.69 3.190 20.00 1 0 4 2
## Ferrari Dino 19.7 6 145.0 175 3.62 2.770 15.50 0 1 5 6
## Mazda RX4 21.0 6 160.0 110 3.90 2.620 16.46 0 1 4 4
## Mazda RX4 Wag 21.0 6 160.0 110 3.90 2.875 17.02 0 1 4 4
## Merc 280 19.2 6 167.6 123 3.92 3.440 18.30 1 0 4 4
## Merc 280C 17.8 6 167.6 123 3.92 3.440 18.90 1 0 4 4
## Valiant 18.1 6 225.0 105 2.76 3.460 20.22 1 0 3 1
## Hornet 4 Drive 21.4 6 258.0 110 3.08 3.215 19.44 1 0 3 1
## Merc 450SE 16.4 8 275.8 180 3.07 4.070 17.40 0 0 3 3
## Merc 450SL 17.3 8 275.8 180 3.07 3.730 17.60 0 0 3 3
## Merc 450SLC 15.2 8 275.8 180 3.07 3.780 18.00 0 0 3 3
## Maserati Bora 15.0 8 301.0 335 3.54 3.570 14.60 0 1 5 8
## AMC Javelin 15.2 8 304.0 150 3.15 3.435 17.30 0 0 3 2
## Dodge Challenger 15.5 8 318.0 150 2.76 3.520 16.87 0 0 3 2
## Camaro Z28 13.3 8 350.0 245 3.73 3.840 15.41 0 0 3 4
## Ford Pantera L 15.8 8 351.0 264 4.22 3.170 14.50 0 1 5 4
## Hornet Sportabout 18.7 8 360.0 175 3.15 3.440 17.02 0 0 3 2
## Duster 360 14.3 8 360.0 245 3.21 3.570 15.84 0 0 3 4
## Pontiac Firebird 19.2 8 400.0 175 3.08 3.845 17.05 0 0 3 2
## Chrysler Imperial 14.7 8 440.0 230 3.23 5.345 17.42 0 0 3 4
## Lincoln Continental 10.4 8 460.0 215 3.00 5.424 17.82 0 0 3 4
## Cadillac Fleetwood 10.4 8 472.0 205 2.93 5.250 17.98 0 0 3 4
arrange(mtcars, cyl, desc(disp)) # cyl in ascending order and disp in descending order
## mpg cyl disp hp drat wt qsec vs am gear carb
## Merc 240D 24.4 4 146.7 62 3.69 3.190 20.00 1 0 4 2
## Merc 230 22.8 4 140.8 95 3.92 3.150 22.90 1 0 4 2
## Volvo 142E 21.4 4 121.0 109 4.11 2.780 18.60 1 1 4 2
## Porsche 914-2 26.0 4 120.3 91 4.43 2.140 16.70 0 1 5 2
## Toyota Corona 21.5 4 120.1 97 3.70 2.465 20.01 1 0 3 1
## Datsun 710 22.8 4 108.0 93 3.85 2.320 18.61 1 1 4 1
## Lotus Europa 30.4 4 95.1 113 3.77 1.513 16.90 1 1 5 2
## Fiat X1-9 27.3 4 79.0 66 4.08 1.935 18.90 1 1 4 1
## Fiat 128 32.4 4 78.7 66 4.08 2.200 19.47 1 1 4 1
## Honda Civic 30.4 4 75.7 52 4.93 1.615 18.52 1 1 4 2
## Toyota Corolla 33.9 4 71.1 65 4.22 1.835 19.90 1 1 4 1
## Hornet 4 Drive 21.4 6 258.0 110 3.08 3.215 19.44 1 0 3 1
## Valiant 18.1 6 225.0 105 2.76 3.460 20.22 1 0 3 1
## Merc 280 19.2 6 167.6 123 3.92 3.440 18.30 1 0 4 4
## Merc 280C 17.8 6 167.6 123 3.92 3.440 18.90 1 0 4 4
## Mazda RX4 21.0 6 160.0 110 3.90 2.620 16.46 0 1 4 4
## Mazda RX4 Wag 21.0 6 160.0 110 3.90 2.875 17.02 0 1 4 4
## Ferrari Dino 19.7 6 145.0 175 3.62 2.770 15.50 0 1 5 6
## Cadillac Fleetwood 10.4 8 472.0 205 2.93 5.250 17.98 0 0 3 4
## Lincoln Continental 10.4 8 460.0 215 3.00 5.424 17.82 0 0 3 4
## Chrysler Imperial 14.7 8 440.0 230 3.23 5.345 17.42 0 0 3 4
## Pontiac Firebird 19.2 8 400.0 175 3.08 3.845 17.05 0 0 3 2
## Hornet Sportabout 18.7 8 360.0 175 3.15 3.440 17.02 0 0 3 2
## Duster 360 14.3 8 360.0 245 3.21 3.570 15.84 0 0 3 4
## Ford Pantera L 15.8 8 351.0 264 4.22 3.170 14.50 0 1 5 4
## Camaro Z28 13.3 8 350.0 245 3.73 3.840 15.41 0 0 3 4
## Dodge Challenger 15.5 8 318.0 150 2.76 3.520 16.87 0 0 3 2
## AMC Javelin 15.2 8 304.0 150 3.15 3.435 17.30 0 0 3 2
## Maserati Bora 15.0 8 301.0 335 3.54 3.570 14.60 0 1 5 8
## Merc 450SE 16.4 8 275.8 180 3.07 4.070 17.40 0 0 3 3
## Merc 450SL 17.3 8 275.8 180 3.07 3.730 17.60 0 0 3 3
## Merc 450SLC 15.2 8 275.8 180 3.07 3.780 18.00 0 0 3 3
arrange(mtcars, cyl, -disp) # cyl in ascending order and disp in descending order; the same as above
## mpg cyl disp hp drat wt qsec vs am gear carb
## Merc 240D 24.4 4 146.7 62 3.69 3.190 20.00 1 0 4 2
## Merc 230 22.8 4 140.8 95 3.92 3.150 22.90 1 0 4 2
## Volvo 142E 21.4 4 121.0 109 4.11 2.780 18.60 1 1 4 2
## Porsche 914-2 26.0 4 120.3 91 4.43 2.140 16.70 0 1 5 2
## Toyota Corona 21.5 4 120.1 97 3.70 2.465 20.01 1 0 3 1
## Datsun 710 22.8 4 108.0 93 3.85 2.320 18.61 1 1 4 1
## Lotus Europa 30.4 4 95.1 113 3.77 1.513 16.90 1 1 5 2
## Fiat X1-9 27.3 4 79.0 66 4.08 1.935 18.90 1 1 4 1
## Fiat 128 32.4 4 78.7 66 4.08 2.200 19.47 1 1 4 1
## Honda Civic 30.4 4 75.7 52 4.93 1.615 18.52 1 1 4 2
## Toyota Corolla 33.9 4 71.1 65 4.22 1.835 19.90 1 1 4 1
## Hornet 4 Drive 21.4 6 258.0 110 3.08 3.215 19.44 1 0 3 1
## Valiant 18.1 6 225.0 105 2.76 3.460 20.22 1 0 3 1
## Merc 280 19.2 6 167.6 123 3.92 3.440 18.30 1 0 4 4
## Merc 280C 17.8 6 167.6 123 3.92 3.440 18.90 1 0 4 4
## Mazda RX4 21.0 6 160.0 110 3.90 2.620 16.46 0 1 4 4
## Mazda RX4 Wag 21.0 6 160.0 110 3.90 2.875 17.02 0 1 4 4
## Ferrari Dino 19.7 6 145.0 175 3.62 2.770 15.50 0 1 5 6
## Cadillac Fleetwood 10.4 8 472.0 205 2.93 5.250 17.98 0 0 3 4
## Lincoln Continental 10.4 8 460.0 215 3.00 5.424 17.82 0 0 3 4
## Chrysler Imperial 14.7 8 440.0 230 3.23 5.345 17.42 0 0 3 4
## Pontiac Firebird 19.2 8 400.0 175 3.08 3.845 17.05 0 0 3 2
## Hornet Sportabout 18.7 8 360.0 175 3.15 3.440 17.02 0 0 3 2
## Duster 360 14.3 8 360.0 245 3.21 3.570 15.84 0 0 3 4
## Ford Pantera L 15.8 8 351.0 264 4.22 3.170 14.50 0 1 5 4
## Camaro Z28 13.3 8 350.0 245 3.73 3.840 15.41 0 0 3 4
## Dodge Challenger 15.5 8 318.0 150 2.76 3.520 16.87 0 0 3 2
## AMC Javelin 15.2 8 304.0 150 3.15 3.435 17.30 0 0 3 2
## Maserati Bora 15.0 8 301.0 335 3.54 3.570 14.60 0 1 5 8
## Merc 450SE 16.4 8 275.8 180 3.07 4.070 17.40 0 0 3 3
## Merc 450SL 17.3 8 275.8 180 3.07 3.730 17.60 0 0 3 3
## Merc 450SLC 15.2 8 275.8 180 3.07 3.780 18.00 0 0 3 3
D = mtcars # Make a copy
mutate(D,
fake = mpg + disp, # A meaningless column called "fake" added to the D data frame
mpg_cat = (mpg>20), # Add another column called "mpg_cat". The column indicates whether mpg > 20
log_disp = log(disp), # Add still another column called "log_disp": A log-transformation to disp
mpg = log(mpg) # Replace the mpg column by its log value
)
## mpg cyl disp hp drat wt qsec vs am gear carb
## Mazda RX4 3.044522 6 160.0 110 3.90 2.620 16.46 0 1 4 4
## Mazda RX4 Wag 3.044522 6 160.0 110 3.90 2.875 17.02 0 1 4 4
## Datsun 710 3.126761 4 108.0 93 3.85 2.320 18.61 1 1 4 1
## Hornet 4 Drive 3.063391 6 258.0 110 3.08 3.215 19.44 1 0 3 1
## Hornet Sportabout 2.928524 8 360.0 175 3.15 3.440 17.02 0 0 3 2
## Valiant 2.895912 6 225.0 105 2.76 3.460 20.22 1 0 3 1
## Duster 360 2.660260 8 360.0 245 3.21 3.570 15.84 0 0 3 4
## Merc 240D 3.194583 4 146.7 62 3.69 3.190 20.00 1 0 4 2
## Merc 230 3.126761 4 140.8 95 3.92 3.150 22.90 1 0 4 2
## Merc 280 2.954910 6 167.6 123 3.92 3.440 18.30 1 0 4 4
## Merc 280C 2.879198 6 167.6 123 3.92 3.440 18.90 1 0 4 4
## Merc 450SE 2.797281 8 275.8 180 3.07 4.070 17.40 0 0 3 3
## Merc 450SL 2.850707 8 275.8 180 3.07 3.730 17.60 0 0 3 3
## Merc 450SLC 2.721295 8 275.8 180 3.07 3.780 18.00 0 0 3 3
## Cadillac Fleetwood 2.341806 8 472.0 205 2.93 5.250 17.98 0 0 3 4
## Lincoln Continental 2.341806 8 460.0 215 3.00 5.424 17.82 0 0 3 4
## Chrysler Imperial 2.687847 8 440.0 230 3.23 5.345 17.42 0 0 3 4
## Fiat 128 3.478158 4 78.7 66 4.08 2.200 19.47 1 1 4 1
## Honda Civic 3.414443 4 75.7 52 4.93 1.615 18.52 1 1 4 2
## Toyota Corolla 3.523415 4 71.1 65 4.22 1.835 19.90 1 1 4 1
## Toyota Corona 3.068053 4 120.1 97 3.70 2.465 20.01 1 0 3 1
## Dodge Challenger 2.740840 8 318.0 150 2.76 3.520 16.87 0 0 3 2
## AMC Javelin 2.721295 8 304.0 150 3.15 3.435 17.30 0 0 3 2
## Camaro Z28 2.587764 8 350.0 245 3.73 3.840 15.41 0 0 3 4
## Pontiac Firebird 2.954910 8 400.0 175 3.08 3.845 17.05 0 0 3 2
## Fiat X1-9 3.306887 4 79.0 66 4.08 1.935 18.90 1 1 4 1
## Porsche 914-2 3.258097 4 120.3 91 4.43 2.140 16.70 0 1 5 2
## Lotus Europa 3.414443 4 95.1 113 3.77 1.513 16.90 1 1 5 2
## Ford Pantera L 2.760010 8 351.0 264 4.22 3.170 14.50 0 1 5 4
## Ferrari Dino 2.980619 6 145.0 175 3.62 2.770 15.50 0 1 5 6
## Maserati Bora 2.708050 8 301.0 335 3.54 3.570 14.60 0 1 5 8
## Volvo 142E 3.063391 4 121.0 109 4.11 2.780 18.60 1 1 4 2
## fake mpg_cat log_disp
## Mazda RX4 181.0 TRUE 5.075174
## Mazda RX4 Wag 181.0 TRUE 5.075174
## Datsun 710 130.8 TRUE 4.682131
## Hornet 4 Drive 279.4 TRUE 5.552960
## Hornet Sportabout 378.7 FALSE 5.886104
## Valiant 243.1 FALSE 5.416100
## Duster 360 374.3 FALSE 5.886104
## Merc 240D 171.1 TRUE 4.988390
## Merc 230 163.6 TRUE 4.947340
## Merc 280 186.8 FALSE 5.121580
## Merc 280C 185.4 FALSE 5.121580
## Merc 450SE 292.2 FALSE 5.619676
## Merc 450SL 293.1 FALSE 5.619676
## Merc 450SLC 291.0 FALSE 5.619676
## Cadillac Fleetwood 482.4 FALSE 6.156979
## Lincoln Continental 470.4 FALSE 6.131226
## Chrysler Imperial 454.7 FALSE 6.086775
## Fiat 128 111.1 TRUE 4.365643
## Honda Civic 106.1 TRUE 4.326778
## Toyota Corolla 105.0 TRUE 4.264087
## Toyota Corona 141.6 TRUE 4.788325
## Dodge Challenger 333.5 FALSE 5.762051
## AMC Javelin 319.2 FALSE 5.717028
## Camaro Z28 363.3 FALSE 5.857933
## Pontiac Firebird 419.2 FALSE 5.991465
## Fiat X1-9 106.3 TRUE 4.369448
## Porsche 914-2 146.3 TRUE 4.789989
## Lotus Europa 125.5 TRUE 4.554929
## Ford Pantera L 366.8 FALSE 5.860786
## Ferrari Dino 164.7 FALSE 4.976734
## Maserati Bora 316.0 FALSE 5.707110
## Volvo 142E 142.4 TRUE 4.795791
by_cyl <- mtcars %>% group_by(cyl)
# grouping doesn't change how the data looks (apart from listing how it's grouped):
by_cyl
## # A tibble: 32 x 11
## # Groups: cyl [3]
## mpg cyl disp hp drat wt qsec vs am gear carb
## <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl>
## 1 21 6 160 110 3.9 2.62 16.5 0 1 4 4
## 2 21 6 160 110 3.9 2.88 17.0 0 1 4 4
## 3 22.8 4 108 93 3.85 2.32 18.6 1 1 4 1
## 4 21.4 6 258 110 3.08 3.22 19.4 1 0 3 1
## 5 18.7 8 360 175 3.15 3.44 17.0 0 0 3 2
## 6 18.1 6 225 105 2.76 3.46 20.2 1 0 3 1
## 7 14.3 8 360 245 3.21 3.57 15.8 0 0 3 4
## 8 24.4 4 147. 62 3.69 3.19 20 1 0 4 2
## 9 22.8 4 141. 95 3.92 3.15 22.9 1 0 4 2
## 10 19.2 6 168. 123 3.92 3.44 18.3 1 0 4 4
## # … with 22 more rows
class(by_cyl)
## [1] "grouped_df" "tbl_df" "tbl" "data.frame"
class(mtcars)
## [1] "data.frame"
by_cyl <- mtcars %>% group_by(cyl)
# grouping doesn't change how the data looks (apart from listing how it's grouped):
by_cyl # Now, the mtcars data frame has been grouped and called by_cyl.
## # A tibble: 32 x 11
## # Groups: cyl [3]
## mpg cyl disp hp drat wt qsec vs am gear carb
## <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl>
## 1 21 6 160 110 3.9 2.62 16.5 0 1 4 4
## 2 21 6 160 110 3.9 2.88 17.0 0 1 4 4
## 3 22.8 4 108 93 3.85 2.32 18.6 1 1 4 1
## 4 21.4 6 258 110 3.08 3.22 19.4 1 0 3 1
## 5 18.7 8 360 175 3.15 3.44 17.0 0 0 3 2
## 6 18.1 6 225 105 2.76 3.46 20.2 1 0 3 1
## 7 14.3 8 360 245 3.21 3.57 15.8 0 0 3 4
## 8 24.4 4 147. 62 3.69 3.19 20 1 0 4 2
## 9 22.8 4 141. 95 3.92 3.15 22.9 1 0 4 2
## 10 19.2 6 168. 123 3.92 3.44 18.3 1 0 4 4
## # … with 22 more rows
by_cyl %>% summarise(
mpg_mean = mean(mpg), # Mean of disp for each cyl group
hp_mean = mean(hp) # Mean of hp for each cyl group
)
## # A tibble: 3 x 3
## cyl mpg_mean hp_mean
## <dbl> <dbl> <dbl>
## 1 4 26.7 82.6
## 2 6 19.7 122.
## 3 8 15.1 209.
by_cyl %>% summarise(freq = n()) # Frequency distribution of "cyl";
## # A tibble: 3 x 2
## cyl freq
## <dbl> <int>
## 1 4 11
## 2 6 7
## 3 8 14
# The resulting data frame has two columns: cyl and freq
This example will use the data frame “diamonds” from the ggplot2 package. The dataset contains the prices and other attributes of almost 54,000 diamonds. The variables are as follows:
price: price in US dollars ($326–$18,823)
carat: weight of the diamond (0.2–5.01)
cut: quality of the cut (Fair, Good, Very Good, Premium, Ideal)
color: diamond colour, from D (best) to J (worst)
clarity: a measurement of how clear the diamond is (I1 (worst), SI2, SI1, VS2, VS1, VVS2, VVS1, IF (best))
x: length in mm (0–10.74)
y: width in mm (0–58.9)
z: depth in mm (0–31.8)
depth: total depth percentage = z / mean(x, y) = 2 * z / (x + y) (43–79)
table: width of top of diamond relative to widest point (43–95)
Reference: https://stackoverflow.com/questions/19233365/how-to-create-a-marimekko-mosaic-plot-in-ggplot2
head(diamonds, n = 10)
## # A tibble: 10 x 10
## carat cut color clarity depth table price x y z
## <dbl> <ord> <ord> <ord> <dbl> <dbl> <int> <dbl> <dbl> <dbl>
## 1 0.23 Ideal E SI2 61.5 55 326 3.95 3.98 2.43
## 2 0.21 Premium E SI1 59.8 61 326 3.89 3.84 2.31
## 3 0.23 Good E VS1 56.9 65 327 4.05 4.07 2.31
## 4 0.29 Premium I VS2 62.4 58 334 4.2 4.23 2.63
## 5 0.31 Good J SI2 63.3 58 335 4.34 4.35 2.75
## 6 0.24 Very Good J VVS2 62.8 57 336 3.94 3.96 2.48
## 7 0.24 Very Good I VVS1 62.3 57 336 3.95 3.98 2.47
## 8 0.26 Very Good H SI1 61.9 55 337 4.07 4.11 2.53
## 9 0.22 Fair E VS2 65.1 61 337 3.87 3.78 2.49
## 10 0.23 Very Good H VS1 59.4 61 338 4 4.05 2.39
df <- diamonds %>%
group_by(cut, clarity) %>% ## Must do grouping first in order to do the following operations
summarise(count = n()) %>%
group_by(cut) %>% # If not specified, the following will still be done by default for each category of cut
mutate(cut.count = sum(count),
prop = count/sum(count)) %>%
ungroup() # Remove grouping after we have added the two new columns
## `summarise()` has grouped output by 'cut'. You can override using the `.groups` argument.
ggplot(df, aes(x = cut, y = prop, width = cut.count, fill = clarity)) +
geom_col(colour = "black") +
#geom_text(aes(label = scales::percent(prop)), position = position_stack(vjust = 0.5)) + # if labels are desired
facet_grid(.~cut, scales = "free_x", space = "free_x") +
scale_fill_brewer(palette = "RdYlGn") +
theme_void()
The function “gather” from tidyr package is fabulous for reshaping data from columns to rows (wide to long). It is an alternative to the function “melt” from package “reshape2”. You use gather() when you notice that you have columns that are not variables.
The function “spread” from “tidyr” spreads out a single column into multiple columns, so it’s good to use it to summarize standard data as a contingency table.
library(tidyr)
D=data.frame(Gender=c("Male", "Female"), R=c(20, 30), D=c(23, 32), I=c(34, 45))
D # Looks like a two-way table
## Gender R D I
## 1 Male 20 23 34
## 2 Female 30 32 45
# The following are two ways of converting data from wide format to long format
x1=D %>% gather(key = Party, value = Count, c(R,D,I)) # the gather() function is from package tidyr
x2=D %>% gather(key = Party, value = Count, -Gender) # Alternatively: "-" means exclusion
x1
## Gender Party Count
## 1 Male R 20
## 2 Female R 30
## 3 Male D 23
## 4 Female D 32
## 5 Male I 34
## 6 Female I 45
x2
## Gender Party Count
## 1 Male R 20
## 2 Female R 30
## 3 Male D 23
## 4 Female D 32
## 5 Male I 34
## 6 Female I 45
# The two data frames x1 and x2 are the same and are in the standard format (long format) that R can easily understand.
library(reshape2)
##
## Attaching package: 'reshape2'
## The following object is masked from 'package:tidyr':
##
## smiths
y=D %>% melt(id.vars=c("Gender"), variable.name = "Party", value.name = "Count") # the melt() function is from package reshape2
y # The same as x1 and x2; that is, we can melt a two-way table to produce a standard table.
## Gender Party Count
## 1 Male R 20
## 2 Female R 30
## 3 Male D 23
## 4 Female D 32
## 5 Male I 34
## 6 Female I 45
z=x1 %>% spread(key=Gender, value=Count) ## Gender on columns
z
## Party Female Male
## 1 D 32 23
## 2 I 45 34
## 3 R 30 20
w=x1 %>% spread(key=Party, value=Count) ## Party on columns
w
## Gender D I R
## 1 Female 32 45 30
## 2 Male 23 34 20
u = xtabs(Count~Gender+Party, y) # Another way
u
## Party
## Gender R D I
## Female 30 32 45
## Male 20 23 34
# To have a particular order you want for your two-way table,
# you need to make character variables factors. Here is how:
y$Party=factor(y$Party, levels = c("D", "I", "R")) # Set the levels of Party in the D-I-R order
y$Gender=factor(y$Gender, levels = c("Male", "Female")) # Set the levels of Gender in Male-Female order
xtabs(Count~Gender+Party, y)
## Party
## Gender D I R
## Male 23 34 20
## Female 32 45 30
# The following are two more examples of data in wide format or long format. You may wish to play with them.
who ## In wide format; you can type ?who on the console to study the details of the data
## # A tibble: 7,240 x 60
## country iso2 iso3 year new_sp_m014 new_sp_m1524 new_sp_m2534 new_sp_m3544
## <chr> <chr> <chr> <int> <int> <int> <int> <int>
## 1 Afghani… AF AFG 1980 NA NA NA NA
## 2 Afghani… AF AFG 1981 NA NA NA NA
## 3 Afghani… AF AFG 1982 NA NA NA NA
## 4 Afghani… AF AFG 1983 NA NA NA NA
## 5 Afghani… AF AFG 1984 NA NA NA NA
## 6 Afghani… AF AFG 1985 NA NA NA NA
## 7 Afghani… AF AFG 1986 NA NA NA NA
## 8 Afghani… AF AFG 1987 NA NA NA NA
## 9 Afghani… AF AFG 1988 NA NA NA NA
## 10 Afghani… AF AFG 1989 NA NA NA NA
## # … with 7,230 more rows, and 52 more variables: new_sp_m4554 <int>,
## # new_sp_m5564 <int>, new_sp_m65 <int>, new_sp_f014 <int>,
## # new_sp_f1524 <int>, new_sp_f2534 <int>, new_sp_f3544 <int>,
## # new_sp_f4554 <int>, new_sp_f5564 <int>, new_sp_f65 <int>,
## # new_sn_m014 <int>, new_sn_m1524 <int>, new_sn_m2534 <int>,
## # new_sn_m3544 <int>, new_sn_m4554 <int>, new_sn_m5564 <int>,
## # new_sn_m65 <int>, new_sn_f014 <int>, new_sn_f1524 <int>,
## # new_sn_f2534 <int>, new_sn_f3544 <int>, new_sn_f4554 <int>,
## # new_sn_f5564 <int>, new_sn_f65 <int>, new_ep_m014 <int>,
## # new_ep_m1524 <int>, new_ep_m2534 <int>, new_ep_m3544 <int>,
## # new_ep_m4554 <int>, new_ep_m5564 <int>, new_ep_m65 <int>,
## # new_ep_f014 <int>, new_ep_f1524 <int>, new_ep_f2534 <int>,
## # new_ep_f3544 <int>, new_ep_f4554 <int>, new_ep_f5564 <int>,
## # new_ep_f65 <int>, newrel_m014 <int>, newrel_m1524 <int>,
## # newrel_m2534 <int>, newrel_m3544 <int>, newrel_m4554 <int>,
## # newrel_m5564 <int>, newrel_m65 <int>, newrel_f014 <int>,
## # newrel_f1524 <int>, newrel_f2534 <int>, newrel_f3544 <int>,
## # newrel_f4554 <int>, newrel_f5564 <int>, newrel_f65 <int>
# For simplicity, we only consider the first 10 columns
y = who[, 1:10] %>% melt(id.vars=c("country", "iso2", "iso3", "year"), variable.names=c(new_sp_m014, new_sp_m1524, new_sp_m2534, new_sp_m3544, new_sp_m4554, new_sp_m5564))
y
## country iso2 iso3 year
## 1 Afghanistan AF AFG 1980
## 2 Afghanistan AF AFG 1981
## 3 Afghanistan AF AFG 1982
## 4 Afghanistan AF AFG 1983
## 5 Afghanistan AF AFG 1984
## 6 Afghanistan AF AFG 1985
## 7 Afghanistan AF AFG 1986
## 8 Afghanistan AF AFG 1987
## 9 Afghanistan AF AFG 1988
## 10 Afghanistan AF AFG 1989
## 11 Afghanistan AF AFG 1990
## 12 Afghanistan AF AFG 1991
## 13 Afghanistan AF AFG 1992
## 14 Afghanistan AF AFG 1993
## 15 Afghanistan AF AFG 1994
## 16 Afghanistan AF AFG 1995
## 17 Afghanistan AF AFG 1996
## 18 Afghanistan AF AFG 1997
## 19 Afghanistan AF AFG 1998
## 20 Afghanistan AF AFG 1999
## 21 Afghanistan AF AFG 2000
## 22 Afghanistan AF AFG 2001
## 23 Afghanistan AF AFG 2002
## 24 Afghanistan AF AFG 2003
## 25 Afghanistan AF AFG 2004
## 26 Afghanistan AF AFG 2005
## 27 Afghanistan AF AFG 2006
## 28 Afghanistan AF AFG 2007
## 29 Afghanistan AF AFG 2008
## 30 Afghanistan AF AFG 2009
## 31 Afghanistan AF AFG 2010
## 32 Afghanistan AF AFG 2011
## 33 Afghanistan AF AFG 2012
## 34 Afghanistan AF AFG 2013
## 35 Albania AL ALB 1980
## 36 Albania AL ALB 1981
## 37 Albania AL ALB 1982
## 38 Albania AL ALB 1983
## 39 Albania AL ALB 1984
## 40 Albania AL ALB 1985
## 41 Albania AL ALB 1986
## 42 Albania AL ALB 1987
## 43 Albania AL ALB 1988
## 44 Albania AL ALB 1989
## 45 Albania AL ALB 1990
## 46 Albania AL ALB 1991
## 47 Albania AL ALB 1992
## 48 Albania AL ALB 1993
## 49 Albania AL ALB 1994
## 50 Albania AL ALB 1995
## 51 Albania AL ALB 1996
## 52 Albania AL ALB 1997
## 53 Albania AL ALB 1998
## 54 Albania AL ALB 1999
## 55 Albania AL ALB 2000
## 56 Albania AL ALB 2001
## 57 Albania AL ALB 2002
## 58 Albania AL ALB 2003
## 59 Albania AL ALB 2004
## 60 Albania AL ALB 2005
## 61 Albania AL ALB 2006
## 62 Albania AL ALB 2007
## 63 Albania AL ALB 2008
## 64 Albania AL ALB 2009
## 65 Albania AL ALB 2010
## 66 Albania AL ALB 2011
## 67 Albania AL ALB 2012
## 68 Albania AL ALB 2013
## 69 Algeria DZ DZA 1980
## 70 Algeria DZ DZA 1981
## 71 Algeria DZ DZA 1982
## 72 Algeria DZ DZA 1983
## 73 Algeria DZ DZA 1984
## 74 Algeria DZ DZA 1985
## 75 Algeria DZ DZA 1986
## 76 Algeria DZ DZA 1987
## 77 Algeria DZ DZA 1988
## 78 Algeria DZ DZA 1989
## 79 Algeria DZ DZA 1990
## 80 Algeria DZ DZA 1991
## 81 Algeria DZ DZA 1992
## 82 Algeria DZ DZA 1993
## 83 Algeria DZ DZA 1994
## 84 Algeria DZ DZA 1995
## 85 Algeria DZ DZA 1996
## 86 Algeria DZ DZA 1997
## 87 Algeria DZ DZA 1998
## 88 Algeria DZ DZA 1999
## 89 Algeria DZ DZA 2000
## 90 Algeria DZ DZA 2001
## 91 Algeria DZ DZA 2002
## 92 Algeria DZ DZA 2003
## 93 Algeria DZ DZA 2004
## 94 Algeria DZ DZA 2005
## 95 Algeria DZ DZA 2006
## 96 Algeria DZ DZA 2007
## 97 Algeria DZ DZA 2008
## 98 Algeria DZ DZA 2009
## 99 Algeria DZ DZA 2010
## 100 Algeria DZ DZA 2011
## 101 Algeria DZ DZA 2012
## 102 Algeria DZ DZA 2013
## 103 American Samoa AS ASM 1980
## 104 American Samoa AS ASM 1981
## 105 American Samoa AS ASM 1982
## 106 American Samoa AS ASM 1983
## 107 American Samoa AS ASM 1984
## 108 American Samoa AS ASM 1985
## 109 American Samoa AS ASM 1986
## 110 American Samoa AS ASM 1987
## 111 American Samoa AS ASM 1988
## 112 American Samoa AS ASM 1989
## 113 American Samoa AS ASM 1990
## 114 American Samoa AS ASM 1991
## 115 American Samoa AS ASM 1992
## 116 American Samoa AS ASM 1993
## 117 American Samoa AS ASM 1994
## 118 American Samoa AS ASM 1995
## 119 American Samoa AS ASM 1996
## 120 American Samoa AS ASM 1997
## 121 American Samoa AS ASM 1998
## 122 American Samoa AS ASM 1999
## 123 American Samoa AS ASM 2000
## 124 American Samoa AS ASM 2001
## 125 American Samoa AS ASM 2002
## 126 American Samoa AS ASM 2003
## 127 American Samoa AS ASM 2004
## 128 American Samoa AS ASM 2005
## 129 American Samoa AS ASM 2006
## 130 American Samoa AS ASM 2007
## 131 American Samoa AS ASM 2008
## 132 American Samoa AS ASM 2009
## 133 American Samoa AS ASM 2010
## 134 American Samoa AS ASM 2011
## 135 American Samoa AS ASM 2012
## 136 American Samoa AS ASM 2013
## 137 Andorra AD AND 1980
## 138 Andorra AD AND 1981
## 139 Andorra AD AND 1982
## 140 Andorra AD AND 1983
## 141 Andorra AD AND 1984
## 142 Andorra AD AND 1985
## 143 Andorra AD AND 1986
## 144 Andorra AD AND 1987
## 145 Andorra AD AND 1988
## 146 Andorra AD AND 1989
## 147 Andorra AD AND 1990
## 148 Andorra AD AND 1991
## 149 Andorra AD AND 1992
## 150 Andorra AD AND 1993
## 151 Andorra AD AND 1994
## 152 Andorra AD AND 1995
## 153 Andorra AD AND 1996
## 154 Andorra AD AND 1997
## 155 Andorra AD AND 1998
## 156 Andorra AD AND 1999
## 157 Andorra AD AND 2000
## 158 Andorra AD AND 2001
## 159 Andorra AD AND 2002
## 160 Andorra AD AND 2003
## 161 Andorra AD AND 2004
## 162 Andorra AD AND 2005
## 163 Andorra AD AND 2006
## 164 Andorra AD AND 2007
## 165 Andorra AD AND 2008
## 166 Andorra AD AND 2009
## 167 Andorra AD AND 2010
## 168 Andorra AD AND 2011
## 169 Andorra AD AND 2012
## 170 Andorra AD AND 2013
## 171 Angola AO AGO 1980
## 172 Angola AO AGO 1981
## 173 Angola AO AGO 1982
## 174 Angola AO AGO 1983
## 175 Angola AO AGO 1984
## 176 Angola AO AGO 1985
## 177 Angola AO AGO 1986
## 178 Angola AO AGO 1987
## 179 Angola AO AGO 1988
## 180 Angola AO AGO 1989
## 181 Angola AO AGO 1990
## 182 Angola AO AGO 1991
## 183 Angola AO AGO 1992
## 184 Angola AO AGO 1993
## 185 Angola AO AGO 1994
## 186 Angola AO AGO 1995
## 187 Angola AO AGO 1996
## 188 Angola AO AGO 1997
## 189 Angola AO AGO 1998
## 190 Angola AO AGO 1999
## 191 Angola AO AGO 2000
## 192 Angola AO AGO 2001
## 193 Angola AO AGO 2002
## 194 Angola AO AGO 2003
## 195 Angola AO AGO 2004
## 196 Angola AO AGO 2005
## 197 Angola AO AGO 2006
## 198 Angola AO AGO 2007
## 199 Angola AO AGO 2008
## 200 Angola AO AGO 2009
## 201 Angola AO AGO 2010
## 202 Angola AO AGO 2011
## 203 Angola AO AGO 2012
## 204 Angola AO AGO 2013
## 205 Anguilla AI AIA 1980
## 206 Anguilla AI AIA 1981
## 207 Anguilla AI AIA 1982
## 208 Anguilla AI AIA 1983
## 209 Anguilla AI AIA 1984
## 210 Anguilla AI AIA 1985
## 211 Anguilla AI AIA 1986
## 212 Anguilla AI AIA 1987
## 213 Anguilla AI AIA 1988
## 214 Anguilla AI AIA 1989
## 215 Anguilla AI AIA 1990
## 216 Anguilla AI AIA 1991
## 217 Anguilla AI AIA 1992
## 218 Anguilla AI AIA 1993
## 219 Anguilla AI AIA 1994
## 220 Anguilla AI AIA 1995
## 221 Anguilla AI AIA 1996
## 222 Anguilla AI AIA 1997
## 223 Anguilla AI AIA 1998
## 224 Anguilla AI AIA 1999
## 225 Anguilla AI AIA 2000
## 226 Anguilla AI AIA 2001
## 227 Anguilla AI AIA 2002
## 228 Anguilla AI AIA 2003
## 229 Anguilla AI AIA 2004
## 230 Anguilla AI AIA 2005
## 231 Anguilla AI AIA 2006
## 232 Anguilla AI AIA 2007
## 233 Anguilla AI AIA 2008
## 234 Anguilla AI AIA 2009
## 235 Anguilla AI AIA 2010
## 236 Anguilla AI AIA 2011
## 237 Anguilla AI AIA 2012
## 238 Anguilla AI AIA 2013
## 239 Antigua and Barbuda AG ATG 1980
## 240 Antigua and Barbuda AG ATG 1981
## 241 Antigua and Barbuda AG ATG 1982
## 242 Antigua and Barbuda AG ATG 1983
## 243 Antigua and Barbuda AG ATG 1984
## 244 Antigua and Barbuda AG ATG 1985
## 245 Antigua and Barbuda AG ATG 1986
## 246 Antigua and Barbuda AG ATG 1987
## 247 Antigua and Barbuda AG ATG 1988
## 248 Antigua and Barbuda AG ATG 1989
## 249 Antigua and Barbuda AG ATG 1990
## 250 Antigua and Barbuda AG ATG 1991
## 251 Antigua and Barbuda AG ATG 1992
## 252 Antigua and Barbuda AG ATG 1993
## 253 Antigua and Barbuda AG ATG 1994
## 254 Antigua and Barbuda AG ATG 1995
## 255 Antigua and Barbuda AG ATG 1996
## 256 Antigua and Barbuda AG ATG 1997
## 257 Antigua and Barbuda AG ATG 1998
## 258 Antigua and Barbuda AG ATG 1999
## 259 Antigua and Barbuda AG ATG 2000
## 260 Antigua and Barbuda AG ATG 2001
## 261 Antigua and Barbuda AG ATG 2002
## 262 Antigua and Barbuda AG ATG 2003
## 263 Antigua and Barbuda AG ATG 2004
## 264 Antigua and Barbuda AG ATG 2005
## 265 Antigua and Barbuda AG ATG 2006
## 266 Antigua and Barbuda AG ATG 2007
## 267 Antigua and Barbuda AG ATG 2008
## 268 Antigua and Barbuda AG ATG 2009
## 269 Antigua and Barbuda AG ATG 2010
## 270 Antigua and Barbuda AG ATG 2011
## 271 Antigua and Barbuda AG ATG 2012
## 272 Antigua and Barbuda AG ATG 2013
## 273 Argentina AR ARG 1980
## 274 Argentina AR ARG 1981
## 275 Argentina AR ARG 1982
## 276 Argentina AR ARG 1983
## 277 Argentina AR ARG 1984
## 278 Argentina AR ARG 1985
## 279 Argentina AR ARG 1986
## 280 Argentina AR ARG 1987
## 281 Argentina AR ARG 1988
## 282 Argentina AR ARG 1989
## 283 Argentina AR ARG 1990
## 284 Argentina AR ARG 1991
## 285 Argentina AR ARG 1992
## 286 Argentina AR ARG 1993
## 287 Argentina AR ARG 1994
## 288 Argentina AR ARG 1995
## 289 Argentina AR ARG 1996
## 290 Argentina AR ARG 1997
## 291 Argentina AR ARG 1998
## 292 Argentina AR ARG 1999
## 293 Argentina AR ARG 2000
## 294 Argentina AR ARG 2001
## 295 Argentina AR ARG 2002
## 296 Argentina AR ARG 2003
## 297 Argentina AR ARG 2004
## 298 Argentina AR ARG 2005
## 299 Argentina AR ARG 2006
## 300 Argentina AR ARG 2007
## 301 Argentina AR ARG 2008
## 302 Argentina AR ARG 2009
## 303 Argentina AR ARG 2010
## 304 Argentina AR ARG 2011
## 305 Argentina AR ARG 2012
## 306 Argentina AR ARG 2013
## 307 Armenia AM ARM 1980
## 308 Armenia AM ARM 1981
## 309 Armenia AM ARM 1982
## 310 Armenia AM ARM 1983
## 311 Armenia AM ARM 1984
## 312 Armenia AM ARM 1985
## 313 Armenia AM ARM 1986
## 314 Armenia AM ARM 1987
## 315 Armenia AM ARM 1988
## 316 Armenia AM ARM 1989
## 317 Armenia AM ARM 1990
## 318 Armenia AM ARM 1991
## 319 Armenia AM ARM 1992
## 320 Armenia AM ARM 1993
## 321 Armenia AM ARM 1994
## 322 Armenia AM ARM 1995
## 323 Armenia AM ARM 1996
## 324 Armenia AM ARM 1997
## 325 Armenia AM ARM 1998
## 326 Armenia AM ARM 1999
## 327 Armenia AM ARM 2000
## 328 Armenia AM ARM 2001
## 329 Armenia AM ARM 2002
## 330 Armenia AM ARM 2003
## 331 Armenia AM ARM 2004
## 332 Armenia AM ARM 2005
## 333 Armenia AM ARM 2006
## 334 Armenia AM ARM 2007
## 335 Armenia AM ARM 2008
## 336 Armenia AM ARM 2009
## 337 Armenia AM ARM 2010
## 338 Armenia AM ARM 2011
## 339 Armenia AM ARM 2012
## 340 Armenia AM ARM 2013
## 341 Aruba AW ABW 1980
## 342 Aruba AW ABW 1981
## 343 Aruba AW ABW 1982
## 344 Aruba AW ABW 1983
## 345 Aruba AW ABW 1984
## 346 Aruba AW ABW 1985
## 347 Aruba AW ABW 1986
## 348 Aruba AW ABW 1987
## 349 Aruba AW ABW 1988
## 350 Aruba AW ABW 1989
## 351 Aruba AW ABW 1990
## 352 Aruba AW ABW 1991
## 353 Aruba AW ABW 1992
## 354 Aruba AW ABW 1993
## 355 Aruba AW ABW 1994
## 356 Aruba AW ABW 1995
## 357 Aruba AW ABW 1996
## 358 Aruba AW ABW 1997
## 359 Aruba AW ABW 1998
## 360 Aruba AW ABW 1999
## 361 Aruba AW ABW 2000
## 362 Aruba AW ABW 2001
## 363 Aruba AW ABW 2002
## 364 Aruba AW ABW 2003
## 365 Aruba AW ABW 2004
## 366 Aruba AW ABW 2005
## 367 Aruba AW ABW 2006
## 368 Aruba AW ABW 2007
## 369 Aruba AW ABW 2008
## 370 Aruba AW ABW 2009
## 371 Aruba AW ABW 2010
## 372 Aruba AW ABW 2011
## 373 Aruba AW ABW 2012
## 374 Aruba AW ABW 2013
## 375 Australia AU AUS 1980
## 376 Australia AU AUS 1981
## 377 Australia AU AUS 1982
## 378 Australia AU AUS 1983
## 379 Australia AU AUS 1984
## 380 Australia AU AUS 1985
## 381 Australia AU AUS 1986
## 382 Australia AU AUS 1987
## 383 Australia AU AUS 1988
## 384 Australia AU AUS 1989
## 385 Australia AU AUS 1990
## 386 Australia AU AUS 1991
## 387 Australia AU AUS 1992
## 388 Australia AU AUS 1993
## 389 Australia AU AUS 1994
## 390 Australia AU AUS 1995
## 391 Australia AU AUS 1996
## 392 Australia AU AUS 1997
## 393 Australia AU AUS 1998
## 394 Australia AU AUS 1999
## 395 Australia AU AUS 2000
## 396 Australia AU AUS 2001
## 397 Australia AU AUS 2002
## 398 Australia AU AUS 2003
## 399 Australia AU AUS 2004
## 400 Australia AU AUS 2005
## 401 Australia AU AUS 2006
## 402 Australia AU AUS 2007
## 403 Australia AU AUS 2008
## 404 Australia AU AUS 2009
## 405 Australia AU AUS 2010
## 406 Australia AU AUS 2011
## 407 Australia AU AUS 2012
## 408 Australia AU AUS 2013
## 409 Austria AT AUT 1980
## 410 Austria AT AUT 1981
## 411 Austria AT AUT 1982
## 412 Austria AT AUT 1983
## 413 Austria AT AUT 1984
## 414 Austria AT AUT 1985
## 415 Austria AT AUT 1986
## 416 Austria AT AUT 1987
## 417 Austria AT AUT 1988
## 418 Austria AT AUT 1989
## 419 Austria AT AUT 1990
## 420 Austria AT AUT 1991
## 421 Austria AT AUT 1992
## 422 Austria AT AUT 1993
## 423 Austria AT AUT 1994
## 424 Austria AT AUT 1995
## 425 Austria AT AUT 1996
## 426 Austria AT AUT 1997
## 427 Austria AT AUT 1998
## 428 Austria AT AUT 1999
## 429 Austria AT AUT 2000
## 430 Austria AT AUT 2001
## 431 Austria AT AUT 2002
## 432 Austria AT AUT 2003
## 433 Austria AT AUT 2004
## 434 Austria AT AUT 2005
## 435 Austria AT AUT 2006
## 436 Austria AT AUT 2007
## 437 Austria AT AUT 2008
## 438 Austria AT AUT 2009
## 439 Austria AT AUT 2010
## 440 Austria AT AUT 2011
## 441 Austria AT AUT 2012
## 442 Austria AT AUT 2013
## 443 Azerbaijan AZ AZE 1980
## 444 Azerbaijan AZ AZE 1981
## 445 Azerbaijan AZ AZE 1982
## 446 Azerbaijan AZ AZE 1983
## 447 Azerbaijan AZ AZE 1984
## 448 Azerbaijan AZ AZE 1985
## 449 Azerbaijan AZ AZE 1986
## 450 Azerbaijan AZ AZE 1987
## 451 Azerbaijan AZ AZE 1988
## 452 Azerbaijan AZ AZE 1989
## 453 Azerbaijan AZ AZE 1990
## 454 Azerbaijan AZ AZE 1991
## 455 Azerbaijan AZ AZE 1992
## 456 Azerbaijan AZ AZE 1993
## 457 Azerbaijan AZ AZE 1994
## 458 Azerbaijan AZ AZE 1995
## 459 Azerbaijan AZ AZE 1996
## 460 Azerbaijan AZ AZE 1997
## 461 Azerbaijan AZ AZE 1998
## 462 Azerbaijan AZ AZE 1999
## 463 Azerbaijan AZ AZE 2000
## 464 Azerbaijan AZ AZE 2001
## 465 Azerbaijan AZ AZE 2002
## 466 Azerbaijan AZ AZE 2003
## 467 Azerbaijan AZ AZE 2004
## 468 Azerbaijan AZ AZE 2005
## 469 Azerbaijan AZ AZE 2006
## 470 Azerbaijan AZ AZE 2007
## 471 Azerbaijan AZ AZE 2008
## 472 Azerbaijan AZ AZE 2009
## 473 Azerbaijan AZ AZE 2010
## 474 Azerbaijan AZ AZE 2011
## 475 Azerbaijan AZ AZE 2012
## 476 Azerbaijan AZ AZE 2013
## 477 Bahamas BS BHS 1980
## 478 Bahamas BS BHS 1981
## 479 Bahamas BS BHS 1982
## 480 Bahamas BS BHS 1983
## 481 Bahamas BS BHS 1984
## 482 Bahamas BS BHS 1985
## 483 Bahamas BS BHS 1986
## 484 Bahamas BS BHS 1987
## 485 Bahamas BS BHS 1988
## 486 Bahamas BS BHS 1989
## 487 Bahamas BS BHS 1990
## 488 Bahamas BS BHS 1991
## 489 Bahamas BS BHS 1992
## 490 Bahamas BS BHS 1993
## 491 Bahamas BS BHS 1994
## 492 Bahamas BS BHS 1995
## 493 Bahamas BS BHS 1996
## 494 Bahamas BS BHS 1997
## 495 Bahamas BS BHS 1998
## 496 Bahamas BS BHS 1999
## 497 Bahamas BS BHS 2000
## 498 Bahamas BS BHS 2001
## 499 Bahamas BS BHS 2002
## 500 Bahamas BS BHS 2003
## 501 Bahamas BS BHS 2004
## 502 Bahamas BS BHS 2005
## 503 Bahamas BS BHS 2006
## 504 Bahamas BS BHS 2007
## 505 Bahamas BS BHS 2008
## 506 Bahamas BS BHS 2009
## 507 Bahamas BS BHS 2010
## 508 Bahamas BS BHS 2011
## 509 Bahamas BS BHS 2012
## 510 Bahamas BS BHS 2013
## 511 Bahrain BH BHR 1980
## 512 Bahrain BH BHR 1981
## 513 Bahrain BH BHR 1982
## 514 Bahrain BH BHR 1983
## 515 Bahrain BH BHR 1984
## 516 Bahrain BH BHR 1985
## 517 Bahrain BH BHR 1986
## 518 Bahrain BH BHR 1987
## 519 Bahrain BH BHR 1988
## 520 Bahrain BH BHR 1989
## 521 Bahrain BH BHR 1990
## 522 Bahrain BH BHR 1991
## 523 Bahrain BH BHR 1992
## 524 Bahrain BH BHR 1993
## 525 Bahrain BH BHR 1994
## 526 Bahrain BH BHR 1995
## 527 Bahrain BH BHR 1996
## 528 Bahrain BH BHR 1997
## 529 Bahrain BH BHR 1998
## 530 Bahrain BH BHR 1999
## 531 Bahrain BH BHR 2000
## 532 Bahrain BH BHR 2001
## 533 Bahrain BH BHR 2002
## 534 Bahrain BH BHR 2003
## 535 Bahrain BH BHR 2004
## 536 Bahrain BH BHR 2005
## 537 Bahrain BH BHR 2006
## 538 Bahrain BH BHR 2007
## 539 Bahrain BH BHR 2008
## 540 Bahrain BH BHR 2009
## 541 Bahrain BH BHR 2010
## 542 Bahrain BH BHR 2011
## 543 Bahrain BH BHR 2012
## 544 Bahrain BH BHR 2013
## 545 Bangladesh BD BGD 1980
## 546 Bangladesh BD BGD 1981
## 547 Bangladesh BD BGD 1982
## 548 Bangladesh BD BGD 1983
## 549 Bangladesh BD BGD 1984
## 550 Bangladesh BD BGD 1985
## 551 Bangladesh BD BGD 1986
## 552 Bangladesh BD BGD 1987
## 553 Bangladesh BD BGD 1988
## 554 Bangladesh BD BGD 1989
## 555 Bangladesh BD BGD 1990
## 556 Bangladesh BD BGD 1991
## 557 Bangladesh BD BGD 1992
## 558 Bangladesh BD BGD 1993
## 559 Bangladesh BD BGD 1994
## 560 Bangladesh BD BGD 1995
## 561 Bangladesh BD BGD 1996
## 562 Bangladesh BD BGD 1997
## 563 Bangladesh BD BGD 1998
## 564 Bangladesh BD BGD 1999
## 565 Bangladesh BD BGD 2000
## 566 Bangladesh BD BGD 2001
## 567 Bangladesh BD BGD 2002
## 568 Bangladesh BD BGD 2003
## 569 Bangladesh BD BGD 2004
## 570 Bangladesh BD BGD 2005
## 571 Bangladesh BD BGD 2006
## 572 Bangladesh BD BGD 2007
## 573 Bangladesh BD BGD 2008
## 574 Bangladesh BD BGD 2009
## 575 Bangladesh BD BGD 2010
## 576 Bangladesh BD BGD 2011
## 577 Bangladesh BD BGD 2012
## 578 Bangladesh BD BGD 2013
## 579 Barbados BB BRB 1980
## 580 Barbados BB BRB 1981
## 581 Barbados BB BRB 1982
## 582 Barbados BB BRB 1983
## 583 Barbados BB BRB 1984
## 584 Barbados BB BRB 1985
## 585 Barbados BB BRB 1986
## 586 Barbados BB BRB 1987
## 587 Barbados BB BRB 1988
## 588 Barbados BB BRB 1989
## 589 Barbados BB BRB 1990
## 590 Barbados BB BRB 1991
## 591 Barbados BB BRB 1992
## 592 Barbados BB BRB 1993
## 593 Barbados BB BRB 1994
## 594 Barbados BB BRB 1995
## 595 Barbados BB BRB 1996
## 596 Barbados BB BRB 1997
## 597 Barbados BB BRB 1998
## 598 Barbados BB BRB 1999
## 599 Barbados BB BRB 2000
## 600 Barbados BB BRB 2001
## 601 Barbados BB BRB 2002
## 602 Barbados BB BRB 2003
## 603 Barbados BB BRB 2004
## 604 Barbados BB BRB 2005
## 605 Barbados BB BRB 2006
## 606 Barbados BB BRB 2007
## 607 Barbados BB BRB 2008
## 608 Barbados BB BRB 2009
## 609 Barbados BB BRB 2010
## 610 Barbados BB BRB 2011
## 611 Barbados BB BRB 2012
## 612 Barbados BB BRB 2013
## 613 Belarus BY BLR 1980
## 614 Belarus BY BLR 1981
## 615 Belarus BY BLR 1982
## 616 Belarus BY BLR 1983
## 617 Belarus BY BLR 1984
## 618 Belarus BY BLR 1985
## 619 Belarus BY BLR 1986
## 620 Belarus BY BLR 1987
## 621 Belarus BY BLR 1988
## 622 Belarus BY BLR 1989
## 623 Belarus BY BLR 1990
## 624 Belarus BY BLR 1991
## 625 Belarus BY BLR 1992
## 626 Belarus BY BLR 1993
## 627 Belarus BY BLR 1994
## 628 Belarus BY BLR 1995
## 629 Belarus BY BLR 1996
## 630 Belarus BY BLR 1997
## 631 Belarus BY BLR 1998
## 632 Belarus BY BLR 1999
## 633 Belarus BY BLR 2000
## 634 Belarus BY BLR 2001
## 635 Belarus BY BLR 2002
## 636 Belarus BY BLR 2003
## 637 Belarus BY BLR 2004
## 638 Belarus BY BLR 2005
## 639 Belarus BY BLR 2006
## 640 Belarus BY BLR 2007
## 641 Belarus BY BLR 2008
## 642 Belarus BY BLR 2009
## 643 Belarus BY BLR 2010
## 644 Belarus BY BLR 2011
## 645 Belarus BY BLR 2012
## 646 Belarus BY BLR 2013
## 647 Belgium BE BEL 1980
## 648 Belgium BE BEL 1981
## 649 Belgium BE BEL 1982
## 650 Belgium BE BEL 1983
## 651 Belgium BE BEL 1984
## 652 Belgium BE BEL 1985
## 653 Belgium BE BEL 1986
## 654 Belgium BE BEL 1987
## 655 Belgium BE BEL 1988
## 656 Belgium BE BEL 1989
## 657 Belgium BE BEL 1990
## 658 Belgium BE BEL 1991
## 659 Belgium BE BEL 1992
## 660 Belgium BE BEL 1993
## 661 Belgium BE BEL 1994
## 662 Belgium BE BEL 1995
## 663 Belgium BE BEL 1996
## 664 Belgium BE BEL 1997
## 665 Belgium BE BEL 1998
## 666 Belgium BE BEL 1999
## 667 Belgium BE BEL 2000
## 668 Belgium BE BEL 2001
## 669 Belgium BE BEL 2002
## 670 Belgium BE BEL 2003
## 671 Belgium BE BEL 2004
## 672 Belgium BE BEL 2005
## 673 Belgium BE BEL 2006
## 674 Belgium BE BEL 2007
## 675 Belgium BE BEL 2008
## 676 Belgium BE BEL 2009
## 677 Belgium BE BEL 2010
## 678 Belgium BE BEL 2011
## 679 Belgium BE BEL 2012
## 680 Belgium BE BEL 2013
## 681 Belize BZ BLZ 1980
## 682 Belize BZ BLZ 1981
## 683 Belize BZ BLZ 1982
## 684 Belize BZ BLZ 1983
## 685 Belize BZ BLZ 1984
## 686 Belize BZ BLZ 1985
## 687 Belize BZ BLZ 1986
## 688 Belize BZ BLZ 1987
## 689 Belize BZ BLZ 1988
## 690 Belize BZ BLZ 1989
## 691 Belize BZ BLZ 1990
## 692 Belize BZ BLZ 1991
## 693 Belize BZ BLZ 1992
## 694 Belize BZ BLZ 1993
## 695 Belize BZ BLZ 1994
## 696 Belize BZ BLZ 1995
## 697 Belize BZ BLZ 1996
## 698 Belize BZ BLZ 1997
## 699 Belize BZ BLZ 1998
## 700 Belize BZ BLZ 1999
## 701 Belize BZ BLZ 2000
## 702 Belize BZ BLZ 2001
## 703 Belize BZ BLZ 2002
## 704 Belize BZ BLZ 2003
## 705 Belize BZ BLZ 2004
## 706 Belize BZ BLZ 2005
## 707 Belize BZ BLZ 2006
## 708 Belize BZ BLZ 2007
## 709 Belize BZ BLZ 2008
## 710 Belize BZ BLZ 2009
## 711 Belize BZ BLZ 2010
## 712 Belize BZ BLZ 2011
## 713 Belize BZ BLZ 2012
## 714 Belize BZ BLZ 2013
## 715 Benin BJ BEN 1980
## 716 Benin BJ BEN 1981
## 717 Benin BJ BEN 1982
## 718 Benin BJ BEN 1983
## 719 Benin BJ BEN 1984
## 720 Benin BJ BEN 1985
## 721 Benin BJ BEN 1986
## 722 Benin BJ BEN 1987
## 723 Benin BJ BEN 1988
## 724 Benin BJ BEN 1989
## 725 Benin BJ BEN 1990
## 726 Benin BJ BEN 1991
## 727 Benin BJ BEN 1992
## 728 Benin BJ BEN 1993
## 729 Benin BJ BEN 1994
## 730 Benin BJ BEN 1995
## 731 Benin BJ BEN 1996
## 732 Benin BJ BEN 1997
## 733 Benin BJ BEN 1998
## 734 Benin BJ BEN 1999
## 735 Benin BJ BEN 2000
## 736 Benin BJ BEN 2001
## 737 Benin BJ BEN 2002
## 738 Benin BJ BEN 2003
## 739 Benin BJ BEN 2004
## 740 Benin BJ BEN 2005
## 741 Benin BJ BEN 2006
## 742 Benin BJ BEN 2007
## 743 Benin BJ BEN 2008
## 744 Benin BJ BEN 2009
## 745 Benin BJ BEN 2010
## 746 Benin BJ BEN 2011
## 747 Benin BJ BEN 2012
## 748 Benin BJ BEN 2013
## 749 Bermuda BM BMU 1980
## 750 Bermuda BM BMU 1981
## 751 Bermuda BM BMU 1982
## 752 Bermuda BM BMU 1983
## 753 Bermuda BM BMU 1984
## 754 Bermuda BM BMU 1985
## 755 Bermuda BM BMU 1986
## 756 Bermuda BM BMU 1987
## 757 Bermuda BM BMU 1988
## 758 Bermuda BM BMU 1989
## 759 Bermuda BM BMU 1990
## 760 Bermuda BM BMU 1991
## 761 Bermuda BM BMU 1992
## 762 Bermuda BM BMU 1993
## 763 Bermuda BM BMU 1994
## 764 Bermuda BM BMU 1995
## 765 Bermuda BM BMU 1996
## 766 Bermuda BM BMU 1997
## 767 Bermuda BM BMU 1998
## 768 Bermuda BM BMU 1999
## 769 Bermuda BM BMU 2000
## 770 Bermuda BM BMU 2001
## 771 Bermuda BM BMU 2002
## 772 Bermuda BM BMU 2003
## 773 Bermuda BM BMU 2004
## 774 Bermuda BM BMU 2005
## 775 Bermuda BM BMU 2006
## 776 Bermuda BM BMU 2007
## 777 Bermuda BM BMU 2008
## 778 Bermuda BM BMU 2009
## 779 Bermuda BM BMU 2010
## 780 Bermuda BM BMU 2011
## 781 Bermuda BM BMU 2012
## 782 Bermuda BM BMU 2013
## 783 Bhutan BT BTN 1980
## 784 Bhutan BT BTN 1981
## 785 Bhutan BT BTN 1982
## 786 Bhutan BT BTN 1983
## 787 Bhutan BT BTN 1984
## 788 Bhutan BT BTN 1985
## 789 Bhutan BT BTN 1986
## 790 Bhutan BT BTN 1987
## 791 Bhutan BT BTN 1988
## 792 Bhutan BT BTN 1989
## 793 Bhutan BT BTN 1990
## 794 Bhutan BT BTN 1991
## 795 Bhutan BT BTN 1992
## 796 Bhutan BT BTN 1993
## 797 Bhutan BT BTN 1994
## 798 Bhutan BT BTN 1995
## 799 Bhutan BT BTN 1996
## 800 Bhutan BT BTN 1997
## 801 Bhutan BT BTN 1998
## 802 Bhutan BT BTN 1999
## 803 Bhutan BT BTN 2000
## 804 Bhutan BT BTN 2001
## 805 Bhutan BT BTN 2002
## 806 Bhutan BT BTN 2003
## 807 Bhutan BT BTN 2004
## 808 Bhutan BT BTN 2005
## 809 Bhutan BT BTN 2006
## 810 Bhutan BT BTN 2007
## 811 Bhutan BT BTN 2008
## 812 Bhutan BT BTN 2009
## 813 Bhutan BT BTN 2010
## 814 Bhutan BT BTN 2011
## 815 Bhutan BT BTN 2012
## 816 Bhutan BT BTN 2013
## 817 Bolivia (Plurinational State of) BO BOL 1980
## 818 Bolivia (Plurinational State of) BO BOL 1981
## 819 Bolivia (Plurinational State of) BO BOL 1982
## 820 Bolivia (Plurinational State of) BO BOL 1983
## 821 Bolivia (Plurinational State of) BO BOL 1984
## 822 Bolivia (Plurinational State of) BO BOL 1985
## 823 Bolivia (Plurinational State of) BO BOL 1986
## 824 Bolivia (Plurinational State of) BO BOL 1987
## 825 Bolivia (Plurinational State of) BO BOL 1988
## 826 Bolivia (Plurinational State of) BO BOL 1989
## 827 Bolivia (Plurinational State of) BO BOL 1990
## 828 Bolivia (Plurinational State of) BO BOL 1991
## 829 Bolivia (Plurinational State of) BO BOL 1992
## 830 Bolivia (Plurinational State of) BO BOL 1993
## 831 Bolivia (Plurinational State of) BO BOL 1994
## 832 Bolivia (Plurinational State of) BO BOL 1995
## 833 Bolivia (Plurinational State of) BO BOL 1996
## 834 Bolivia (Plurinational State of) BO BOL 1997
## 835 Bolivia (Plurinational State of) BO BOL 1998
## 836 Bolivia (Plurinational State of) BO BOL 1999
## 837 Bolivia (Plurinational State of) BO BOL 2000
## 838 Bolivia (Plurinational State of) BO BOL 2001
## 839 Bolivia (Plurinational State of) BO BOL 2002
## 840 Bolivia (Plurinational State of) BO BOL 2003
## 841 Bolivia (Plurinational State of) BO BOL 2004
## 842 Bolivia (Plurinational State of) BO BOL 2005
## 843 Bolivia (Plurinational State of) BO BOL 2006
## 844 Bolivia (Plurinational State of) BO BOL 2007
## 845 Bolivia (Plurinational State of) BO BOL 2008
## 846 Bolivia (Plurinational State of) BO BOL 2009
## 847 Bolivia (Plurinational State of) BO BOL 2010
## 848 Bolivia (Plurinational State of) BO BOL 2011
## 849 Bolivia (Plurinational State of) BO BOL 2012
## 850 Bolivia (Plurinational State of) BO BOL 2013
## 851 Bonaire, Saint Eustatius and Saba BQ BES 2010
## 852 Bonaire, Saint Eustatius and Saba BQ BES 2011
## 853 Bonaire, Saint Eustatius and Saba BQ BES 2012
## 854 Bonaire, Saint Eustatius and Saba BQ BES 2013
## 855 Bosnia and Herzegovina BA BIH 1980
## 856 Bosnia and Herzegovina BA BIH 1981
## 857 Bosnia and Herzegovina BA BIH 1982
## 858 Bosnia and Herzegovina BA BIH 1983
## 859 Bosnia and Herzegovina BA BIH 1984
## 860 Bosnia and Herzegovina BA BIH 1985
## 861 Bosnia and Herzegovina BA BIH 1986
## 862 Bosnia and Herzegovina BA BIH 1987
## 863 Bosnia and Herzegovina BA BIH 1988
## 864 Bosnia and Herzegovina BA BIH 1989
## 865 Bosnia and Herzegovina BA BIH 1990
## 866 Bosnia and Herzegovina BA BIH 1991
## 867 Bosnia and Herzegovina BA BIH 1992
## 868 Bosnia and Herzegovina BA BIH 1993
## 869 Bosnia and Herzegovina BA BIH 1994
## 870 Bosnia and Herzegovina BA BIH 1995
## 871 Bosnia and Herzegovina BA BIH 1996
## 872 Bosnia and Herzegovina BA BIH 1997
## 873 Bosnia and Herzegovina BA BIH 1998
## 874 Bosnia and Herzegovina BA BIH 1999
## 875 Bosnia and Herzegovina BA BIH 2000
## 876 Bosnia and Herzegovina BA BIH 2001
## 877 Bosnia and Herzegovina BA BIH 2002
## 878 Bosnia and Herzegovina BA BIH 2003
## 879 Bosnia and Herzegovina BA BIH 2004
## 880 Bosnia and Herzegovina BA BIH 2005
## 881 Bosnia and Herzegovina BA BIH 2006
## 882 Bosnia and Herzegovina BA BIH 2007
## 883 Bosnia and Herzegovina BA BIH 2008
## 884 Bosnia and Herzegovina BA BIH 2009
## 885 Bosnia and Herzegovina BA BIH 2010
## 886 Bosnia and Herzegovina BA BIH 2011
## 887 Bosnia and Herzegovina BA BIH 2012
## 888 Bosnia and Herzegovina BA BIH 2013
## 889 Botswana BW BWA 1980
## 890 Botswana BW BWA 1981
## 891 Botswana BW BWA 1982
## 892 Botswana BW BWA 1983
## 893 Botswana BW BWA 1984
## 894 Botswana BW BWA 1985
## 895 Botswana BW BWA 1986
## 896 Botswana BW BWA 1987
## 897 Botswana BW BWA 1988
## 898 Botswana BW BWA 1989
## 899 Botswana BW BWA 1990
## 900 Botswana BW BWA 1991
## 901 Botswana BW BWA 1992
## 902 Botswana BW BWA 1993
## 903 Botswana BW BWA 1994
## 904 Botswana BW BWA 1995
## 905 Botswana BW BWA 1996
## 906 Botswana BW BWA 1997
## 907 Botswana BW BWA 1998
## 908 Botswana BW BWA 1999
## 909 Botswana BW BWA 2000
## 910 Botswana BW BWA 2001
## 911 Botswana BW BWA 2002
## 912 Botswana BW BWA 2003
## 913 Botswana BW BWA 2004
## 914 Botswana BW BWA 2005
## 915 Botswana BW BWA 2006
## 916 Botswana BW BWA 2007
## 917 Botswana BW BWA 2008
## 918 Botswana BW BWA 2009
## 919 Botswana BW BWA 2010
## 920 Botswana BW BWA 2011
## 921 Botswana BW BWA 2012
## 922 Botswana BW BWA 2013
## 923 Brazil BR BRA 1980
## 924 Brazil BR BRA 1981
## 925 Brazil BR BRA 1982
## 926 Brazil BR BRA 1983
## 927 Brazil BR BRA 1984
## 928 Brazil BR BRA 1985
## 929 Brazil BR BRA 1986
## 930 Brazil BR BRA 1987
## 931 Brazil BR BRA 1988
## 932 Brazil BR BRA 1989
## 933 Brazil BR BRA 1990
## 934 Brazil BR BRA 1991
## 935 Brazil BR BRA 1992
## 936 Brazil BR BRA 1993
## 937 Brazil BR BRA 1994
## 938 Brazil BR BRA 1995
## 939 Brazil BR BRA 1996
## 940 Brazil BR BRA 1997
## 941 Brazil BR BRA 1998
## 942 Brazil BR BRA 1999
## 943 Brazil BR BRA 2000
## 944 Brazil BR BRA 2001
## 945 Brazil BR BRA 2002
## 946 Brazil BR BRA 2003
## 947 Brazil BR BRA 2004
## 948 Brazil BR BRA 2005
## 949 Brazil BR BRA 2006
## 950 Brazil BR BRA 2007
## 951 Brazil BR BRA 2008
## 952 Brazil BR BRA 2009
## 953 Brazil BR BRA 2010
## 954 Brazil BR BRA 2011
## 955 Brazil BR BRA 2012
## 956 Brazil BR BRA 2013
## 957 British Virgin Islands VG VGB 1980
## 958 British Virgin Islands VG VGB 1981
## 959 British Virgin Islands VG VGB 1982
## 960 British Virgin Islands VG VGB 1983
## 961 British Virgin Islands VG VGB 1984
## 962 British Virgin Islands VG VGB 1985
## 963 British Virgin Islands VG VGB 1986
## 964 British Virgin Islands VG VGB 1987
## 965 British Virgin Islands VG VGB 1988
## 966 British Virgin Islands VG VGB 1989
## 967 British Virgin Islands VG VGB 1990
## 968 British Virgin Islands VG VGB 1991
## 969 British Virgin Islands VG VGB 1992
## 970 British Virgin Islands VG VGB 1993
## 971 British Virgin Islands VG VGB 1994
## 972 British Virgin Islands VG VGB 1995
## 973 British Virgin Islands VG VGB 1996
## 974 British Virgin Islands VG VGB 1997
## 975 British Virgin Islands VG VGB 1998
## 976 British Virgin Islands VG VGB 1999
## 977 British Virgin Islands VG VGB 2000
## 978 British Virgin Islands VG VGB 2001
## 979 British Virgin Islands VG VGB 2002
## 980 British Virgin Islands VG VGB 2003
## 981 British Virgin Islands VG VGB 2004
## 982 British Virgin Islands VG VGB 2005
## 983 British Virgin Islands VG VGB 2006
## 984 British Virgin Islands VG VGB 2007
## 985 British Virgin Islands VG VGB 2008
## 986 British Virgin Islands VG VGB 2009
## 987 British Virgin Islands VG VGB 2010
## 988 British Virgin Islands VG VGB 2011
## 989 British Virgin Islands VG VGB 2012
## 990 British Virgin Islands VG VGB 2013
## 991 Brunei Darussalam BN BRN 1980
## 992 Brunei Darussalam BN BRN 1981
## 993 Brunei Darussalam BN BRN 1982
## 994 Brunei Darussalam BN BRN 1983
## 995 Brunei Darussalam BN BRN 1984
## 996 Brunei Darussalam BN BRN 1985
## 997 Brunei Darussalam BN BRN 1986
## 998 Brunei Darussalam BN BRN 1987
## 999 Brunei Darussalam BN BRN 1988
## 1000 Brunei Darussalam BN BRN 1989
## 1001 Brunei Darussalam BN BRN 1990
## 1002 Brunei Darussalam BN BRN 1991
## 1003 Brunei Darussalam BN BRN 1992
## 1004 Brunei Darussalam BN BRN 1993
## 1005 Brunei Darussalam BN BRN 1994
## 1006 Brunei Darussalam BN BRN 1995
## 1007 Brunei Darussalam BN BRN 1996
## 1008 Brunei Darussalam BN BRN 1997
## 1009 Brunei Darussalam BN BRN 1998
## 1010 Brunei Darussalam BN BRN 1999
## 1011 Brunei Darussalam BN BRN 2000
## 1012 Brunei Darussalam BN BRN 2001
## 1013 Brunei Darussalam BN BRN 2002
## 1014 Brunei Darussalam BN BRN 2003
## 1015 Brunei Darussalam BN BRN 2004
## 1016 Brunei Darussalam BN BRN 2005
## 1017 Brunei Darussalam BN BRN 2006
## 1018 Brunei Darussalam BN BRN 2007
## 1019 Brunei Darussalam BN BRN 2008
## 1020 Brunei Darussalam BN BRN 2009
## 1021 Brunei Darussalam BN BRN 2010
## 1022 Brunei Darussalam BN BRN 2011
## 1023 Brunei Darussalam BN BRN 2012
## 1024 Brunei Darussalam BN BRN 2013
## 1025 Bulgaria BG BGR 1980
## 1026 Bulgaria BG BGR 1981
## 1027 Bulgaria BG BGR 1982
## 1028 Bulgaria BG BGR 1983
## 1029 Bulgaria BG BGR 1984
## 1030 Bulgaria BG BGR 1985
## 1031 Bulgaria BG BGR 1986
## 1032 Bulgaria BG BGR 1987
## 1033 Bulgaria BG BGR 1988
## 1034 Bulgaria BG BGR 1989
## 1035 Bulgaria BG BGR 1990
## 1036 Bulgaria BG BGR 1991
## 1037 Bulgaria BG BGR 1992
## 1038 Bulgaria BG BGR 1993
## 1039 Bulgaria BG BGR 1994
## 1040 Bulgaria BG BGR 1995
## 1041 Bulgaria BG BGR 1996
## 1042 Bulgaria BG BGR 1997
## 1043 Bulgaria BG BGR 1998
## 1044 Bulgaria BG BGR 1999
## 1045 Bulgaria BG BGR 2000
## 1046 Bulgaria BG BGR 2001
## 1047 Bulgaria BG BGR 2002
## 1048 Bulgaria BG BGR 2003
## 1049 Bulgaria BG BGR 2004
## 1050 Bulgaria BG BGR 2005
## 1051 Bulgaria BG BGR 2006
## 1052 Bulgaria BG BGR 2007
## 1053 Bulgaria BG BGR 2008
## 1054 Bulgaria BG BGR 2009
## 1055 Bulgaria BG BGR 2010
## 1056 Bulgaria BG BGR 2011
## 1057 Bulgaria BG BGR 2012
## 1058 Bulgaria BG BGR 2013
## 1059 Burkina Faso BF BFA 1980
## 1060 Burkina Faso BF BFA 1981
## 1061 Burkina Faso BF BFA 1982
## 1062 Burkina Faso BF BFA 1983
## 1063 Burkina Faso BF BFA 1984
## 1064 Burkina Faso BF BFA 1985
## 1065 Burkina Faso BF BFA 1986
## 1066 Burkina Faso BF BFA 1987
## 1067 Burkina Faso BF BFA 1988
## 1068 Burkina Faso BF BFA 1989
## 1069 Burkina Faso BF BFA 1990
## 1070 Burkina Faso BF BFA 1991
## 1071 Burkina Faso BF BFA 1992
## 1072 Burkina Faso BF BFA 1993
## 1073 Burkina Faso BF BFA 1994
## 1074 Burkina Faso BF BFA 1995
## 1075 Burkina Faso BF BFA 1996
## 1076 Burkina Faso BF BFA 1997
## 1077 Burkina Faso BF BFA 1998
## 1078 Burkina Faso BF BFA 1999
## 1079 Burkina Faso BF BFA 2000
## 1080 Burkina Faso BF BFA 2001
## 1081 Burkina Faso BF BFA 2002
## 1082 Burkina Faso BF BFA 2003
## 1083 Burkina Faso BF BFA 2004
## 1084 Burkina Faso BF BFA 2005
## 1085 Burkina Faso BF BFA 2006
## 1086 Burkina Faso BF BFA 2007
## 1087 Burkina Faso BF BFA 2008
## 1088 Burkina Faso BF BFA 2009
## 1089 Burkina Faso BF BFA 2010
## 1090 Burkina Faso BF BFA 2011
## 1091 Burkina Faso BF BFA 2012
## 1092 Burkina Faso BF BFA 2013
## 1093 Burundi BI BDI 1980
## 1094 Burundi BI BDI 1981
## 1095 Burundi BI BDI 1982
## 1096 Burundi BI BDI 1983
## 1097 Burundi BI BDI 1984
## 1098 Burundi BI BDI 1985
## 1099 Burundi BI BDI 1986
## 1100 Burundi BI BDI 1987
## 1101 Burundi BI BDI 1988
## 1102 Burundi BI BDI 1989
## 1103 Burundi BI BDI 1990
## 1104 Burundi BI BDI 1991
## 1105 Burundi BI BDI 1992
## 1106 Burundi BI BDI 1993
## 1107 Burundi BI BDI 1994
## 1108 Burundi BI BDI 1995
## 1109 Burundi BI BDI 1996
## 1110 Burundi BI BDI 1997
## 1111 Burundi BI BDI 1998
## 1112 Burundi BI BDI 1999
## 1113 Burundi BI BDI 2000
## 1114 Burundi BI BDI 2001
## 1115 Burundi BI BDI 2002
## 1116 Burundi BI BDI 2003
## 1117 Burundi BI BDI 2004
## 1118 Burundi BI BDI 2005
## 1119 Burundi BI BDI 2006
## 1120 Burundi BI BDI 2007
## 1121 Burundi BI BDI 2008
## 1122 Burundi BI BDI 2009
## 1123 Burundi BI BDI 2010
## 1124 Burundi BI BDI 2011
## 1125 Burundi BI BDI 2012
## 1126 Burundi BI BDI 2013
## 1127 Cabo Verde CV CPV 1980
## 1128 Cabo Verde CV CPV 1981
## 1129 Cabo Verde CV CPV 1982
## 1130 Cabo Verde CV CPV 1983
## 1131 Cabo Verde CV CPV 1984
## 1132 Cabo Verde CV CPV 1985
## 1133 Cabo Verde CV CPV 1986
## 1134 Cabo Verde CV CPV 1987
## 1135 Cabo Verde CV CPV 1988
## 1136 Cabo Verde CV CPV 1989
## 1137 Cabo Verde CV CPV 1990
## 1138 Cabo Verde CV CPV 1991
## 1139 Cabo Verde CV CPV 1992
## 1140 Cabo Verde CV CPV 1993
## 1141 Cabo Verde CV CPV 1994
## 1142 Cabo Verde CV CPV 1995
## 1143 Cabo Verde CV CPV 1996
## 1144 Cabo Verde CV CPV 1997
## 1145 Cabo Verde CV CPV 1998
## 1146 Cabo Verde CV CPV 1999
## 1147 Cabo Verde CV CPV 2000
## 1148 Cabo Verde CV CPV 2001
## 1149 Cabo Verde CV CPV 2002
## 1150 Cabo Verde CV CPV 2003
## 1151 Cabo Verde CV CPV 2004
## 1152 Cabo Verde CV CPV 2005
## 1153 Cabo Verde CV CPV 2006
## 1154 Cabo Verde CV CPV 2007
## 1155 Cabo Verde CV CPV 2008
## 1156 Cabo Verde CV CPV 2009
## 1157 Cabo Verde CV CPV 2010
## 1158 Cabo Verde CV CPV 2011
## 1159 Cabo Verde CV CPV 2012
## 1160 Cabo Verde CV CPV 2013
## 1161 Cambodia KH KHM 1980
## 1162 Cambodia KH KHM 1981
## 1163 Cambodia KH KHM 1982
## 1164 Cambodia KH KHM 1983
## 1165 Cambodia KH KHM 1984
## 1166 Cambodia KH KHM 1985
## 1167 Cambodia KH KHM 1986
## 1168 Cambodia KH KHM 1987
## 1169 Cambodia KH KHM 1988
## 1170 Cambodia KH KHM 1989
## 1171 Cambodia KH KHM 1990
## 1172 Cambodia KH KHM 1991
## 1173 Cambodia KH KHM 1992
## 1174 Cambodia KH KHM 1993
## 1175 Cambodia KH KHM 1994
## 1176 Cambodia KH KHM 1995
## 1177 Cambodia KH KHM 1996
## 1178 Cambodia KH KHM 1997
## 1179 Cambodia KH KHM 1998
## 1180 Cambodia KH KHM 1999
## 1181 Cambodia KH KHM 2000
## 1182 Cambodia KH KHM 2001
## 1183 Cambodia KH KHM 2002
## 1184 Cambodia KH KHM 2003
## 1185 Cambodia KH KHM 2004
## 1186 Cambodia KH KHM 2005
## 1187 Cambodia KH KHM 2006
## 1188 Cambodia KH KHM 2007
## 1189 Cambodia KH KHM 2008
## 1190 Cambodia KH KHM 2009
## 1191 Cambodia KH KHM 2010
## 1192 Cambodia KH KHM 2011
## 1193 Cambodia KH KHM 2012
## 1194 Cambodia KH KHM 2013
## 1195 Cameroon CM CMR 1980
## 1196 Cameroon CM CMR 1981
## 1197 Cameroon CM CMR 1982
## 1198 Cameroon CM CMR 1983
## 1199 Cameroon CM CMR 1984
## 1200 Cameroon CM CMR 1985
## 1201 Cameroon CM CMR 1986
## 1202 Cameroon CM CMR 1987
## 1203 Cameroon CM CMR 1988
## 1204 Cameroon CM CMR 1989
## 1205 Cameroon CM CMR 1990
## 1206 Cameroon CM CMR 1991
## 1207 Cameroon CM CMR 1992
## 1208 Cameroon CM CMR 1993
## 1209 Cameroon CM CMR 1994
## 1210 Cameroon CM CMR 1995
## 1211 Cameroon CM CMR 1996
## 1212 Cameroon CM CMR 1997
## 1213 Cameroon CM CMR 1998
## 1214 Cameroon CM CMR 1999
## 1215 Cameroon CM CMR 2000
## 1216 Cameroon CM CMR 2001
## 1217 Cameroon CM CMR 2002
## 1218 Cameroon CM CMR 2003
## 1219 Cameroon CM CMR 2004
## 1220 Cameroon CM CMR 2005
## 1221 Cameroon CM CMR 2006
## 1222 Cameroon CM CMR 2007
## 1223 Cameroon CM CMR 2008
## 1224 Cameroon CM CMR 2009
## 1225 Cameroon CM CMR 2010
## 1226 Cameroon CM CMR 2011
## 1227 Cameroon CM CMR 2012
## 1228 Cameroon CM CMR 2013
## 1229 Canada CA CAN 1980
## 1230 Canada CA CAN 1981
## 1231 Canada CA CAN 1982
## 1232 Canada CA CAN 1983
## 1233 Canada CA CAN 1984
## 1234 Canada CA CAN 1985
## 1235 Canada CA CAN 1986
## 1236 Canada CA CAN 1987
## 1237 Canada CA CAN 1988
## 1238 Canada CA CAN 1989
## 1239 Canada CA CAN 1990
## 1240 Canada CA CAN 1991
## 1241 Canada CA CAN 1992
## 1242 Canada CA CAN 1993
## 1243 Canada CA CAN 1994
## 1244 Canada CA CAN 1995
## 1245 Canada CA CAN 1996
## 1246 Canada CA CAN 1997
## 1247 Canada CA CAN 1998
## 1248 Canada CA CAN 1999
## 1249 Canada CA CAN 2000
## 1250 Canada CA CAN 2001
## 1251 Canada CA CAN 2002
## 1252 Canada CA CAN 2003
## 1253 Canada CA CAN 2004
## 1254 Canada CA CAN 2005
## 1255 Canada CA CAN 2006
## 1256 Canada CA CAN 2007
## 1257 Canada CA CAN 2008
## 1258 Canada CA CAN 2009
## 1259 Canada CA CAN 2010
## 1260 Canada CA CAN 2011
## 1261 Canada CA CAN 2012
## 1262 Canada CA CAN 2013
## 1263 Cayman Islands KY CYM 1980
## 1264 Cayman Islands KY CYM 1981
## 1265 Cayman Islands KY CYM 1982
## 1266 Cayman Islands KY CYM 1983
## 1267 Cayman Islands KY CYM 1984
## 1268 Cayman Islands KY CYM 1985
## 1269 Cayman Islands KY CYM 1986
## 1270 Cayman Islands KY CYM 1987
## 1271 Cayman Islands KY CYM 1988
## 1272 Cayman Islands KY CYM 1989
## 1273 Cayman Islands KY CYM 1990
## 1274 Cayman Islands KY CYM 1991
## 1275 Cayman Islands KY CYM 1992
## 1276 Cayman Islands KY CYM 1993
## 1277 Cayman Islands KY CYM 1994
## 1278 Cayman Islands KY CYM 1995
## 1279 Cayman Islands KY CYM 1996
## 1280 Cayman Islands KY CYM 1997
## 1281 Cayman Islands KY CYM 1998
## 1282 Cayman Islands KY CYM 1999
## 1283 Cayman Islands KY CYM 2000
## 1284 Cayman Islands KY CYM 2001
## 1285 Cayman Islands KY CYM 2002
## 1286 Cayman Islands KY CYM 2003
## 1287 Cayman Islands KY CYM 2004
## 1288 Cayman Islands KY CYM 2005
## 1289 Cayman Islands KY CYM 2006
## 1290 Cayman Islands KY CYM 2007
## 1291 Cayman Islands KY CYM 2008
## 1292 Cayman Islands KY CYM 2009
## 1293 Cayman Islands KY CYM 2010
## 1294 Cayman Islands KY CYM 2011
## 1295 Cayman Islands KY CYM 2012
## 1296 Cayman Islands KY CYM 2013
## 1297 Central African Republic CF CAF 1980
## 1298 Central African Republic CF CAF 1981
## 1299 Central African Republic CF CAF 1982
## 1300 Central African Republic CF CAF 1983
## 1301 Central African Republic CF CAF 1984
## 1302 Central African Republic CF CAF 1985
## 1303 Central African Republic CF CAF 1986
## 1304 Central African Republic CF CAF 1987
## 1305 Central African Republic CF CAF 1988
## 1306 Central African Republic CF CAF 1989
## 1307 Central African Republic CF CAF 1990
## 1308 Central African Republic CF CAF 1991
## 1309 Central African Republic CF CAF 1992
## 1310 Central African Republic CF CAF 1993
## 1311 Central African Republic CF CAF 1994
## 1312 Central African Republic CF CAF 1995
## 1313 Central African Republic CF CAF 1996
## 1314 Central African Republic CF CAF 1997
## 1315 Central African Republic CF CAF 1998
## 1316 Central African Republic CF CAF 1999
## 1317 Central African Republic CF CAF 2000
## 1318 Central African Republic CF CAF 2001
## 1319 Central African Republic CF CAF 2002
## 1320 Central African Republic CF CAF 2003
## 1321 Central African Republic CF CAF 2004
## 1322 Central African Republic CF CAF 2005
## 1323 Central African Republic CF CAF 2006
## 1324 Central African Republic CF CAF 2007
## 1325 Central African Republic CF CAF 2008
## 1326 Central African Republic CF CAF 2009
## 1327 Central African Republic CF CAF 2010
## 1328 Central African Republic CF CAF 2011
## 1329 Central African Republic CF CAF 2012
## 1330 Central African Republic CF CAF 2013
## 1331 Chad TD TCD 1980
## 1332 Chad TD TCD 1981
## 1333 Chad TD TCD 1982
## 1334 Chad TD TCD 1983
## 1335 Chad TD TCD 1984
## 1336 Chad TD TCD 1985
## 1337 Chad TD TCD 1986
## 1338 Chad TD TCD 1987
## 1339 Chad TD TCD 1988
## 1340 Chad TD TCD 1989
## 1341 Chad TD TCD 1990
## 1342 Chad TD TCD 1991
## 1343 Chad TD TCD 1992
## 1344 Chad TD TCD 1993
## 1345 Chad TD TCD 1994
## 1346 Chad TD TCD 1995
## 1347 Chad TD TCD 1996
## 1348 Chad TD TCD 1997
## 1349 Chad TD TCD 1998
## 1350 Chad TD TCD 1999
## 1351 Chad TD TCD 2000
## 1352 Chad TD TCD 2001
## 1353 Chad TD TCD 2002
## 1354 Chad TD TCD 2003
## 1355 Chad TD TCD 2004
## 1356 Chad TD TCD 2005
## 1357 Chad TD TCD 2006
## 1358 Chad TD TCD 2007
## 1359 Chad TD TCD 2008
## 1360 Chad TD TCD 2009
## 1361 Chad TD TCD 2010
## 1362 Chad TD TCD 2011
## 1363 Chad TD TCD 2012
## 1364 Chad TD TCD 2013
## 1365 Chile CL CHL 1980
## 1366 Chile CL CHL 1981
## 1367 Chile CL CHL 1982
## 1368 Chile CL CHL 1983
## 1369 Chile CL CHL 1984
## 1370 Chile CL CHL 1985
## 1371 Chile CL CHL 1986
## 1372 Chile CL CHL 1987
## 1373 Chile CL CHL 1988
## 1374 Chile CL CHL 1989
## 1375 Chile CL CHL 1990
## 1376 Chile CL CHL 1991
## 1377 Chile CL CHL 1992
## 1378 Chile CL CHL 1993
## 1379 Chile CL CHL 1994
## 1380 Chile CL CHL 1995
## 1381 Chile CL CHL 1996
## 1382 Chile CL CHL 1997
## 1383 Chile CL CHL 1998
## 1384 Chile CL CHL 1999
## 1385 Chile CL CHL 2000
## 1386 Chile CL CHL 2001
## 1387 Chile CL CHL 2002
## 1388 Chile CL CHL 2003
## 1389 Chile CL CHL 2004
## 1390 Chile CL CHL 2005
## 1391 Chile CL CHL 2006
## 1392 Chile CL CHL 2007
## 1393 Chile CL CHL 2008
## 1394 Chile CL CHL 2009
## 1395 Chile CL CHL 2010
## 1396 Chile CL CHL 2011
## 1397 Chile CL CHL 2012
## 1398 Chile CL CHL 2013
## 1399 China CN CHN 1980
## 1400 China CN CHN 1981
## 1401 China CN CHN 1982
## 1402 China CN CHN 1983
## 1403 China CN CHN 1984
## 1404 China CN CHN 1985
## 1405 China CN CHN 1986
## 1406 China CN CHN 1987
## 1407 China CN CHN 1988
## 1408 China CN CHN 1989
## 1409 China CN CHN 1990
## 1410 China CN CHN 1991
## 1411 China CN CHN 1992
## 1412 China CN CHN 1993
## 1413 China CN CHN 1994
## 1414 China CN CHN 1995
## 1415 China CN CHN 1996
## 1416 China CN CHN 1997
## 1417 China CN CHN 1998
## 1418 China CN CHN 1999
## 1419 China CN CHN 2000
## 1420 China CN CHN 2001
## 1421 China CN CHN 2002
## 1422 China CN CHN 2003
## 1423 China CN CHN 2004
## 1424 China CN CHN 2005
## 1425 China CN CHN 2006
## 1426 China CN CHN 2007
## 1427 China CN CHN 2008
## 1428 China CN CHN 2009
## 1429 China CN CHN 2010
## 1430 China CN CHN 2011
## 1431 China CN CHN 2012
## 1432 China CN CHN 2013
## 1433 China, Hong Kong SAR HK HKG 1980
## 1434 China, Hong Kong SAR HK HKG 1981
## 1435 China, Hong Kong SAR HK HKG 1982
## 1436 China, Hong Kong SAR HK HKG 1983
## 1437 China, Hong Kong SAR HK HKG 1984
## 1438 China, Hong Kong SAR HK HKG 1985
## 1439 China, Hong Kong SAR HK HKG 1986
## 1440 China, Hong Kong SAR HK HKG 1987
## 1441 China, Hong Kong SAR HK HKG 1988
## 1442 China, Hong Kong SAR HK HKG 1989
## 1443 China, Hong Kong SAR HK HKG 1990
## 1444 China, Hong Kong SAR HK HKG 1991
## 1445 China, Hong Kong SAR HK HKG 1992
## 1446 China, Hong Kong SAR HK HKG 1993
## 1447 China, Hong Kong SAR HK HKG 1994
## 1448 China, Hong Kong SAR HK HKG 1995
## 1449 China, Hong Kong SAR HK HKG 1996
## 1450 China, Hong Kong SAR HK HKG 1997
## 1451 China, Hong Kong SAR HK HKG 1998
## 1452 China, Hong Kong SAR HK HKG 1999
## 1453 China, Hong Kong SAR HK HKG 2000
## 1454 China, Hong Kong SAR HK HKG 2001
## 1455 China, Hong Kong SAR HK HKG 2002
## 1456 China, Hong Kong SAR HK HKG 2003
## 1457 China, Hong Kong SAR HK HKG 2004
## 1458 China, Hong Kong SAR HK HKG 2005
## 1459 China, Hong Kong SAR HK HKG 2006
## 1460 China, Hong Kong SAR HK HKG 2007
## 1461 China, Hong Kong SAR HK HKG 2008
## 1462 China, Hong Kong SAR HK HKG 2009
## 1463 China, Hong Kong SAR HK HKG 2010
## 1464 China, Hong Kong SAR HK HKG 2011
## 1465 China, Hong Kong SAR HK HKG 2012
## 1466 China, Hong Kong SAR HK HKG 2013
## 1467 China, Macao SAR MO MAC 1980
## 1468 China, Macao SAR MO MAC 1981
## 1469 China, Macao SAR MO MAC 1982
## 1470 China, Macao SAR MO MAC 1983
## 1471 China, Macao SAR MO MAC 1984
## 1472 China, Macao SAR MO MAC 1985
## 1473 China, Macao SAR MO MAC 1986
## 1474 China, Macao SAR MO MAC 1987
## 1475 China, Macao SAR MO MAC 1988
## 1476 China, Macao SAR MO MAC 1989
## 1477 China, Macao SAR MO MAC 1990
## 1478 China, Macao SAR MO MAC 1991
## 1479 China, Macao SAR MO MAC 1992
## 1480 China, Macao SAR MO MAC 1993
## 1481 China, Macao SAR MO MAC 1994
## 1482 China, Macao SAR MO MAC 1995
## 1483 China, Macao SAR MO MAC 1996
## 1484 China, Macao SAR MO MAC 1997
## 1485 China, Macao SAR MO MAC 1998
## 1486 China, Macao SAR MO MAC 1999
## 1487 China, Macao SAR MO MAC 2000
## 1488 China, Macao SAR MO MAC 2001
## 1489 China, Macao SAR MO MAC 2002
## 1490 China, Macao SAR MO MAC 2003
## 1491 China, Macao SAR MO MAC 2004
## 1492 China, Macao SAR MO MAC 2005
## 1493 China, Macao SAR MO MAC 2006
## 1494 China, Macao SAR MO MAC 2007
## 1495 China, Macao SAR MO MAC 2008
## 1496 China, Macao SAR MO MAC 2009
## 1497 China, Macao SAR MO MAC 2010
## 1498 China, Macao SAR MO MAC 2011
## 1499 China, Macao SAR MO MAC 2012
## 1500 China, Macao SAR MO MAC 2013
## 1501 Colombia CO COL 1980
## 1502 Colombia CO COL 1981
## 1503 Colombia CO COL 1982
## 1504 Colombia CO COL 1983
## 1505 Colombia CO COL 1984
## 1506 Colombia CO COL 1985
## 1507 Colombia CO COL 1986
## 1508 Colombia CO COL 1987
## 1509 Colombia CO COL 1988
## 1510 Colombia CO COL 1989
## 1511 Colombia CO COL 1990
## 1512 Colombia CO COL 1991
## 1513 Colombia CO COL 1992
## 1514 Colombia CO COL 1993
## 1515 Colombia CO COL 1994
## 1516 Colombia CO COL 1995
## 1517 Colombia CO COL 1996
## 1518 Colombia CO COL 1997
## 1519 Colombia CO COL 1998
## 1520 Colombia CO COL 1999
## 1521 Colombia CO COL 2000
## 1522 Colombia CO COL 2001
## 1523 Colombia CO COL 2002
## 1524 Colombia CO COL 2003
## 1525 Colombia CO COL 2004
## 1526 Colombia CO COL 2005
## 1527 Colombia CO COL 2006
## 1528 Colombia CO COL 2007
## 1529 Colombia CO COL 2008
## 1530 Colombia CO COL 2009
## 1531 Colombia CO COL 2010
## 1532 Colombia CO COL 2011
## 1533 Colombia CO COL 2012
## 1534 Colombia CO COL 2013
## 1535 Comoros KM COM 1980
## 1536 Comoros KM COM 1981
## 1537 Comoros KM COM 1982
## 1538 Comoros KM COM 1983
## 1539 Comoros KM COM 1984
## 1540 Comoros KM COM 1985
## 1541 Comoros KM COM 1986
## 1542 Comoros KM COM 1987
## 1543 Comoros KM COM 1988
## 1544 Comoros KM COM 1989
## 1545 Comoros KM COM 1990
## 1546 Comoros KM COM 1991
## 1547 Comoros KM COM 1992
## 1548 Comoros KM COM 1993
## 1549 Comoros KM COM 1994
## 1550 Comoros KM COM 1995
## 1551 Comoros KM COM 1996
## 1552 Comoros KM COM 1997
## 1553 Comoros KM COM 1998
## 1554 Comoros KM COM 1999
## 1555 Comoros KM COM 2000
## 1556 Comoros KM COM 2001
## 1557 Comoros KM COM 2002
## 1558 Comoros KM COM 2003
## 1559 Comoros KM COM 2004
## 1560 Comoros KM COM 2005
## 1561 Comoros KM COM 2006
## 1562 Comoros KM COM 2007
## 1563 Comoros KM COM 2008
## 1564 Comoros KM COM 2009
## 1565 Comoros KM COM 2010
## 1566 Comoros KM COM 2011
## 1567 Comoros KM COM 2012
## 1568 Comoros KM COM 2013
## 1569 Congo CG COG 1980
## 1570 Congo CG COG 1981
## 1571 Congo CG COG 1982
## 1572 Congo CG COG 1983
## 1573 Congo CG COG 1984
## 1574 Congo CG COG 1985
## 1575 Congo CG COG 1986
## 1576 Congo CG COG 1987
## 1577 Congo CG COG 1988
## 1578 Congo CG COG 1989
## 1579 Congo CG COG 1990
## 1580 Congo CG COG 1991
## 1581 Congo CG COG 1992
## 1582 Congo CG COG 1993
## 1583 Congo CG COG 1994
## 1584 Congo CG COG 1995
## 1585 Congo CG COG 1996
## 1586 Congo CG COG 1997
## 1587 Congo CG COG 1998
## 1588 Congo CG COG 1999
## 1589 Congo CG COG 2000
## 1590 Congo CG COG 2001
## 1591 Congo CG COG 2002
## 1592 Congo CG COG 2003
## 1593 Congo CG COG 2004
## 1594 Congo CG COG 2005
## 1595 Congo CG COG 2006
## 1596 Congo CG COG 2007
## 1597 Congo CG COG 2008
## 1598 Congo CG COG 2009
## 1599 Congo CG COG 2010
## 1600 Congo CG COG 2011
## 1601 Congo CG COG 2012
## 1602 Congo CG COG 2013
## 1603 Cook Islands CK COK 1980
## 1604 Cook Islands CK COK 1981
## 1605 Cook Islands CK COK 1982
## 1606 Cook Islands CK COK 1983
## 1607 Cook Islands CK COK 1984
## 1608 Cook Islands CK COK 1985
## 1609 Cook Islands CK COK 1986
## 1610 Cook Islands CK COK 1987
## 1611 Cook Islands CK COK 1988
## 1612 Cook Islands CK COK 1989
## 1613 Cook Islands CK COK 1990
## 1614 Cook Islands CK COK 1991
## 1615 Cook Islands CK COK 1992
## 1616 Cook Islands CK COK 1993
## 1617 Cook Islands CK COK 1994
## 1618 Cook Islands CK COK 1995
## 1619 Cook Islands CK COK 1996
## 1620 Cook Islands CK COK 1997
## 1621 Cook Islands CK COK 1998
## 1622 Cook Islands CK COK 1999
## 1623 Cook Islands CK COK 2000
## 1624 Cook Islands CK COK 2001
## 1625 Cook Islands CK COK 2002
## 1626 Cook Islands CK COK 2003
## 1627 Cook Islands CK COK 2004
## 1628 Cook Islands CK COK 2005
## 1629 Cook Islands CK COK 2006
## 1630 Cook Islands CK COK 2007
## 1631 Cook Islands CK COK 2008
## 1632 Cook Islands CK COK 2009
## 1633 Cook Islands CK COK 2010
## 1634 Cook Islands CK COK 2011
## 1635 Cook Islands CK COK 2012
## 1636 Cook Islands CK COK 2013
## 1637 Costa Rica CR CRI 1980
## 1638 Costa Rica CR CRI 1981
## 1639 Costa Rica CR CRI 1982
## 1640 Costa Rica CR CRI 1983
## 1641 Costa Rica CR CRI 1984
## 1642 Costa Rica CR CRI 1985
## 1643 Costa Rica CR CRI 1986
## 1644 Costa Rica CR CRI 1987
## 1645 Costa Rica CR CRI 1988
## 1646 Costa Rica CR CRI 1989
## 1647 Costa Rica CR CRI 1990
## 1648 Costa Rica CR CRI 1991
## 1649 Costa Rica CR CRI 1992
## 1650 Costa Rica CR CRI 1993
## 1651 Costa Rica CR CRI 1994
## 1652 Costa Rica CR CRI 1995
## 1653 Costa Rica CR CRI 1996
## 1654 Costa Rica CR CRI 1997
## 1655 Costa Rica CR CRI 1998
## 1656 Costa Rica CR CRI 1999
## 1657 Costa Rica CR CRI 2000
## 1658 Costa Rica CR CRI 2001
## 1659 Costa Rica CR CRI 2002
## 1660 Costa Rica CR CRI 2003
## 1661 Costa Rica CR CRI 2004
## 1662 Costa Rica CR CRI 2005
## 1663 Costa Rica CR CRI 2006
## 1664 Costa Rica CR CRI 2007
## 1665 Costa Rica CR CRI 2008
## 1666 Costa Rica CR CRI 2009
## 1667 Costa Rica CR CRI 2010
## 1668 Costa Rica CR CRI 2011
## 1669 Costa Rica CR CRI 2012
## 1670 Costa Rica CR CRI 2013
## 1671 Cote d'Ivoire CI CIV 1980
## 1672 Cote d'Ivoire CI CIV 1981
## 1673 Cote d'Ivoire CI CIV 1982
## 1674 Cote d'Ivoire CI CIV 1983
## 1675 Cote d'Ivoire CI CIV 1984
## 1676 Cote d'Ivoire CI CIV 1985
## 1677 Cote d'Ivoire CI CIV 1986
## 1678 Cote d'Ivoire CI CIV 1987
## 1679 Cote d'Ivoire CI CIV 1988
## 1680 Cote d'Ivoire CI CIV 1989
## 1681 Cote d'Ivoire CI CIV 1990
## 1682 Cote d'Ivoire CI CIV 1991
## 1683 Cote d'Ivoire CI CIV 1992
## 1684 Cote d'Ivoire CI CIV 1993
## 1685 Cote d'Ivoire CI CIV 1994
## 1686 Cote d'Ivoire CI CIV 1995
## 1687 Cote d'Ivoire CI CIV 1996
## 1688 Cote d'Ivoire CI CIV 1997
## 1689 Cote d'Ivoire CI CIV 1998
## 1690 Cote d'Ivoire CI CIV 1999
## 1691 Cote d'Ivoire CI CIV 2000
## 1692 Cote d'Ivoire CI CIV 2001
## 1693 Cote d'Ivoire CI CIV 2002
## 1694 Cote d'Ivoire CI CIV 2003
## 1695 Cote d'Ivoire CI CIV 2004
## 1696 Cote d'Ivoire CI CIV 2005
## 1697 Cote d'Ivoire CI CIV 2006
## 1698 Cote d'Ivoire CI CIV 2007
## 1699 Cote d'Ivoire CI CIV 2008
## 1700 Cote d'Ivoire CI CIV 2009
## 1701 Cote d'Ivoire CI CIV 2010
## 1702 Cote d'Ivoire CI CIV 2011
## 1703 Cote d'Ivoire CI CIV 2012
## 1704 Cote d'Ivoire CI CIV 2013
## 1705 Croatia HR HRV 1980
## 1706 Croatia HR HRV 1981
## 1707 Croatia HR HRV 1982
## 1708 Croatia HR HRV 1983
## 1709 Croatia HR HRV 1984
## 1710 Croatia HR HRV 1985
## 1711 Croatia HR HRV 1986
## 1712 Croatia HR HRV 1987
## 1713 Croatia HR HRV 1988
## 1714 Croatia HR HRV 1989
## 1715 Croatia HR HRV 1990
## 1716 Croatia HR HRV 1991
## 1717 Croatia HR HRV 1992
## 1718 Croatia HR HRV 1993
## 1719 Croatia HR HRV 1994
## 1720 Croatia HR HRV 1995
## 1721 Croatia HR HRV 1996
## 1722 Croatia HR HRV 1997
## 1723 Croatia HR HRV 1998
## 1724 Croatia HR HRV 1999
## 1725 Croatia HR HRV 2000
## 1726 Croatia HR HRV 2001
## 1727 Croatia HR HRV 2002
## 1728 Croatia HR HRV 2003
## 1729 Croatia HR HRV 2004
## 1730 Croatia HR HRV 2005
## 1731 Croatia HR HRV 2006
## 1732 Croatia HR HRV 2007
## 1733 Croatia HR HRV 2008
## 1734 Croatia HR HRV 2009
## 1735 Croatia HR HRV 2010
## 1736 Croatia HR HRV 2011
## 1737 Croatia HR HRV 2012
## 1738 Croatia HR HRV 2013
## 1739 Cuba CU CUB 1980
## 1740 Cuba CU CUB 1981
## 1741 Cuba CU CUB 1982
## 1742 Cuba CU CUB 1983
## 1743 Cuba CU CUB 1984
## 1744 Cuba CU CUB 1985
## 1745 Cuba CU CUB 1986
## 1746 Cuba CU CUB 1987
## 1747 Cuba CU CUB 1988
## 1748 Cuba CU CUB 1989
## 1749 Cuba CU CUB 1990
## 1750 Cuba CU CUB 1991
## 1751 Cuba CU CUB 1992
## 1752 Cuba CU CUB 1993
## 1753 Cuba CU CUB 1994
## 1754 Cuba CU CUB 1995
## 1755 Cuba CU CUB 1996
## 1756 Cuba CU CUB 1997
## 1757 Cuba CU CUB 1998
## 1758 Cuba CU CUB 1999
## 1759 Cuba CU CUB 2000
## 1760 Cuba CU CUB 2001
## 1761 Cuba CU CUB 2002
## 1762 Cuba CU CUB 2003
## 1763 Cuba CU CUB 2004
## 1764 Cuba CU CUB 2005
## 1765 Cuba CU CUB 2006
## 1766 Cuba CU CUB 2007
## 1767 Cuba CU CUB 2008
## 1768 Cuba CU CUB 2009
## 1769 Cuba CU CUB 2010
## 1770 Cuba CU CUB 2011
## 1771 Cuba CU CUB 2012
## 1772 Cuba CU CUB 2013
## 1773 Curacao CW CUW 2010
## 1774 Curacao CW CUW 2011
## 1775 Curacao CW CUW 2012
## 1776 Curacao CW CUW 2013
## 1777 Cyprus CY CYP 1980
## 1778 Cyprus CY CYP 1981
## 1779 Cyprus CY CYP 1982
## 1780 Cyprus CY CYP 1983
## 1781 Cyprus CY CYP 1984
## 1782 Cyprus CY CYP 1985
## 1783 Cyprus CY CYP 1986
## 1784 Cyprus CY CYP 1987
## 1785 Cyprus CY CYP 1988
## 1786 Cyprus CY CYP 1989
## 1787 Cyprus CY CYP 1990
## 1788 Cyprus CY CYP 1991
## 1789 Cyprus CY CYP 1992
## 1790 Cyprus CY CYP 1993
## 1791 Cyprus CY CYP 1994
## 1792 Cyprus CY CYP 1995
## 1793 Cyprus CY CYP 1996
## 1794 Cyprus CY CYP 1997
## 1795 Cyprus CY CYP 1998
## 1796 Cyprus CY CYP 1999
## 1797 Cyprus CY CYP 2000
## 1798 Cyprus CY CYP 2001
## 1799 Cyprus CY CYP 2002
## 1800 Cyprus CY CYP 2003
## 1801 Cyprus CY CYP 2004
## 1802 Cyprus CY CYP 2005
## 1803 Cyprus CY CYP 2006
## 1804 Cyprus CY CYP 2007
## 1805 Cyprus CY CYP 2008
## 1806 Cyprus CY CYP 2009
## 1807 Cyprus CY CYP 2010
## 1808 Cyprus CY CYP 2011
## 1809 Cyprus CY CYP 2012
## 1810 Cyprus CY CYP 2013
## 1811 Czech Republic CZ CZE 1980
## 1812 Czech Republic CZ CZE 1981
## 1813 Czech Republic CZ CZE 1982
## 1814 Czech Republic CZ CZE 1983
## 1815 Czech Republic CZ CZE 1984
## 1816 Czech Republic CZ CZE 1985
## 1817 Czech Republic CZ CZE 1986
## 1818 Czech Republic CZ CZE 1987
## 1819 Czech Republic CZ CZE 1988
## 1820 Czech Republic CZ CZE 1989
## 1821 Czech Republic CZ CZE 1990
## 1822 Czech Republic CZ CZE 1991
## 1823 Czech Republic CZ CZE 1992
## 1824 Czech Republic CZ CZE 1993
## 1825 Czech Republic CZ CZE 1994
## 1826 Czech Republic CZ CZE 1995
## 1827 Czech Republic CZ CZE 1996
## 1828 Czech Republic CZ CZE 1997
## 1829 Czech Republic CZ CZE 1998
## 1830 Czech Republic CZ CZE 1999
## 1831 Czech Republic CZ CZE 2000
## 1832 Czech Republic CZ CZE 2001
## 1833 Czech Republic CZ CZE 2002
## 1834 Czech Republic CZ CZE 2003
## 1835 Czech Republic CZ CZE 2004
## 1836 Czech Republic CZ CZE 2005
## 1837 Czech Republic CZ CZE 2006
## 1838 Czech Republic CZ CZE 2007
## 1839 Czech Republic CZ CZE 2008
## 1840 Czech Republic CZ CZE 2009
## 1841 Czech Republic CZ CZE 2010
## 1842 Czech Republic CZ CZE 2011
## 1843 Czech Republic CZ CZE 2012
## 1844 Czech Republic CZ CZE 2013
## 1845 Democratic People's Republic of Korea KP PRK 1980
## 1846 Democratic People's Republic of Korea KP PRK 1981
## 1847 Democratic People's Republic of Korea KP PRK 1982
## 1848 Democratic People's Republic of Korea KP PRK 1983
## 1849 Democratic People's Republic of Korea KP PRK 1984
## 1850 Democratic People's Republic of Korea KP PRK 1985
## 1851 Democratic People's Republic of Korea KP PRK 1986
## 1852 Democratic People's Republic of Korea KP PRK 1987
## 1853 Democratic People's Republic of Korea KP PRK 1988
## 1854 Democratic People's Republic of Korea KP PRK 1989
## 1855 Democratic People's Republic of Korea KP PRK 1990
## 1856 Democratic People's Republic of Korea KP PRK 1991
## 1857 Democratic People's Republic of Korea KP PRK 1992
## 1858 Democratic People's Republic of Korea KP PRK 1993
## 1859 Democratic People's Republic of Korea KP PRK 1994
## 1860 Democratic People's Republic of Korea KP PRK 1995
## 1861 Democratic People's Republic of Korea KP PRK 1996
## 1862 Democratic People's Republic of Korea KP PRK 1997
## 1863 Democratic People's Republic of Korea KP PRK 1998
## 1864 Democratic People's Republic of Korea KP PRK 1999
## 1865 Democratic People's Republic of Korea KP PRK 2000
## 1866 Democratic People's Republic of Korea KP PRK 2001
## 1867 Democratic People's Republic of Korea KP PRK 2002
## 1868 Democratic People's Republic of Korea KP PRK 2003
## 1869 Democratic People's Republic of Korea KP PRK 2004
## 1870 Democratic People's Republic of Korea KP PRK 2005
## 1871 Democratic People's Republic of Korea KP PRK 2006
## 1872 Democratic People's Republic of Korea KP PRK 2007
## 1873 Democratic People's Republic of Korea KP PRK 2008
## 1874 Democratic People's Republic of Korea KP PRK 2009
## 1875 Democratic People's Republic of Korea KP PRK 2010
## 1876 Democratic People's Republic of Korea KP PRK 2011
## 1877 Democratic People's Republic of Korea KP PRK 2012
## 1878 Democratic People's Republic of Korea KP PRK 2013
## 1879 Democratic Republic of the Congo CD COD 1980
## 1880 Democratic Republic of the Congo CD COD 1981
## 1881 Democratic Republic of the Congo CD COD 1982
## 1882 Democratic Republic of the Congo CD COD 1983
## 1883 Democratic Republic of the Congo CD COD 1984
## 1884 Democratic Republic of the Congo CD COD 1985
## 1885 Democratic Republic of the Congo CD COD 1986
## 1886 Democratic Republic of the Congo CD COD 1987
## 1887 Democratic Republic of the Congo CD COD 1988
## 1888 Democratic Republic of the Congo CD COD 1989
## 1889 Democratic Republic of the Congo CD COD 1990
## 1890 Democratic Republic of the Congo CD COD 1991
## 1891 Democratic Republic of the Congo CD COD 1992
## 1892 Democratic Republic of the Congo CD COD 1993
## 1893 Democratic Republic of the Congo CD COD 1994
## 1894 Democratic Republic of the Congo CD COD 1995
## 1895 Democratic Republic of the Congo CD COD 1996
## 1896 Democratic Republic of the Congo CD COD 1997
## 1897 Democratic Republic of the Congo CD COD 1998
## 1898 Democratic Republic of the Congo CD COD 1999
## 1899 Democratic Republic of the Congo CD COD 2000
## 1900 Democratic Republic of the Congo CD COD 2001
## 1901 Democratic Republic of the Congo CD COD 2002
## 1902 Democratic Republic of the Congo CD COD 2003
## 1903 Democratic Republic of the Congo CD COD 2004
## 1904 Democratic Republic of the Congo CD COD 2005
## 1905 Democratic Republic of the Congo CD COD 2006
## 1906 Democratic Republic of the Congo CD COD 2007
## 1907 Democratic Republic of the Congo CD COD 2008
## 1908 Democratic Republic of the Congo CD COD 2009
## 1909 Democratic Republic of the Congo CD COD 2010
## 1910 Democratic Republic of the Congo CD COD 2011
## 1911 Democratic Republic of the Congo CD COD 2012
## 1912 Democratic Republic of the Congo CD COD 2013
## 1913 Denmark DK DNK 1980
## 1914 Denmark DK DNK 1981
## 1915 Denmark DK DNK 1982
## 1916 Denmark DK DNK 1983
## 1917 Denmark DK DNK 1984
## 1918 Denmark DK DNK 1985
## 1919 Denmark DK DNK 1986
## 1920 Denmark DK DNK 1987
## 1921 Denmark DK DNK 1988
## 1922 Denmark DK DNK 1989
## 1923 Denmark DK DNK 1990
## 1924 Denmark DK DNK 1991
## 1925 Denmark DK DNK 1992
## 1926 Denmark DK DNK 1993
## 1927 Denmark DK DNK 1994
## 1928 Denmark DK DNK 1995
## 1929 Denmark DK DNK 1996
## 1930 Denmark DK DNK 1997
## 1931 Denmark DK DNK 1998
## 1932 Denmark DK DNK 1999
## 1933 Denmark DK DNK 2000
## 1934 Denmark DK DNK 2001
## 1935 Denmark DK DNK 2002
## 1936 Denmark DK DNK 2003
## 1937 Denmark DK DNK 2004
## 1938 Denmark DK DNK 2005
## 1939 Denmark DK DNK 2006
## 1940 Denmark DK DNK 2007
## 1941 Denmark DK DNK 2008
## 1942 Denmark DK DNK 2009
## 1943 Denmark DK DNK 2010
## 1944 Denmark DK DNK 2011
## 1945 Denmark DK DNK 2012
## 1946 Denmark DK DNK 2013
## 1947 Djibouti DJ DJI 1980
## 1948 Djibouti DJ DJI 1981
## 1949 Djibouti DJ DJI 1982
## 1950 Djibouti DJ DJI 1983
## 1951 Djibouti DJ DJI 1984
## 1952 Djibouti DJ DJI 1985
## 1953 Djibouti DJ DJI 1986
## 1954 Djibouti DJ DJI 1987
## 1955 Djibouti DJ DJI 1988
## 1956 Djibouti DJ DJI 1989
## 1957 Djibouti DJ DJI 1990
## 1958 Djibouti DJ DJI 1991
## 1959 Djibouti DJ DJI 1992
## 1960 Djibouti DJ DJI 1993
## 1961 Djibouti DJ DJI 1994
## 1962 Djibouti DJ DJI 1995
## 1963 Djibouti DJ DJI 1996
## 1964 Djibouti DJ DJI 1997
## 1965 Djibouti DJ DJI 1998
## 1966 Djibouti DJ DJI 1999
## 1967 Djibouti DJ DJI 2000
## 1968 Djibouti DJ DJI 2001
## 1969 Djibouti DJ DJI 2002
## 1970 Djibouti DJ DJI 2003
## 1971 Djibouti DJ DJI 2004
## 1972 Djibouti DJ DJI 2005
## 1973 Djibouti DJ DJI 2006
## 1974 Djibouti DJ DJI 2007
## 1975 Djibouti DJ DJI 2008
## 1976 Djibouti DJ DJI 2009
## 1977 Djibouti DJ DJI 2010
## 1978 Djibouti DJ DJI 2011
## 1979 Djibouti DJ DJI 2012
## 1980 Djibouti DJ DJI 2013
## 1981 Dominica DM DMA 1980
## 1982 Dominica DM DMA 1981
## 1983 Dominica DM DMA 1982
## 1984 Dominica DM DMA 1983
## 1985 Dominica DM DMA 1984
## 1986 Dominica DM DMA 1985
## 1987 Dominica DM DMA 1986
## 1988 Dominica DM DMA 1987
## 1989 Dominica DM DMA 1988
## 1990 Dominica DM DMA 1989
## 1991 Dominica DM DMA 1990
## 1992 Dominica DM DMA 1991
## 1993 Dominica DM DMA 1992
## 1994 Dominica DM DMA 1993
## 1995 Dominica DM DMA 1994
## 1996 Dominica DM DMA 1995
## 1997 Dominica DM DMA 1996
## 1998 Dominica DM DMA 1997
## 1999 Dominica DM DMA 1998
## 2000 Dominica DM DMA 1999
## 2001 Dominica DM DMA 2000
## 2002 Dominica DM DMA 2001
## 2003 Dominica DM DMA 2002
## 2004 Dominica DM DMA 2003
## 2005 Dominica DM DMA 2004
## 2006 Dominica DM DMA 2005
## 2007 Dominica DM DMA 2006
## 2008 Dominica DM DMA 2007
## 2009 Dominica DM DMA 2008
## 2010 Dominica DM DMA 2009
## 2011 Dominica DM DMA 2010
## 2012 Dominica DM DMA 2011
## 2013 Dominica DM DMA 2012
## 2014 Dominica DM DMA 2013
## 2015 Dominican Republic DO DOM 1980
## 2016 Dominican Republic DO DOM 1981
## 2017 Dominican Republic DO DOM 1982
## 2018 Dominican Republic DO DOM 1983
## 2019 Dominican Republic DO DOM 1984
## 2020 Dominican Republic DO DOM 1985
## 2021 Dominican Republic DO DOM 1986
## 2022 Dominican Republic DO DOM 1987
## 2023 Dominican Republic DO DOM 1988
## 2024 Dominican Republic DO DOM 1989
## 2025 Dominican Republic DO DOM 1990
## 2026 Dominican Republic DO DOM 1991
## 2027 Dominican Republic DO DOM 1992
## 2028 Dominican Republic DO DOM 1993
## 2029 Dominican Republic DO DOM 1994
## 2030 Dominican Republic DO DOM 1995
## 2031 Dominican Republic DO DOM 1996
## 2032 Dominican Republic DO DOM 1997
## 2033 Dominican Republic DO DOM 1998
## 2034 Dominican Republic DO DOM 1999
## 2035 Dominican Republic DO DOM 2000
## 2036 Dominican Republic DO DOM 2001
## 2037 Dominican Republic DO DOM 2002
## 2038 Dominican Republic DO DOM 2003
## 2039 Dominican Republic DO DOM 2004
## 2040 Dominican Republic DO DOM 2005
## 2041 Dominican Republic DO DOM 2006
## 2042 Dominican Republic DO DOM 2007
## 2043 Dominican Republic DO DOM 2008
## 2044 Dominican Republic DO DOM 2009
## 2045 Dominican Republic DO DOM 2010
## 2046 Dominican Republic DO DOM 2011
## 2047 Dominican Republic DO DOM 2012
## 2048 Dominican Republic DO DOM 2013
## 2049 Ecuador EC ECU 1980
## 2050 Ecuador EC ECU 1981
## 2051 Ecuador EC ECU 1982
## 2052 Ecuador EC ECU 1983
## 2053 Ecuador EC ECU 1984
## 2054 Ecuador EC ECU 1985
## 2055 Ecuador EC ECU 1986
## 2056 Ecuador EC ECU 1987
## 2057 Ecuador EC ECU 1988
## 2058 Ecuador EC ECU 1989
## 2059 Ecuador EC ECU 1990
## 2060 Ecuador EC ECU 1991
## 2061 Ecuador EC ECU 1992
## 2062 Ecuador EC ECU 1993
## 2063 Ecuador EC ECU 1994
## 2064 Ecuador EC ECU 1995
## 2065 Ecuador EC ECU 1996
## 2066 Ecuador EC ECU 1997
## 2067 Ecuador EC ECU 1998
## 2068 Ecuador EC ECU 1999
## 2069 Ecuador EC ECU 2000
## 2070 Ecuador EC ECU 2001
## 2071 Ecuador EC ECU 2002
## 2072 Ecuador EC ECU 2003
## 2073 Ecuador EC ECU 2004
## 2074 Ecuador EC ECU 2005
## 2075 Ecuador EC ECU 2006
## 2076 Ecuador EC ECU 2007
## 2077 Ecuador EC ECU 2008
## 2078 Ecuador EC ECU 2009
## 2079 Ecuador EC ECU 2010
## 2080 Ecuador EC ECU 2011
## 2081 Ecuador EC ECU 2012
## 2082 Ecuador EC ECU 2013
## 2083 Egypt EG EGY 1980
## 2084 Egypt EG EGY 1981
## 2085 Egypt EG EGY 1982
## 2086 Egypt EG EGY 1983
## 2087 Egypt EG EGY 1984
## 2088 Egypt EG EGY 1985
## 2089 Egypt EG EGY 1986
## 2090 Egypt EG EGY 1987
## 2091 Egypt EG EGY 1988
## 2092 Egypt EG EGY 1989
## 2093 Egypt EG EGY 1990
## 2094 Egypt EG EGY 1991
## 2095 Egypt EG EGY 1992
## 2096 Egypt EG EGY 1993
## 2097 Egypt EG EGY 1994
## 2098 Egypt EG EGY 1995
## 2099 Egypt EG EGY 1996
## 2100 Egypt EG EGY 1997
## 2101 Egypt EG EGY 1998
## 2102 Egypt EG EGY 1999
## 2103 Egypt EG EGY 2000
## 2104 Egypt EG EGY 2001
## 2105 Egypt EG EGY 2002
## 2106 Egypt EG EGY 2003
## 2107 Egypt EG EGY 2004
## 2108 Egypt EG EGY 2005
## 2109 Egypt EG EGY 2006
## 2110 Egypt EG EGY 2007
## 2111 Egypt EG EGY 2008
## 2112 Egypt EG EGY 2009
## 2113 Egypt EG EGY 2010
## 2114 Egypt EG EGY 2011
## 2115 Egypt EG EGY 2012
## 2116 Egypt EG EGY 2013
## 2117 El Salvador SV SLV 1980
## 2118 El Salvador SV SLV 1981
## 2119 El Salvador SV SLV 1982
## 2120 El Salvador SV SLV 1983
## 2121 El Salvador SV SLV 1984
## 2122 El Salvador SV SLV 1985
## 2123 El Salvador SV SLV 1986
## 2124 El Salvador SV SLV 1987
## 2125 El Salvador SV SLV 1988
## 2126 El Salvador SV SLV 1989
## 2127 El Salvador SV SLV 1990
## 2128 El Salvador SV SLV 1991
## 2129 El Salvador SV SLV 1992
## 2130 El Salvador SV SLV 1993
## 2131 El Salvador SV SLV 1994
## 2132 El Salvador SV SLV 1995
## 2133 El Salvador SV SLV 1996
## 2134 El Salvador SV SLV 1997
## 2135 El Salvador SV SLV 1998
## 2136 El Salvador SV SLV 1999
## 2137 El Salvador SV SLV 2000
## 2138 El Salvador SV SLV 2001
## 2139 El Salvador SV SLV 2002
## 2140 El Salvador SV SLV 2003
## 2141 El Salvador SV SLV 2004
## 2142 El Salvador SV SLV 2005
## 2143 El Salvador SV SLV 2006
## 2144 El Salvador SV SLV 2007
## 2145 El Salvador SV SLV 2008
## 2146 El Salvador SV SLV 2009
## 2147 El Salvador SV SLV 2010
## 2148 El Salvador SV SLV 2011
## 2149 El Salvador SV SLV 2012
## 2150 El Salvador SV SLV 2013
## 2151 Equatorial Guinea GQ GNQ 1980
## 2152 Equatorial Guinea GQ GNQ 1981
## 2153 Equatorial Guinea GQ GNQ 1982
## 2154 Equatorial Guinea GQ GNQ 1983
## 2155 Equatorial Guinea GQ GNQ 1984
## 2156 Equatorial Guinea GQ GNQ 1985
## 2157 Equatorial Guinea GQ GNQ 1986
## 2158 Equatorial Guinea GQ GNQ 1987
## 2159 Equatorial Guinea GQ GNQ 1988
## 2160 Equatorial Guinea GQ GNQ 1989
## 2161 Equatorial Guinea GQ GNQ 1990
## 2162 Equatorial Guinea GQ GNQ 1991
## 2163 Equatorial Guinea GQ GNQ 1992
## 2164 Equatorial Guinea GQ GNQ 1993
## 2165 Equatorial Guinea GQ GNQ 1994
## 2166 Equatorial Guinea GQ GNQ 1995
## 2167 Equatorial Guinea GQ GNQ 1996
## 2168 Equatorial Guinea GQ GNQ 1997
## 2169 Equatorial Guinea GQ GNQ 1998
## 2170 Equatorial Guinea GQ GNQ 1999
## 2171 Equatorial Guinea GQ GNQ 2000
## 2172 Equatorial Guinea GQ GNQ 2001
## 2173 Equatorial Guinea GQ GNQ 2002
## 2174 Equatorial Guinea GQ GNQ 2003
## 2175 Equatorial Guinea GQ GNQ 2004
## 2176 Equatorial Guinea GQ GNQ 2005
## 2177 Equatorial Guinea GQ GNQ 2006
## 2178 Equatorial Guinea GQ GNQ 2007
## 2179 Equatorial Guinea GQ GNQ 2008
## 2180 Equatorial Guinea GQ GNQ 2009
## 2181 Equatorial Guinea GQ GNQ 2010
## 2182 Equatorial Guinea GQ GNQ 2011
## 2183 Equatorial Guinea GQ GNQ 2012
## 2184 Equatorial Guinea GQ GNQ 2013
## 2185 Eritrea ER ERI 1980
## 2186 Eritrea ER ERI 1981
## 2187 Eritrea ER ERI 1982
## 2188 Eritrea ER ERI 1983
## 2189 Eritrea ER ERI 1984
## 2190 Eritrea ER ERI 1985
## 2191 Eritrea ER ERI 1986
## 2192 Eritrea ER ERI 1987
## 2193 Eritrea ER ERI 1988
## 2194 Eritrea ER ERI 1989
## 2195 Eritrea ER ERI 1990
## 2196 Eritrea ER ERI 1991
## 2197 Eritrea ER ERI 1992
## 2198 Eritrea ER ERI 1993
## 2199 Eritrea ER ERI 1994
## 2200 Eritrea ER ERI 1995
## 2201 Eritrea ER ERI 1996
## 2202 Eritrea ER ERI 1997
## 2203 Eritrea ER ERI 1998
## 2204 Eritrea ER ERI 1999
## 2205 Eritrea ER ERI 2000
## 2206 Eritrea ER ERI 2001
## 2207 Eritrea ER ERI 2002
## 2208 Eritrea ER ERI 2003
## 2209 Eritrea ER ERI 2004
## 2210 Eritrea ER ERI 2005
## 2211 Eritrea ER ERI 2006
## 2212 Eritrea ER ERI 2007
## 2213 Eritrea ER ERI 2008
## 2214 Eritrea ER ERI 2009
## 2215 Eritrea ER ERI 2010
## 2216 Eritrea ER ERI 2011
## 2217 Eritrea ER ERI 2012
## 2218 Eritrea ER ERI 2013
## 2219 Estonia EE EST 1980
## 2220 Estonia EE EST 1981
## 2221 Estonia EE EST 1982
## 2222 Estonia EE EST 1983
## 2223 Estonia EE EST 1984
## 2224 Estonia EE EST 1985
## 2225 Estonia EE EST 1986
## 2226 Estonia EE EST 1987
## 2227 Estonia EE EST 1988
## 2228 Estonia EE EST 1989
## 2229 Estonia EE EST 1990
## 2230 Estonia EE EST 1991
## 2231 Estonia EE EST 1992
## 2232 Estonia EE EST 1993
## 2233 Estonia EE EST 1994
## 2234 Estonia EE EST 1995
## 2235 Estonia EE EST 1996
## 2236 Estonia EE EST 1997
## 2237 Estonia EE EST 1998
## 2238 Estonia EE EST 1999
## 2239 Estonia EE EST 2000
## 2240 Estonia EE EST 2001
## 2241 Estonia EE EST 2002
## 2242 Estonia EE EST 2003
## 2243 Estonia EE EST 2004
## 2244 Estonia EE EST 2005
## 2245 Estonia EE EST 2006
## 2246 Estonia EE EST 2007
## 2247 Estonia EE EST 2008
## 2248 Estonia EE EST 2009
## 2249 Estonia EE EST 2010
## 2250 Estonia EE EST 2011
## 2251 Estonia EE EST 2012
## 2252 Estonia EE EST 2013
## 2253 Ethiopia ET ETH 1980
## 2254 Ethiopia ET ETH 1981
## 2255 Ethiopia ET ETH 1982
## 2256 Ethiopia ET ETH 1983
## 2257 Ethiopia ET ETH 1984
## 2258 Ethiopia ET ETH 1985
## 2259 Ethiopia ET ETH 1986
## 2260 Ethiopia ET ETH 1987
## 2261 Ethiopia ET ETH 1988
## 2262 Ethiopia ET ETH 1989
## 2263 Ethiopia ET ETH 1990
## 2264 Ethiopia ET ETH 1991
## 2265 Ethiopia ET ETH 1992
## 2266 Ethiopia ET ETH 1993
## 2267 Ethiopia ET ETH 1994
## 2268 Ethiopia ET ETH 1995
## 2269 Ethiopia ET ETH 1996
## 2270 Ethiopia ET ETH 1997
## 2271 Ethiopia ET ETH 1998
## 2272 Ethiopia ET ETH 1999
## 2273 Ethiopia ET ETH 2000
## 2274 Ethiopia ET ETH 2001
## 2275 Ethiopia ET ETH 2002
## 2276 Ethiopia ET ETH 2003
## 2277 Ethiopia ET ETH 2004
## 2278 Ethiopia ET ETH 2005
## 2279 Ethiopia ET ETH 2006
## 2280 Ethiopia ET ETH 2007
## 2281 Ethiopia ET ETH 2008
## 2282 Ethiopia ET ETH 2009
## 2283 Ethiopia ET ETH 2010
## 2284 Ethiopia ET ETH 2011
## 2285 Ethiopia ET ETH 2012
## 2286 Ethiopia ET ETH 2013
## 2287 Fiji FJ FJI 1980
## 2288 Fiji FJ FJI 1981
## 2289 Fiji FJ FJI 1982
## 2290 Fiji FJ FJI 1983
## 2291 Fiji FJ FJI 1984
## 2292 Fiji FJ FJI 1985
## 2293 Fiji FJ FJI 1986
## 2294 Fiji FJ FJI 1987
## 2295 Fiji FJ FJI 1988
## 2296 Fiji FJ FJI 1989
## 2297 Fiji FJ FJI 1990
## 2298 Fiji FJ FJI 1991
## 2299 Fiji FJ FJI 1992
## 2300 Fiji FJ FJI 1993
## 2301 Fiji FJ FJI 1994
## 2302 Fiji FJ FJI 1995
## 2303 Fiji FJ FJI 1996
## 2304 Fiji FJ FJI 1997
## 2305 Fiji FJ FJI 1998
## 2306 Fiji FJ FJI 1999
## 2307 Fiji FJ FJI 2000
## 2308 Fiji FJ FJI 2001
## 2309 Fiji FJ FJI 2002
## 2310 Fiji FJ FJI 2003
## 2311 Fiji FJ FJI 2004
## 2312 Fiji FJ FJI 2005
## 2313 Fiji FJ FJI 2006
## 2314 Fiji FJ FJI 2007
## 2315 Fiji FJ FJI 2008
## 2316 Fiji FJ FJI 2009
## 2317 Fiji FJ FJI 2010
## 2318 Fiji FJ FJI 2011
## 2319 Fiji FJ FJI 2012
## 2320 Fiji FJ FJI 2013
## 2321 Finland FI FIN 1980
## 2322 Finland FI FIN 1981
## 2323 Finland FI FIN 1982
## 2324 Finland FI FIN 1983
## 2325 Finland FI FIN 1984
## 2326 Finland FI FIN 1985
## 2327 Finland FI FIN 1986
## 2328 Finland FI FIN 1987
## 2329 Finland FI FIN 1988
## 2330 Finland FI FIN 1989
## 2331 Finland FI FIN 1990
## 2332 Finland FI FIN 1991
## 2333 Finland FI FIN 1992
## 2334 Finland FI FIN 1993
## 2335 Finland FI FIN 1994
## 2336 Finland FI FIN 1995
## 2337 Finland FI FIN 1996
## 2338 Finland FI FIN 1997
## 2339 Finland FI FIN 1998
## 2340 Finland FI FIN 1999
## 2341 Finland FI FIN 2000
## 2342 Finland FI FIN 2001
## 2343 Finland FI FIN 2002
## 2344 Finland FI FIN 2003
## 2345 Finland FI FIN 2004
## 2346 Finland FI FIN 2005
## 2347 Finland FI FIN 2006
## 2348 Finland FI FIN 2007
## 2349 Finland FI FIN 2008
## 2350 Finland FI FIN 2009
## 2351 Finland FI FIN 2010
## 2352 Finland FI FIN 2011
## 2353 Finland FI FIN 2012
## 2354 Finland FI FIN 2013
## 2355 France FR FRA 1980
## 2356 France FR FRA 1981
## 2357 France FR FRA 1982
## 2358 France FR FRA 1983
## 2359 France FR FRA 1984
## 2360 France FR FRA 1985
## 2361 France FR FRA 1986
## 2362 France FR FRA 1987
## 2363 France FR FRA 1988
## 2364 France FR FRA 1989
## 2365 France FR FRA 1990
## 2366 France FR FRA 1991
## 2367 France FR FRA 1992
## 2368 France FR FRA 1993
## 2369 France FR FRA 1994
## 2370 France FR FRA 1995
## 2371 France FR FRA 1996
## 2372 France FR FRA 1997
## 2373 France FR FRA 1998
## 2374 France FR FRA 1999
## 2375 France FR FRA 2000
## 2376 France FR FRA 2001
## 2377 France FR FRA 2002
## 2378 France FR FRA 2003
## 2379 France FR FRA 2004
## 2380 France FR FRA 2005
## 2381 France FR FRA 2006
## 2382 France FR FRA 2007
## 2383 France FR FRA 2008
## 2384 France FR FRA 2009
## 2385 France FR FRA 2010
## 2386 France FR FRA 2011
## 2387 France FR FRA 2012
## 2388 France FR FRA 2013
## 2389 French Polynesia PF PYF 1980
## 2390 French Polynesia PF PYF 1981
## 2391 French Polynesia PF PYF 1982
## 2392 French Polynesia PF PYF 1983
## 2393 French Polynesia PF PYF 1984
## 2394 French Polynesia PF PYF 1985
## 2395 French Polynesia PF PYF 1986
## 2396 French Polynesia PF PYF 1987
## 2397 French Polynesia PF PYF 1988
## 2398 French Polynesia PF PYF 1989
## 2399 French Polynesia PF PYF 1990
## 2400 French Polynesia PF PYF 1991
## 2401 French Polynesia PF PYF 1992
## 2402 French Polynesia PF PYF 1993
## 2403 French Polynesia PF PYF 1994
## 2404 French Polynesia PF PYF 1995
## 2405 French Polynesia PF PYF 1996
## 2406 French Polynesia PF PYF 1997
## 2407 French Polynesia PF PYF 1998
## 2408 French Polynesia PF PYF 1999
## 2409 French Polynesia PF PYF 2000
## 2410 French Polynesia PF PYF 2001
## 2411 French Polynesia PF PYF 2002
## 2412 French Polynesia PF PYF 2003
## 2413 French Polynesia PF PYF 2004
## 2414 French Polynesia PF PYF 2005
## 2415 French Polynesia PF PYF 2006
## 2416 French Polynesia PF PYF 2007
## 2417 French Polynesia PF PYF 2008
## 2418 French Polynesia PF PYF 2009
## 2419 French Polynesia PF PYF 2010
## 2420 French Polynesia PF PYF 2011
## 2421 French Polynesia PF PYF 2012
## 2422 French Polynesia PF PYF 2013
## 2423 Gabon GA GAB 1980
## 2424 Gabon GA GAB 1981
## 2425 Gabon GA GAB 1982
## 2426 Gabon GA GAB 1983
## 2427 Gabon GA GAB 1984
## 2428 Gabon GA GAB 1985
## 2429 Gabon GA GAB 1986
## 2430 Gabon GA GAB 1987
## 2431 Gabon GA GAB 1988
## 2432 Gabon GA GAB 1989
## 2433 Gabon GA GAB 1990
## 2434 Gabon GA GAB 1991
## 2435 Gabon GA GAB 1992
## 2436 Gabon GA GAB 1993
## 2437 Gabon GA GAB 1994
## 2438 Gabon GA GAB 1995
## 2439 Gabon GA GAB 1996
## 2440 Gabon GA GAB 1997
## 2441 Gabon GA GAB 1998
## 2442 Gabon GA GAB 1999
## 2443 Gabon GA GAB 2000
## 2444 Gabon GA GAB 2001
## 2445 Gabon GA GAB 2002
## 2446 Gabon GA GAB 2003
## 2447 Gabon GA GAB 2004
## 2448 Gabon GA GAB 2005
## 2449 Gabon GA GAB 2006
## 2450 Gabon GA GAB 2007
## 2451 Gabon GA GAB 2008
## 2452 Gabon GA GAB 2009
## 2453 Gabon GA GAB 2010
## 2454 Gabon GA GAB 2011
## 2455 Gabon GA GAB 2012
## 2456 Gabon GA GAB 2013
## 2457 Gambia GM GMB 1980
## 2458 Gambia GM GMB 1981
## 2459 Gambia GM GMB 1982
## 2460 Gambia GM GMB 1983
## 2461 Gambia GM GMB 1984
## 2462 Gambia GM GMB 1985
## 2463 Gambia GM GMB 1986
## 2464 Gambia GM GMB 1987
## 2465 Gambia GM GMB 1988
## 2466 Gambia GM GMB 1989
## 2467 Gambia GM GMB 1990
## 2468 Gambia GM GMB 1991
## 2469 Gambia GM GMB 1992
## 2470 Gambia GM GMB 1993
## 2471 Gambia GM GMB 1994
## 2472 Gambia GM GMB 1995
## 2473 Gambia GM GMB 1996
## 2474 Gambia GM GMB 1997
## 2475 Gambia GM GMB 1998
## 2476 Gambia GM GMB 1999
## 2477 Gambia GM GMB 2000
## 2478 Gambia GM GMB 2001
## 2479 Gambia GM GMB 2002
## 2480 Gambia GM GMB 2003
## 2481 Gambia GM GMB 2004
## 2482 Gambia GM GMB 2005
## 2483 Gambia GM GMB 2006
## 2484 Gambia GM GMB 2007
## 2485 Gambia GM GMB 2008
## 2486 Gambia GM GMB 2009
## 2487 Gambia GM GMB 2010
## 2488 Gambia GM GMB 2011
## 2489 Gambia GM GMB 2012
## 2490 Gambia GM GMB 2013
## 2491 Georgia GE GEO 1980
## 2492 Georgia GE GEO 1981
## 2493 Georgia GE GEO 1982
## 2494 Georgia GE GEO 1983
## 2495 Georgia GE GEO 1984
## 2496 Georgia GE GEO 1985
## 2497 Georgia GE GEO 1986
## 2498 Georgia GE GEO 1987
## 2499 Georgia GE GEO 1988
## 2500 Georgia GE GEO 1989
## 2501 Georgia GE GEO 1990
## 2502 Georgia GE GEO 1991
## 2503 Georgia GE GEO 1992
## 2504 Georgia GE GEO 1993
## 2505 Georgia GE GEO 1994
## 2506 Georgia GE GEO 1995
## 2507 Georgia GE GEO 1996
## 2508 Georgia GE GEO 1997
## 2509 Georgia GE GEO 1998
## 2510 Georgia GE GEO 1999
## 2511 Georgia GE GEO 2000
## 2512 Georgia GE GEO 2001
## 2513 Georgia GE GEO 2002
## 2514 Georgia GE GEO 2003
## 2515 Georgia GE GEO 2004
## 2516 Georgia GE GEO 2005
## 2517 Georgia GE GEO 2006
## 2518 Georgia GE GEO 2007
## 2519 Georgia GE GEO 2008
## 2520 Georgia GE GEO 2009
## 2521 Georgia GE GEO 2010
## 2522 Georgia GE GEO 2011
## 2523 Georgia GE GEO 2012
## 2524 Georgia GE GEO 2013
## 2525 Germany DE DEU 1980
## 2526 Germany DE DEU 1981
## 2527 Germany DE DEU 1982
## 2528 Germany DE DEU 1983
## 2529 Germany DE DEU 1984
## 2530 Germany DE DEU 1985
## 2531 Germany DE DEU 1986
## 2532 Germany DE DEU 1987
## 2533 Germany DE DEU 1988
## 2534 Germany DE DEU 1989
## 2535 Germany DE DEU 1990
## 2536 Germany DE DEU 1991
## 2537 Germany DE DEU 1992
## 2538 Germany DE DEU 1993
## 2539 Germany DE DEU 1994
## 2540 Germany DE DEU 1995
## 2541 Germany DE DEU 1996
## 2542 Germany DE DEU 1997
## 2543 Germany DE DEU 1998
## 2544 Germany DE DEU 1999
## 2545 Germany DE DEU 2000
## 2546 Germany DE DEU 2001
## 2547 Germany DE DEU 2002
## 2548 Germany DE DEU 2003
## 2549 Germany DE DEU 2004
## 2550 Germany DE DEU 2005
## 2551 Germany DE DEU 2006
## 2552 Germany DE DEU 2007
## 2553 Germany DE DEU 2008
## 2554 Germany DE DEU 2009
## 2555 Germany DE DEU 2010
## 2556 Germany DE DEU 2011
## 2557 Germany DE DEU 2012
## 2558 Germany DE DEU 2013
## 2559 Ghana GH GHA 1980
## 2560 Ghana GH GHA 1981
## 2561 Ghana GH GHA 1982
## 2562 Ghana GH GHA 1983
## 2563 Ghana GH GHA 1984
## 2564 Ghana GH GHA 1985
## 2565 Ghana GH GHA 1986
## 2566 Ghana GH GHA 1987
## 2567 Ghana GH GHA 1988
## 2568 Ghana GH GHA 1989
## 2569 Ghana GH GHA 1990
## 2570 Ghana GH GHA 1991
## 2571 Ghana GH GHA 1992
## 2572 Ghana GH GHA 1993
## 2573 Ghana GH GHA 1994
## 2574 Ghana GH GHA 1995
## 2575 Ghana GH GHA 1996
## 2576 Ghana GH GHA 1997
## 2577 Ghana GH GHA 1998
## 2578 Ghana GH GHA 1999
## 2579 Ghana GH GHA 2000
## 2580 Ghana GH GHA 2001
## 2581 Ghana GH GHA 2002
## 2582 Ghana GH GHA 2003
## 2583 Ghana GH GHA 2004
## 2584 Ghana GH GHA 2005
## 2585 Ghana GH GHA 2006
## 2586 Ghana GH GHA 2007
## 2587 Ghana GH GHA 2008
## 2588 Ghana GH GHA 2009
## 2589 Ghana GH GHA 2010
## 2590 Ghana GH GHA 2011
## 2591 Ghana GH GHA 2012
## 2592 Ghana GH GHA 2013
## 2593 Greece GR GRC 1980
## 2594 Greece GR GRC 1981
## 2595 Greece GR GRC 1982
## 2596 Greece GR GRC 1983
## 2597 Greece GR GRC 1984
## 2598 Greece GR GRC 1985
## 2599 Greece GR GRC 1986
## 2600 Greece GR GRC 1987
## 2601 Greece GR GRC 1988
## 2602 Greece GR GRC 1989
## 2603 Greece GR GRC 1990
## 2604 Greece GR GRC 1991
## 2605 Greece GR GRC 1992
## 2606 Greece GR GRC 1993
## 2607 Greece GR GRC 1994
## 2608 Greece GR GRC 1995
## 2609 Greece GR GRC 1996
## 2610 Greece GR GRC 1997
## 2611 Greece GR GRC 1998
## 2612 Greece GR GRC 1999
## 2613 Greece GR GRC 2000
## 2614 Greece GR GRC 2001
## 2615 Greece GR GRC 2002
## 2616 Greece GR GRC 2003
## 2617 Greece GR GRC 2004
## 2618 Greece GR GRC 2005
## 2619 Greece GR GRC 2006
## 2620 Greece GR GRC 2007
## 2621 Greece GR GRC 2008
## 2622 Greece GR GRC 2009
## 2623 Greece GR GRC 2010
## 2624 Greece GR GRC 2011
## 2625 Greece GR GRC 2012
## 2626 Greece GR GRC 2013
## 2627 Greenland GL GRL 1980
## 2628 Greenland GL GRL 1981
## 2629 Greenland GL GRL 1982
## 2630 Greenland GL GRL 1983
## 2631 Greenland GL GRL 1984
## 2632 Greenland GL GRL 1985
## 2633 Greenland GL GRL 1986
## 2634 Greenland GL GRL 1987
## 2635 Greenland GL GRL 1988
## 2636 Greenland GL GRL 1989
## 2637 Greenland GL GRL 1990
## 2638 Greenland GL GRL 1991
## 2639 Greenland GL GRL 1992
## 2640 Greenland GL GRL 1993
## 2641 Greenland GL GRL 1994
## 2642 Greenland GL GRL 1995
## 2643 Greenland GL GRL 1996
## 2644 Greenland GL GRL 1997
## 2645 Greenland GL GRL 1998
## 2646 Greenland GL GRL 1999
## 2647 Greenland GL GRL 2000
## 2648 Greenland GL GRL 2001
## 2649 Greenland GL GRL 2002
## 2650 Greenland GL GRL 2003
## 2651 Greenland GL GRL 2004
## 2652 Greenland GL GRL 2005
## 2653 Greenland GL GRL 2006
## 2654 Greenland GL GRL 2007
## 2655 Greenland GL GRL 2008
## 2656 Greenland GL GRL 2009
## 2657 Greenland GL GRL 2010
## 2658 Greenland GL GRL 2011
## 2659 Greenland GL GRL 2012
## 2660 Greenland GL GRL 2013
## 2661 Grenada GD GRD 1980
## 2662 Grenada GD GRD 1981
## 2663 Grenada GD GRD 1982
## 2664 Grenada GD GRD 1983
## 2665 Grenada GD GRD 1984
## 2666 Grenada GD GRD 1985
## 2667 Grenada GD GRD 1986
## 2668 Grenada GD GRD 1987
## 2669 Grenada GD GRD 1988
## 2670 Grenada GD GRD 1989
## 2671 Grenada GD GRD 1990
## 2672 Grenada GD GRD 1991
## 2673 Grenada GD GRD 1992
## 2674 Grenada GD GRD 1993
## 2675 Grenada GD GRD 1994
## 2676 Grenada GD GRD 1995
## 2677 Grenada GD GRD 1996
## 2678 Grenada GD GRD 1997
## 2679 Grenada GD GRD 1998
## 2680 Grenada GD GRD 1999
## 2681 Grenada GD GRD 2000
## 2682 Grenada GD GRD 2001
## 2683 Grenada GD GRD 2002
## 2684 Grenada GD GRD 2003
## 2685 Grenada GD GRD 2004
## 2686 Grenada GD GRD 2005
## 2687 Grenada GD GRD 2006
## 2688 Grenada GD GRD 2007
## 2689 Grenada GD GRD 2008
## 2690 Grenada GD GRD 2009
## 2691 Grenada GD GRD 2010
## 2692 Grenada GD GRD 2011
## 2693 Grenada GD GRD 2012
## 2694 Grenada GD GRD 2013
## 2695 Guam GU GUM 1980
## 2696 Guam GU GUM 1981
## 2697 Guam GU GUM 1982
## 2698 Guam GU GUM 1983
## 2699 Guam GU GUM 1984
## 2700 Guam GU GUM 1985
## 2701 Guam GU GUM 1986
## 2702 Guam GU GUM 1987
## 2703 Guam GU GUM 1988
## 2704 Guam GU GUM 1989
## 2705 Guam GU GUM 1990
## 2706 Guam GU GUM 1991
## 2707 Guam GU GUM 1992
## 2708 Guam GU GUM 1993
## 2709 Guam GU GUM 1994
## 2710 Guam GU GUM 1995
## 2711 Guam GU GUM 1996
## 2712 Guam GU GUM 1997
## 2713 Guam GU GUM 1998
## 2714 Guam GU GUM 1999
## 2715 Guam GU GUM 2000
## 2716 Guam GU GUM 2001
## 2717 Guam GU GUM 2002
## 2718 Guam GU GUM 2003
## 2719 Guam GU GUM 2004
## 2720 Guam GU GUM 2005
## 2721 Guam GU GUM 2006
## 2722 Guam GU GUM 2007
## 2723 Guam GU GUM 2008
## 2724 Guam GU GUM 2009
## 2725 Guam GU GUM 2010
## 2726 Guam GU GUM 2011
## 2727 Guam GU GUM 2012
## 2728 Guam GU GUM 2013
## 2729 Guatemala GT GTM 1980
## 2730 Guatemala GT GTM 1981
## 2731 Guatemala GT GTM 1982
## 2732 Guatemala GT GTM 1983
## 2733 Guatemala GT GTM 1984
## 2734 Guatemala GT GTM 1985
## 2735 Guatemala GT GTM 1986
## 2736 Guatemala GT GTM 1987
## 2737 Guatemala GT GTM 1988
## 2738 Guatemala GT GTM 1989
## 2739 Guatemala GT GTM 1990
## 2740 Guatemala GT GTM 1991
## 2741 Guatemala GT GTM 1992
## 2742 Guatemala GT GTM 1993
## 2743 Guatemala GT GTM 1994
## 2744 Guatemala GT GTM 1995
## 2745 Guatemala GT GTM 1996
## 2746 Guatemala GT GTM 1997
## 2747 Guatemala GT GTM 1998
## 2748 Guatemala GT GTM 1999
## 2749 Guatemala GT GTM 2000
## 2750 Guatemala GT GTM 2001
## 2751 Guatemala GT GTM 2002
## 2752 Guatemala GT GTM 2003
## 2753 Guatemala GT GTM 2004
## 2754 Guatemala GT GTM 2005
## 2755 Guatemala GT GTM 2006
## 2756 Guatemala GT GTM 2007
## 2757 Guatemala GT GTM 2008
## 2758 Guatemala GT GTM 2009
## 2759 Guatemala GT GTM 2010
## 2760 Guatemala GT GTM 2011
## 2761 Guatemala GT GTM 2012
## 2762 Guatemala GT GTM 2013
## 2763 Guinea GN GIN 1980
## 2764 Guinea GN GIN 1981
## 2765 Guinea GN GIN 1982
## 2766 Guinea GN GIN 1983
## 2767 Guinea GN GIN 1984
## 2768 Guinea GN GIN 1985
## 2769 Guinea GN GIN 1986
## 2770 Guinea GN GIN 1987
## 2771 Guinea GN GIN 1988
## 2772 Guinea GN GIN 1989
## 2773 Guinea GN GIN 1990
## 2774 Guinea GN GIN 1991
## 2775 Guinea GN GIN 1992
## 2776 Guinea GN GIN 1993
## 2777 Guinea GN GIN 1994
## 2778 Guinea GN GIN 1995
## 2779 Guinea GN GIN 1996
## 2780 Guinea GN GIN 1997
## 2781 Guinea GN GIN 1998
## 2782 Guinea GN GIN 1999
## 2783 Guinea GN GIN 2000
## 2784 Guinea GN GIN 2001
## 2785 Guinea GN GIN 2002
## 2786 Guinea GN GIN 2003
## 2787 Guinea GN GIN 2004
## 2788 Guinea GN GIN 2005
## 2789 Guinea GN GIN 2006
## 2790 Guinea GN GIN 2007
## 2791 Guinea GN GIN 2008
## 2792 Guinea GN GIN 2009
## 2793 Guinea GN GIN 2010
## 2794 Guinea GN GIN 2011
## 2795 Guinea GN GIN 2012
## 2796 Guinea GN GIN 2013
## 2797 Guinea-Bissau GW GNB 1980
## 2798 Guinea-Bissau GW GNB 1981
## 2799 Guinea-Bissau GW GNB 1982
## 2800 Guinea-Bissau GW GNB 1983
## 2801 Guinea-Bissau GW GNB 1984
## 2802 Guinea-Bissau GW GNB 1985
## 2803 Guinea-Bissau GW GNB 1986
## 2804 Guinea-Bissau GW GNB 1987
## 2805 Guinea-Bissau GW GNB 1988
## 2806 Guinea-Bissau GW GNB 1989
## 2807 Guinea-Bissau GW GNB 1990
## 2808 Guinea-Bissau GW GNB 1991
## 2809 Guinea-Bissau GW GNB 1992
## 2810 Guinea-Bissau GW GNB 1993
## 2811 Guinea-Bissau GW GNB 1994
## 2812 Guinea-Bissau GW GNB 1995
## 2813 Guinea-Bissau GW GNB 1996
## 2814 Guinea-Bissau GW GNB 1997
## 2815 Guinea-Bissau GW GNB 1998
## 2816 Guinea-Bissau GW GNB 1999
## 2817 Guinea-Bissau GW GNB 2000
## 2818 Guinea-Bissau GW GNB 2001
## 2819 Guinea-Bissau GW GNB 2002
## 2820 Guinea-Bissau GW GNB 2003
## 2821 Guinea-Bissau GW GNB 2004
## 2822 Guinea-Bissau GW GNB 2005
## 2823 Guinea-Bissau GW GNB 2006
## 2824 Guinea-Bissau GW GNB 2007
## 2825 Guinea-Bissau GW GNB 2008
## 2826 Guinea-Bissau GW GNB 2009
## 2827 Guinea-Bissau GW GNB 2010
## 2828 Guinea-Bissau GW GNB 2011
## 2829 Guinea-Bissau GW GNB 2012
## 2830 Guinea-Bissau GW GNB 2013
## 2831 Guyana GY GUY 1980
## 2832 Guyana GY GUY 1981
## 2833 Guyana GY GUY 1982
## 2834 Guyana GY GUY 1983
## 2835 Guyana GY GUY 1984
## 2836 Guyana GY GUY 1985
## 2837 Guyana GY GUY 1986
## 2838 Guyana GY GUY 1987
## 2839 Guyana GY GUY 1988
## 2840 Guyana GY GUY 1989
## 2841 Guyana GY GUY 1990
## 2842 Guyana GY GUY 1991
## 2843 Guyana GY GUY 1992
## 2844 Guyana GY GUY 1993
## 2845 Guyana GY GUY 1994
## 2846 Guyana GY GUY 1995
## 2847 Guyana GY GUY 1996
## 2848 Guyana GY GUY 1997
## 2849 Guyana GY GUY 1998
## 2850 Guyana GY GUY 1999
## 2851 Guyana GY GUY 2000
## 2852 Guyana GY GUY 2001
## 2853 Guyana GY GUY 2002
## 2854 Guyana GY GUY 2003
## 2855 Guyana GY GUY 2004
## 2856 Guyana GY GUY 2005
## 2857 Guyana GY GUY 2006
## 2858 Guyana GY GUY 2007
## 2859 Guyana GY GUY 2008
## 2860 Guyana GY GUY 2009
## 2861 Guyana GY GUY 2010
## 2862 Guyana GY GUY 2011
## 2863 Guyana GY GUY 2012
## 2864 Guyana GY GUY 2013
## 2865 Haiti HT HTI 1980
## 2866 Haiti HT HTI 1981
## 2867 Haiti HT HTI 1982
## 2868 Haiti HT HTI 1983
## 2869 Haiti HT HTI 1984
## 2870 Haiti HT HTI 1985
## 2871 Haiti HT HTI 1986
## 2872 Haiti HT HTI 1987
## 2873 Haiti HT HTI 1988
## 2874 Haiti HT HTI 1989
## 2875 Haiti HT HTI 1990
## 2876 Haiti HT HTI 1991
## 2877 Haiti HT HTI 1992
## 2878 Haiti HT HTI 1993
## 2879 Haiti HT HTI 1994
## 2880 Haiti HT HTI 1995
## 2881 Haiti HT HTI 1996
## 2882 Haiti HT HTI 1997
## 2883 Haiti HT HTI 1998
## 2884 Haiti HT HTI 1999
## 2885 Haiti HT HTI 2000
## 2886 Haiti HT HTI 2001
## 2887 Haiti HT HTI 2002
## 2888 Haiti HT HTI 2003
## 2889 Haiti HT HTI 2004
## 2890 Haiti HT HTI 2005
## 2891 Haiti HT HTI 2006
## 2892 Haiti HT HTI 2007
## 2893 Haiti HT HTI 2008
## 2894 Haiti HT HTI 2009
## 2895 Haiti HT HTI 2010
## 2896 Haiti HT HTI 2011
## 2897 Haiti HT HTI 2012
## 2898 Haiti HT HTI 2013
## 2899 Honduras HN HND 1980
## 2900 Honduras HN HND 1981
## 2901 Honduras HN HND 1982
## 2902 Honduras HN HND 1983
## 2903 Honduras HN HND 1984
## 2904 Honduras HN HND 1985
## 2905 Honduras HN HND 1986
## 2906 Honduras HN HND 1987
## 2907 Honduras HN HND 1988
## 2908 Honduras HN HND 1989
## 2909 Honduras HN HND 1990
## 2910 Honduras HN HND 1991
## 2911 Honduras HN HND 1992
## 2912 Honduras HN HND 1993
## 2913 Honduras HN HND 1994
## 2914 Honduras HN HND 1995
## 2915 Honduras HN HND 1996
## 2916 Honduras HN HND 1997
## 2917 Honduras HN HND 1998
## 2918 Honduras HN HND 1999
## 2919 Honduras HN HND 2000
## 2920 Honduras HN HND 2001
## 2921 Honduras HN HND 2002
## 2922 Honduras HN HND 2003
## 2923 Honduras HN HND 2004
## 2924 Honduras HN HND 2005
## 2925 Honduras HN HND 2006
## 2926 Honduras HN HND 2007
## 2927 Honduras HN HND 2008
## 2928 Honduras HN HND 2009
## 2929 Honduras HN HND 2010
## 2930 Honduras HN HND 2011
## 2931 Honduras HN HND 2012
## 2932 Honduras HN HND 2013
## 2933 Hungary HU HUN 1980
## 2934 Hungary HU HUN 1981
## 2935 Hungary HU HUN 1982
## 2936 Hungary HU HUN 1983
## 2937 Hungary HU HUN 1984
## 2938 Hungary HU HUN 1985
## 2939 Hungary HU HUN 1986
## 2940 Hungary HU HUN 1987
## 2941 Hungary HU HUN 1988
## 2942 Hungary HU HUN 1989
## 2943 Hungary HU HUN 1990
## 2944 Hungary HU HUN 1991
## 2945 Hungary HU HUN 1992
## 2946 Hungary HU HUN 1993
## 2947 Hungary HU HUN 1994
## 2948 Hungary HU HUN 1995
## 2949 Hungary HU HUN 1996
## 2950 Hungary HU HUN 1997
## 2951 Hungary HU HUN 1998
## 2952 Hungary HU HUN 1999
## 2953 Hungary HU HUN 2000
## 2954 Hungary HU HUN 2001
## 2955 Hungary HU HUN 2002
## 2956 Hungary HU HUN 2003
## 2957 Hungary HU HUN 2004
## 2958 Hungary HU HUN 2005
## 2959 Hungary HU HUN 2006
## 2960 Hungary HU HUN 2007
## 2961 Hungary HU HUN 2008
## 2962 Hungary HU HUN 2009
## 2963 Hungary HU HUN 2010
## 2964 Hungary HU HUN 2011
## 2965 Hungary HU HUN 2012
## 2966 Hungary HU HUN 2013
## 2967 Iceland IS ISL 1980
## 2968 Iceland IS ISL 1981
## 2969 Iceland IS ISL 1982
## 2970 Iceland IS ISL 1983
## 2971 Iceland IS ISL 1984
## 2972 Iceland IS ISL 1985
## 2973 Iceland IS ISL 1986
## 2974 Iceland IS ISL 1987
## 2975 Iceland IS ISL 1988
## 2976 Iceland IS ISL 1989
## 2977 Iceland IS ISL 1990
## 2978 Iceland IS ISL 1991
## 2979 Iceland IS ISL 1992
## 2980 Iceland IS ISL 1993
## 2981 Iceland IS ISL 1994
## 2982 Iceland IS ISL 1995
## 2983 Iceland IS ISL 1996
## 2984 Iceland IS ISL 1997
## 2985 Iceland IS ISL 1998
## 2986 Iceland IS ISL 1999
## 2987 Iceland IS ISL 2000
## 2988 Iceland IS ISL 2001
## 2989 Iceland IS ISL 2002
## 2990 Iceland IS ISL 2003
## 2991 Iceland IS ISL 2004
## 2992 Iceland IS ISL 2005
## 2993 Iceland IS ISL 2006
## 2994 Iceland IS ISL 2007
## 2995 Iceland IS ISL 2008
## 2996 Iceland IS ISL 2009
## 2997 Iceland IS ISL 2010
## 2998 Iceland IS ISL 2011
## 2999 Iceland IS ISL 2012
## 3000 Iceland IS ISL 2013
## 3001 India IN IND 1980
## 3002 India IN IND 1981
## 3003 India IN IND 1982
## 3004 India IN IND 1983
## 3005 India IN IND 1984
## 3006 India IN IND 1985
## 3007 India IN IND 1986
## 3008 India IN IND 1987
## 3009 India IN IND 1988
## 3010 India IN IND 1989
## 3011 India IN IND 1990
## 3012 India IN IND 1991
## 3013 India IN IND 1992
## 3014 India IN IND 1993
## 3015 India IN IND 1994
## 3016 India IN IND 1995
## 3017 India IN IND 1996
## 3018 India IN IND 1997
## 3019 India IN IND 1998
## 3020 India IN IND 1999
## 3021 India IN IND 2000
## 3022 India IN IND 2001
## 3023 India IN IND 2002
## 3024 India IN IND 2003
## 3025 India IN IND 2004
## 3026 India IN IND 2005
## 3027 India IN IND 2006
## 3028 India IN IND 2007
## 3029 India IN IND 2008
## 3030 India IN IND 2009
## 3031 India IN IND 2010
## 3032 India IN IND 2011
## 3033 India IN IND 2012
## 3034 India IN IND 2013
## 3035 Indonesia ID IDN 1980
## 3036 Indonesia ID IDN 1981
## 3037 Indonesia ID IDN 1982
## 3038 Indonesia ID IDN 1983
## 3039 Indonesia ID IDN 1984
## 3040 Indonesia ID IDN 1985
## 3041 Indonesia ID IDN 1986
## 3042 Indonesia ID IDN 1987
## 3043 Indonesia ID IDN 1988
## 3044 Indonesia ID IDN 1989
## 3045 Indonesia ID IDN 1990
## 3046 Indonesia ID IDN 1991
## 3047 Indonesia ID IDN 1992
## 3048 Indonesia ID IDN 1993
## 3049 Indonesia ID IDN 1994
## 3050 Indonesia ID IDN 1995
## 3051 Indonesia ID IDN 1996
## 3052 Indonesia ID IDN 1997
## 3053 Indonesia ID IDN 1998
## 3054 Indonesia ID IDN 1999
## 3055 Indonesia ID IDN 2000
## 3056 Indonesia ID IDN 2001
## 3057 Indonesia ID IDN 2002
## 3058 Indonesia ID IDN 2003
## 3059 Indonesia ID IDN 2004
## 3060 Indonesia ID IDN 2005
## 3061 Indonesia ID IDN 2006
## 3062 Indonesia ID IDN 2007
## 3063 Indonesia ID IDN 2008
## 3064 Indonesia ID IDN 2009
## 3065 Indonesia ID IDN 2010
## 3066 Indonesia ID IDN 2011
## 3067 Indonesia ID IDN 2012
## 3068 Indonesia ID IDN 2013
## 3069 Iran (Islamic Republic of) IR IRN 1980
## 3070 Iran (Islamic Republic of) IR IRN 1981
## 3071 Iran (Islamic Republic of) IR IRN 1982
## 3072 Iran (Islamic Republic of) IR IRN 1983
## 3073 Iran (Islamic Republic of) IR IRN 1984
## 3074 Iran (Islamic Republic of) IR IRN 1985
## 3075 Iran (Islamic Republic of) IR IRN 1986
## 3076 Iran (Islamic Republic of) IR IRN 1987
## 3077 Iran (Islamic Republic of) IR IRN 1988
## 3078 Iran (Islamic Republic of) IR IRN 1989
## 3079 Iran (Islamic Republic of) IR IRN 1990
## 3080 Iran (Islamic Republic of) IR IRN 1991
## 3081 Iran (Islamic Republic of) IR IRN 1992
## 3082 Iran (Islamic Republic of) IR IRN 1993
## 3083 Iran (Islamic Republic of) IR IRN 1994
## 3084 Iran (Islamic Republic of) IR IRN 1995
## 3085 Iran (Islamic Republic of) IR IRN 1996
## 3086 Iran (Islamic Republic of) IR IRN 1997
## 3087 Iran (Islamic Republic of) IR IRN 1998
## 3088 Iran (Islamic Republic of) IR IRN 1999
## 3089 Iran (Islamic Republic of) IR IRN 2000
## 3090 Iran (Islamic Republic of) IR IRN 2001
## 3091 Iran (Islamic Republic of) IR IRN 2002
## 3092 Iran (Islamic Republic of) IR IRN 2003
## 3093 Iran (Islamic Republic of) IR IRN 2004
## 3094 Iran (Islamic Republic of) IR IRN 2005
## 3095 Iran (Islamic Republic of) IR IRN 2006
## 3096 Iran (Islamic Republic of) IR IRN 2007
## 3097 Iran (Islamic Republic of) IR IRN 2008
## 3098 Iran (Islamic Republic of) IR IRN 2009
## 3099 Iran (Islamic Republic of) IR IRN 2010
## 3100 Iran (Islamic Republic of) IR IRN 2011
## 3101 Iran (Islamic Republic of) IR IRN 2012
## 3102 Iran (Islamic Republic of) IR IRN 2013
## 3103 Iraq IQ IRQ 1980
## 3104 Iraq IQ IRQ 1981
## 3105 Iraq IQ IRQ 1982
## 3106 Iraq IQ IRQ 1983
## 3107 Iraq IQ IRQ 1984
## 3108 Iraq IQ IRQ 1985
## 3109 Iraq IQ IRQ 1986
## 3110 Iraq IQ IRQ 1987
## 3111 Iraq IQ IRQ 1988
## 3112 Iraq IQ IRQ 1989
## 3113 Iraq IQ IRQ 1990
## 3114 Iraq IQ IRQ 1991
## 3115 Iraq IQ IRQ 1992
## 3116 Iraq IQ IRQ 1993
## 3117 Iraq IQ IRQ 1994
## 3118 Iraq IQ IRQ 1995
## 3119 Iraq IQ IRQ 1996
## 3120 Iraq IQ IRQ 1997
## 3121 Iraq IQ IRQ 1998
## 3122 Iraq IQ IRQ 1999
## 3123 Iraq IQ IRQ 2000
## 3124 Iraq IQ IRQ 2001
## 3125 Iraq IQ IRQ 2002
## 3126 Iraq IQ IRQ 2003
## 3127 Iraq IQ IRQ 2004
## 3128 Iraq IQ IRQ 2005
## 3129 Iraq IQ IRQ 2006
## 3130 Iraq IQ IRQ 2007
## 3131 Iraq IQ IRQ 2008
## 3132 Iraq IQ IRQ 2009
## 3133 Iraq IQ IRQ 2010
## 3134 Iraq IQ IRQ 2011
## 3135 Iraq IQ IRQ 2012
## 3136 Iraq IQ IRQ 2013
## 3137 Ireland IE IRL 1980
## 3138 Ireland IE IRL 1981
## 3139 Ireland IE IRL 1982
## 3140 Ireland IE IRL 1983
## 3141 Ireland IE IRL 1984
## 3142 Ireland IE IRL 1985
## 3143 Ireland IE IRL 1986
## 3144 Ireland IE IRL 1987
## 3145 Ireland IE IRL 1988
## 3146 Ireland IE IRL 1989
## 3147 Ireland IE IRL 1990
## 3148 Ireland IE IRL 1991
## 3149 Ireland IE IRL 1992
## 3150 Ireland IE IRL 1993
## 3151 Ireland IE IRL 1994
## 3152 Ireland IE IRL 1995
## 3153 Ireland IE IRL 1996
## 3154 Ireland IE IRL 1997
## 3155 Ireland IE IRL 1998
## 3156 Ireland IE IRL 1999
## 3157 Ireland IE IRL 2000
## 3158 Ireland IE IRL 2001
## 3159 Ireland IE IRL 2002
## 3160 Ireland IE IRL 2003
## 3161 Ireland IE IRL 2004
## 3162 Ireland IE IRL 2005
## 3163 Ireland IE IRL 2006
## 3164 Ireland IE IRL 2007
## 3165 Ireland IE IRL 2008
## 3166 Ireland IE IRL 2009
## 3167 Ireland IE IRL 2010
## 3168 Ireland IE IRL 2011
## 3169 Ireland IE IRL 2012
## 3170 Ireland IE IRL 2013
## 3171 Israel IL ISR 1980
## 3172 Israel IL ISR 1981
## 3173 Israel IL ISR 1982
## 3174 Israel IL ISR 1983
## 3175 Israel IL ISR 1984
## 3176 Israel IL ISR 1985
## 3177 Israel IL ISR 1986
## 3178 Israel IL ISR 1987
## 3179 Israel IL ISR 1988
## 3180 Israel IL ISR 1989
## 3181 Israel IL ISR 1990
## 3182 Israel IL ISR 1991
## 3183 Israel IL ISR 1992
## 3184 Israel IL ISR 1993
## 3185 Israel IL ISR 1994
## 3186 Israel IL ISR 1995
## 3187 Israel IL ISR 1996
## 3188 Israel IL ISR 1997
## 3189 Israel IL ISR 1998
## 3190 Israel IL ISR 1999
## 3191 Israel IL ISR 2000
## 3192 Israel IL ISR 2001
## 3193 Israel IL ISR 2002
## 3194 Israel IL ISR 2003
## 3195 Israel IL ISR 2004
## 3196 Israel IL ISR 2005
## 3197 Israel IL ISR 2006
## 3198 Israel IL ISR 2007
## 3199 Israel IL ISR 2008
## 3200 Israel IL ISR 2009
## 3201 Israel IL ISR 2010
## 3202 Israel IL ISR 2011
## 3203 Israel IL ISR 2012
## 3204 Israel IL ISR 2013
## 3205 Italy IT ITA 1980
## 3206 Italy IT ITA 1981
## 3207 Italy IT ITA 1982
## 3208 Italy IT ITA 1983
## 3209 Italy IT ITA 1984
## 3210 Italy IT ITA 1985
## 3211 Italy IT ITA 1986
## 3212 Italy IT ITA 1987
## 3213 Italy IT ITA 1988
## 3214 Italy IT ITA 1989
## 3215 Italy IT ITA 1990
## 3216 Italy IT ITA 1991
## 3217 Italy IT ITA 1992
## 3218 Italy IT ITA 1993
## 3219 Italy IT ITA 1994
## 3220 Italy IT ITA 1995
## 3221 Italy IT ITA 1996
## 3222 Italy IT ITA 1997
## 3223 Italy IT ITA 1998
## 3224 Italy IT ITA 1999
## 3225 Italy IT ITA 2000
## 3226 Italy IT ITA 2001
## 3227 Italy IT ITA 2002
## 3228 Italy IT ITA 2003
## 3229 Italy IT ITA 2004
## 3230 Italy IT ITA 2005
## 3231 Italy IT ITA 2006
## 3232 Italy IT ITA 2007
## 3233 Italy IT ITA 2008
## 3234 Italy IT ITA 2009
## 3235 Italy IT ITA 2010
## 3236 Italy IT ITA 2011
## 3237 Italy IT ITA 2012
## 3238 Italy IT ITA 2013
## 3239 Jamaica JM JAM 1980
## 3240 Jamaica JM JAM 1981
## 3241 Jamaica JM JAM 1982
## 3242 Jamaica JM JAM 1983
## 3243 Jamaica JM JAM 1984
## 3244 Jamaica JM JAM 1985
## 3245 Jamaica JM JAM 1986
## 3246 Jamaica JM JAM 1987
## 3247 Jamaica JM JAM 1988
## 3248 Jamaica JM JAM 1989
## 3249 Jamaica JM JAM 1990
## 3250 Jamaica JM JAM 1991
## 3251 Jamaica JM JAM 1992
## 3252 Jamaica JM JAM 1993
## 3253 Jamaica JM JAM 1994
## 3254 Jamaica JM JAM 1995
## 3255 Jamaica JM JAM 1996
## 3256 Jamaica JM JAM 1997
## 3257 Jamaica JM JAM 1998
## 3258 Jamaica JM JAM 1999
## 3259 Jamaica JM JAM 2000
## 3260 Jamaica JM JAM 2001
## 3261 Jamaica JM JAM 2002
## 3262 Jamaica JM JAM 2003
## 3263 Jamaica JM JAM 2004
## 3264 Jamaica JM JAM 2005
## 3265 Jamaica JM JAM 2006
## 3266 Jamaica JM JAM 2007
## 3267 Jamaica JM JAM 2008
## 3268 Jamaica JM JAM 2009
## 3269 Jamaica JM JAM 2010
## 3270 Jamaica JM JAM 2011
## 3271 Jamaica JM JAM 2012
## 3272 Jamaica JM JAM 2013
## 3273 Japan JP JPN 1980
## 3274 Japan JP JPN 1981
## 3275 Japan JP JPN 1982
## 3276 Japan JP JPN 1983
## 3277 Japan JP JPN 1984
## 3278 Japan JP JPN 1985
## 3279 Japan JP JPN 1986
## 3280 Japan JP JPN 1987
## 3281 Japan JP JPN 1988
## 3282 Japan JP JPN 1989
## 3283 Japan JP JPN 1990
## 3284 Japan JP JPN 1991
## 3285 Japan JP JPN 1992
## 3286 Japan JP JPN 1993
## 3287 Japan JP JPN 1994
## 3288 Japan JP JPN 1995
## 3289 Japan JP JPN 1996
## 3290 Japan JP JPN 1997
## 3291 Japan JP JPN 1998
## 3292 Japan JP JPN 1999
## 3293 Japan JP JPN 2000
## 3294 Japan JP JPN 2001
## 3295 Japan JP JPN 2002
## 3296 Japan JP JPN 2003
## 3297 Japan JP JPN 2004
## 3298 Japan JP JPN 2005
## 3299 Japan JP JPN 2006
## 3300 Japan JP JPN 2007
## 3301 Japan JP JPN 2008
## 3302 Japan JP JPN 2009
## 3303 Japan JP JPN 2010
## 3304 Japan JP JPN 2011
## 3305 Japan JP JPN 2012
## 3306 Japan JP JPN 2013
## 3307 Jordan JO JOR 1980
## 3308 Jordan JO JOR 1981
## 3309 Jordan JO JOR 1982
## 3310 Jordan JO JOR 1983
## 3311 Jordan JO JOR 1984
## 3312 Jordan JO JOR 1985
## 3313 Jordan JO JOR 1986
## 3314 Jordan JO JOR 1987
## 3315 Jordan JO JOR 1988
## 3316 Jordan JO JOR 1989
## 3317 Jordan JO JOR 1990
## 3318 Jordan JO JOR 1991
## 3319 Jordan JO JOR 1992
## 3320 Jordan JO JOR 1993
## 3321 Jordan JO JOR 1994
## 3322 Jordan JO JOR 1995
## 3323 Jordan JO JOR 1996
## 3324 Jordan JO JOR 1997
## 3325 Jordan JO JOR 1998
## 3326 Jordan JO JOR 1999
## 3327 Jordan JO JOR 2000
## 3328 Jordan JO JOR 2001
## 3329 Jordan JO JOR 2002
## 3330 Jordan JO JOR 2003
## 3331 Jordan JO JOR 2004
## 3332 Jordan JO JOR 2005
## 3333 Jordan JO JOR 2006
## 3334 Jordan JO JOR 2007
## 3335 Jordan JO JOR 2008
## 3336 Jordan JO JOR 2009
## 3337 Jordan JO JOR 2010
## 3338 Jordan JO JOR 2011
## 3339 Jordan JO JOR 2012
## 3340 Jordan JO JOR 2013
## 3341 Kazakhstan KZ KAZ 1980
## 3342 Kazakhstan KZ KAZ 1981
## 3343 Kazakhstan KZ KAZ 1982
## 3344 Kazakhstan KZ KAZ 1983
## 3345 Kazakhstan KZ KAZ 1984
## 3346 Kazakhstan KZ KAZ 1985
## 3347 Kazakhstan KZ KAZ 1986
## 3348 Kazakhstan KZ KAZ 1987
## 3349 Kazakhstan KZ KAZ 1988
## 3350 Kazakhstan KZ KAZ 1989
## 3351 Kazakhstan KZ KAZ 1990
## 3352 Kazakhstan KZ KAZ 1991
## 3353 Kazakhstan KZ KAZ 1992
## 3354 Kazakhstan KZ KAZ 1993
## 3355 Kazakhstan KZ KAZ 1994
## 3356 Kazakhstan KZ KAZ 1995
## 3357 Kazakhstan KZ KAZ 1996
## 3358 Kazakhstan KZ KAZ 1997
## 3359 Kazakhstan KZ KAZ 1998
## 3360 Kazakhstan KZ KAZ 1999
## 3361 Kazakhstan KZ KAZ 2000
## 3362 Kazakhstan KZ KAZ 2001
## 3363 Kazakhstan KZ KAZ 2002
## 3364 Kazakhstan KZ KAZ 2003
## 3365 Kazakhstan KZ KAZ 2004
## 3366 Kazakhstan KZ KAZ 2005
## 3367 Kazakhstan KZ KAZ 2006
## 3368 Kazakhstan KZ KAZ 2007
## 3369 Kazakhstan KZ KAZ 2008
## 3370 Kazakhstan KZ KAZ 2009
## 3371 Kazakhstan KZ KAZ 2010
## 3372 Kazakhstan KZ KAZ 2011
## 3373 Kazakhstan KZ KAZ 2012
## 3374 Kazakhstan KZ KAZ 2013
## 3375 Kenya KE KEN 1980
## 3376 Kenya KE KEN 1981
## 3377 Kenya KE KEN 1982
## 3378 Kenya KE KEN 1983
## 3379 Kenya KE KEN 1984
## 3380 Kenya KE KEN 1985
## 3381 Kenya KE KEN 1986
## 3382 Kenya KE KEN 1987
## 3383 Kenya KE KEN 1988
## 3384 Kenya KE KEN 1989
## 3385 Kenya KE KEN 1990
## 3386 Kenya KE KEN 1991
## 3387 Kenya KE KEN 1992
## 3388 Kenya KE KEN 1993
## 3389 Kenya KE KEN 1994
## 3390 Kenya KE KEN 1995
## 3391 Kenya KE KEN 1996
## 3392 Kenya KE KEN 1997
## 3393 Kenya KE KEN 1998
## 3394 Kenya KE KEN 1999
## 3395 Kenya KE KEN 2000
## 3396 Kenya KE KEN 2001
## 3397 Kenya KE KEN 2002
## 3398 Kenya KE KEN 2003
## 3399 Kenya KE KEN 2004
## 3400 Kenya KE KEN 2005
## 3401 Kenya KE KEN 2006
## 3402 Kenya KE KEN 2007
## 3403 Kenya KE KEN 2008
## 3404 Kenya KE KEN 2009
## 3405 Kenya KE KEN 2010
## 3406 Kenya KE KEN 2011
## 3407 Kenya KE KEN 2012
## 3408 Kenya KE KEN 2013
## 3409 Kiribati KI KIR 1980
## 3410 Kiribati KI KIR 1981
## 3411 Kiribati KI KIR 1982
## 3412 Kiribati KI KIR 1983
## 3413 Kiribati KI KIR 1984
## 3414 Kiribati KI KIR 1985
## 3415 Kiribati KI KIR 1986
## 3416 Kiribati KI KIR 1987
## 3417 Kiribati KI KIR 1988
## 3418 Kiribati KI KIR 1989
## 3419 Kiribati KI KIR 1990
## 3420 Kiribati KI KIR 1991
## 3421 Kiribati KI KIR 1992
## 3422 Kiribati KI KIR 1993
## 3423 Kiribati KI KIR 1994
## 3424 Kiribati KI KIR 1995
## 3425 Kiribati KI KIR 1996
## 3426 Kiribati KI KIR 1997
## 3427 Kiribati KI KIR 1998
## 3428 Kiribati KI KIR 1999
## 3429 Kiribati KI KIR 2000
## 3430 Kiribati KI KIR 2001
## 3431 Kiribati KI KIR 2002
## 3432 Kiribati KI KIR 2003
## 3433 Kiribati KI KIR 2004
## 3434 Kiribati KI KIR 2005
## 3435 Kiribati KI KIR 2006
## 3436 Kiribati KI KIR 2007
## 3437 Kiribati KI KIR 2008
## 3438 Kiribati KI KIR 2009
## 3439 Kiribati KI KIR 2010
## 3440 Kiribati KI KIR 2011
## 3441 Kiribati KI KIR 2012
## 3442 Kiribati KI KIR 2013
## 3443 Kuwait KW KWT 1980
## 3444 Kuwait KW KWT 1981
## 3445 Kuwait KW KWT 1982
## 3446 Kuwait KW KWT 1983
## 3447 Kuwait KW KWT 1984
## 3448 Kuwait KW KWT 1985
## 3449 Kuwait KW KWT 1986
## 3450 Kuwait KW KWT 1987
## 3451 Kuwait KW KWT 1988
## 3452 Kuwait KW KWT 1989
## 3453 Kuwait KW KWT 1990
## 3454 Kuwait KW KWT 1991
## 3455 Kuwait KW KWT 1992
## 3456 Kuwait KW KWT 1993
## 3457 Kuwait KW KWT 1994
## 3458 Kuwait KW KWT 1995
## 3459 Kuwait KW KWT 1996
## 3460 Kuwait KW KWT 1997
## 3461 Kuwait KW KWT 1998
## 3462 Kuwait KW KWT 1999
## 3463 Kuwait KW KWT 2000
## 3464 Kuwait KW KWT 2001
## 3465 Kuwait KW KWT 2002
## 3466 Kuwait KW KWT 2003
## 3467 Kuwait KW KWT 2004
## 3468 Kuwait KW KWT 2005
## 3469 Kuwait KW KWT 2006
## 3470 Kuwait KW KWT 2007
## 3471 Kuwait KW KWT 2008
## 3472 Kuwait KW KWT 2009
## 3473 Kuwait KW KWT 2010
## 3474 Kuwait KW KWT 2011
## 3475 Kuwait KW KWT 2012
## 3476 Kuwait KW KWT 2013
## 3477 Kyrgyzstan KG KGZ 1980
## 3478 Kyrgyzstan KG KGZ 1981
## 3479 Kyrgyzstan KG KGZ 1982
## 3480 Kyrgyzstan KG KGZ 1983
## 3481 Kyrgyzstan KG KGZ 1984
## 3482 Kyrgyzstan KG KGZ 1985
## 3483 Kyrgyzstan KG KGZ 1986
## 3484 Kyrgyzstan KG KGZ 1987
## 3485 Kyrgyzstan KG KGZ 1988
## 3486 Kyrgyzstan KG KGZ 1989
## 3487 Kyrgyzstan KG KGZ 1990
## 3488 Kyrgyzstan KG KGZ 1991
## 3489 Kyrgyzstan KG KGZ 1992
## 3490 Kyrgyzstan KG KGZ 1993
## 3491 Kyrgyzstan KG KGZ 1994
## 3492 Kyrgyzstan KG KGZ 1995
## 3493 Kyrgyzstan KG KGZ 1996
## 3494 Kyrgyzstan KG KGZ 1997
## 3495 Kyrgyzstan KG KGZ 1998
## 3496 Kyrgyzstan KG KGZ 1999
## 3497 Kyrgyzstan KG KGZ 2000
## 3498 Kyrgyzstan KG KGZ 2001
## 3499 Kyrgyzstan KG KGZ 2002
## 3500 Kyrgyzstan KG KGZ 2003
## 3501 Kyrgyzstan KG KGZ 2004
## 3502 Kyrgyzstan KG KGZ 2005
## 3503 Kyrgyzstan KG KGZ 2006
## 3504 Kyrgyzstan KG KGZ 2007
## 3505 Kyrgyzstan KG KGZ 2008
## 3506 Kyrgyzstan KG KGZ 2009
## 3507 Kyrgyzstan KG KGZ 2010
## 3508 Kyrgyzstan KG KGZ 2011
## 3509 Kyrgyzstan KG KGZ 2012
## 3510 Kyrgyzstan KG KGZ 2013
## 3511 Lao People's Democratic Republic LA LAO 1980
## 3512 Lao People's Democratic Republic LA LAO 1981
## 3513 Lao People's Democratic Republic LA LAO 1982
## 3514 Lao People's Democratic Republic LA LAO 1983
## 3515 Lao People's Democratic Republic LA LAO 1984
## 3516 Lao People's Democratic Republic LA LAO 1985
## 3517 Lao People's Democratic Republic LA LAO 1986
## 3518 Lao People's Democratic Republic LA LAO 1987
## 3519 Lao People's Democratic Republic LA LAO 1988
## 3520 Lao People's Democratic Republic LA LAO 1989
## 3521 Lao People's Democratic Republic LA LAO 1990
## 3522 Lao People's Democratic Republic LA LAO 1991
## 3523 Lao People's Democratic Republic LA LAO 1992
## 3524 Lao People's Democratic Republic LA LAO 1993
## 3525 Lao People's Democratic Republic LA LAO 1994
## 3526 Lao People's Democratic Republic LA LAO 1995
## 3527 Lao People's Democratic Republic LA LAO 1996
## 3528 Lao People's Democratic Republic LA LAO 1997
## 3529 Lao People's Democratic Republic LA LAO 1998
## 3530 Lao People's Democratic Republic LA LAO 1999
## 3531 Lao People's Democratic Republic LA LAO 2000
## 3532 Lao People's Democratic Republic LA LAO 2001
## 3533 Lao People's Democratic Republic LA LAO 2002
## 3534 Lao People's Democratic Republic LA LAO 2003
## 3535 Lao People's Democratic Republic LA LAO 2004
## 3536 Lao People's Democratic Republic LA LAO 2005
## 3537 Lao People's Democratic Republic LA LAO 2006
## 3538 Lao People's Democratic Republic LA LAO 2007
## 3539 Lao People's Democratic Republic LA LAO 2008
## 3540 Lao People's Democratic Republic LA LAO 2009
## 3541 Lao People's Democratic Republic LA LAO 2010
## 3542 Lao People's Democratic Republic LA LAO 2011
## 3543 Lao People's Democratic Republic LA LAO 2012
## 3544 Lao People's Democratic Republic LA LAO 2013
## 3545 Latvia LV LVA 1980
## 3546 Latvia LV LVA 1981
## 3547 Latvia LV LVA 1982
## 3548 Latvia LV LVA 1983
## 3549 Latvia LV LVA 1984
## 3550 Latvia LV LVA 1985
## 3551 Latvia LV LVA 1986
## 3552 Latvia LV LVA 1987
## 3553 Latvia LV LVA 1988
## 3554 Latvia LV LVA 1989
## 3555 Latvia LV LVA 1990
## 3556 Latvia LV LVA 1991
## 3557 Latvia LV LVA 1992
## 3558 Latvia LV LVA 1993
## 3559 Latvia LV LVA 1994
## 3560 Latvia LV LVA 1995
## 3561 Latvia LV LVA 1996
## 3562 Latvia LV LVA 1997
## 3563 Latvia LV LVA 1998
## 3564 Latvia LV LVA 1999
## 3565 Latvia LV LVA 2000
## 3566 Latvia LV LVA 2001
## 3567 Latvia LV LVA 2002
## 3568 Latvia LV LVA 2003
## 3569 Latvia LV LVA 2004
## 3570 Latvia LV LVA 2005
## 3571 Latvia LV LVA 2006
## 3572 Latvia LV LVA 2007
## 3573 Latvia LV LVA 2008
## 3574 Latvia LV LVA 2009
## 3575 Latvia LV LVA 2010
## 3576 Latvia LV LVA 2011
## 3577 Latvia LV LVA 2012
## 3578 Latvia LV LVA 2013
## 3579 Lebanon LB LBN 1980
## 3580 Lebanon LB LBN 1981
## 3581 Lebanon LB LBN 1982
## 3582 Lebanon LB LBN 1983
## 3583 Lebanon LB LBN 1984
## 3584 Lebanon LB LBN 1985
## 3585 Lebanon LB LBN 1986
## 3586 Lebanon LB LBN 1987
## 3587 Lebanon LB LBN 1988
## 3588 Lebanon LB LBN 1989
## 3589 Lebanon LB LBN 1990
## 3590 Lebanon LB LBN 1991
## 3591 Lebanon LB LBN 1992
## 3592 Lebanon LB LBN 1993
## 3593 Lebanon LB LBN 1994
## 3594 Lebanon LB LBN 1995
## 3595 Lebanon LB LBN 1996
## 3596 Lebanon LB LBN 1997
## 3597 Lebanon LB LBN 1998
## 3598 Lebanon LB LBN 1999
## 3599 Lebanon LB LBN 2000
## 3600 Lebanon LB LBN 2001
## 3601 Lebanon LB LBN 2002
## 3602 Lebanon LB LBN 2003
## 3603 Lebanon LB LBN 2004
## 3604 Lebanon LB LBN 2005
## 3605 Lebanon LB LBN 2006
## 3606 Lebanon LB LBN 2007
## 3607 Lebanon LB LBN 2008
## 3608 Lebanon LB LBN 2009
## 3609 Lebanon LB LBN 2010
## 3610 Lebanon LB LBN 2011
## 3611 Lebanon LB LBN 2012
## 3612 Lebanon LB LBN 2013
## 3613 Lesotho LS LSO 1980
## 3614 Lesotho LS LSO 1981
## 3615 Lesotho LS LSO 1982
## 3616 Lesotho LS LSO 1983
## 3617 Lesotho LS LSO 1984
## 3618 Lesotho LS LSO 1985
## 3619 Lesotho LS LSO 1986
## 3620 Lesotho LS LSO 1987
## 3621 Lesotho LS LSO 1988
## 3622 Lesotho LS LSO 1989
## 3623 Lesotho LS LSO 1990
## 3624 Lesotho LS LSO 1991
## 3625 Lesotho LS LSO 1992
## 3626 Lesotho LS LSO 1993
## 3627 Lesotho LS LSO 1994
## 3628 Lesotho LS LSO 1995
## 3629 Lesotho LS LSO 1996
## 3630 Lesotho LS LSO 1997
## 3631 Lesotho LS LSO 1998
## 3632 Lesotho LS LSO 1999
## 3633 Lesotho LS LSO 2000
## 3634 Lesotho LS LSO 2001
## 3635 Lesotho LS LSO 2002
## 3636 Lesotho LS LSO 2003
## 3637 Lesotho LS LSO 2004
## 3638 Lesotho LS LSO 2005
## 3639 Lesotho LS LSO 2006
## 3640 Lesotho LS LSO 2007
## 3641 Lesotho LS LSO 2008
## 3642 Lesotho LS LSO 2009
## 3643 Lesotho LS LSO 2010
## 3644 Lesotho LS LSO 2011
## 3645 Lesotho LS LSO 2012
## 3646 Lesotho LS LSO 2013
## 3647 Liberia LR LBR 1980
## 3648 Liberia LR LBR 1981
## 3649 Liberia LR LBR 1982
## 3650 Liberia LR LBR 1983
## 3651 Liberia LR LBR 1984
## 3652 Liberia LR LBR 1985
## 3653 Liberia LR LBR 1986
## 3654 Liberia LR LBR 1987
## 3655 Liberia LR LBR 1988
## 3656 Liberia LR LBR 1989
## 3657 Liberia LR LBR 1990
## 3658 Liberia LR LBR 1991
## 3659 Liberia LR LBR 1992
## 3660 Liberia LR LBR 1993
## 3661 Liberia LR LBR 1994
## 3662 Liberia LR LBR 1995
## 3663 Liberia LR LBR 1996
## 3664 Liberia LR LBR 1997
## 3665 Liberia LR LBR 1998
## 3666 Liberia LR LBR 1999
## 3667 Liberia LR LBR 2000
## 3668 Liberia LR LBR 2001
## 3669 Liberia LR LBR 2002
## 3670 Liberia LR LBR 2003
## 3671 Liberia LR LBR 2004
## 3672 Liberia LR LBR 2005
## 3673 Liberia LR LBR 2006
## 3674 Liberia LR LBR 2007
## 3675 Liberia LR LBR 2008
## 3676 Liberia LR LBR 2009
## 3677 Liberia LR LBR 2010
## 3678 Liberia LR LBR 2011
## 3679 Liberia LR LBR 2012
## 3680 Liberia LR LBR 2013
## 3681 Libya LY LBY 1980
## 3682 Libya LY LBY 1981
## 3683 Libya LY LBY 1982
## 3684 Libya LY LBY 1983
## 3685 Libya LY LBY 1984
## 3686 Libya LY LBY 1985
## 3687 Libya LY LBY 1986
## 3688 Libya LY LBY 1987
## 3689 Libya LY LBY 1988
## 3690 Libya LY LBY 1989
## 3691 Libya LY LBY 1990
## 3692 Libya LY LBY 1991
## 3693 Libya LY LBY 1992
## 3694 Libya LY LBY 1993
## 3695 Libya LY LBY 1994
## 3696 Libya LY LBY 1995
## 3697 Libya LY LBY 1996
## 3698 Libya LY LBY 1997
## 3699 Libya LY LBY 1998
## 3700 Libya LY LBY 1999
## 3701 Libya LY LBY 2000
## 3702 Libya LY LBY 2001
## 3703 Libya LY LBY 2002
## 3704 Libya LY LBY 2003
## 3705 Libya LY LBY 2004
## 3706 Libya LY LBY 2005
## 3707 Libya LY LBY 2006
## 3708 Libya LY LBY 2007
## 3709 Libya LY LBY 2008
## 3710 Libya LY LBY 2009
## 3711 Libya LY LBY 2010
## 3712 Libya LY LBY 2011
## 3713 Libya LY LBY 2012
## 3714 Libya LY LBY 2013
## 3715 Lithuania LT LTU 1980
## 3716 Lithuania LT LTU 1981
## 3717 Lithuania LT LTU 1982
## 3718 Lithuania LT LTU 1983
## 3719 Lithuania LT LTU 1984
## 3720 Lithuania LT LTU 1985
## 3721 Lithuania LT LTU 1986
## 3722 Lithuania LT LTU 1987
## 3723 Lithuania LT LTU 1988
## 3724 Lithuania LT LTU 1989
## 3725 Lithuania LT LTU 1990
## 3726 Lithuania LT LTU 1991
## 3727 Lithuania LT LTU 1992
## 3728 Lithuania LT LTU 1993
## 3729 Lithuania LT LTU 1994
## 3730 Lithuania LT LTU 1995
## 3731 Lithuania LT LTU 1996
## 3732 Lithuania LT LTU 1997
## 3733 Lithuania LT LTU 1998
## 3734 Lithuania LT LTU 1999
## 3735 Lithuania LT LTU 2000
## 3736 Lithuania LT LTU 2001
## 3737 Lithuania LT LTU 2002
## 3738 Lithuania LT LTU 2003
## 3739 Lithuania LT LTU 2004
## 3740 Lithuania LT LTU 2005
## 3741 Lithuania LT LTU 2006
## 3742 Lithuania LT LTU 2007
## 3743 Lithuania LT LTU 2008
## 3744 Lithuania LT LTU 2009
## 3745 Lithuania LT LTU 2010
## 3746 Lithuania LT LTU 2011
## 3747 Lithuania LT LTU 2012
## 3748 Lithuania LT LTU 2013
## 3749 Luxembourg LU LUX 1980
## 3750 Luxembourg LU LUX 1981
## 3751 Luxembourg LU LUX 1982
## 3752 Luxembourg LU LUX 1983
## 3753 Luxembourg LU LUX 1984
## 3754 Luxembourg LU LUX 1985
## 3755 Luxembourg LU LUX 1986
## 3756 Luxembourg LU LUX 1987
## 3757 Luxembourg LU LUX 1988
## 3758 Luxembourg LU LUX 1989
## 3759 Luxembourg LU LUX 1990
## 3760 Luxembourg LU LUX 1991
## 3761 Luxembourg LU LUX 1992
## 3762 Luxembourg LU LUX 1993
## 3763 Luxembourg LU LUX 1994
## 3764 Luxembourg LU LUX 1995
## 3765 Luxembourg LU LUX 1996
## 3766 Luxembourg LU LUX 1997
## 3767 Luxembourg LU LUX 1998
## 3768 Luxembourg LU LUX 1999
## 3769 Luxembourg LU LUX 2000
## 3770 Luxembourg LU LUX 2001
## 3771 Luxembourg LU LUX 2002
## 3772 Luxembourg LU LUX 2003
## 3773 Luxembourg LU LUX 2004
## 3774 Luxembourg LU LUX 2005
## 3775 Luxembourg LU LUX 2006
## 3776 Luxembourg LU LUX 2007
## 3777 Luxembourg LU LUX 2008
## 3778 Luxembourg LU LUX 2009
## 3779 Luxembourg LU LUX 2010
## 3780 Luxembourg LU LUX 2011
## 3781 Luxembourg LU LUX 2012
## 3782 Luxembourg LU LUX 2013
## 3783 Madagascar MG MDG 1980
## 3784 Madagascar MG MDG 1981
## 3785 Madagascar MG MDG 1982
## 3786 Madagascar MG MDG 1983
## 3787 Madagascar MG MDG 1984
## 3788 Madagascar MG MDG 1985
## 3789 Madagascar MG MDG 1986
## 3790 Madagascar MG MDG 1987
## 3791 Madagascar MG MDG 1988
## 3792 Madagascar MG MDG 1989
## 3793 Madagascar MG MDG 1990
## 3794 Madagascar MG MDG 1991
## 3795 Madagascar MG MDG 1992
## 3796 Madagascar MG MDG 1993
## 3797 Madagascar MG MDG 1994
## 3798 Madagascar MG MDG 1995
## 3799 Madagascar MG MDG 1996
## 3800 Madagascar MG MDG 1997
## 3801 Madagascar MG MDG 1998
## 3802 Madagascar MG MDG 1999
## 3803 Madagascar MG MDG 2000
## 3804 Madagascar MG MDG 2001
## 3805 Madagascar MG MDG 2002
## 3806 Madagascar MG MDG 2003
## 3807 Madagascar MG MDG 2004
## 3808 Madagascar MG MDG 2005
## 3809 Madagascar MG MDG 2006
## 3810 Madagascar MG MDG 2007
## 3811 Madagascar MG MDG 2008
## 3812 Madagascar MG MDG 2009
## 3813 Madagascar MG MDG 2010
## 3814 Madagascar MG MDG 2011
## 3815 Madagascar MG MDG 2012
## 3816 Madagascar MG MDG 2013
## 3817 Malawi MW MWI 1980
## 3818 Malawi MW MWI 1981
## 3819 Malawi MW MWI 1982
## 3820 Malawi MW MWI 1983
## 3821 Malawi MW MWI 1984
## 3822 Malawi MW MWI 1985
## 3823 Malawi MW MWI 1986
## 3824 Malawi MW MWI 1987
## 3825 Malawi MW MWI 1988
## 3826 Malawi MW MWI 1989
## 3827 Malawi MW MWI 1990
## 3828 Malawi MW MWI 1991
## 3829 Malawi MW MWI 1992
## 3830 Malawi MW MWI 1993
## 3831 Malawi MW MWI 1994
## 3832 Malawi MW MWI 1995
## 3833 Malawi MW MWI 1996
## 3834 Malawi MW MWI 1997
## 3835 Malawi MW MWI 1998
## 3836 Malawi MW MWI 1999
## 3837 Malawi MW MWI 2000
## 3838 Malawi MW MWI 2001
## 3839 Malawi MW MWI 2002
## 3840 Malawi MW MWI 2003
## 3841 Malawi MW MWI 2004
## 3842 Malawi MW MWI 2005
## 3843 Malawi MW MWI 2006
## 3844 Malawi MW MWI 2007
## 3845 Malawi MW MWI 2008
## 3846 Malawi MW MWI 2009
## 3847 Malawi MW MWI 2010
## 3848 Malawi MW MWI 2011
## 3849 Malawi MW MWI 2012
## 3850 Malawi MW MWI 2013
## 3851 Malaysia MY MYS 1980
## 3852 Malaysia MY MYS 1981
## 3853 Malaysia MY MYS 1982
## 3854 Malaysia MY MYS 1983
## 3855 Malaysia MY MYS 1984
## 3856 Malaysia MY MYS 1985
## 3857 Malaysia MY MYS 1986
## 3858 Malaysia MY MYS 1987
## 3859 Malaysia MY MYS 1988
## 3860 Malaysia MY MYS 1989
## 3861 Malaysia MY MYS 1990
## 3862 Malaysia MY MYS 1991
## 3863 Malaysia MY MYS 1992
## 3864 Malaysia MY MYS 1993
## 3865 Malaysia MY MYS 1994
## 3866 Malaysia MY MYS 1995
## 3867 Malaysia MY MYS 1996
## 3868 Malaysia MY MYS 1997
## 3869 Malaysia MY MYS 1998
## 3870 Malaysia MY MYS 1999
## 3871 Malaysia MY MYS 2000
## 3872 Malaysia MY MYS 2001
## 3873 Malaysia MY MYS 2002
## 3874 Malaysia MY MYS 2003
## 3875 Malaysia MY MYS 2004
## 3876 Malaysia MY MYS 2005
## 3877 Malaysia MY MYS 2006
## 3878 Malaysia MY MYS 2007
## 3879 Malaysia MY MYS 2008
## 3880 Malaysia MY MYS 2009
## 3881 Malaysia MY MYS 2010
## 3882 Malaysia MY MYS 2011
## 3883 Malaysia MY MYS 2012
## 3884 Malaysia MY MYS 2013
## 3885 Maldives MV MDV 1980
## 3886 Maldives MV MDV 1981
## 3887 Maldives MV MDV 1982
## 3888 Maldives MV MDV 1983
## 3889 Maldives MV MDV 1984
## 3890 Maldives MV MDV 1985
## 3891 Maldives MV MDV 1986
## 3892 Maldives MV MDV 1987
## 3893 Maldives MV MDV 1988
## 3894 Maldives MV MDV 1989
## 3895 Maldives MV MDV 1990
## 3896 Maldives MV MDV 1991
## 3897 Maldives MV MDV 1992
## 3898 Maldives MV MDV 1993
## 3899 Maldives MV MDV 1994
## 3900 Maldives MV MDV 1995
## 3901 Maldives MV MDV 1996
## 3902 Maldives MV MDV 1997
## 3903 Maldives MV MDV 1998
## 3904 Maldives MV MDV 1999
## 3905 Maldives MV MDV 2000
## 3906 Maldives MV MDV 2001
## 3907 Maldives MV MDV 2002
## 3908 Maldives MV MDV 2003
## 3909 Maldives MV MDV 2004
## 3910 Maldives MV MDV 2005
## 3911 Maldives MV MDV 2006
## 3912 Maldives MV MDV 2007
## 3913 Maldives MV MDV 2008
## 3914 Maldives MV MDV 2009
## 3915 Maldives MV MDV 2010
## 3916 Maldives MV MDV 2011
## 3917 Maldives MV MDV 2012
## 3918 Maldives MV MDV 2013
## 3919 Mali ML MLI 1980
## 3920 Mali ML MLI 1981
## 3921 Mali ML MLI 1982
## 3922 Mali ML MLI 1983
## 3923 Mali ML MLI 1984
## 3924 Mali ML MLI 1985
## 3925 Mali ML MLI 1986
## 3926 Mali ML MLI 1987
## 3927 Mali ML MLI 1988
## 3928 Mali ML MLI 1989
## 3929 Mali ML MLI 1990
## 3930 Mali ML MLI 1991
## 3931 Mali ML MLI 1992
## 3932 Mali ML MLI 1993
## 3933 Mali ML MLI 1994
## 3934 Mali ML MLI 1995
## 3935 Mali ML MLI 1996
## 3936 Mali ML MLI 1997
## 3937 Mali ML MLI 1998
## 3938 Mali ML MLI 1999
## 3939 Mali ML MLI 2000
## 3940 Mali ML MLI 2001
## 3941 Mali ML MLI 2002
## 3942 Mali ML MLI 2003
## 3943 Mali ML MLI 2004
## 3944 Mali ML MLI 2005
## 3945 Mali ML MLI 2006
## 3946 Mali ML MLI 2007
## 3947 Mali ML MLI 2008
## 3948 Mali ML MLI 2009
## 3949 Mali ML MLI 2010
## 3950 Mali ML MLI 2011
## 3951 Mali ML MLI 2012
## 3952 Mali ML MLI 2013
## 3953 Malta MT MLT 1980
## 3954 Malta MT MLT 1981
## 3955 Malta MT MLT 1982
## 3956 Malta MT MLT 1983
## 3957 Malta MT MLT 1984
## 3958 Malta MT MLT 1985
## 3959 Malta MT MLT 1986
## 3960 Malta MT MLT 1987
## 3961 Malta MT MLT 1988
## 3962 Malta MT MLT 1989
## 3963 Malta MT MLT 1990
## 3964 Malta MT MLT 1991
## 3965 Malta MT MLT 1992
## 3966 Malta MT MLT 1993
## 3967 Malta MT MLT 1994
## 3968 Malta MT MLT 1995
## 3969 Malta MT MLT 1996
## 3970 Malta MT MLT 1997
## 3971 Malta MT MLT 1998
## 3972 Malta MT MLT 1999
## 3973 Malta MT MLT 2000
## 3974 Malta MT MLT 2001
## 3975 Malta MT MLT 2002
## 3976 Malta MT MLT 2003
## 3977 Malta MT MLT 2004
## 3978 Malta MT MLT 2005
## 3979 Malta MT MLT 2006
## 3980 Malta MT MLT 2007
## 3981 Malta MT MLT 2008
## 3982 Malta MT MLT 2009
## 3983 Malta MT MLT 2010
## 3984 Malta MT MLT 2011
## 3985 Malta MT MLT 2012
## 3986 Malta MT MLT 2013
## 3987 Marshall Islands MH MHL 1980
## 3988 Marshall Islands MH MHL 1981
## 3989 Marshall Islands MH MHL 1982
## 3990 Marshall Islands MH MHL 1983
## 3991 Marshall Islands MH MHL 1984
## 3992 Marshall Islands MH MHL 1985
## 3993 Marshall Islands MH MHL 1986
## 3994 Marshall Islands MH MHL 1987
## 3995 Marshall Islands MH MHL 1988
## 3996 Marshall Islands MH MHL 1989
## 3997 Marshall Islands MH MHL 1990
## 3998 Marshall Islands MH MHL 1991
## 3999 Marshall Islands MH MHL 1992
## 4000 Marshall Islands MH MHL 1993
## 4001 Marshall Islands MH MHL 1994
## 4002 Marshall Islands MH MHL 1995
## 4003 Marshall Islands MH MHL 1996
## 4004 Marshall Islands MH MHL 1997
## 4005 Marshall Islands MH MHL 1998
## 4006 Marshall Islands MH MHL 1999
## 4007 Marshall Islands MH MHL 2000
## 4008 Marshall Islands MH MHL 2001
## 4009 Marshall Islands MH MHL 2002
## 4010 Marshall Islands MH MHL 2003
## 4011 Marshall Islands MH MHL 2004
## 4012 Marshall Islands MH MHL 2005
## 4013 Marshall Islands MH MHL 2006
## 4014 Marshall Islands MH MHL 2007
## 4015 Marshall Islands MH MHL 2008
## 4016 Marshall Islands MH MHL 2009
## 4017 Marshall Islands MH MHL 2010
## 4018 Marshall Islands MH MHL 2011
## 4019 Marshall Islands MH MHL 2012
## 4020 Marshall Islands MH MHL 2013
## 4021 Mauritania MR MRT 1980
## 4022 Mauritania MR MRT 1981
## 4023 Mauritania MR MRT 1982
## 4024 Mauritania MR MRT 1983
## 4025 Mauritania MR MRT 1984
## 4026 Mauritania MR MRT 1985
## 4027 Mauritania MR MRT 1986
## 4028 Mauritania MR MRT 1987
## 4029 Mauritania MR MRT 1988
## 4030 Mauritania MR MRT 1989
## 4031 Mauritania MR MRT 1990
## 4032 Mauritania MR MRT 1991
## 4033 Mauritania MR MRT 1992
## 4034 Mauritania MR MRT 1993
## 4035 Mauritania MR MRT 1994
## 4036 Mauritania MR MRT 1995
## 4037 Mauritania MR MRT 1996
## 4038 Mauritania MR MRT 1997
## 4039 Mauritania MR MRT 1998
## 4040 Mauritania MR MRT 1999
## 4041 Mauritania MR MRT 2000
## 4042 Mauritania MR MRT 2001
## 4043 Mauritania MR MRT 2002
## 4044 Mauritania MR MRT 2003
## 4045 Mauritania MR MRT 2004
## 4046 Mauritania MR MRT 2005
## 4047 Mauritania MR MRT 2006
## 4048 Mauritania MR MRT 2007
## 4049 Mauritania MR MRT 2008
## 4050 Mauritania MR MRT 2009
## 4051 Mauritania MR MRT 2010
## 4052 Mauritania MR MRT 2011
## 4053 Mauritania MR MRT 2012
## 4054 Mauritania MR MRT 2013
## 4055 Mauritius MU MUS 1980
## 4056 Mauritius MU MUS 1981
## 4057 Mauritius MU MUS 1982
## 4058 Mauritius MU MUS 1983
## 4059 Mauritius MU MUS 1984
## 4060 Mauritius MU MUS 1985
## 4061 Mauritius MU MUS 1986
## 4062 Mauritius MU MUS 1987
## 4063 Mauritius MU MUS 1988
## 4064 Mauritius MU MUS 1989
## 4065 Mauritius MU MUS 1990
## 4066 Mauritius MU MUS 1991
## 4067 Mauritius MU MUS 1992
## 4068 Mauritius MU MUS 1993
## 4069 Mauritius MU MUS 1994
## 4070 Mauritius MU MUS 1995
## 4071 Mauritius MU MUS 1996
## 4072 Mauritius MU MUS 1997
## 4073 Mauritius MU MUS 1998
## 4074 Mauritius MU MUS 1999
## 4075 Mauritius MU MUS 2000
## 4076 Mauritius MU MUS 2001
## 4077 Mauritius MU MUS 2002
## 4078 Mauritius MU MUS 2003
## 4079 Mauritius MU MUS 2004
## 4080 Mauritius MU MUS 2005
## 4081 Mauritius MU MUS 2006
## 4082 Mauritius MU MUS 2007
## 4083 Mauritius MU MUS 2008
## 4084 Mauritius MU MUS 2009
## 4085 Mauritius MU MUS 2010
## 4086 Mauritius MU MUS 2011
## 4087 Mauritius MU MUS 2012
## 4088 Mauritius MU MUS 2013
## 4089 Mexico MX MEX 1980
## 4090 Mexico MX MEX 1981
## 4091 Mexico MX MEX 1982
## 4092 Mexico MX MEX 1983
## 4093 Mexico MX MEX 1984
## 4094 Mexico MX MEX 1985
## 4095 Mexico MX MEX 1986
## 4096 Mexico MX MEX 1987
## 4097 Mexico MX MEX 1988
## 4098 Mexico MX MEX 1989
## 4099 Mexico MX MEX 1990
## 4100 Mexico MX MEX 1991
## 4101 Mexico MX MEX 1992
## 4102 Mexico MX MEX 1993
## 4103 Mexico MX MEX 1994
## 4104 Mexico MX MEX 1995
## 4105 Mexico MX MEX 1996
## 4106 Mexico MX MEX 1997
## 4107 Mexico MX MEX 1998
## 4108 Mexico MX MEX 1999
## 4109 Mexico MX MEX 2000
## 4110 Mexico MX MEX 2001
## 4111 Mexico MX MEX 2002
## 4112 Mexico MX MEX 2003
## 4113 Mexico MX MEX 2004
## 4114 Mexico MX MEX 2005
## 4115 Mexico MX MEX 2006
## 4116 Mexico MX MEX 2007
## 4117 Mexico MX MEX 2008
## 4118 Mexico MX MEX 2009
## 4119 Mexico MX MEX 2010
## 4120 Mexico MX MEX 2011
## 4121 Mexico MX MEX 2012
## 4122 Mexico MX MEX 2013
## 4123 Micronesia (Federated States of) FM FSM 1980
## 4124 Micronesia (Federated States of) FM FSM 1981
## 4125 Micronesia (Federated States of) FM FSM 1982
## 4126 Micronesia (Federated States of) FM FSM 1983
## 4127 Micronesia (Federated States of) FM FSM 1984
## 4128 Micronesia (Federated States of) FM FSM 1985
## 4129 Micronesia (Federated States of) FM FSM 1986
## 4130 Micronesia (Federated States of) FM FSM 1987
## 4131 Micronesia (Federated States of) FM FSM 1988
## 4132 Micronesia (Federated States of) FM FSM 1989
## 4133 Micronesia (Federated States of) FM FSM 1990
## 4134 Micronesia (Federated States of) FM FSM 1991
## 4135 Micronesia (Federated States of) FM FSM 1992
## 4136 Micronesia (Federated States of) FM FSM 1993
## 4137 Micronesia (Federated States of) FM FSM 1994
## 4138 Micronesia (Federated States of) FM FSM 1995
## 4139 Micronesia (Federated States of) FM FSM 1996
## 4140 Micronesia (Federated States of) FM FSM 1997
## 4141 Micronesia (Federated States of) FM FSM 1998
## 4142 Micronesia (Federated States of) FM FSM 1999
## 4143 Micronesia (Federated States of) FM FSM 2000
## 4144 Micronesia (Federated States of) FM FSM 2001
## 4145 Micronesia (Federated States of) FM FSM 2002
## 4146 Micronesia (Federated States of) FM FSM 2003
## 4147 Micronesia (Federated States of) FM FSM 2004
## 4148 Micronesia (Federated States of) FM FSM 2005
## 4149 Micronesia (Federated States of) FM FSM 2006
## 4150 Micronesia (Federated States of) FM FSM 2007
## 4151 Micronesia (Federated States of) FM FSM 2008
## 4152 Micronesia (Federated States of) FM FSM 2009
## 4153 Micronesia (Federated States of) FM FSM 2010
## 4154 Micronesia (Federated States of) FM FSM 2011
## 4155 Micronesia (Federated States of) FM FSM 2012
## 4156 Micronesia (Federated States of) FM FSM 2013
## 4157 Monaco MC MCO 1980
## 4158 Monaco MC MCO 1981
## 4159 Monaco MC MCO 1982
## 4160 Monaco MC MCO 1983
## 4161 Monaco MC MCO 1984
## 4162 Monaco MC MCO 1985
## 4163 Monaco MC MCO 1986
## 4164 Monaco MC MCO 1987
## 4165 Monaco MC MCO 1988
## 4166 Monaco MC MCO 1989
## 4167 Monaco MC MCO 1990
## 4168 Monaco MC MCO 1991
## 4169 Monaco MC MCO 1992
## 4170 Monaco MC MCO 1993
## 4171 Monaco MC MCO 1994
## 4172 Monaco MC MCO 1995
## 4173 Monaco MC MCO 1996
## 4174 Monaco MC MCO 1997
## 4175 Monaco MC MCO 1998
## 4176 Monaco MC MCO 1999
## 4177 Monaco MC MCO 2000
## 4178 Monaco MC MCO 2001
## 4179 Monaco MC MCO 2002
## 4180 Monaco MC MCO 2003
## 4181 Monaco MC MCO 2004
## 4182 Monaco MC MCO 2005
## 4183 Monaco MC MCO 2006
## 4184 Monaco MC MCO 2007
## 4185 Monaco MC MCO 2008
## 4186 Monaco MC MCO 2009
## 4187 Monaco MC MCO 2010
## 4188 Monaco MC MCO 2011
## 4189 Monaco MC MCO 2012
## 4190 Monaco MC MCO 2013
## 4191 Mongolia MN MNG 1980
## 4192 Mongolia MN MNG 1981
## 4193 Mongolia MN MNG 1982
## 4194 Mongolia MN MNG 1983
## 4195 Mongolia MN MNG 1984
## 4196 Mongolia MN MNG 1985
## 4197 Mongolia MN MNG 1986
## 4198 Mongolia MN MNG 1987
## 4199 Mongolia MN MNG 1988
## 4200 Mongolia MN MNG 1989
## 4201 Mongolia MN MNG 1990
## 4202 Mongolia MN MNG 1991
## 4203 Mongolia MN MNG 1992
## 4204 Mongolia MN MNG 1993
## 4205 Mongolia MN MNG 1994
## 4206 Mongolia MN MNG 1995
## 4207 Mongolia MN MNG 1996
## 4208 Mongolia MN MNG 1997
## 4209 Mongolia MN MNG 1998
## 4210 Mongolia MN MNG 1999
## 4211 Mongolia MN MNG 2000
## 4212 Mongolia MN MNG 2001
## 4213 Mongolia MN MNG 2002
## 4214 Mongolia MN MNG 2003
## 4215 Mongolia MN MNG 2004
## 4216 Mongolia MN MNG 2005
## 4217 Mongolia MN MNG 2006
## 4218 Mongolia MN MNG 2007
## 4219 Mongolia MN MNG 2008
## 4220 Mongolia MN MNG 2009
## 4221 Mongolia MN MNG 2010
## 4222 Mongolia MN MNG 2011
## 4223 Mongolia MN MNG 2012
## 4224 Mongolia MN MNG 2013
## 4225 Montenegro ME MNE 2005
## 4226 Montenegro ME MNE 2006
## 4227 Montenegro ME MNE 2007
## 4228 Montenegro ME MNE 2008
## 4229 Montenegro ME MNE 2009
## 4230 Montenegro ME MNE 2010
## 4231 Montenegro ME MNE 2011
## 4232 Montenegro ME MNE 2012
## 4233 Montenegro ME MNE 2013
## 4234 Montserrat MS MSR 1980
## 4235 Montserrat MS MSR 1981
## 4236 Montserrat MS MSR 1982
## 4237 Montserrat MS MSR 1983
## 4238 Montserrat MS MSR 1984
## 4239 Montserrat MS MSR 1985
## 4240 Montserrat MS MSR 1986
## 4241 Montserrat MS MSR 1987
## 4242 Montserrat MS MSR 1988
## 4243 Montserrat MS MSR 1989
## 4244 Montserrat MS MSR 1990
## 4245 Montserrat MS MSR 1991
## 4246 Montserrat MS MSR 1992
## 4247 Montserrat MS MSR 1993
## 4248 Montserrat MS MSR 1994
## 4249 Montserrat MS MSR 1995
## 4250 Montserrat MS MSR 1996
## 4251 Montserrat MS MSR 1997
## 4252 Montserrat MS MSR 1998
## 4253 Montserrat MS MSR 1999
## 4254 Montserrat MS MSR 2000
## 4255 Montserrat MS MSR 2001
## 4256 Montserrat MS MSR 2002
## 4257 Montserrat MS MSR 2003
## 4258 Montserrat MS MSR 2004
## 4259 Montserrat MS MSR 2005
## 4260 Montserrat MS MSR 2006
## 4261 Montserrat MS MSR 2007
## 4262 Montserrat MS MSR 2008
## 4263 Montserrat MS MSR 2009
## 4264 Montserrat MS MSR 2010
## 4265 Montserrat MS MSR 2011
## 4266 Montserrat MS MSR 2012
## 4267 Montserrat MS MSR 2013
## 4268 Morocco MA MAR 1980
## 4269 Morocco MA MAR 1981
## 4270 Morocco MA MAR 1982
## 4271 Morocco MA MAR 1983
## 4272 Morocco MA MAR 1984
## 4273 Morocco MA MAR 1985
## 4274 Morocco MA MAR 1986
## 4275 Morocco MA MAR 1987
## 4276 Morocco MA MAR 1988
## 4277 Morocco MA MAR 1989
## 4278 Morocco MA MAR 1990
## 4279 Morocco MA MAR 1991
## 4280 Morocco MA MAR 1992
## 4281 Morocco MA MAR 1993
## 4282 Morocco MA MAR 1994
## 4283 Morocco MA MAR 1995
## 4284 Morocco MA MAR 1996
## 4285 Morocco MA MAR 1997
## 4286 Morocco MA MAR 1998
## 4287 Morocco MA MAR 1999
## 4288 Morocco MA MAR 2000
## 4289 Morocco MA MAR 2001
## 4290 Morocco MA MAR 2002
## 4291 Morocco MA MAR 2003
## 4292 Morocco MA MAR 2004
## 4293 Morocco MA MAR 2005
## 4294 Morocco MA MAR 2006
## 4295 Morocco MA MAR 2007
## 4296 Morocco MA MAR 2008
## 4297 Morocco MA MAR 2009
## 4298 Morocco MA MAR 2010
## 4299 Morocco MA MAR 2011
## 4300 Morocco MA MAR 2012
## 4301 Morocco MA MAR 2013
## 4302 Mozambique MZ MOZ 1980
## 4303 Mozambique MZ MOZ 1981
## 4304 Mozambique MZ MOZ 1982
## 4305 Mozambique MZ MOZ 1983
## 4306 Mozambique MZ MOZ 1984
## 4307 Mozambique MZ MOZ 1985
## 4308 Mozambique MZ MOZ 1986
## 4309 Mozambique MZ MOZ 1987
## 4310 Mozambique MZ MOZ 1988
## 4311 Mozambique MZ MOZ 1989
## 4312 Mozambique MZ MOZ 1990
## 4313 Mozambique MZ MOZ 1991
## 4314 Mozambique MZ MOZ 1992
## 4315 Mozambique MZ MOZ 1993
## 4316 Mozambique MZ MOZ 1994
## 4317 Mozambique MZ MOZ 1995
## 4318 Mozambique MZ MOZ 1996
## 4319 Mozambique MZ MOZ 1997
## 4320 Mozambique MZ MOZ 1998
## 4321 Mozambique MZ MOZ 1999
## 4322 Mozambique MZ MOZ 2000
## 4323 Mozambique MZ MOZ 2001
## 4324 Mozambique MZ MOZ 2002
## 4325 Mozambique MZ MOZ 2003
## 4326 Mozambique MZ MOZ 2004
## 4327 Mozambique MZ MOZ 2005
## 4328 Mozambique MZ MOZ 2006
## 4329 Mozambique MZ MOZ 2007
## 4330 Mozambique MZ MOZ 2008
## 4331 Mozambique MZ MOZ 2009
## 4332 Mozambique MZ MOZ 2010
## 4333 Mozambique MZ MOZ 2011
## 4334 Mozambique MZ MOZ 2012
## 4335 Mozambique MZ MOZ 2013
## 4336 Myanmar MM MMR 1980
## 4337 Myanmar MM MMR 1981
## 4338 Myanmar MM MMR 1982
## 4339 Myanmar MM MMR 1983
## 4340 Myanmar MM MMR 1984
## 4341 Myanmar MM MMR 1985
## 4342 Myanmar MM MMR 1986
## 4343 Myanmar MM MMR 1987
## 4344 Myanmar MM MMR 1988
## 4345 Myanmar MM MMR 1989
## 4346 Myanmar MM MMR 1990
## 4347 Myanmar MM MMR 1991
## 4348 Myanmar MM MMR 1992
## 4349 Myanmar MM MMR 1993
## 4350 Myanmar MM MMR 1994
## 4351 Myanmar MM MMR 1995
## 4352 Myanmar MM MMR 1996
## 4353 Myanmar MM MMR 1997
## 4354 Myanmar MM MMR 1998
## 4355 Myanmar MM MMR 1999
## 4356 Myanmar MM MMR 2000
## 4357 Myanmar MM MMR 2001
## 4358 Myanmar MM MMR 2002
## 4359 Myanmar MM MMR 2003
## 4360 Myanmar MM MMR 2004
## 4361 Myanmar MM MMR 2005
## 4362 Myanmar MM MMR 2006
## 4363 Myanmar MM MMR 2007
## 4364 Myanmar MM MMR 2008
## 4365 Myanmar MM MMR 2009
## 4366 Myanmar MM MMR 2010
## 4367 Myanmar MM MMR 2011
## 4368 Myanmar MM MMR 2012
## 4369 Myanmar MM MMR 2013
## 4370 Namibia NA NAM 1980
## 4371 Namibia NA NAM 1981
## 4372 Namibia NA NAM 1982
## 4373 Namibia NA NAM 1983
## 4374 Namibia NA NAM 1984
## 4375 Namibia NA NAM 1985
## 4376 Namibia NA NAM 1986
## 4377 Namibia NA NAM 1987
## 4378 Namibia NA NAM 1988
## 4379 Namibia NA NAM 1989
## 4380 Namibia NA NAM 1990
## 4381 Namibia NA NAM 1991
## 4382 Namibia NA NAM 1992
## 4383 Namibia NA NAM 1993
## 4384 Namibia NA NAM 1994
## 4385 Namibia NA NAM 1995
## 4386 Namibia NA NAM 1996
## 4387 Namibia NA NAM 1997
## 4388 Namibia NA NAM 1998
## 4389 Namibia NA NAM 1999
## 4390 Namibia NA NAM 2000
## 4391 Namibia NA NAM 2001
## 4392 Namibia NA NAM 2002
## 4393 Namibia NA NAM 2003
## 4394 Namibia NA NAM 2004
## 4395 Namibia NA NAM 2005
## 4396 Namibia NA NAM 2006
## 4397 Namibia NA NAM 2007
## 4398 Namibia NA NAM 2008
## 4399 Namibia NA NAM 2009
## 4400 Namibia NA NAM 2010
## 4401 Namibia NA NAM 2011
## 4402 Namibia NA NAM 2012
## 4403 Namibia NA NAM 2013
## 4404 Nauru NR NRU 1980
## 4405 Nauru NR NRU 1981
## 4406 Nauru NR NRU 1982
## 4407 Nauru NR NRU 1983
## 4408 Nauru NR NRU 1984
## 4409 Nauru NR NRU 1985
## 4410 Nauru NR NRU 1986
## 4411 Nauru NR NRU 1987
## 4412 Nauru NR NRU 1988
## 4413 Nauru NR NRU 1989
## 4414 Nauru NR NRU 1990
## 4415 Nauru NR NRU 1991
## 4416 Nauru NR NRU 1992
## 4417 Nauru NR NRU 1993
## 4418 Nauru NR NRU 1994
## 4419 Nauru NR NRU 1995
## 4420 Nauru NR NRU 1996
## 4421 Nauru NR NRU 1997
## 4422 Nauru NR NRU 1998
## 4423 Nauru NR NRU 1999
## 4424 Nauru NR NRU 2000
## 4425 Nauru NR NRU 2001
## 4426 Nauru NR NRU 2002
## 4427 Nauru NR NRU 2003
## 4428 Nauru NR NRU 2004
## 4429 Nauru NR NRU 2005
## 4430 Nauru NR NRU 2006
## 4431 Nauru NR NRU 2007
## 4432 Nauru NR NRU 2008
## 4433 Nauru NR NRU 2009
## 4434 Nauru NR NRU 2010
## 4435 Nauru NR NRU 2011
## 4436 Nauru NR NRU 2012
## 4437 Nauru NR NRU 2013
## 4438 Nepal NP NPL 1980
## 4439 Nepal NP NPL 1981
## 4440 Nepal NP NPL 1982
## 4441 Nepal NP NPL 1983
## 4442 Nepal NP NPL 1984
## 4443 Nepal NP NPL 1985
## 4444 Nepal NP NPL 1986
## 4445 Nepal NP NPL 1987
## 4446 Nepal NP NPL 1988
## 4447 Nepal NP NPL 1989
## 4448 Nepal NP NPL 1990
## 4449 Nepal NP NPL 1991
## 4450 Nepal NP NPL 1992
## 4451 Nepal NP NPL 1993
## 4452 Nepal NP NPL 1994
## 4453 Nepal NP NPL 1995
## 4454 Nepal NP NPL 1996
## 4455 Nepal NP NPL 1997
## 4456 Nepal NP NPL 1998
## 4457 Nepal NP NPL 1999
## 4458 Nepal NP NPL 2000
## 4459 Nepal NP NPL 2001
## 4460 Nepal NP NPL 2002
## 4461 Nepal NP NPL 2003
## 4462 Nepal NP NPL 2004
## 4463 Nepal NP NPL 2005
## 4464 Nepal NP NPL 2006
## 4465 Nepal NP NPL 2007
## 4466 Nepal NP NPL 2008
## 4467 Nepal NP NPL 2009
## 4468 Nepal NP NPL 2010
## 4469 Nepal NP NPL 2011
## 4470 Nepal NP NPL 2012
## 4471 Nepal NP NPL 2013
## 4472 Netherlands NL NLD 1980
## 4473 Netherlands NL NLD 1981
## 4474 Netherlands NL NLD 1982
## 4475 Netherlands NL NLD 1983
## 4476 Netherlands NL NLD 1984
## 4477 Netherlands NL NLD 1985
## 4478 Netherlands NL NLD 1986
## 4479 Netherlands NL NLD 1987
## 4480 Netherlands NL NLD 1988
## 4481 Netherlands NL NLD 1989
## 4482 Netherlands NL NLD 1990
## 4483 Netherlands NL NLD 1991
## 4484 Netherlands NL NLD 1992
## 4485 Netherlands NL NLD 1993
## 4486 Netherlands NL NLD 1994
## 4487 Netherlands NL NLD 1995
## 4488 Netherlands NL NLD 1996
## 4489 Netherlands NL NLD 1997
## 4490 Netherlands NL NLD 1998
## 4491 Netherlands NL NLD 1999
## 4492 Netherlands NL NLD 2000
## 4493 Netherlands NL NLD 2001
## 4494 Netherlands NL NLD 2002
## 4495 Netherlands NL NLD 2003
## 4496 Netherlands NL NLD 2004
## 4497 Netherlands NL NLD 2005
## 4498 Netherlands NL NLD 2006
## 4499 Netherlands NL NLD 2007
## 4500 Netherlands NL NLD 2008
## 4501 Netherlands NL NLD 2009
## 4502 Netherlands NL NLD 2010
## 4503 Netherlands NL NLD 2011
## 4504 Netherlands NL NLD 2012
## 4505 Netherlands NL NLD 2013
## 4506 Netherlands Antilles AN ANT 1980
## 4507 Netherlands Antilles AN ANT 1981
## 4508 Netherlands Antilles AN ANT 1982
## 4509 Netherlands Antilles AN ANT 1983
## 4510 Netherlands Antilles AN ANT 1984
## 4511 Netherlands Antilles AN ANT 1985
## 4512 Netherlands Antilles AN ANT 1986
## 4513 Netherlands Antilles AN ANT 1987
## 4514 Netherlands Antilles AN ANT 1988
## 4515 Netherlands Antilles AN ANT 1989
## 4516 Netherlands Antilles AN ANT 1990
## 4517 Netherlands Antilles AN ANT 1991
## 4518 Netherlands Antilles AN ANT 1992
## 4519 Netherlands Antilles AN ANT 1993
## 4520 Netherlands Antilles AN ANT 1994
## 4521 Netherlands Antilles AN ANT 1995
## 4522 Netherlands Antilles AN ANT 1996
## 4523 Netherlands Antilles AN ANT 1997
## 4524 Netherlands Antilles AN ANT 1998
## 4525 Netherlands Antilles AN ANT 1999
## 4526 Netherlands Antilles AN ANT 2000
## 4527 Netherlands Antilles AN ANT 2001
## 4528 Netherlands Antilles AN ANT 2002
## 4529 Netherlands Antilles AN ANT 2003
## 4530 Netherlands Antilles AN ANT 2004
## 4531 Netherlands Antilles AN ANT 2005
## 4532 Netherlands Antilles AN ANT 2006
## 4533 Netherlands Antilles AN ANT 2007
## 4534 Netherlands Antilles AN ANT 2008
## 4535 Netherlands Antilles AN ANT 2009
## 4536 New Caledonia NC NCL 1980
## 4537 New Caledonia NC NCL 1981
## 4538 New Caledonia NC NCL 1982
## 4539 New Caledonia NC NCL 1983
## 4540 New Caledonia NC NCL 1984
## 4541 New Caledonia NC NCL 1985
## 4542 New Caledonia NC NCL 1986
## 4543 New Caledonia NC NCL 1987
## 4544 New Caledonia NC NCL 1988
## 4545 New Caledonia NC NCL 1989
## 4546 New Caledonia NC NCL 1990
## 4547 New Caledonia NC NCL 1991
## 4548 New Caledonia NC NCL 1992
## 4549 New Caledonia NC NCL 1993
## 4550 New Caledonia NC NCL 1994
## 4551 New Caledonia NC NCL 1995
## 4552 New Caledonia NC NCL 1996
## 4553 New Caledonia NC NCL 1997
## 4554 New Caledonia NC NCL 1998
## 4555 New Caledonia NC NCL 1999
## 4556 New Caledonia NC NCL 2000
## 4557 New Caledonia NC NCL 2001
## 4558 New Caledonia NC NCL 2002
## 4559 New Caledonia NC NCL 2003
## 4560 New Caledonia NC NCL 2004
## 4561 New Caledonia NC NCL 2005
## 4562 New Caledonia NC NCL 2006
## 4563 New Caledonia NC NCL 2007
## 4564 New Caledonia NC NCL 2008
## 4565 New Caledonia NC NCL 2009
## 4566 New Caledonia NC NCL 2010
## 4567 New Caledonia NC NCL 2011
## 4568 New Caledonia NC NCL 2012
## 4569 New Caledonia NC NCL 2013
## 4570 New Zealand NZ NZL 1980
## 4571 New Zealand NZ NZL 1981
## 4572 New Zealand NZ NZL 1982
## 4573 New Zealand NZ NZL 1983
## 4574 New Zealand NZ NZL 1984
## 4575 New Zealand NZ NZL 1985
## 4576 New Zealand NZ NZL 1986
## 4577 New Zealand NZ NZL 1987
## 4578 New Zealand NZ NZL 1988
## 4579 New Zealand NZ NZL 1989
## 4580 New Zealand NZ NZL 1990
## 4581 New Zealand NZ NZL 1991
## 4582 New Zealand NZ NZL 1992
## 4583 New Zealand NZ NZL 1993
## 4584 New Zealand NZ NZL 1994
## 4585 New Zealand NZ NZL 1995
## 4586 New Zealand NZ NZL 1996
## 4587 New Zealand NZ NZL 1997
## 4588 New Zealand NZ NZL 1998
## 4589 New Zealand NZ NZL 1999
## 4590 New Zealand NZ NZL 2000
## 4591 New Zealand NZ NZL 2001
## 4592 New Zealand NZ NZL 2002
## 4593 New Zealand NZ NZL 2003
## 4594 New Zealand NZ NZL 2004
## 4595 New Zealand NZ NZL 2005
## 4596 New Zealand NZ NZL 2006
## 4597 New Zealand NZ NZL 2007
## 4598 New Zealand NZ NZL 2008
## 4599 New Zealand NZ NZL 2009
## 4600 New Zealand NZ NZL 2010
## 4601 New Zealand NZ NZL 2011
## 4602 New Zealand NZ NZL 2012
## 4603 New Zealand NZ NZL 2013
## 4604 Nicaragua NI NIC 1980
## 4605 Nicaragua NI NIC 1981
## 4606 Nicaragua NI NIC 1982
## 4607 Nicaragua NI NIC 1983
## 4608 Nicaragua NI NIC 1984
## 4609 Nicaragua NI NIC 1985
## 4610 Nicaragua NI NIC 1986
## 4611 Nicaragua NI NIC 1987
## 4612 Nicaragua NI NIC 1988
## 4613 Nicaragua NI NIC 1989
## 4614 Nicaragua NI NIC 1990
## 4615 Nicaragua NI NIC 1991
## 4616 Nicaragua NI NIC 1992
## 4617 Nicaragua NI NIC 1993
## 4618 Nicaragua NI NIC 1994
## 4619 Nicaragua NI NIC 1995
## 4620 Nicaragua NI NIC 1996
## 4621 Nicaragua NI NIC 1997
## 4622 Nicaragua NI NIC 1998
## 4623 Nicaragua NI NIC 1999
## 4624 Nicaragua NI NIC 2000
## 4625 Nicaragua NI NIC 2001
## 4626 Nicaragua NI NIC 2002
## 4627 Nicaragua NI NIC 2003
## 4628 Nicaragua NI NIC 2004
## 4629 Nicaragua NI NIC 2005
## 4630 Nicaragua NI NIC 2006
## 4631 Nicaragua NI NIC 2007
## 4632 Nicaragua NI NIC 2008
## 4633 Nicaragua NI NIC 2009
## 4634 Nicaragua NI NIC 2010
## 4635 Nicaragua NI NIC 2011
## 4636 Nicaragua NI NIC 2012
## 4637 Nicaragua NI NIC 2013
## 4638 Niger NE NER 1980
## 4639 Niger NE NER 1981
## 4640 Niger NE NER 1982
## 4641 Niger NE NER 1983
## 4642 Niger NE NER 1984
## 4643 Niger NE NER 1985
## 4644 Niger NE NER 1986
## 4645 Niger NE NER 1987
## 4646 Niger NE NER 1988
## 4647 Niger NE NER 1989
## 4648 Niger NE NER 1990
## 4649 Niger NE NER 1991
## 4650 Niger NE NER 1992
## 4651 Niger NE NER 1993
## 4652 Niger NE NER 1994
## 4653 Niger NE NER 1995
## 4654 Niger NE NER 1996
## 4655 Niger NE NER 1997
## 4656 Niger NE NER 1998
## 4657 Niger NE NER 1999
## 4658 Niger NE NER 2000
## 4659 Niger NE NER 2001
## 4660 Niger NE NER 2002
## 4661 Niger NE NER 2003
## 4662 Niger NE NER 2004
## 4663 Niger NE NER 2005
## 4664 Niger NE NER 2006
## 4665 Niger NE NER 2007
## 4666 Niger NE NER 2008
## 4667 Niger NE NER 2009
## 4668 Niger NE NER 2010
## 4669 Niger NE NER 2011
## 4670 Niger NE NER 2012
## 4671 Niger NE NER 2013
## 4672 Nigeria NG NGA 1980
## 4673 Nigeria NG NGA 1981
## 4674 Nigeria NG NGA 1982
## 4675 Nigeria NG NGA 1983
## 4676 Nigeria NG NGA 1984
## 4677 Nigeria NG NGA 1985
## 4678 Nigeria NG NGA 1986
## 4679 Nigeria NG NGA 1987
## 4680 Nigeria NG NGA 1988
## 4681 Nigeria NG NGA 1989
## 4682 Nigeria NG NGA 1990
## 4683 Nigeria NG NGA 1991
## 4684 Nigeria NG NGA 1992
## 4685 Nigeria NG NGA 1993
## 4686 Nigeria NG NGA 1994
## 4687 Nigeria NG NGA 1995
## 4688 Nigeria NG NGA 1996
## 4689 Nigeria NG NGA 1997
## 4690 Nigeria NG NGA 1998
## 4691 Nigeria NG NGA 1999
## 4692 Nigeria NG NGA 2000
## 4693 Nigeria NG NGA 2001
## 4694 Nigeria NG NGA 2002
## 4695 Nigeria NG NGA 2003
## 4696 Nigeria NG NGA 2004
## 4697 Nigeria NG NGA 2005
## 4698 Nigeria NG NGA 2006
## 4699 Nigeria NG NGA 2007
## 4700 Nigeria NG NGA 2008
## 4701 Nigeria NG NGA 2009
## 4702 Nigeria NG NGA 2010
## 4703 Nigeria NG NGA 2011
## 4704 Nigeria NG NGA 2012
## 4705 Nigeria NG NGA 2013
## 4706 Niue NU NIU 1980
## 4707 Niue NU NIU 1981
## 4708 Niue NU NIU 1982
## 4709 Niue NU NIU 1983
## 4710 Niue NU NIU 1984
## 4711 Niue NU NIU 1985
## 4712 Niue NU NIU 1986
## 4713 Niue NU NIU 1987
## 4714 Niue NU NIU 1988
## 4715 Niue NU NIU 1989
## 4716 Niue NU NIU 1990
## 4717 Niue NU NIU 1991
## 4718 Niue NU NIU 1992
## 4719 Niue NU NIU 1993
## 4720 Niue NU NIU 1994
## 4721 Niue NU NIU 1995
## 4722 Niue NU NIU 1996
## 4723 Niue NU NIU 1997
## 4724 Niue NU NIU 1998
## 4725 Niue NU NIU 1999
## 4726 Niue NU NIU 2000
## 4727 Niue NU NIU 2001
## 4728 Niue NU NIU 2002
## 4729 Niue NU NIU 2003
## 4730 Niue NU NIU 2004
## 4731 Niue NU NIU 2005
## 4732 Niue NU NIU 2006
## 4733 Niue NU NIU 2007
## 4734 Niue NU NIU 2008
## 4735 Niue NU NIU 2009
## 4736 Niue NU NIU 2010
## 4737 Niue NU NIU 2011
## 4738 Niue NU NIU 2012
## 4739 Niue NU NIU 2013
## 4740 Northern Mariana Islands MP MNP 1980
## 4741 Northern Mariana Islands MP MNP 1981
## 4742 Northern Mariana Islands MP MNP 1982
## 4743 Northern Mariana Islands MP MNP 1983
## 4744 Northern Mariana Islands MP MNP 1984
## 4745 Northern Mariana Islands MP MNP 1985
## 4746 Northern Mariana Islands MP MNP 1986
## 4747 Northern Mariana Islands MP MNP 1987
## 4748 Northern Mariana Islands MP MNP 1988
## 4749 Northern Mariana Islands MP MNP 1989
## 4750 Northern Mariana Islands MP MNP 1990
## 4751 Northern Mariana Islands MP MNP 1991
## 4752 Northern Mariana Islands MP MNP 1992
## 4753 Northern Mariana Islands MP MNP 1993
## 4754 Northern Mariana Islands MP MNP 1994
## 4755 Northern Mariana Islands MP MNP 1995
## 4756 Northern Mariana Islands MP MNP 1996
## 4757 Northern Mariana Islands MP MNP 1997
## 4758 Northern Mariana Islands MP MNP 1998
## 4759 Northern Mariana Islands MP MNP 1999
## 4760 Northern Mariana Islands MP MNP 2000
## 4761 Northern Mariana Islands MP MNP 2001
## 4762 Northern Mariana Islands MP MNP 2002
## 4763 Northern Mariana Islands MP MNP 2003
## 4764 Northern Mariana Islands MP MNP 2004
## 4765 Northern Mariana Islands MP MNP 2005
## 4766 Northern Mariana Islands MP MNP 2006
## 4767 Northern Mariana Islands MP MNP 2007
## 4768 Northern Mariana Islands MP MNP 2008
## 4769 Northern Mariana Islands MP MNP 2009
## 4770 Northern Mariana Islands MP MNP 2010
## 4771 Northern Mariana Islands MP MNP 2011
## 4772 Northern Mariana Islands MP MNP 2012
## 4773 Northern Mariana Islands MP MNP 2013
## 4774 Norway NO NOR 1980
## 4775 Norway NO NOR 1981
## 4776 Norway NO NOR 1982
## 4777 Norway NO NOR 1983
## 4778 Norway NO NOR 1984
## 4779 Norway NO NOR 1985
## 4780 Norway NO NOR 1986
## 4781 Norway NO NOR 1987
## 4782 Norway NO NOR 1988
## 4783 Norway NO NOR 1989
## 4784 Norway NO NOR 1990
## 4785 Norway NO NOR 1991
## 4786 Norway NO NOR 1992
## 4787 Norway NO NOR 1993
## 4788 Norway NO NOR 1994
## 4789 Norway NO NOR 1995
## 4790 Norway NO NOR 1996
## 4791 Norway NO NOR 1997
## 4792 Norway NO NOR 1998
## 4793 Norway NO NOR 1999
## 4794 Norway NO NOR 2000
## 4795 Norway NO NOR 2001
## 4796 Norway NO NOR 2002
## 4797 Norway NO NOR 2003
## 4798 Norway NO NOR 2004
## 4799 Norway NO NOR 2005
## 4800 Norway NO NOR 2006
## 4801 Norway NO NOR 2007
## 4802 Norway NO NOR 2008
## 4803 Norway NO NOR 2009
## 4804 Norway NO NOR 2010
## 4805 Norway NO NOR 2011
## 4806 Norway NO NOR 2012
## 4807 Norway NO NOR 2013
## 4808 Oman OM OMN 1980
## 4809 Oman OM OMN 1981
## 4810 Oman OM OMN 1982
## 4811 Oman OM OMN 1983
## 4812 Oman OM OMN 1984
## 4813 Oman OM OMN 1985
## 4814 Oman OM OMN 1986
## 4815 Oman OM OMN 1987
## 4816 Oman OM OMN 1988
## 4817 Oman OM OMN 1989
## 4818 Oman OM OMN 1990
## 4819 Oman OM OMN 1991
## 4820 Oman OM OMN 1992
## 4821 Oman OM OMN 1993
## 4822 Oman OM OMN 1994
## 4823 Oman OM OMN 1995
## 4824 Oman OM OMN 1996
## 4825 Oman OM OMN 1997
## 4826 Oman OM OMN 1998
## 4827 Oman OM OMN 1999
## 4828 Oman OM OMN 2000
## 4829 Oman OM OMN 2001
## 4830 Oman OM OMN 2002
## 4831 Oman OM OMN 2003
## 4832 Oman OM OMN 2004
## 4833 Oman OM OMN 2005
## 4834 Oman OM OMN 2006
## 4835 Oman OM OMN 2007
## 4836 Oman OM OMN 2008
## 4837 Oman OM OMN 2009
## 4838 Oman OM OMN 2010
## 4839 Oman OM OMN 2011
## 4840 Oman OM OMN 2012
## 4841 Oman OM OMN 2013
## 4842 Pakistan PK PAK 1980
## 4843 Pakistan PK PAK 1981
## 4844 Pakistan PK PAK 1982
## 4845 Pakistan PK PAK 1983
## 4846 Pakistan PK PAK 1984
## 4847 Pakistan PK PAK 1985
## 4848 Pakistan PK PAK 1986
## 4849 Pakistan PK PAK 1987
## 4850 Pakistan PK PAK 1988
## 4851 Pakistan PK PAK 1989
## 4852 Pakistan PK PAK 1990
## 4853 Pakistan PK PAK 1991
## 4854 Pakistan PK PAK 1992
## 4855 Pakistan PK PAK 1993
## 4856 Pakistan PK PAK 1994
## 4857 Pakistan PK PAK 1995
## 4858 Pakistan PK PAK 1996
## 4859 Pakistan PK PAK 1997
## 4860 Pakistan PK PAK 1998
## 4861 Pakistan PK PAK 1999
## 4862 Pakistan PK PAK 2000
## 4863 Pakistan PK PAK 2001
## 4864 Pakistan PK PAK 2002
## 4865 Pakistan PK PAK 2003
## 4866 Pakistan PK PAK 2004
## 4867 Pakistan PK PAK 2005
## 4868 Pakistan PK PAK 2006
## 4869 Pakistan PK PAK 2007
## 4870 Pakistan PK PAK 2008
## 4871 Pakistan PK PAK 2009
## 4872 Pakistan PK PAK 2010
## 4873 Pakistan PK PAK 2011
## 4874 Pakistan PK PAK 2012
## 4875 Pakistan PK PAK 2013
## 4876 Palau PW PLW 1980
## 4877 Palau PW PLW 1981
## 4878 Palau PW PLW 1982
## 4879 Palau PW PLW 1983
## 4880 Palau PW PLW 1984
## 4881 Palau PW PLW 1985
## 4882 Palau PW PLW 1986
## 4883 Palau PW PLW 1987
## 4884 Palau PW PLW 1988
## 4885 Palau PW PLW 1989
## 4886 Palau PW PLW 1990
## 4887 Palau PW PLW 1991
## 4888 Palau PW PLW 1992
## 4889 Palau PW PLW 1993
## 4890 Palau PW PLW 1994
## 4891 Palau PW PLW 1995
## 4892 Palau PW PLW 1996
## 4893 Palau PW PLW 1997
## 4894 Palau PW PLW 1998
## 4895 Palau PW PLW 1999
## 4896 Palau PW PLW 2000
## 4897 Palau PW PLW 2001
## 4898 Palau PW PLW 2002
## 4899 Palau PW PLW 2003
## 4900 Palau PW PLW 2004
## 4901 Palau PW PLW 2005
## 4902 Palau PW PLW 2006
## 4903 Palau PW PLW 2007
## 4904 Palau PW PLW 2008
## 4905 Palau PW PLW 2009
## 4906 Palau PW PLW 2010
## 4907 Palau PW PLW 2011
## 4908 Palau PW PLW 2012
## 4909 Palau PW PLW 2013
## 4910 Panama PA PAN 1980
## 4911 Panama PA PAN 1981
## 4912 Panama PA PAN 1982
## 4913 Panama PA PAN 1983
## 4914 Panama PA PAN 1984
## 4915 Panama PA PAN 1985
## 4916 Panama PA PAN 1986
## 4917 Panama PA PAN 1987
## 4918 Panama PA PAN 1988
## 4919 Panama PA PAN 1989
## 4920 Panama PA PAN 1990
## 4921 Panama PA PAN 1991
## 4922 Panama PA PAN 1992
## 4923 Panama PA PAN 1993
## 4924 Panama PA PAN 1994
## 4925 Panama PA PAN 1995
## 4926 Panama PA PAN 1996
## 4927 Panama PA PAN 1997
## 4928 Panama PA PAN 1998
## 4929 Panama PA PAN 1999
## 4930 Panama PA PAN 2000
## 4931 Panama PA PAN 2001
## 4932 Panama PA PAN 2002
## 4933 Panama PA PAN 2003
## 4934 Panama PA PAN 2004
## 4935 Panama PA PAN 2005
## 4936 Panama PA PAN 2006
## 4937 Panama PA PAN 2007
## 4938 Panama PA PAN 2008
## 4939 Panama PA PAN 2009
## 4940 Panama PA PAN 2010
## 4941 Panama PA PAN 2011
## 4942 Panama PA PAN 2012
## 4943 Panama PA PAN 2013
## 4944 Papua New Guinea PG PNG 1980
## 4945 Papua New Guinea PG PNG 1981
## 4946 Papua New Guinea PG PNG 1982
## 4947 Papua New Guinea PG PNG 1983
## 4948 Papua New Guinea PG PNG 1984
## 4949 Papua New Guinea PG PNG 1985
## 4950 Papua New Guinea PG PNG 1986
## 4951 Papua New Guinea PG PNG 1987
## 4952 Papua New Guinea PG PNG 1988
## 4953 Papua New Guinea PG PNG 1989
## 4954 Papua New Guinea PG PNG 1990
## 4955 Papua New Guinea PG PNG 1991
## 4956 Papua New Guinea PG PNG 1992
## 4957 Papua New Guinea PG PNG 1993
## 4958 Papua New Guinea PG PNG 1994
## 4959 Papua New Guinea PG PNG 1995
## 4960 Papua New Guinea PG PNG 1996
## 4961 Papua New Guinea PG PNG 1997
## 4962 Papua New Guinea PG PNG 1998
## 4963 Papua New Guinea PG PNG 1999
## 4964 Papua New Guinea PG PNG 2000
## 4965 Papua New Guinea PG PNG 2001
## 4966 Papua New Guinea PG PNG 2002
## 4967 Papua New Guinea PG PNG 2003
## 4968 Papua New Guinea PG PNG 2004
## 4969 Papua New Guinea PG PNG 2005
## 4970 Papua New Guinea PG PNG 2006
## 4971 Papua New Guinea PG PNG 2007
## 4972 Papua New Guinea PG PNG 2008
## 4973 Papua New Guinea PG PNG 2009
## 4974 Papua New Guinea PG PNG 2010
## 4975 Papua New Guinea PG PNG 2011
## 4976 Papua New Guinea PG PNG 2012
## 4977 Papua New Guinea PG PNG 2013
## 4978 Paraguay PY PRY 1980
## 4979 Paraguay PY PRY 1981
## 4980 Paraguay PY PRY 1982
## 4981 Paraguay PY PRY 1983
## 4982 Paraguay PY PRY 1984
## 4983 Paraguay PY PRY 1985
## 4984 Paraguay PY PRY 1986
## 4985 Paraguay PY PRY 1987
## 4986 Paraguay PY PRY 1988
## 4987 Paraguay PY PRY 1989
## 4988 Paraguay PY PRY 1990
## 4989 Paraguay PY PRY 1991
## 4990 Paraguay PY PRY 1992
## 4991 Paraguay PY PRY 1993
## 4992 Paraguay PY PRY 1994
## 4993 Paraguay PY PRY 1995
## 4994 Paraguay PY PRY 1996
## 4995 Paraguay PY PRY 1997
## 4996 Paraguay PY PRY 1998
## 4997 Paraguay PY PRY 1999
## 4998 Paraguay PY PRY 2000
## 4999 Paraguay PY PRY 2001
## 5000 Paraguay PY PRY 2002
## 5001 Paraguay PY PRY 2003
## 5002 Paraguay PY PRY 2004
## 5003 Paraguay PY PRY 2005
## 5004 Paraguay PY PRY 2006
## 5005 Paraguay PY PRY 2007
## 5006 Paraguay PY PRY 2008
## 5007 Paraguay PY PRY 2009
## 5008 Paraguay PY PRY 2010
## 5009 Paraguay PY PRY 2011
## 5010 Paraguay PY PRY 2012
## 5011 Paraguay PY PRY 2013
## 5012 Peru PE PER 1980
## 5013 Peru PE PER 1981
## 5014 Peru PE PER 1982
## 5015 Peru PE PER 1983
## 5016 Peru PE PER 1984
## 5017 Peru PE PER 1985
## 5018 Peru PE PER 1986
## 5019 Peru PE PER 1987
## 5020 Peru PE PER 1988
## 5021 Peru PE PER 1989
## 5022 Peru PE PER 1990
## 5023 Peru PE PER 1991
## 5024 Peru PE PER 1992
## 5025 Peru PE PER 1993
## 5026 Peru PE PER 1994
## 5027 Peru PE PER 1995
## 5028 Peru PE PER 1996
## 5029 Peru PE PER 1997
## 5030 Peru PE PER 1998
## 5031 Peru PE PER 1999
## 5032 Peru PE PER 2000
## 5033 Peru PE PER 2001
## 5034 Peru PE PER 2002
## 5035 Peru PE PER 2003
## 5036 Peru PE PER 2004
## 5037 Peru PE PER 2005
## 5038 Peru PE PER 2006
## 5039 Peru PE PER 2007
## 5040 Peru PE PER 2008
## 5041 Peru PE PER 2009
## 5042 Peru PE PER 2010
## 5043 Peru PE PER 2011
## 5044 Peru PE PER 2012
## 5045 Peru PE PER 2013
## 5046 Philippines PH PHL 1980
## 5047 Philippines PH PHL 1981
## 5048 Philippines PH PHL 1982
## 5049 Philippines PH PHL 1983
## 5050 Philippines PH PHL 1984
## 5051 Philippines PH PHL 1985
## 5052 Philippines PH PHL 1986
## 5053 Philippines PH PHL 1987
## 5054 Philippines PH PHL 1988
## 5055 Philippines PH PHL 1989
## 5056 Philippines PH PHL 1990
## 5057 Philippines PH PHL 1991
## 5058 Philippines PH PHL 1992
## 5059 Philippines PH PHL 1993
## 5060 Philippines PH PHL 1994
## 5061 Philippines PH PHL 1995
## 5062 Philippines PH PHL 1996
## 5063 Philippines PH PHL 1997
## 5064 Philippines PH PHL 1998
## 5065 Philippines PH PHL 1999
## 5066 Philippines PH PHL 2000
## 5067 Philippines PH PHL 2001
## 5068 Philippines PH PHL 2002
## 5069 Philippines PH PHL 2003
## 5070 Philippines PH PHL 2004
## 5071 Philippines PH PHL 2005
## 5072 Philippines PH PHL 2006
## 5073 Philippines PH PHL 2007
## 5074 Philippines PH PHL 2008
## 5075 Philippines PH PHL 2009
## 5076 Philippines PH PHL 2010
## 5077 Philippines PH PHL 2011
## 5078 Philippines PH PHL 2012
## 5079 Philippines PH PHL 2013
## 5080 Poland PL POL 1980
## 5081 Poland PL POL 1981
## 5082 Poland PL POL 1982
## 5083 Poland PL POL 1983
## 5084 Poland PL POL 1984
## 5085 Poland PL POL 1985
## 5086 Poland PL POL 1986
## 5087 Poland PL POL 1987
## 5088 Poland PL POL 1988
## 5089 Poland PL POL 1989
## 5090 Poland PL POL 1990
## 5091 Poland PL POL 1991
## 5092 Poland PL POL 1992
## 5093 Poland PL POL 1993
## 5094 Poland PL POL 1994
## 5095 Poland PL POL 1995
## 5096 Poland PL POL 1996
## 5097 Poland PL POL 1997
## 5098 Poland PL POL 1998
## 5099 Poland PL POL 1999
## 5100 Poland PL POL 2000
## 5101 Poland PL POL 2001
## 5102 Poland PL POL 2002
## 5103 Poland PL POL 2003
## 5104 Poland PL POL 2004
## 5105 Poland PL POL 2005
## 5106 Poland PL POL 2006
## 5107 Poland PL POL 2007
## 5108 Poland PL POL 2008
## 5109 Poland PL POL 2009
## 5110 Poland PL POL 2010
## 5111 Poland PL POL 2011
## 5112 Poland PL POL 2012
## 5113 Poland PL POL 2013
## 5114 Portugal PT PRT 1980
## 5115 Portugal PT PRT 1981
## 5116 Portugal PT PRT 1982
## 5117 Portugal PT PRT 1983
## 5118 Portugal PT PRT 1984
## 5119 Portugal PT PRT 1985
## 5120 Portugal PT PRT 1986
## 5121 Portugal PT PRT 1987
## 5122 Portugal PT PRT 1988
## 5123 Portugal PT PRT 1989
## 5124 Portugal PT PRT 1990
## 5125 Portugal PT PRT 1991
## 5126 Portugal PT PRT 1992
## 5127 Portugal PT PRT 1993
## 5128 Portugal PT PRT 1994
## 5129 Portugal PT PRT 1995
## 5130 Portugal PT PRT 1996
## 5131 Portugal PT PRT 1997
## 5132 Portugal PT PRT 1998
## 5133 Portugal PT PRT 1999
## 5134 Portugal PT PRT 2000
## 5135 Portugal PT PRT 2001
## 5136 Portugal PT PRT 2002
## 5137 Portugal PT PRT 2003
## 5138 Portugal PT PRT 2004
## 5139 Portugal PT PRT 2005
## 5140 Portugal PT PRT 2006
## 5141 Portugal PT PRT 2007
## 5142 Portugal PT PRT 2008
## 5143 Portugal PT PRT 2009
## 5144 Portugal PT PRT 2010
## 5145 Portugal PT PRT 2011
## 5146 Portugal PT PRT 2012
## 5147 Portugal PT PRT 2013
## 5148 Puerto Rico PR PRI 1980
## 5149 Puerto Rico PR PRI 1981
## 5150 Puerto Rico PR PRI 1982
## 5151 Puerto Rico PR PRI 1983
## 5152 Puerto Rico PR PRI 1984
## 5153 Puerto Rico PR PRI 1985
## 5154 Puerto Rico PR PRI 1986
## 5155 Puerto Rico PR PRI 1987
## 5156 Puerto Rico PR PRI 1988
## 5157 Puerto Rico PR PRI 1989
## 5158 Puerto Rico PR PRI 1990
## 5159 Puerto Rico PR PRI 1991
## 5160 Puerto Rico PR PRI 1992
## 5161 Puerto Rico PR PRI 1993
## 5162 Puerto Rico PR PRI 1994
## 5163 Puerto Rico PR PRI 1995
## 5164 Puerto Rico PR PRI 1996
## 5165 Puerto Rico PR PRI 1997
## 5166 Puerto Rico PR PRI 1998
## 5167 Puerto Rico PR PRI 1999
## 5168 Puerto Rico PR PRI 2000
## 5169 Puerto Rico PR PRI 2001
## 5170 Puerto Rico PR PRI 2002
## 5171 Puerto Rico PR PRI 2003
## 5172 Puerto Rico PR PRI 2004
## 5173 Puerto Rico PR PRI 2005
## 5174 Puerto Rico PR PRI 2006
## 5175 Puerto Rico PR PRI 2007
## 5176 Puerto Rico PR PRI 2008
## 5177 Puerto Rico PR PRI 2009
## 5178 Puerto Rico PR PRI 2010
## 5179 Puerto Rico PR PRI 2011
## 5180 Puerto Rico PR PRI 2012
## 5181 Puerto Rico PR PRI 2013
## 5182 Qatar QA QAT 1980
## 5183 Qatar QA QAT 1981
## 5184 Qatar QA QAT 1982
## 5185 Qatar QA QAT 1983
## 5186 Qatar QA QAT 1984
## 5187 Qatar QA QAT 1985
## 5188 Qatar QA QAT 1986
## 5189 Qatar QA QAT 1987
## 5190 Qatar QA QAT 1988
## 5191 Qatar QA QAT 1989
## 5192 Qatar QA QAT 1990
## 5193 Qatar QA QAT 1991
## 5194 Qatar QA QAT 1992
## 5195 Qatar QA QAT 1993
## 5196 Qatar QA QAT 1994
## 5197 Qatar QA QAT 1995
## 5198 Qatar QA QAT 1996
## 5199 Qatar QA QAT 1997
## 5200 Qatar QA QAT 1998
## 5201 Qatar QA QAT 1999
## 5202 Qatar QA QAT 2000
## 5203 Qatar QA QAT 2001
## 5204 Qatar QA QAT 2002
## 5205 Qatar QA QAT 2003
## 5206 Qatar QA QAT 2004
## 5207 Qatar QA QAT 2005
## 5208 Qatar QA QAT 2006
## 5209 Qatar QA QAT 2007
## 5210 Qatar QA QAT 2008
## 5211 Qatar QA QAT 2009
## 5212 Qatar QA QAT 2010
## 5213 Qatar QA QAT 2011
## 5214 Qatar QA QAT 2012
## 5215 Qatar QA QAT 2013
## 5216 Republic of Korea KR KOR 1980
## 5217 Republic of Korea KR KOR 1981
## 5218 Republic of Korea KR KOR 1982
## 5219 Republic of Korea KR KOR 1983
## 5220 Republic of Korea KR KOR 1984
## 5221 Republic of Korea KR KOR 1985
## 5222 Republic of Korea KR KOR 1986
## 5223 Republic of Korea KR KOR 1987
## 5224 Republic of Korea KR KOR 1988
## 5225 Republic of Korea KR KOR 1989
## 5226 Republic of Korea KR KOR 1990
## 5227 Republic of Korea KR KOR 1991
## 5228 Republic of Korea KR KOR 1992
## 5229 Republic of Korea KR KOR 1993
## 5230 Republic of Korea KR KOR 1994
## 5231 Republic of Korea KR KOR 1995
## 5232 Republic of Korea KR KOR 1996
## 5233 Republic of Korea KR KOR 1997
## 5234 Republic of Korea KR KOR 1998
## 5235 Republic of Korea KR KOR 1999
## 5236 Republic of Korea KR KOR 2000
## 5237 Republic of Korea KR KOR 2001
## 5238 Republic of Korea KR KOR 2002
## 5239 Republic of Korea KR KOR 2003
## 5240 Republic of Korea KR KOR 2004
## 5241 Republic of Korea KR KOR 2005
## 5242 Republic of Korea KR KOR 2006
## 5243 Republic of Korea KR KOR 2007
## 5244 Republic of Korea KR KOR 2008
## 5245 Republic of Korea KR KOR 2009
## 5246 Republic of Korea KR KOR 2010
## 5247 Republic of Korea KR KOR 2011
## 5248 Republic of Korea KR KOR 2012
## 5249 Republic of Korea KR KOR 2013
## 5250 Republic of Moldova MD MDA 1980
## 5251 Republic of Moldova MD MDA 1981
## 5252 Republic of Moldova MD MDA 1982
## 5253 Republic of Moldova MD MDA 1983
## 5254 Republic of Moldova MD MDA 1984
## 5255 Republic of Moldova MD MDA 1985
## 5256 Republic of Moldova MD MDA 1986
## 5257 Republic of Moldova MD MDA 1987
## 5258 Republic of Moldova MD MDA 1988
## 5259 Republic of Moldova MD MDA 1989
## 5260 Republic of Moldova MD MDA 1990
## 5261 Republic of Moldova MD MDA 1991
## 5262 Republic of Moldova MD MDA 1992
## 5263 Republic of Moldova MD MDA 1993
## 5264 Republic of Moldova MD MDA 1994
## 5265 Republic of Moldova MD MDA 1995
## 5266 Republic of Moldova MD MDA 1996
## 5267 Republic of Moldova MD MDA 1997
## 5268 Republic of Moldova MD MDA 1998
## 5269 Republic of Moldova MD MDA 1999
## 5270 Republic of Moldova MD MDA 2000
## 5271 Republic of Moldova MD MDA 2001
## 5272 Republic of Moldova MD MDA 2002
## 5273 Republic of Moldova MD MDA 2003
## 5274 Republic of Moldova MD MDA 2004
## 5275 Republic of Moldova MD MDA 2005
## 5276 Republic of Moldova MD MDA 2006
## 5277 Republic of Moldova MD MDA 2007
## 5278 Republic of Moldova MD MDA 2008
## 5279 Republic of Moldova MD MDA 2009
## 5280 Republic of Moldova MD MDA 2010
## 5281 Republic of Moldova MD MDA 2011
## 5282 Republic of Moldova MD MDA 2012
## 5283 Republic of Moldova MD MDA 2013
## 5284 Romania RO ROU 1980
## 5285 Romania RO ROU 1981
## 5286 Romania RO ROU 1982
## 5287 Romania RO ROU 1983
## 5288 Romania RO ROU 1984
## 5289 Romania RO ROU 1985
## 5290 Romania RO ROU 1986
## 5291 Romania RO ROU 1987
## 5292 Romania RO ROU 1988
## 5293 Romania RO ROU 1989
## 5294 Romania RO ROU 1990
## 5295 Romania RO ROU 1991
## 5296 Romania RO ROU 1992
## 5297 Romania RO ROU 1993
## 5298 Romania RO ROU 1994
## 5299 Romania RO ROU 1995
## 5300 Romania RO ROU 1996
## 5301 Romania RO ROU 1997
## 5302 Romania RO ROU 1998
## 5303 Romania RO ROU 1999
## 5304 Romania RO ROU 2000
## 5305 Romania RO ROU 2001
## 5306 Romania RO ROU 2002
## 5307 Romania RO ROU 2003
## 5308 Romania RO ROU 2004
## 5309 Romania RO ROU 2005
## 5310 Romania RO ROU 2006
## 5311 Romania RO ROU 2007
## 5312 Romania RO ROU 2008
## 5313 Romania RO ROU 2009
## 5314 Romania RO ROU 2010
## 5315 Romania RO ROU 2011
## 5316 Romania RO ROU 2012
## 5317 Romania RO ROU 2013
## 5318 Russian Federation RU RUS 1980
## 5319 Russian Federation RU RUS 1981
## 5320 Russian Federation RU RUS 1982
## 5321 Russian Federation RU RUS 1983
## 5322 Russian Federation RU RUS 1984
## 5323 Russian Federation RU RUS 1985
## 5324 Russian Federation RU RUS 1986
## 5325 Russian Federation RU RUS 1987
## 5326 Russian Federation RU RUS 1988
## 5327 Russian Federation RU RUS 1989
## 5328 Russian Federation RU RUS 1990
## 5329 Russian Federation RU RUS 1991
## 5330 Russian Federation RU RUS 1992
## 5331 Russian Federation RU RUS 1993
## 5332 Russian Federation RU RUS 1994
## 5333 Russian Federation RU RUS 1995
## 5334 Russian Federation RU RUS 1996
## 5335 Russian Federation RU RUS 1997
## 5336 Russian Federation RU RUS 1998
## 5337 Russian Federation RU RUS 1999
## 5338 Russian Federation RU RUS 2000
## 5339 Russian Federation RU RUS 2001
## 5340 Russian Federation RU RUS 2002
## 5341 Russian Federation RU RUS 2003
## 5342 Russian Federation RU RUS 2004
## 5343 Russian Federation RU RUS 2005
## 5344 Russian Federation RU RUS 2006
## 5345 Russian Federation RU RUS 2007
## 5346 Russian Federation RU RUS 2008
## 5347 Russian Federation RU RUS 2009
## 5348 Russian Federation RU RUS 2010
## 5349 Russian Federation RU RUS 2011
## 5350 Russian Federation RU RUS 2012
## 5351 Russian Federation RU RUS 2013
## 5352 Rwanda RW RWA 1980
## 5353 Rwanda RW RWA 1981
## 5354 Rwanda RW RWA 1982
## 5355 Rwanda RW RWA 1983
## 5356 Rwanda RW RWA 1984
## 5357 Rwanda RW RWA 1985
## 5358 Rwanda RW RWA 1986
## 5359 Rwanda RW RWA 1987
## 5360 Rwanda RW RWA 1988
## 5361 Rwanda RW RWA 1989
## 5362 Rwanda RW RWA 1990
## 5363 Rwanda RW RWA 1991
## 5364 Rwanda RW RWA 1992
## 5365 Rwanda RW RWA 1993
## 5366 Rwanda RW RWA 1994
## 5367 Rwanda RW RWA 1995
## 5368 Rwanda RW RWA 1996
## 5369 Rwanda RW RWA 1997
## 5370 Rwanda RW RWA 1998
## 5371 Rwanda RW RWA 1999
## 5372 Rwanda RW RWA 2000
## 5373 Rwanda RW RWA 2001
## 5374 Rwanda RW RWA 2002
## 5375 Rwanda RW RWA 2003
## 5376 Rwanda RW RWA 2004
## 5377 Rwanda RW RWA 2005
## 5378 Rwanda RW RWA 2006
## 5379 Rwanda RW RWA 2007
## 5380 Rwanda RW RWA 2008
## 5381 Rwanda RW RWA 2009
## 5382 Rwanda RW RWA 2010
## 5383 Rwanda RW RWA 2011
## 5384 Rwanda RW RWA 2012
## 5385 Rwanda RW RWA 2013
## 5386 Saint Kitts and Nevis KN KNA 1980
## 5387 Saint Kitts and Nevis KN KNA 1981
## 5388 Saint Kitts and Nevis KN KNA 1982
## 5389 Saint Kitts and Nevis KN KNA 1983
## 5390 Saint Kitts and Nevis KN KNA 1984
## 5391 Saint Kitts and Nevis KN KNA 1985
## 5392 Saint Kitts and Nevis KN KNA 1986
## 5393 Saint Kitts and Nevis KN KNA 1987
## 5394 Saint Kitts and Nevis KN KNA 1988
## 5395 Saint Kitts and Nevis KN KNA 1989
## 5396 Saint Kitts and Nevis KN KNA 1990
## 5397 Saint Kitts and Nevis KN KNA 1991
## 5398 Saint Kitts and Nevis KN KNA 1992
## 5399 Saint Kitts and Nevis KN KNA 1993
## 5400 Saint Kitts and Nevis KN KNA 1994
## 5401 Saint Kitts and Nevis KN KNA 1995
## 5402 Saint Kitts and Nevis KN KNA 1996
## 5403 Saint Kitts and Nevis KN KNA 1997
## 5404 Saint Kitts and Nevis KN KNA 1998
## 5405 Saint Kitts and Nevis KN KNA 1999
## 5406 Saint Kitts and Nevis KN KNA 2000
## 5407 Saint Kitts and Nevis KN KNA 2001
## 5408 Saint Kitts and Nevis KN KNA 2002
## 5409 Saint Kitts and Nevis KN KNA 2003
## 5410 Saint Kitts and Nevis KN KNA 2004
## 5411 Saint Kitts and Nevis KN KNA 2005
## 5412 Saint Kitts and Nevis KN KNA 2006
## 5413 Saint Kitts and Nevis KN KNA 2007
## 5414 Saint Kitts and Nevis KN KNA 2008
## 5415 Saint Kitts and Nevis KN KNA 2009
## 5416 Saint Kitts and Nevis KN KNA 2010
## 5417 Saint Kitts and Nevis KN KNA 2011
## 5418 Saint Kitts and Nevis KN KNA 2012
## 5419 Saint Kitts and Nevis KN KNA 2013
## 5420 Saint Lucia LC LCA 1980
## 5421 Saint Lucia LC LCA 1981
## 5422 Saint Lucia LC LCA 1982
## 5423 Saint Lucia LC LCA 1983
## 5424 Saint Lucia LC LCA 1984
## 5425 Saint Lucia LC LCA 1985
## 5426 Saint Lucia LC LCA 1986
## 5427 Saint Lucia LC LCA 1987
## 5428 Saint Lucia LC LCA 1988
## 5429 Saint Lucia LC LCA 1989
## 5430 Saint Lucia LC LCA 1990
## 5431 Saint Lucia LC LCA 1991
## 5432 Saint Lucia LC LCA 1992
## 5433 Saint Lucia LC LCA 1993
## 5434 Saint Lucia LC LCA 1994
## 5435 Saint Lucia LC LCA 1995
## 5436 Saint Lucia LC LCA 1996
## 5437 Saint Lucia LC LCA 1997
## 5438 Saint Lucia LC LCA 1998
## 5439 Saint Lucia LC LCA 1999
## 5440 Saint Lucia LC LCA 2000
## 5441 Saint Lucia LC LCA 2001
## 5442 Saint Lucia LC LCA 2002
## 5443 Saint Lucia LC LCA 2003
## 5444 Saint Lucia LC LCA 2004
## 5445 Saint Lucia LC LCA 2005
## 5446 Saint Lucia LC LCA 2006
## 5447 Saint Lucia LC LCA 2007
## 5448 Saint Lucia LC LCA 2008
## 5449 Saint Lucia LC LCA 2009
## 5450 Saint Lucia LC LCA 2010
## 5451 Saint Lucia LC LCA 2011
## 5452 Saint Lucia LC LCA 2012
## 5453 Saint Lucia LC LCA 2013
## 5454 Saint Vincent and the Grenadines VC VCT 1980
## 5455 Saint Vincent and the Grenadines VC VCT 1981
## 5456 Saint Vincent and the Grenadines VC VCT 1982
## 5457 Saint Vincent and the Grenadines VC VCT 1983
## 5458 Saint Vincent and the Grenadines VC VCT 1984
## 5459 Saint Vincent and the Grenadines VC VCT 1985
## 5460 Saint Vincent and the Grenadines VC VCT 1986
## 5461 Saint Vincent and the Grenadines VC VCT 1987
## 5462 Saint Vincent and the Grenadines VC VCT 1988
## 5463 Saint Vincent and the Grenadines VC VCT 1989
## 5464 Saint Vincent and the Grenadines VC VCT 1990
## 5465 Saint Vincent and the Grenadines VC VCT 1991
## 5466 Saint Vincent and the Grenadines VC VCT 1992
## 5467 Saint Vincent and the Grenadines VC VCT 1993
## 5468 Saint Vincent and the Grenadines VC VCT 1994
## 5469 Saint Vincent and the Grenadines VC VCT 1995
## 5470 Saint Vincent and the Grenadines VC VCT 1996
## 5471 Saint Vincent and the Grenadines VC VCT 1997
## 5472 Saint Vincent and the Grenadines VC VCT 1998
## 5473 Saint Vincent and the Grenadines VC VCT 1999
## 5474 Saint Vincent and the Grenadines VC VCT 2000
## 5475 Saint Vincent and the Grenadines VC VCT 2001
## 5476 Saint Vincent and the Grenadines VC VCT 2002
## 5477 Saint Vincent and the Grenadines VC VCT 2003
## 5478 Saint Vincent and the Grenadines VC VCT 2004
## 5479 Saint Vincent and the Grenadines VC VCT 2005
## 5480 Saint Vincent and the Grenadines VC VCT 2006
## 5481 Saint Vincent and the Grenadines VC VCT 2007
## 5482 Saint Vincent and the Grenadines VC VCT 2008
## 5483 Saint Vincent and the Grenadines VC VCT 2009
## 5484 Saint Vincent and the Grenadines VC VCT 2010
## 5485 Saint Vincent and the Grenadines VC VCT 2011
## 5486 Saint Vincent and the Grenadines VC VCT 2012
## 5487 Saint Vincent and the Grenadines VC VCT 2013
## 5488 Samoa WS WSM 1980
## 5489 Samoa WS WSM 1981
## 5490 Samoa WS WSM 1982
## 5491 Samoa WS WSM 1983
## 5492 Samoa WS WSM 1984
## 5493 Samoa WS WSM 1985
## 5494 Samoa WS WSM 1986
## 5495 Samoa WS WSM 1987
## 5496 Samoa WS WSM 1988
## 5497 Samoa WS WSM 1989
## 5498 Samoa WS WSM 1990
## 5499 Samoa WS WSM 1991
## 5500 Samoa WS WSM 1992
## 5501 Samoa WS WSM 1993
## 5502 Samoa WS WSM 1994
## 5503 Samoa WS WSM 1995
## 5504 Samoa WS WSM 1996
## 5505 Samoa WS WSM 1997
## 5506 Samoa WS WSM 1998
## 5507 Samoa WS WSM 1999
## 5508 Samoa WS WSM 2000
## 5509 Samoa WS WSM 2001
## 5510 Samoa WS WSM 2002
## 5511 Samoa WS WSM 2003
## 5512 Samoa WS WSM 2004
## 5513 Samoa WS WSM 2005
## 5514 Samoa WS WSM 2006
## 5515 Samoa WS WSM 2007
## 5516 Samoa WS WSM 2008
## 5517 Samoa WS WSM 2009
## 5518 Samoa WS WSM 2010
## 5519 Samoa WS WSM 2011
## 5520 Samoa WS WSM 2012
## 5521 Samoa WS WSM 2013
## 5522 San Marino SM SMR 1980
## 5523 San Marino SM SMR 1981
## 5524 San Marino SM SMR 1982
## 5525 San Marino SM SMR 1983
## 5526 San Marino SM SMR 1984
## 5527 San Marino SM SMR 1985
## 5528 San Marino SM SMR 1986
## 5529 San Marino SM SMR 1987
## 5530 San Marino SM SMR 1988
## 5531 San Marino SM SMR 1989
## 5532 San Marino SM SMR 1990
## 5533 San Marino SM SMR 1991
## 5534 San Marino SM SMR 1992
## 5535 San Marino SM SMR 1993
## 5536 San Marino SM SMR 1994
## 5537 San Marino SM SMR 1995
## 5538 San Marino SM SMR 1996
## 5539 San Marino SM SMR 1997
## 5540 San Marino SM SMR 1998
## 5541 San Marino SM SMR 1999
## 5542 San Marino SM SMR 2000
## 5543 San Marino SM SMR 2001
## 5544 San Marino SM SMR 2002
## 5545 San Marino SM SMR 2003
## 5546 San Marino SM SMR 2004
## 5547 San Marino SM SMR 2005
## 5548 San Marino SM SMR 2006
## 5549 San Marino SM SMR 2007
## 5550 San Marino SM SMR 2008
## 5551 San Marino SM SMR 2009
## 5552 San Marino SM SMR 2010
## 5553 San Marino SM SMR 2011
## 5554 San Marino SM SMR 2012
## 5555 San Marino SM SMR 2013
## 5556 Sao Tome and Principe ST STP 1980
## 5557 Sao Tome and Principe ST STP 1981
## 5558 Sao Tome and Principe ST STP 1982
## 5559 Sao Tome and Principe ST STP 1983
## 5560 Sao Tome and Principe ST STP 1984
## 5561 Sao Tome and Principe ST STP 1985
## 5562 Sao Tome and Principe ST STP 1986
## 5563 Sao Tome and Principe ST STP 1987
## 5564 Sao Tome and Principe ST STP 1988
## 5565 Sao Tome and Principe ST STP 1989
## 5566 Sao Tome and Principe ST STP 1990
## 5567 Sao Tome and Principe ST STP 1991
## 5568 Sao Tome and Principe ST STP 1992
## 5569 Sao Tome and Principe ST STP 1993
## 5570 Sao Tome and Principe ST STP 1994
## 5571 Sao Tome and Principe ST STP 1995
## 5572 Sao Tome and Principe ST STP 1996
## 5573 Sao Tome and Principe ST STP 1997
## 5574 Sao Tome and Principe ST STP 1998
## 5575 Sao Tome and Principe ST STP 1999
## 5576 Sao Tome and Principe ST STP 2000
## 5577 Sao Tome and Principe ST STP 2001
## 5578 Sao Tome and Principe ST STP 2002
## 5579 Sao Tome and Principe ST STP 2003
## 5580 Sao Tome and Principe ST STP 2004
## 5581 Sao Tome and Principe ST STP 2005
## 5582 Sao Tome and Principe ST STP 2006
## 5583 Sao Tome and Principe ST STP 2007
## 5584 Sao Tome and Principe ST STP 2008
## 5585 Sao Tome and Principe ST STP 2009
## 5586 Sao Tome and Principe ST STP 2010
## 5587 Sao Tome and Principe ST STP 2011
## 5588 Sao Tome and Principe ST STP 2012
## 5589 Sao Tome and Principe ST STP 2013
## 5590 Saudi Arabia SA SAU 1980
## 5591 Saudi Arabia SA SAU 1981
## 5592 Saudi Arabia SA SAU 1982
## 5593 Saudi Arabia SA SAU 1983
## 5594 Saudi Arabia SA SAU 1984
## 5595 Saudi Arabia SA SAU 1985
## 5596 Saudi Arabia SA SAU 1986
## 5597 Saudi Arabia SA SAU 1987
## 5598 Saudi Arabia SA SAU 1988
## 5599 Saudi Arabia SA SAU 1989
## 5600 Saudi Arabia SA SAU 1990
## 5601 Saudi Arabia SA SAU 1991
## 5602 Saudi Arabia SA SAU 1992
## 5603 Saudi Arabia SA SAU 1993
## 5604 Saudi Arabia SA SAU 1994
## 5605 Saudi Arabia SA SAU 1995
## 5606 Saudi Arabia SA SAU 1996
## 5607 Saudi Arabia SA SAU 1997
## 5608 Saudi Arabia SA SAU 1998
## 5609 Saudi Arabia SA SAU 1999
## 5610 Saudi Arabia SA SAU 2000
## 5611 Saudi Arabia SA SAU 2001
## 5612 Saudi Arabia SA SAU 2002
## 5613 Saudi Arabia SA SAU 2003
## 5614 Saudi Arabia SA SAU 2004
## 5615 Saudi Arabia SA SAU 2005
## 5616 Saudi Arabia SA SAU 2006
## 5617 Saudi Arabia SA SAU 2007
## 5618 Saudi Arabia SA SAU 2008
## 5619 Saudi Arabia SA SAU 2009
## 5620 Saudi Arabia SA SAU 2010
## 5621 Saudi Arabia SA SAU 2011
## 5622 Saudi Arabia SA SAU 2012
## 5623 Saudi Arabia SA SAU 2013
## 5624 Senegal SN SEN 1980
## 5625 Senegal SN SEN 1981
## 5626 Senegal SN SEN 1982
## 5627 Senegal SN SEN 1983
## 5628 Senegal SN SEN 1984
## 5629 Senegal SN SEN 1985
## 5630 Senegal SN SEN 1986
## 5631 Senegal SN SEN 1987
## 5632 Senegal SN SEN 1988
## 5633 Senegal SN SEN 1989
## 5634 Senegal SN SEN 1990
## 5635 Senegal SN SEN 1991
## 5636 Senegal SN SEN 1992
## 5637 Senegal SN SEN 1993
## 5638 Senegal SN SEN 1994
## 5639 Senegal SN SEN 1995
## 5640 Senegal SN SEN 1996
## 5641 Senegal SN SEN 1997
## 5642 Senegal SN SEN 1998
## 5643 Senegal SN SEN 1999
## 5644 Senegal SN SEN 2000
## 5645 Senegal SN SEN 2001
## 5646 Senegal SN SEN 2002
## 5647 Senegal SN SEN 2003
## 5648 Senegal SN SEN 2004
## 5649 Senegal SN SEN 2005
## 5650 Senegal SN SEN 2006
## 5651 Senegal SN SEN 2007
## 5652 Senegal SN SEN 2008
## 5653 Senegal SN SEN 2009
## 5654 Senegal SN SEN 2010
## 5655 Senegal SN SEN 2011
## 5656 Senegal SN SEN 2012
## 5657 Senegal SN SEN 2013
## 5658 Serbia RS SRB 2005
## 5659 Serbia RS SRB 2006
## 5660 Serbia RS SRB 2007
## 5661 Serbia RS SRB 2008
## 5662 Serbia RS SRB 2009
## 5663 Serbia RS SRB 2010
## 5664 Serbia RS SRB 2011
## 5665 Serbia RS SRB 2012
## 5666 Serbia RS SRB 2013
## 5667 Serbia & Montenegro YU SCG 1980
## 5668 Serbia & Montenegro YU SCG 1981
## 5669 Serbia & Montenegro YU SCG 1982
## 5670 Serbia & Montenegro YU SCG 1983
## 5671 Serbia & Montenegro YU SCG 1984
## 5672 Serbia & Montenegro YU SCG 1985
## 5673 Serbia & Montenegro YU SCG 1986
## 5674 Serbia & Montenegro YU SCG 1987
## 5675 Serbia & Montenegro YU SCG 1988
## 5676 Serbia & Montenegro YU SCG 1989
## 5677 Serbia & Montenegro YU SCG 1990
## 5678 Serbia & Montenegro YU SCG 1991
## 5679 Serbia & Montenegro YU SCG 1992
## 5680 Serbia & Montenegro YU SCG 1993
## 5681 Serbia & Montenegro YU SCG 1994
## 5682 Serbia & Montenegro YU SCG 1995
## 5683 Serbia & Montenegro YU SCG 1996
## 5684 Serbia & Montenegro YU SCG 1997
## 5685 Serbia & Montenegro YU SCG 1998
## 5686 Serbia & Montenegro YU SCG 1999
## 5687 Serbia & Montenegro YU SCG 2000
## 5688 Serbia & Montenegro YU SCG 2001
## 5689 Serbia & Montenegro YU SCG 2002
## 5690 Serbia & Montenegro YU SCG 2003
## 5691 Serbia & Montenegro YU SCG 2004
## 5692 Seychelles SC SYC 1980
## 5693 Seychelles SC SYC 1981
## 5694 Seychelles SC SYC 1982
## 5695 Seychelles SC SYC 1983
## 5696 Seychelles SC SYC 1984
## 5697 Seychelles SC SYC 1985
## 5698 Seychelles SC SYC 1986
## 5699 Seychelles SC SYC 1987
## 5700 Seychelles SC SYC 1988
## 5701 Seychelles SC SYC 1989
## 5702 Seychelles SC SYC 1990
## 5703 Seychelles SC SYC 1991
## 5704 Seychelles SC SYC 1992
## 5705 Seychelles SC SYC 1993
## 5706 Seychelles SC SYC 1994
## 5707 Seychelles SC SYC 1995
## 5708 Seychelles SC SYC 1996
## 5709 Seychelles SC SYC 1997
## 5710 Seychelles SC SYC 1998
## 5711 Seychelles SC SYC 1999
## 5712 Seychelles SC SYC 2000
## 5713 Seychelles SC SYC 2001
## 5714 Seychelles SC SYC 2002
## 5715 Seychelles SC SYC 2003
## 5716 Seychelles SC SYC 2004
## 5717 Seychelles SC SYC 2005
## 5718 Seychelles SC SYC 2006
## 5719 Seychelles SC SYC 2007
## 5720 Seychelles SC SYC 2008
## 5721 Seychelles SC SYC 2009
## 5722 Seychelles SC SYC 2010
## 5723 Seychelles SC SYC 2011
## 5724 Seychelles SC SYC 2012
## 5725 Seychelles SC SYC 2013
## 5726 Sierra Leone SL SLE 1980
## 5727 Sierra Leone SL SLE 1981
## 5728 Sierra Leone SL SLE 1982
## 5729 Sierra Leone SL SLE 1983
## 5730 Sierra Leone SL SLE 1984
## 5731 Sierra Leone SL SLE 1985
## 5732 Sierra Leone SL SLE 1986
## 5733 Sierra Leone SL SLE 1987
## 5734 Sierra Leone SL SLE 1988
## 5735 Sierra Leone SL SLE 1989
## 5736 Sierra Leone SL SLE 1990
## 5737 Sierra Leone SL SLE 1991
## 5738 Sierra Leone SL SLE 1992
## 5739 Sierra Leone SL SLE 1993
## 5740 Sierra Leone SL SLE 1994
## 5741 Sierra Leone SL SLE 1995
## 5742 Sierra Leone SL SLE 1996
## 5743 Sierra Leone SL SLE 1997
## 5744 Sierra Leone SL SLE 1998
## 5745 Sierra Leone SL SLE 1999
## 5746 Sierra Leone SL SLE 2000
## 5747 Sierra Leone SL SLE 2001
## 5748 Sierra Leone SL SLE 2002
## 5749 Sierra Leone SL SLE 2003
## 5750 Sierra Leone SL SLE 2004
## 5751 Sierra Leone SL SLE 2005
## 5752 Sierra Leone SL SLE 2006
## 5753 Sierra Leone SL SLE 2007
## 5754 Sierra Leone SL SLE 2008
## 5755 Sierra Leone SL SLE 2009
## 5756 Sierra Leone SL SLE 2010
## 5757 Sierra Leone SL SLE 2011
## 5758 Sierra Leone SL SLE 2012
## 5759 Sierra Leone SL SLE 2013
## 5760 Singapore SG SGP 1980
## 5761 Singapore SG SGP 1981
## 5762 Singapore SG SGP 1982
## 5763 Singapore SG SGP 1983
## 5764 Singapore SG SGP 1984
## 5765 Singapore SG SGP 1985
## 5766 Singapore SG SGP 1986
## 5767 Singapore SG SGP 1987
## 5768 Singapore SG SGP 1988
## 5769 Singapore SG SGP 1989
## 5770 Singapore SG SGP 1990
## 5771 Singapore SG SGP 1991
## 5772 Singapore SG SGP 1992
## 5773 Singapore SG SGP 1993
## 5774 Singapore SG SGP 1994
## 5775 Singapore SG SGP 1995
## 5776 Singapore SG SGP 1996
## 5777 Singapore SG SGP 1997
## 5778 Singapore SG SGP 1998
## 5779 Singapore SG SGP 1999
## 5780 Singapore SG SGP 2000
## 5781 Singapore SG SGP 2001
## 5782 Singapore SG SGP 2002
## 5783 Singapore SG SGP 2003
## 5784 Singapore SG SGP 2004
## 5785 Singapore SG SGP 2005
## 5786 Singapore SG SGP 2006
## 5787 Singapore SG SGP 2007
## 5788 Singapore SG SGP 2008
## 5789 Singapore SG SGP 2009
## 5790 Singapore SG SGP 2010
## 5791 Singapore SG SGP 2011
## 5792 Singapore SG SGP 2012
## 5793 Singapore SG SGP 2013
## 5794 Sint Maarten (Dutch part) SX SXM 2010
## 5795 Sint Maarten (Dutch part) SX SXM 2011
## 5796 Sint Maarten (Dutch part) SX SXM 2012
## 5797 Sint Maarten (Dutch part) SX SXM 2013
## 5798 Slovakia SK SVK 1980
## 5799 Slovakia SK SVK 1981
## 5800 Slovakia SK SVK 1982
## 5801 Slovakia SK SVK 1983
## 5802 Slovakia SK SVK 1984
## 5803 Slovakia SK SVK 1985
## 5804 Slovakia SK SVK 1986
## 5805 Slovakia SK SVK 1987
## 5806 Slovakia SK SVK 1988
## 5807 Slovakia SK SVK 1989
## 5808 Slovakia SK SVK 1990
## 5809 Slovakia SK SVK 1991
## 5810 Slovakia SK SVK 1992
## 5811 Slovakia SK SVK 1993
## 5812 Slovakia SK SVK 1994
## 5813 Slovakia SK SVK 1995
## 5814 Slovakia SK SVK 1996
## 5815 Slovakia SK SVK 1997
## 5816 Slovakia SK SVK 1998
## 5817 Slovakia SK SVK 1999
## 5818 Slovakia SK SVK 2000
## 5819 Slovakia SK SVK 2001
## 5820 Slovakia SK SVK 2002
## 5821 Slovakia SK SVK 2003
## 5822 Slovakia SK SVK 2004
## 5823 Slovakia SK SVK 2005
## 5824 Slovakia SK SVK 2006
## 5825 Slovakia SK SVK 2007
## 5826 Slovakia SK SVK 2008
## 5827 Slovakia SK SVK 2009
## 5828 Slovakia SK SVK 2010
## 5829 Slovakia SK SVK 2011
## 5830 Slovakia SK SVK 2012
## 5831 Slovakia SK SVK 2013
## 5832 Slovenia SI SVN 1980
## 5833 Slovenia SI SVN 1981
## 5834 Slovenia SI SVN 1982
## 5835 Slovenia SI SVN 1983
## 5836 Slovenia SI SVN 1984
## 5837 Slovenia SI SVN 1985
## 5838 Slovenia SI SVN 1986
## 5839 Slovenia SI SVN 1987
## 5840 Slovenia SI SVN 1988
## 5841 Slovenia SI SVN 1989
## 5842 Slovenia SI SVN 1990
## 5843 Slovenia SI SVN 1991
## 5844 Slovenia SI SVN 1992
## 5845 Slovenia SI SVN 1993
## 5846 Slovenia SI SVN 1994
## 5847 Slovenia SI SVN 1995
## 5848 Slovenia SI SVN 1996
## 5849 Slovenia SI SVN 1997
## 5850 Slovenia SI SVN 1998
## 5851 Slovenia SI SVN 1999
## 5852 Slovenia SI SVN 2000
## 5853 Slovenia SI SVN 2001
## 5854 Slovenia SI SVN 2002
## 5855 Slovenia SI SVN 2003
## 5856 Slovenia SI SVN 2004
## 5857 Slovenia SI SVN 2005
## 5858 Slovenia SI SVN 2006
## 5859 Slovenia SI SVN 2007
## 5860 Slovenia SI SVN 2008
## 5861 Slovenia SI SVN 2009
## 5862 Slovenia SI SVN 2010
## 5863 Slovenia SI SVN 2011
## 5864 Slovenia SI SVN 2012
## 5865 Slovenia SI SVN 2013
## 5866 Solomon Islands SB SLB 1980
## 5867 Solomon Islands SB SLB 1981
## 5868 Solomon Islands SB SLB 1982
## 5869 Solomon Islands SB SLB 1983
## 5870 Solomon Islands SB SLB 1984
## 5871 Solomon Islands SB SLB 1985
## 5872 Solomon Islands SB SLB 1986
## 5873 Solomon Islands SB SLB 1987
## 5874 Solomon Islands SB SLB 1988
## 5875 Solomon Islands SB SLB 1989
## 5876 Solomon Islands SB SLB 1990
## 5877 Solomon Islands SB SLB 1991
## 5878 Solomon Islands SB SLB 1992
## 5879 Solomon Islands SB SLB 1993
## 5880 Solomon Islands SB SLB 1994
## 5881 Solomon Islands SB SLB 1995
## 5882 Solomon Islands SB SLB 1996
## 5883 Solomon Islands SB SLB 1997
## 5884 Solomon Islands SB SLB 1998
## 5885 Solomon Islands SB SLB 1999
## 5886 Solomon Islands SB SLB 2000
## 5887 Solomon Islands SB SLB 2001
## 5888 Solomon Islands SB SLB 2002
## 5889 Solomon Islands SB SLB 2003
## 5890 Solomon Islands SB SLB 2004
## 5891 Solomon Islands SB SLB 2005
## 5892 Solomon Islands SB SLB 2006
## 5893 Solomon Islands SB SLB 2007
## 5894 Solomon Islands SB SLB 2008
## 5895 Solomon Islands SB SLB 2009
## 5896 Solomon Islands SB SLB 2010
## 5897 Solomon Islands SB SLB 2011
## 5898 Solomon Islands SB SLB 2012
## 5899 Solomon Islands SB SLB 2013
## 5900 Somalia SO SOM 1980
## 5901 Somalia SO SOM 1981
## 5902 Somalia SO SOM 1982
## 5903 Somalia SO SOM 1983
## 5904 Somalia SO SOM 1984
## 5905 Somalia SO SOM 1985
## 5906 Somalia SO SOM 1986
## 5907 Somalia SO SOM 1987
## 5908 Somalia SO SOM 1988
## 5909 Somalia SO SOM 1989
## 5910 Somalia SO SOM 1990
## 5911 Somalia SO SOM 1991
## 5912 Somalia SO SOM 1992
## 5913 Somalia SO SOM 1993
## 5914 Somalia SO SOM 1994
## 5915 Somalia SO SOM 1995
## 5916 Somalia SO SOM 1996
## 5917 Somalia SO SOM 1997
## 5918 Somalia SO SOM 1998
## 5919 Somalia SO SOM 1999
## 5920 Somalia SO SOM 2000
## 5921 Somalia SO SOM 2001
## 5922 Somalia SO SOM 2002
## 5923 Somalia SO SOM 2003
## 5924 Somalia SO SOM 2004
## 5925 Somalia SO SOM 2005
## 5926 Somalia SO SOM 2006
## 5927 Somalia SO SOM 2007
## 5928 Somalia SO SOM 2008
## 5929 Somalia SO SOM 2009
## 5930 Somalia SO SOM 2010
## 5931 Somalia SO SOM 2011
## 5932 Somalia SO SOM 2012
## 5933 Somalia SO SOM 2013
## 5934 South Africa ZA ZAF 1980
## 5935 South Africa ZA ZAF 1981
## 5936 South Africa ZA ZAF 1982
## 5937 South Africa ZA ZAF 1983
## 5938 South Africa ZA ZAF 1984
## 5939 South Africa ZA ZAF 1985
## 5940 South Africa ZA ZAF 1986
## 5941 South Africa ZA ZAF 1987
## 5942 South Africa ZA ZAF 1988
## 5943 South Africa ZA ZAF 1989
## 5944 South Africa ZA ZAF 1990
## 5945 South Africa ZA ZAF 1991
## 5946 South Africa ZA ZAF 1992
## 5947 South Africa ZA ZAF 1993
## 5948 South Africa ZA ZAF 1994
## 5949 South Africa ZA ZAF 1995
## 5950 South Africa ZA ZAF 1996
## 5951 South Africa ZA ZAF 1997
## 5952 South Africa ZA ZAF 1998
## 5953 South Africa ZA ZAF 1999
## 5954 South Africa ZA ZAF 2000
## 5955 South Africa ZA ZAF 2001
## 5956 South Africa ZA ZAF 2002
## 5957 South Africa ZA ZAF 2003
## 5958 South Africa ZA ZAF 2004
## 5959 South Africa ZA ZAF 2005
## 5960 South Africa ZA ZAF 2006
## 5961 South Africa ZA ZAF 2007
## 5962 South Africa ZA ZAF 2008
## 5963 South Africa ZA ZAF 2009
## 5964 South Africa ZA ZAF 2010
## 5965 South Africa ZA ZAF 2011
## 5966 South Africa ZA ZAF 2012
## 5967 South Africa ZA ZAF 2013
## 5968 South Sudan SS SSD 2011
## 5969 South Sudan SS SSD 2012
## 5970 South Sudan SS SSD 2013
## 5971 Spain ES ESP 1980
## 5972 Spain ES ESP 1981
## 5973 Spain ES ESP 1982
## 5974 Spain ES ESP 1983
## 5975 Spain ES ESP 1984
## 5976 Spain ES ESP 1985
## 5977 Spain ES ESP 1986
## 5978 Spain ES ESP 1987
## 5979 Spain ES ESP 1988
## 5980 Spain ES ESP 1989
## 5981 Spain ES ESP 1990
## 5982 Spain ES ESP 1991
## 5983 Spain ES ESP 1992
## 5984 Spain ES ESP 1993
## 5985 Spain ES ESP 1994
## 5986 Spain ES ESP 1995
## 5987 Spain ES ESP 1996
## 5988 Spain ES ESP 1997
## 5989 Spain ES ESP 1998
## 5990 Spain ES ESP 1999
## 5991 Spain ES ESP 2000
## 5992 Spain ES ESP 2001
## 5993 Spain ES ESP 2002
## 5994 Spain ES ESP 2003
## 5995 Spain ES ESP 2004
## 5996 Spain ES ESP 2005
## 5997 Spain ES ESP 2006
## 5998 Spain ES ESP 2007
## 5999 Spain ES ESP 2008
## 6000 Spain ES ESP 2009
## 6001 Spain ES ESP 2010
## 6002 Spain ES ESP 2011
## 6003 Spain ES ESP 2012
## 6004 Spain ES ESP 2013
## 6005 Sri Lanka LK LKA 1980
## 6006 Sri Lanka LK LKA 1981
## 6007 Sri Lanka LK LKA 1982
## 6008 Sri Lanka LK LKA 1983
## 6009 Sri Lanka LK LKA 1984
## 6010 Sri Lanka LK LKA 1985
## 6011 Sri Lanka LK LKA 1986
## 6012 Sri Lanka LK LKA 1987
## 6013 Sri Lanka LK LKA 1988
## 6014 Sri Lanka LK LKA 1989
## 6015 Sri Lanka LK LKA 1990
## 6016 Sri Lanka LK LKA 1991
## 6017 Sri Lanka LK LKA 1992
## 6018 Sri Lanka LK LKA 1993
## 6019 Sri Lanka LK LKA 1994
## 6020 Sri Lanka LK LKA 1995
## 6021 Sri Lanka LK LKA 1996
## 6022 Sri Lanka LK LKA 1997
## 6023 Sri Lanka LK LKA 1998
## 6024 Sri Lanka LK LKA 1999
## 6025 Sri Lanka LK LKA 2000
## 6026 Sri Lanka LK LKA 2001
## 6027 Sri Lanka LK LKA 2002
## 6028 Sri Lanka LK LKA 2003
## 6029 Sri Lanka LK LKA 2004
## 6030 Sri Lanka LK LKA 2005
## 6031 Sri Lanka LK LKA 2006
## 6032 Sri Lanka LK LKA 2007
## 6033 Sri Lanka LK LKA 2008
## 6034 Sri Lanka LK LKA 2009
## 6035 Sri Lanka LK LKA 2010
## 6036 Sri Lanka LK LKA 2011
## 6037 Sri Lanka LK LKA 2012
## 6038 Sri Lanka LK LKA 2013
## 6039 Sudan SD SDN 1980
## 6040 Sudan SD SDN 1981
## 6041 Sudan SD SDN 1982
## 6042 Sudan SD SDN 1983
## 6043 Sudan SD SDN 1984
## 6044 Sudan SD SDN 1985
## 6045 Sudan SD SDN 1986
## 6046 Sudan SD SDN 1987
## 6047 Sudan SD SDN 1988
## 6048 Sudan SD SDN 1989
## 6049 Sudan SD SDN 1990
## 6050 Sudan SD SDN 1991
## 6051 Sudan SD SDN 1992
## 6052 Sudan SD SDN 1993
## 6053 Sudan SD SDN 1994
## 6054 Sudan SD SDN 1995
## 6055 Sudan SD SDN 1996
## 6056 Sudan SD SDN 1997
## 6057 Sudan SD SDN 1998
## 6058 Sudan SD SDN 1999
## 6059 Sudan SD SDN 2000
## 6060 Sudan SD SDN 2001
## 6061 Sudan SD SDN 2002
## 6062 Sudan SD SDN 2003
## 6063 Sudan SD SDN 2004
## 6064 Sudan SD SDN 2005
## 6065 Sudan SD SDN 2006
## 6066 Sudan SD SDN 2007
## 6067 Sudan SD SDN 2008
## 6068 Sudan SD SDN 2009
## 6069 Sudan SD SDN 2010
## 6070 Sudan SD SDN 2011
## 6071 Sudan SD SDN 2012
## 6072 Sudan SD SDN 2013
## 6073 Suriname SR SUR 1980
## 6074 Suriname SR SUR 1981
## 6075 Suriname SR SUR 1982
## 6076 Suriname SR SUR 1983
## 6077 Suriname SR SUR 1984
## 6078 Suriname SR SUR 1985
## 6079 Suriname SR SUR 1986
## 6080 Suriname SR SUR 1987
## 6081 Suriname SR SUR 1988
## 6082 Suriname SR SUR 1989
## 6083 Suriname SR SUR 1990
## 6084 Suriname SR SUR 1991
## 6085 Suriname SR SUR 1992
## 6086 Suriname SR SUR 1993
## 6087 Suriname SR SUR 1994
## 6088 Suriname SR SUR 1995
## 6089 Suriname SR SUR 1996
## 6090 Suriname SR SUR 1997
## 6091 Suriname SR SUR 1998
## 6092 Suriname SR SUR 1999
## 6093 Suriname SR SUR 2000
## 6094 Suriname SR SUR 2001
## 6095 Suriname SR SUR 2002
## 6096 Suriname SR SUR 2003
## 6097 Suriname SR SUR 2004
## 6098 Suriname SR SUR 2005
## 6099 Suriname SR SUR 2006
## 6100 Suriname SR SUR 2007
## 6101 Suriname SR SUR 2008
## 6102 Suriname SR SUR 2009
## 6103 Suriname SR SUR 2010
## 6104 Suriname SR SUR 2011
## 6105 Suriname SR SUR 2012
## 6106 Suriname SR SUR 2013
## 6107 Swaziland SZ SWZ 1980
## 6108 Swaziland SZ SWZ 1981
## 6109 Swaziland SZ SWZ 1982
## 6110 Swaziland SZ SWZ 1983
## 6111 Swaziland SZ SWZ 1984
## 6112 Swaziland SZ SWZ 1985
## 6113 Swaziland SZ SWZ 1986
## 6114 Swaziland SZ SWZ 1987
## 6115 Swaziland SZ SWZ 1988
## 6116 Swaziland SZ SWZ 1989
## 6117 Swaziland SZ SWZ 1990
## 6118 Swaziland SZ SWZ 1991
## 6119 Swaziland SZ SWZ 1992
## 6120 Swaziland SZ SWZ 1993
## 6121 Swaziland SZ SWZ 1994
## 6122 Swaziland SZ SWZ 1995
## 6123 Swaziland SZ SWZ 1996
## 6124 Swaziland SZ SWZ 1997
## 6125 Swaziland SZ SWZ 1998
## 6126 Swaziland SZ SWZ 1999
## 6127 Swaziland SZ SWZ 2000
## 6128 Swaziland SZ SWZ 2001
## 6129 Swaziland SZ SWZ 2002
## 6130 Swaziland SZ SWZ 2003
## 6131 Swaziland SZ SWZ 2004
## 6132 Swaziland SZ SWZ 2005
## 6133 Swaziland SZ SWZ 2006
## 6134 Swaziland SZ SWZ 2007
## 6135 Swaziland SZ SWZ 2008
## 6136 Swaziland SZ SWZ 2009
## 6137 Swaziland SZ SWZ 2010
## 6138 Swaziland SZ SWZ 2011
## 6139 Swaziland SZ SWZ 2012
## 6140 Swaziland SZ SWZ 2013
## 6141 Sweden SE SWE 1980
## 6142 Sweden SE SWE 1981
## 6143 Sweden SE SWE 1982
## 6144 Sweden SE SWE 1983
## 6145 Sweden SE SWE 1984
## 6146 Sweden SE SWE 1985
## 6147 Sweden SE SWE 1986
## 6148 Sweden SE SWE 1987
## 6149 Sweden SE SWE 1988
## 6150 Sweden SE SWE 1989
## 6151 Sweden SE SWE 1990
## 6152 Sweden SE SWE 1991
## 6153 Sweden SE SWE 1992
## 6154 Sweden SE SWE 1993
## 6155 Sweden SE SWE 1994
## 6156 Sweden SE SWE 1995
## 6157 Sweden SE SWE 1996
## 6158 Sweden SE SWE 1997
## 6159 Sweden SE SWE 1998
## 6160 Sweden SE SWE 1999
## 6161 Sweden SE SWE 2000
## 6162 Sweden SE SWE 2001
## 6163 Sweden SE SWE 2002
## 6164 Sweden SE SWE 2003
## 6165 Sweden SE SWE 2004
## 6166 Sweden SE SWE 2005
## 6167 Sweden SE SWE 2006
## 6168 Sweden SE SWE 2007
## 6169 Sweden SE SWE 2008
## 6170 Sweden SE SWE 2009
## 6171 Sweden SE SWE 2010
## 6172 Sweden SE SWE 2011
## 6173 Sweden SE SWE 2012
## 6174 Sweden SE SWE 2013
## 6175 Switzerland CH CHE 1980
## 6176 Switzerland CH CHE 1981
## 6177 Switzerland CH CHE 1982
## 6178 Switzerland CH CHE 1983
## 6179 Switzerland CH CHE 1984
## 6180 Switzerland CH CHE 1985
## 6181 Switzerland CH CHE 1986
## 6182 Switzerland CH CHE 1987
## 6183 Switzerland CH CHE 1988
## 6184 Switzerland CH CHE 1989
## 6185 Switzerland CH CHE 1990
## 6186 Switzerland CH CHE 1991
## 6187 Switzerland CH CHE 1992
## 6188 Switzerland CH CHE 1993
## 6189 Switzerland CH CHE 1994
## 6190 Switzerland CH CHE 1995
## 6191 Switzerland CH CHE 1996
## 6192 Switzerland CH CHE 1997
## 6193 Switzerland CH CHE 1998
## 6194 Switzerland CH CHE 1999
## 6195 Switzerland CH CHE 2000
## 6196 Switzerland CH CHE 2001
## 6197 Switzerland CH CHE 2002
## 6198 Switzerland CH CHE 2003
## 6199 Switzerland CH CHE 2004
## 6200 Switzerland CH CHE 2005
## 6201 Switzerland CH CHE 2006
## 6202 Switzerland CH CHE 2007
## 6203 Switzerland CH CHE 2008
## 6204 Switzerland CH CHE 2009
## 6205 Switzerland CH CHE 2010
## 6206 Switzerland CH CHE 2011
## 6207 Switzerland CH CHE 2012
## 6208 Switzerland CH CHE 2013
## 6209 Syrian Arab Republic SY SYR 1980
## 6210 Syrian Arab Republic SY SYR 1981
## 6211 Syrian Arab Republic SY SYR 1982
## 6212 Syrian Arab Republic SY SYR 1983
## 6213 Syrian Arab Republic SY SYR 1984
## 6214 Syrian Arab Republic SY SYR 1985
## 6215 Syrian Arab Republic SY SYR 1986
## 6216 Syrian Arab Republic SY SYR 1987
## 6217 Syrian Arab Republic SY SYR 1988
## 6218 Syrian Arab Republic SY SYR 1989
## 6219 Syrian Arab Republic SY SYR 1990
## 6220 Syrian Arab Republic SY SYR 1991
## 6221 Syrian Arab Republic SY SYR 1992
## 6222 Syrian Arab Republic SY SYR 1993
## 6223 Syrian Arab Republic SY SYR 1994
## 6224 Syrian Arab Republic SY SYR 1995
## 6225 Syrian Arab Republic SY SYR 1996
## 6226 Syrian Arab Republic SY SYR 1997
## 6227 Syrian Arab Republic SY SYR 1998
## 6228 Syrian Arab Republic SY SYR 1999
## 6229 Syrian Arab Republic SY SYR 2000
## 6230 Syrian Arab Republic SY SYR 2001
## 6231 Syrian Arab Republic SY SYR 2002
## 6232 Syrian Arab Republic SY SYR 2003
## 6233 Syrian Arab Republic SY SYR 2004
## 6234 Syrian Arab Republic SY SYR 2005
## 6235 Syrian Arab Republic SY SYR 2006
## 6236 Syrian Arab Republic SY SYR 2007
## 6237 Syrian Arab Republic SY SYR 2008
## 6238 Syrian Arab Republic SY SYR 2009
## 6239 Syrian Arab Republic SY SYR 2010
## 6240 Syrian Arab Republic SY SYR 2011
## 6241 Syrian Arab Republic SY SYR 2012
## 6242 Syrian Arab Republic SY SYR 2013
## 6243 Tajikistan TJ TJK 1980
## 6244 Tajikistan TJ TJK 1981
## 6245 Tajikistan TJ TJK 1982
## 6246 Tajikistan TJ TJK 1983
## 6247 Tajikistan TJ TJK 1984
## 6248 Tajikistan TJ TJK 1985
## 6249 Tajikistan TJ TJK 1986
## 6250 Tajikistan TJ TJK 1987
## 6251 Tajikistan TJ TJK 1988
## 6252 Tajikistan TJ TJK 1989
## 6253 Tajikistan TJ TJK 1990
## 6254 Tajikistan TJ TJK 1991
## 6255 Tajikistan TJ TJK 1992
## 6256 Tajikistan TJ TJK 1993
## 6257 Tajikistan TJ TJK 1994
## 6258 Tajikistan TJ TJK 1995
## 6259 Tajikistan TJ TJK 1996
## 6260 Tajikistan TJ TJK 1997
## 6261 Tajikistan TJ TJK 1998
## 6262 Tajikistan TJ TJK 1999
## 6263 Tajikistan TJ TJK 2000
## 6264 Tajikistan TJ TJK 2001
## 6265 Tajikistan TJ TJK 2002
## 6266 Tajikistan TJ TJK 2003
## 6267 Tajikistan TJ TJK 2004
## 6268 Tajikistan TJ TJK 2005
## 6269 Tajikistan TJ TJK 2006
## 6270 Tajikistan TJ TJK 2007
## 6271 Tajikistan TJ TJK 2008
## 6272 Tajikistan TJ TJK 2009
## 6273 Tajikistan TJ TJK 2010
## 6274 Tajikistan TJ TJK 2011
## 6275 Tajikistan TJ TJK 2012
## 6276 Tajikistan TJ TJK 2013
## 6277 Thailand TH THA 1980
## 6278 Thailand TH THA 1981
## 6279 Thailand TH THA 1982
## 6280 Thailand TH THA 1983
## 6281 Thailand TH THA 1984
## 6282 Thailand TH THA 1985
## 6283 Thailand TH THA 1986
## 6284 Thailand TH THA 1987
## 6285 Thailand TH THA 1988
## 6286 Thailand TH THA 1989
## 6287 Thailand TH THA 1990
## 6288 Thailand TH THA 1991
## 6289 Thailand TH THA 1992
## 6290 Thailand TH THA 1993
## 6291 Thailand TH THA 1994
## 6292 Thailand TH THA 1995
## 6293 Thailand TH THA 1996
## 6294 Thailand TH THA 1997
## 6295 Thailand TH THA 1998
## 6296 Thailand TH THA 1999
## 6297 Thailand TH THA 2000
## 6298 Thailand TH THA 2001
## 6299 Thailand TH THA 2002
## 6300 Thailand TH THA 2003
## 6301 Thailand TH THA 2004
## 6302 Thailand TH THA 2005
## 6303 Thailand TH THA 2006
## 6304 Thailand TH THA 2007
## 6305 Thailand TH THA 2008
## 6306 Thailand TH THA 2009
## 6307 Thailand TH THA 2010
## 6308 Thailand TH THA 2011
## 6309 Thailand TH THA 2012
## 6310 Thailand TH THA 2013
## 6311 The Former Yugoslav Republic of Macedonia MK MKD 1980
## 6312 The Former Yugoslav Republic of Macedonia MK MKD 1981
## 6313 The Former Yugoslav Republic of Macedonia MK MKD 1982
## 6314 The Former Yugoslav Republic of Macedonia MK MKD 1983
## 6315 The Former Yugoslav Republic of Macedonia MK MKD 1984
## 6316 The Former Yugoslav Republic of Macedonia MK MKD 1985
## 6317 The Former Yugoslav Republic of Macedonia MK MKD 1986
## 6318 The Former Yugoslav Republic of Macedonia MK MKD 1987
## 6319 The Former Yugoslav Republic of Macedonia MK MKD 1988
## 6320 The Former Yugoslav Republic of Macedonia MK MKD 1989
## 6321 The Former Yugoslav Republic of Macedonia MK MKD 1990
## 6322 The Former Yugoslav Republic of Macedonia MK MKD 1991
## 6323 The Former Yugoslav Republic of Macedonia MK MKD 1992
## 6324 The Former Yugoslav Republic of Macedonia MK MKD 1993
## 6325 The Former Yugoslav Republic of Macedonia MK MKD 1994
## 6326 The Former Yugoslav Republic of Macedonia MK MKD 1995
## 6327 The Former Yugoslav Republic of Macedonia MK MKD 1996
## 6328 The Former Yugoslav Republic of Macedonia MK MKD 1997
## 6329 The Former Yugoslav Republic of Macedonia MK MKD 1998
## 6330 The Former Yugoslav Republic of Macedonia MK MKD 1999
## 6331 The Former Yugoslav Republic of Macedonia MK MKD 2000
## 6332 The Former Yugoslav Republic of Macedonia MK MKD 2001
## 6333 The Former Yugoslav Republic of Macedonia MK MKD 2002
## 6334 The Former Yugoslav Republic of Macedonia MK MKD 2003
## 6335 The Former Yugoslav Republic of Macedonia MK MKD 2004
## 6336 The Former Yugoslav Republic of Macedonia MK MKD 2005
## 6337 The Former Yugoslav Republic of Macedonia MK MKD 2006
## 6338 The Former Yugoslav Republic of Macedonia MK MKD 2007
## 6339 The Former Yugoslav Republic of Macedonia MK MKD 2008
## 6340 The Former Yugoslav Republic of Macedonia MK MKD 2009
## 6341 The Former Yugoslav Republic of Macedonia MK MKD 2010
## 6342 The Former Yugoslav Republic of Macedonia MK MKD 2011
## 6343 The Former Yugoslav Republic of Macedonia MK MKD 2012
## 6344 The Former Yugoslav Republic of Macedonia MK MKD 2013
## 6345 Timor-Leste TL TLS 2002
## 6346 Timor-Leste TL TLS 2003
## 6347 Timor-Leste TL TLS 2004
## 6348 Timor-Leste TL TLS 2005
## 6349 Timor-Leste TL TLS 2006
## 6350 Timor-Leste TL TLS 2007
## 6351 Timor-Leste TL TLS 2008
## 6352 Timor-Leste TL TLS 2009
## 6353 Timor-Leste TL TLS 2010
## 6354 Timor-Leste TL TLS 2011
## 6355 Timor-Leste TL TLS 2012
## 6356 Timor-Leste TL TLS 2013
## 6357 Togo TG TGO 1980
## 6358 Togo TG TGO 1981
## 6359 Togo TG TGO 1982
## 6360 Togo TG TGO 1983
## 6361 Togo TG TGO 1984
## 6362 Togo TG TGO 1985
## 6363 Togo TG TGO 1986
## 6364 Togo TG TGO 1987
## 6365 Togo TG TGO 1988
## 6366 Togo TG TGO 1989
## 6367 Togo TG TGO 1990
## 6368 Togo TG TGO 1991
## 6369 Togo TG TGO 1992
## 6370 Togo TG TGO 1993
## 6371 Togo TG TGO 1994
## 6372 Togo TG TGO 1995
## 6373 Togo TG TGO 1996
## 6374 Togo TG TGO 1997
## 6375 Togo TG TGO 1998
## 6376 Togo TG TGO 1999
## 6377 Togo TG TGO 2000
## 6378 Togo TG TGO 2001
## 6379 Togo TG TGO 2002
## 6380 Togo TG TGO 2003
## 6381 Togo TG TGO 2004
## 6382 Togo TG TGO 2005
## 6383 Togo TG TGO 2006
## 6384 Togo TG TGO 2007
## 6385 Togo TG TGO 2008
## 6386 Togo TG TGO 2009
## 6387 Togo TG TGO 2010
## 6388 Togo TG TGO 2011
## 6389 Togo TG TGO 2012
## 6390 Togo TG TGO 2013
## 6391 Tokelau TK TKL 1980
## 6392 Tokelau TK TKL 1981
## 6393 Tokelau TK TKL 1982
## 6394 Tokelau TK TKL 1983
## 6395 Tokelau TK TKL 1984
## 6396 Tokelau TK TKL 1985
## 6397 Tokelau TK TKL 1986
## 6398 Tokelau TK TKL 1987
## 6399 Tokelau TK TKL 1988
## 6400 Tokelau TK TKL 1989
## 6401 Tokelau TK TKL 1990
## 6402 Tokelau TK TKL 1991
## 6403 Tokelau TK TKL 1992
## 6404 Tokelau TK TKL 1993
## 6405 Tokelau TK TKL 1994
## 6406 Tokelau TK TKL 1995
## 6407 Tokelau TK TKL 1996
## 6408 Tokelau TK TKL 1997
## 6409 Tokelau TK TKL 1998
## 6410 Tokelau TK TKL 1999
## 6411 Tokelau TK TKL 2000
## 6412 Tokelau TK TKL 2001
## 6413 Tokelau TK TKL 2002
## 6414 Tokelau TK TKL 2003
## 6415 Tokelau TK TKL 2004
## 6416 Tokelau TK TKL 2005
## 6417 Tokelau TK TKL 2006
## 6418 Tokelau TK TKL 2007
## 6419 Tokelau TK TKL 2008
## 6420 Tokelau TK TKL 2009
## 6421 Tokelau TK TKL 2010
## 6422 Tokelau TK TKL 2011
## 6423 Tokelau TK TKL 2012
## 6424 Tokelau TK TKL 2013
## 6425 Tonga TO TON 1980
## 6426 Tonga TO TON 1981
## 6427 Tonga TO TON 1982
## 6428 Tonga TO TON 1983
## 6429 Tonga TO TON 1984
## 6430 Tonga TO TON 1985
## 6431 Tonga TO TON 1986
## 6432 Tonga TO TON 1987
## 6433 Tonga TO TON 1988
## 6434 Tonga TO TON 1989
## 6435 Tonga TO TON 1990
## 6436 Tonga TO TON 1991
## 6437 Tonga TO TON 1992
## 6438 Tonga TO TON 1993
## 6439 Tonga TO TON 1994
## 6440 Tonga TO TON 1995
## 6441 Tonga TO TON 1996
## 6442 Tonga TO TON 1997
## 6443 Tonga TO TON 1998
## 6444 Tonga TO TON 1999
## 6445 Tonga TO TON 2000
## 6446 Tonga TO TON 2001
## 6447 Tonga TO TON 2002
## 6448 Tonga TO TON 2003
## 6449 Tonga TO TON 2004
## 6450 Tonga TO TON 2005
## 6451 Tonga TO TON 2006
## 6452 Tonga TO TON 2007
## 6453 Tonga TO TON 2008
## 6454 Tonga TO TON 2009
## 6455 Tonga TO TON 2010
## 6456 Tonga TO TON 2011
## 6457 Tonga TO TON 2012
## 6458 Tonga TO TON 2013
## 6459 Trinidad and Tobago TT TTO 1980
## 6460 Trinidad and Tobago TT TTO 1981
## 6461 Trinidad and Tobago TT TTO 1982
## 6462 Trinidad and Tobago TT TTO 1983
## 6463 Trinidad and Tobago TT TTO 1984
## 6464 Trinidad and Tobago TT TTO 1985
## 6465 Trinidad and Tobago TT TTO 1986
## 6466 Trinidad and Tobago TT TTO 1987
## 6467 Trinidad and Tobago TT TTO 1988
## 6468 Trinidad and Tobago TT TTO 1989
## 6469 Trinidad and Tobago TT TTO 1990
## 6470 Trinidad and Tobago TT TTO 1991
## 6471 Trinidad and Tobago TT TTO 1992
## 6472 Trinidad and Tobago TT TTO 1993
## 6473 Trinidad and Tobago TT TTO 1994
## 6474 Trinidad and Tobago TT TTO 1995
## 6475 Trinidad and Tobago TT TTO 1996
## 6476 Trinidad and Tobago TT TTO 1997
## 6477 Trinidad and Tobago TT TTO 1998
## 6478 Trinidad and Tobago TT TTO 1999
## 6479 Trinidad and Tobago TT TTO 2000
## 6480 Trinidad and Tobago TT TTO 2001
## 6481 Trinidad and Tobago TT TTO 2002
## 6482 Trinidad and Tobago TT TTO 2003
## 6483 Trinidad and Tobago TT TTO 2004
## 6484 Trinidad and Tobago TT TTO 2005
## 6485 Trinidad and Tobago TT TTO 2006
## 6486 Trinidad and Tobago TT TTO 2007
## 6487 Trinidad and Tobago TT TTO 2008
## 6488 Trinidad and Tobago TT TTO 2009
## 6489 Trinidad and Tobago TT TTO 2010
## 6490 Trinidad and Tobago TT TTO 2011
## 6491 Trinidad and Tobago TT TTO 2012
## 6492 Trinidad and Tobago TT TTO 2013
## 6493 Tunisia TN TUN 1980
## 6494 Tunisia TN TUN 1981
## 6495 Tunisia TN TUN 1982
## 6496 Tunisia TN TUN 1983
## 6497 Tunisia TN TUN 1984
## 6498 Tunisia TN TUN 1985
## 6499 Tunisia TN TUN 1986
## 6500 Tunisia TN TUN 1987
## 6501 Tunisia TN TUN 1988
## 6502 Tunisia TN TUN 1989
## 6503 Tunisia TN TUN 1990
## 6504 Tunisia TN TUN 1991
## 6505 Tunisia TN TUN 1992
## 6506 Tunisia TN TUN 1993
## 6507 Tunisia TN TUN 1994
## 6508 Tunisia TN TUN 1995
## 6509 Tunisia TN TUN 1996
## 6510 Tunisia TN TUN 1997
## 6511 Tunisia TN TUN 1998
## 6512 Tunisia TN TUN 1999
## 6513 Tunisia TN TUN 2000
## 6514 Tunisia TN TUN 2001
## 6515 Tunisia TN TUN 2002
## 6516 Tunisia TN TUN 2003
## 6517 Tunisia TN TUN 2004
## 6518 Tunisia TN TUN 2005
## 6519 Tunisia TN TUN 2006
## 6520 Tunisia TN TUN 2007
## 6521 Tunisia TN TUN 2008
## 6522 Tunisia TN TUN 2009
## 6523 Tunisia TN TUN 2010
## 6524 Tunisia TN TUN 2011
## 6525 Tunisia TN TUN 2012
## 6526 Tunisia TN TUN 2013
## 6527 Turkey TR TUR 1980
## 6528 Turkey TR TUR 1981
## 6529 Turkey TR TUR 1982
## 6530 Turkey TR TUR 1983
## 6531 Turkey TR TUR 1984
## 6532 Turkey TR TUR 1985
## 6533 Turkey TR TUR 1986
## 6534 Turkey TR TUR 1987
## 6535 Turkey TR TUR 1988
## 6536 Turkey TR TUR 1989
## 6537 Turkey TR TUR 1990
## 6538 Turkey TR TUR 1991
## 6539 Turkey TR TUR 1992
## 6540 Turkey TR TUR 1993
## 6541 Turkey TR TUR 1994
## 6542 Turkey TR TUR 1995
## 6543 Turkey TR TUR 1996
## 6544 Turkey TR TUR 1997
## 6545 Turkey TR TUR 1998
## 6546 Turkey TR TUR 1999
## 6547 Turkey TR TUR 2000
## 6548 Turkey TR TUR 2001
## 6549 Turkey TR TUR 2002
## 6550 Turkey TR TUR 2003
## 6551 Turkey TR TUR 2004
## 6552 Turkey TR TUR 2005
## 6553 Turkey TR TUR 2006
## 6554 Turkey TR TUR 2007
## 6555 Turkey TR TUR 2008
## 6556 Turkey TR TUR 2009
## 6557 Turkey TR TUR 2010
## 6558 Turkey TR TUR 2011
## 6559 Turkey TR TUR 2012
## 6560 Turkey TR TUR 2013
## 6561 Turkmenistan TM TKM 1980
## 6562 Turkmenistan TM TKM 1981
## 6563 Turkmenistan TM TKM 1982
## 6564 Turkmenistan TM TKM 1983
## 6565 Turkmenistan TM TKM 1984
## 6566 Turkmenistan TM TKM 1985
## 6567 Turkmenistan TM TKM 1986
## 6568 Turkmenistan TM TKM 1987
## 6569 Turkmenistan TM TKM 1988
## 6570 Turkmenistan TM TKM 1989
## 6571 Turkmenistan TM TKM 1990
## 6572 Turkmenistan TM TKM 1991
## 6573 Turkmenistan TM TKM 1992
## 6574 Turkmenistan TM TKM 1993
## 6575 Turkmenistan TM TKM 1994
## 6576 Turkmenistan TM TKM 1995
## 6577 Turkmenistan TM TKM 1996
## 6578 Turkmenistan TM TKM 1997
## 6579 Turkmenistan TM TKM 1998
## 6580 Turkmenistan TM TKM 1999
## 6581 Turkmenistan TM TKM 2000
## 6582 Turkmenistan TM TKM 2001
## 6583 Turkmenistan TM TKM 2002
## 6584 Turkmenistan TM TKM 2003
## 6585 Turkmenistan TM TKM 2004
## 6586 Turkmenistan TM TKM 2005
## 6587 Turkmenistan TM TKM 2006
## 6588 Turkmenistan TM TKM 2007
## 6589 Turkmenistan TM TKM 2008
## 6590 Turkmenistan TM TKM 2009
## 6591 Turkmenistan TM TKM 2010
## 6592 Turkmenistan TM TKM 2011
## 6593 Turkmenistan TM TKM 2012
## 6594 Turkmenistan TM TKM 2013
## 6595 Turks and Caicos Islands TC TCA 1980
## 6596 Turks and Caicos Islands TC TCA 1981
## 6597 Turks and Caicos Islands TC TCA 1982
## 6598 Turks and Caicos Islands TC TCA 1983
## 6599 Turks and Caicos Islands TC TCA 1984
## 6600 Turks and Caicos Islands TC TCA 1985
## 6601 Turks and Caicos Islands TC TCA 1986
## 6602 Turks and Caicos Islands TC TCA 1987
## 6603 Turks and Caicos Islands TC TCA 1988
## 6604 Turks and Caicos Islands TC TCA 1989
## 6605 Turks and Caicos Islands TC TCA 1990
## 6606 Turks and Caicos Islands TC TCA 1991
## 6607 Turks and Caicos Islands TC TCA 1992
## 6608 Turks and Caicos Islands TC TCA 1993
## 6609 Turks and Caicos Islands TC TCA 1994
## 6610 Turks and Caicos Islands TC TCA 1995
## 6611 Turks and Caicos Islands TC TCA 1996
## 6612 Turks and Caicos Islands TC TCA 1997
## 6613 Turks and Caicos Islands TC TCA 1998
## 6614 Turks and Caicos Islands TC TCA 1999
## 6615 Turks and Caicos Islands TC TCA 2000
## 6616 Turks and Caicos Islands TC TCA 2001
## 6617 Turks and Caicos Islands TC TCA 2002
## 6618 Turks and Caicos Islands TC TCA 2003
## 6619 Turks and Caicos Islands TC TCA 2004
## 6620 Turks and Caicos Islands TC TCA 2005
## 6621 Turks and Caicos Islands TC TCA 2006
## 6622 Turks and Caicos Islands TC TCA 2007
## 6623 Turks and Caicos Islands TC TCA 2008
## 6624 Turks and Caicos Islands TC TCA 2009
## 6625 Turks and Caicos Islands TC TCA 2010
## 6626 Turks and Caicos Islands TC TCA 2011
## 6627 Turks and Caicos Islands TC TCA 2012
## 6628 Turks and Caicos Islands TC TCA 2013
## 6629 Tuvalu TV TUV 1980
## 6630 Tuvalu TV TUV 1981
## 6631 Tuvalu TV TUV 1982
## 6632 Tuvalu TV TUV 1983
## 6633 Tuvalu TV TUV 1984
## 6634 Tuvalu TV TUV 1985
## 6635 Tuvalu TV TUV 1986
## 6636 Tuvalu TV TUV 1987
## 6637 Tuvalu TV TUV 1988
## 6638 Tuvalu TV TUV 1989
## 6639 Tuvalu TV TUV 1990
## 6640 Tuvalu TV TUV 1991
## 6641 Tuvalu TV TUV 1992
## 6642 Tuvalu TV TUV 1993
## 6643 Tuvalu TV TUV 1994
## 6644 Tuvalu TV TUV 1995
## 6645 Tuvalu TV TUV 1996
## 6646 Tuvalu TV TUV 1997
## 6647 Tuvalu TV TUV 1998
## 6648 Tuvalu TV TUV 1999
## 6649 Tuvalu TV TUV 2000
## 6650 Tuvalu TV TUV 2001
## 6651 Tuvalu TV TUV 2002
## 6652 Tuvalu TV TUV 2003
## 6653 Tuvalu TV TUV 2004
## 6654 Tuvalu TV TUV 2005
## 6655 Tuvalu TV TUV 2006
## 6656 Tuvalu TV TUV 2007
## 6657 Tuvalu TV TUV 2008
## 6658 Tuvalu TV TUV 2009
## 6659 Tuvalu TV TUV 2010
## 6660 Tuvalu TV TUV 2011
## 6661 Tuvalu TV TUV 2012
## 6662 Tuvalu TV TUV 2013
## 6663 Uganda UG UGA 1980
## 6664 Uganda UG UGA 1981
## 6665 Uganda UG UGA 1982
## 6666 Uganda UG UGA 1983
## 6667 Uganda UG UGA 1984
## 6668 Uganda UG UGA 1985
## 6669 Uganda UG UGA 1986
## 6670 Uganda UG UGA 1987
## 6671 Uganda UG UGA 1988
## 6672 Uganda UG UGA 1989
## 6673 Uganda UG UGA 1990
## 6674 Uganda UG UGA 1991
## 6675 Uganda UG UGA 1992
## 6676 Uganda UG UGA 1993
## 6677 Uganda UG UGA 1994
## 6678 Uganda UG UGA 1995
## 6679 Uganda UG UGA 1996
## 6680 Uganda UG UGA 1997
## 6681 Uganda UG UGA 1998
## 6682 Uganda UG UGA 1999
## 6683 Uganda UG UGA 2000
## 6684 Uganda UG UGA 2001
## 6685 Uganda UG UGA 2002
## 6686 Uganda UG UGA 2003
## 6687 Uganda UG UGA 2004
## 6688 Uganda UG UGA 2005
## 6689 Uganda UG UGA 2006
## 6690 Uganda UG UGA 2007
## 6691 Uganda UG UGA 2008
## 6692 Uganda UG UGA 2009
## 6693 Uganda UG UGA 2010
## 6694 Uganda UG UGA 2011
## 6695 Uganda UG UGA 2012
## 6696 Uganda UG UGA 2013
## 6697 Ukraine UA UKR 1980
## 6698 Ukraine UA UKR 1981
## 6699 Ukraine UA UKR 1982
## 6700 Ukraine UA UKR 1983
## 6701 Ukraine UA UKR 1984
## 6702 Ukraine UA UKR 1985
## 6703 Ukraine UA UKR 1986
## 6704 Ukraine UA UKR 1987
## 6705 Ukraine UA UKR 1988
## 6706 Ukraine UA UKR 1989
## 6707 Ukraine UA UKR 1990
## 6708 Ukraine UA UKR 1991
## 6709 Ukraine UA UKR 1992
## 6710 Ukraine UA UKR 1993
## 6711 Ukraine UA UKR 1994
## 6712 Ukraine UA UKR 1995
## 6713 Ukraine UA UKR 1996
## 6714 Ukraine UA UKR 1997
## 6715 Ukraine UA UKR 1998
## 6716 Ukraine UA UKR 1999
## 6717 Ukraine UA UKR 2000
## 6718 Ukraine UA UKR 2001
## 6719 Ukraine UA UKR 2002
## 6720 Ukraine UA UKR 2003
## 6721 Ukraine UA UKR 2004
## 6722 Ukraine UA UKR 2005
## 6723 Ukraine UA UKR 2006
## 6724 Ukraine UA UKR 2007
## 6725 Ukraine UA UKR 2008
## 6726 Ukraine UA UKR 2009
## 6727 Ukraine UA UKR 2010
## 6728 Ukraine UA UKR 2011
## 6729 Ukraine UA UKR 2012
## 6730 Ukraine UA UKR 2013
## 6731 United Arab Emirates AE ARE 1980
## 6732 United Arab Emirates AE ARE 1981
## 6733 United Arab Emirates AE ARE 1982
## 6734 United Arab Emirates AE ARE 1983
## 6735 United Arab Emirates AE ARE 1984
## 6736 United Arab Emirates AE ARE 1985
## 6737 United Arab Emirates AE ARE 1986
## 6738 United Arab Emirates AE ARE 1987
## 6739 United Arab Emirates AE ARE 1988
## 6740 United Arab Emirates AE ARE 1989
## 6741 United Arab Emirates AE ARE 1990
## 6742 United Arab Emirates AE ARE 1991
## 6743 United Arab Emirates AE ARE 1992
## 6744 United Arab Emirates AE ARE 1993
## 6745 United Arab Emirates AE ARE 1994
## 6746 United Arab Emirates AE ARE 1995
## 6747 United Arab Emirates AE ARE 1996
## 6748 United Arab Emirates AE ARE 1997
## 6749 United Arab Emirates AE ARE 1998
## 6750 United Arab Emirates AE ARE 1999
## 6751 United Arab Emirates AE ARE 2000
## 6752 United Arab Emirates AE ARE 2001
## 6753 United Arab Emirates AE ARE 2002
## 6754 United Arab Emirates AE ARE 2003
## 6755 United Arab Emirates AE ARE 2004
## 6756 United Arab Emirates AE ARE 2005
## 6757 United Arab Emirates AE ARE 2006
## 6758 United Arab Emirates AE ARE 2007
## 6759 United Arab Emirates AE ARE 2008
## 6760 United Arab Emirates AE ARE 2009
## 6761 United Arab Emirates AE ARE 2010
## 6762 United Arab Emirates AE ARE 2011
## 6763 United Arab Emirates AE ARE 2012
## 6764 United Arab Emirates AE ARE 2013
## 6765 United Kingdom of Great Britain and Northern Ireland GB GBR 1980
## 6766 United Kingdom of Great Britain and Northern Ireland GB GBR 1981
## 6767 United Kingdom of Great Britain and Northern Ireland GB GBR 1982
## 6768 United Kingdom of Great Britain and Northern Ireland GB GBR 1983
## 6769 United Kingdom of Great Britain and Northern Ireland GB GBR 1984
## 6770 United Kingdom of Great Britain and Northern Ireland GB GBR 1985
## 6771 United Kingdom of Great Britain and Northern Ireland GB GBR 1986
## 6772 United Kingdom of Great Britain and Northern Ireland GB GBR 1987
## 6773 United Kingdom of Great Britain and Northern Ireland GB GBR 1988
## 6774 United Kingdom of Great Britain and Northern Ireland GB GBR 1989
## 6775 United Kingdom of Great Britain and Northern Ireland GB GBR 1990
## 6776 United Kingdom of Great Britain and Northern Ireland GB GBR 1991
## 6777 United Kingdom of Great Britain and Northern Ireland GB GBR 1992
## 6778 United Kingdom of Great Britain and Northern Ireland GB GBR 1993
## 6779 United Kingdom of Great Britain and Northern Ireland GB GBR 1994
## 6780 United Kingdom of Great Britain and Northern Ireland GB GBR 1995
## 6781 United Kingdom of Great Britain and Northern Ireland GB GBR 1996
## 6782 United Kingdom of Great Britain and Northern Ireland GB GBR 1997
## 6783 United Kingdom of Great Britain and Northern Ireland GB GBR 1998
## 6784 United Kingdom of Great Britain and Northern Ireland GB GBR 1999
## 6785 United Kingdom of Great Britain and Northern Ireland GB GBR 2000
## 6786 United Kingdom of Great Britain and Northern Ireland GB GBR 2001
## 6787 United Kingdom of Great Britain and Northern Ireland GB GBR 2002
## 6788 United Kingdom of Great Britain and Northern Ireland GB GBR 2003
## 6789 United Kingdom of Great Britain and Northern Ireland GB GBR 2004
## 6790 United Kingdom of Great Britain and Northern Ireland GB GBR 2005
## 6791 United Kingdom of Great Britain and Northern Ireland GB GBR 2006
## 6792 United Kingdom of Great Britain and Northern Ireland GB GBR 2007
## 6793 United Kingdom of Great Britain and Northern Ireland GB GBR 2008
## 6794 United Kingdom of Great Britain and Northern Ireland GB GBR 2009
## 6795 United Kingdom of Great Britain and Northern Ireland GB GBR 2010
## 6796 United Kingdom of Great Britain and Northern Ireland GB GBR 2011
## 6797 United Kingdom of Great Britain and Northern Ireland GB GBR 2012
## 6798 United Kingdom of Great Britain and Northern Ireland GB GBR 2013
## 6799 United Republic of Tanzania TZ TZA 1980
## 6800 United Republic of Tanzania TZ TZA 1981
## 6801 United Republic of Tanzania TZ TZA 1982
## 6802 United Republic of Tanzania TZ TZA 1983
## 6803 United Republic of Tanzania TZ TZA 1984
## 6804 United Republic of Tanzania TZ TZA 1985
## 6805 United Republic of Tanzania TZ TZA 1986
## 6806 United Republic of Tanzania TZ TZA 1987
## 6807 United Republic of Tanzania TZ TZA 1988
## 6808 United Republic of Tanzania TZ TZA 1989
## 6809 United Republic of Tanzania TZ TZA 1990
## 6810 United Republic of Tanzania TZ TZA 1991
## 6811 United Republic of Tanzania TZ TZA 1992
## 6812 United Republic of Tanzania TZ TZA 1993
## 6813 United Republic of Tanzania TZ TZA 1994
## 6814 United Republic of Tanzania TZ TZA 1995
## 6815 United Republic of Tanzania TZ TZA 1996
## 6816 United Republic of Tanzania TZ TZA 1997
## 6817 United Republic of Tanzania TZ TZA 1998
## 6818 United Republic of Tanzania TZ TZA 1999
## 6819 United Republic of Tanzania TZ TZA 2000
## 6820 United Republic of Tanzania TZ TZA 2001
## 6821 United Republic of Tanzania TZ TZA 2002
## 6822 United Republic of Tanzania TZ TZA 2003
## 6823 United Republic of Tanzania TZ TZA 2004
## 6824 United Republic of Tanzania TZ TZA 2005
## 6825 United Republic of Tanzania TZ TZA 2006
## 6826 United Republic of Tanzania TZ TZA 2007
## 6827 United Republic of Tanzania TZ TZA 2008
## 6828 United Republic of Tanzania TZ TZA 2009
## 6829 United Republic of Tanzania TZ TZA 2010
## 6830 United Republic of Tanzania TZ TZA 2011
## 6831 United Republic of Tanzania TZ TZA 2012
## 6832 United Republic of Tanzania TZ TZA 2013
## 6833 United States of America US USA 1980
## 6834 United States of America US USA 1981
## 6835 United States of America US USA 1982
## 6836 United States of America US USA 1983
## 6837 United States of America US USA 1984
## 6838 United States of America US USA 1985
## 6839 United States of America US USA 1986
## 6840 United States of America US USA 1987
## 6841 United States of America US USA 1988
## 6842 United States of America US USA 1989
## 6843 United States of America US USA 1990
## 6844 United States of America US USA 1991
## 6845 United States of America US USA 1992
## 6846 United States of America US USA 1993
## 6847 United States of America US USA 1994
## 6848 United States of America US USA 1995
## 6849 United States of America US USA 1996
## 6850 United States of America US USA 1997
## 6851 United States of America US USA 1998
## 6852 United States of America US USA 1999
## 6853 United States of America US USA 2000
## 6854 United States of America US USA 2001
## 6855 United States of America US USA 2002
## 6856 United States of America US USA 2003
## 6857 United States of America US USA 2004
## 6858 United States of America US USA 2005
## 6859 United States of America US USA 2006
## 6860 United States of America US USA 2007
## 6861 United States of America US USA 2008
## 6862 United States of America US USA 2009
## 6863 United States of America US USA 2010
## 6864 United States of America US USA 2011
## 6865 United States of America US USA 2012
## 6866 United States of America US USA 2013
## 6867 Uruguay UY URY 1980
## 6868 Uruguay UY URY 1981
## 6869 Uruguay UY URY 1982
## 6870 Uruguay UY URY 1983
## 6871 Uruguay UY URY 1984
## 6872 Uruguay UY URY 1985
## 6873 Uruguay UY URY 1986
## 6874 Uruguay UY URY 1987
## 6875 Uruguay UY URY 1988
## 6876 Uruguay UY URY 1989
## 6877 Uruguay UY URY 1990
## 6878 Uruguay UY URY 1991
## 6879 Uruguay UY URY 1992
## 6880 Uruguay UY URY 1993
## 6881 Uruguay UY URY 1994
## 6882 Uruguay UY URY 1995
## 6883 Uruguay UY URY 1996
## 6884 Uruguay UY URY 1997
## 6885 Uruguay UY URY 1998
## 6886 Uruguay UY URY 1999
## 6887 Uruguay UY URY 2000
## 6888 Uruguay UY URY 2001
## 6889 Uruguay UY URY 2002
## 6890 Uruguay UY URY 2003
## 6891 Uruguay UY URY 2004
## 6892 Uruguay UY URY 2005
## 6893 Uruguay UY URY 2006
## 6894 Uruguay UY URY 2007
## 6895 Uruguay UY URY 2008
## 6896 Uruguay UY URY 2009
## 6897 Uruguay UY URY 2010
## 6898 Uruguay UY URY 2011
## 6899 Uruguay UY URY 2012
## 6900 Uruguay UY URY 2013
## 6901 US Virgin Islands VI VIR 1980
## 6902 US Virgin Islands VI VIR 1981
## 6903 US Virgin Islands VI VIR 1982
## 6904 US Virgin Islands VI VIR 1983
## 6905 US Virgin Islands VI VIR 1984
## 6906 US Virgin Islands VI VIR 1985
## 6907 US Virgin Islands VI VIR 1986
## 6908 US Virgin Islands VI VIR 1987
## 6909 US Virgin Islands VI VIR 1988
## 6910 US Virgin Islands VI VIR 1989
## 6911 US Virgin Islands VI VIR 1990
## 6912 US Virgin Islands VI VIR 1991
## 6913 US Virgin Islands VI VIR 1992
## 6914 US Virgin Islands VI VIR 1993
## 6915 US Virgin Islands VI VIR 1994
## 6916 US Virgin Islands VI VIR 1995
## 6917 US Virgin Islands VI VIR 1996
## 6918 US Virgin Islands VI VIR 1997
## 6919 US Virgin Islands VI VIR 1998
## 6920 US Virgin Islands VI VIR 1999
## 6921 US Virgin Islands VI VIR 2000
## 6922 US Virgin Islands VI VIR 2001
## 6923 US Virgin Islands VI VIR 2002
## 6924 US Virgin Islands VI VIR 2003
## 6925 US Virgin Islands VI VIR 2004
## 6926 US Virgin Islands VI VIR 2005
## 6927 US Virgin Islands VI VIR 2006
## 6928 US Virgin Islands VI VIR 2007
## 6929 US Virgin Islands VI VIR 2008
## 6930 US Virgin Islands VI VIR 2009
## 6931 US Virgin Islands VI VIR 2010
## 6932 US Virgin Islands VI VIR 2011
## 6933 US Virgin Islands VI VIR 2012
## 6934 US Virgin Islands VI VIR 2013
## 6935 Uzbekistan UZ UZB 1980
## 6936 Uzbekistan UZ UZB 1981
## 6937 Uzbekistan UZ UZB 1982
## 6938 Uzbekistan UZ UZB 1983
## 6939 Uzbekistan UZ UZB 1984
## 6940 Uzbekistan UZ UZB 1985
## 6941 Uzbekistan UZ UZB 1986
## 6942 Uzbekistan UZ UZB 1987
## 6943 Uzbekistan UZ UZB 1988
## 6944 Uzbekistan UZ UZB 1989
## 6945 Uzbekistan UZ UZB 1990
## 6946 Uzbekistan UZ UZB 1991
## 6947 Uzbekistan UZ UZB 1992
## 6948 Uzbekistan UZ UZB 1993
## 6949 Uzbekistan UZ UZB 1994
## 6950 Uzbekistan UZ UZB 1995
## 6951 Uzbekistan UZ UZB 1996
## 6952 Uzbekistan UZ UZB 1997
## 6953 Uzbekistan UZ UZB 1998
## 6954 Uzbekistan UZ UZB 1999
## 6955 Uzbekistan UZ UZB 2000
## 6956 Uzbekistan UZ UZB 2001
## 6957 Uzbekistan UZ UZB 2002
## 6958 Uzbekistan UZ UZB 2003
## 6959 Uzbekistan UZ UZB 2004
## 6960 Uzbekistan UZ UZB 2005
## 6961 Uzbekistan UZ UZB 2006
## 6962 Uzbekistan UZ UZB 2007
## 6963 Uzbekistan UZ UZB 2008
## 6964 Uzbekistan UZ UZB 2009
## 6965 Uzbekistan UZ UZB 2010
## 6966 Uzbekistan UZ UZB 2011
## 6967 Uzbekistan UZ UZB 2012
## 6968 Uzbekistan UZ UZB 2013
## 6969 Vanuatu VU VUT 1980
## 6970 Vanuatu VU VUT 1981
## 6971 Vanuatu VU VUT 1982
## 6972 Vanuatu VU VUT 1983
## 6973 Vanuatu VU VUT 1984
## 6974 Vanuatu VU VUT 1985
## 6975 Vanuatu VU VUT 1986
## 6976 Vanuatu VU VUT 1987
## 6977 Vanuatu VU VUT 1988
## 6978 Vanuatu VU VUT 1989
## 6979 Vanuatu VU VUT 1990
## 6980 Vanuatu VU VUT 1991
## 6981 Vanuatu VU VUT 1992
## 6982 Vanuatu VU VUT 1993
## 6983 Vanuatu VU VUT 1994
## 6984 Vanuatu VU VUT 1995
## 6985 Vanuatu VU VUT 1996
## 6986 Vanuatu VU VUT 1997
## 6987 Vanuatu VU VUT 1998
## 6988 Vanuatu VU VUT 1999
## 6989 Vanuatu VU VUT 2000
## 6990 Vanuatu VU VUT 2001
## 6991 Vanuatu VU VUT 2002
## 6992 Vanuatu VU VUT 2003
## 6993 Vanuatu VU VUT 2004
## 6994 Vanuatu VU VUT 2005
## 6995 Vanuatu VU VUT 2006
## 6996 Vanuatu VU VUT 2007
## 6997 Vanuatu VU VUT 2008
## 6998 Vanuatu VU VUT 2009
## 6999 Vanuatu VU VUT 2010
## 7000 Vanuatu VU VUT 2011
## 7001 Vanuatu VU VUT 2012
## 7002 Vanuatu VU VUT 2013
## 7003 Venezuela (Bolivarian Republic of) VE VEN 1980
## 7004 Venezuela (Bolivarian Republic of) VE VEN 1981
## 7005 Venezuela (Bolivarian Republic of) VE VEN 1982
## 7006 Venezuela (Bolivarian Republic of) VE VEN 1983
## 7007 Venezuela (Bolivarian Republic of) VE VEN 1984
## 7008 Venezuela (Bolivarian Republic of) VE VEN 1985
## 7009 Venezuela (Bolivarian Republic of) VE VEN 1986
## 7010 Venezuela (Bolivarian Republic of) VE VEN 1987
## 7011 Venezuela (Bolivarian Republic of) VE VEN 1988
## 7012 Venezuela (Bolivarian Republic of) VE VEN 1989
## 7013 Venezuela (Bolivarian Republic of) VE VEN 1990
## 7014 Venezuela (Bolivarian Republic of) VE VEN 1991
## 7015 Venezuela (Bolivarian Republic of) VE VEN 1992
## 7016 Venezuela (Bolivarian Republic of) VE VEN 1993
## 7017 Venezuela (Bolivarian Republic of) VE VEN 1994
## 7018 Venezuela (Bolivarian Republic of) VE VEN 1995
## 7019 Venezuela (Bolivarian Republic of) VE VEN 1996
## 7020 Venezuela (Bolivarian Republic of) VE VEN 1997
## 7021 Venezuela (Bolivarian Republic of) VE VEN 1998
## 7022 Venezuela (Bolivarian Republic of) VE VEN 1999
## 7023 Venezuela (Bolivarian Republic of) VE VEN 2000
## 7024 Venezuela (Bolivarian Republic of) VE VEN 2001
## 7025 Venezuela (Bolivarian Republic of) VE VEN 2002
## 7026 Venezuela (Bolivarian Republic of) VE VEN 2003
## 7027 Venezuela (Bolivarian Republic of) VE VEN 2004
## 7028 Venezuela (Bolivarian Republic of) VE VEN 2005
## 7029 Venezuela (Bolivarian Republic of) VE VEN 2006
## 7030 Venezuela (Bolivarian Republic of) VE VEN 2007
## 7031 Venezuela (Bolivarian Republic of) VE VEN 2008
## 7032 Venezuela (Bolivarian Republic of) VE VEN 2009
## 7033 Venezuela (Bolivarian Republic of) VE VEN 2010
## 7034 Venezuela (Bolivarian Republic of) VE VEN 2011
## 7035 Venezuela (Bolivarian Republic of) VE VEN 2012
## 7036 Venezuela (Bolivarian Republic of) VE VEN 2013
## 7037 Viet Nam VN VNM 1980
## 7038 Viet Nam VN VNM 1981
## 7039 Viet Nam VN VNM 1982
## 7040 Viet Nam VN VNM 1983
## 7041 Viet Nam VN VNM 1984
## 7042 Viet Nam VN VNM 1985
## 7043 Viet Nam VN VNM 1986
## 7044 Viet Nam VN VNM 1987
## 7045 Viet Nam VN VNM 1988
## 7046 Viet Nam VN VNM 1989
## 7047 Viet Nam VN VNM 1990
## 7048 Viet Nam VN VNM 1991
## 7049 Viet Nam VN VNM 1992
## 7050 Viet Nam VN VNM 1993
## 7051 Viet Nam VN VNM 1994
## 7052 Viet Nam VN VNM 1995
## 7053 Viet Nam VN VNM 1996
## 7054 Viet Nam VN VNM 1997
## 7055 Viet Nam VN VNM 1998
## 7056 Viet Nam VN VNM 1999
## 7057 Viet Nam VN VNM 2000
## 7058 Viet Nam VN VNM 2001
## 7059 Viet Nam VN VNM 2002
## 7060 Viet Nam VN VNM 2003
## 7061 Viet Nam VN VNM 2004
## 7062 Viet Nam VN VNM 2005
## 7063 Viet Nam VN VNM 2006
## 7064 Viet Nam VN VNM 2007
## 7065 Viet Nam VN VNM 2008
## 7066 Viet Nam VN VNM 2009
## 7067 Viet Nam VN VNM 2010
## 7068 Viet Nam VN VNM 2011
## 7069 Viet Nam VN VNM 2012
## 7070 Viet Nam VN VNM 2013
## 7071 Wallis and Futuna Islands WF WLF 1980
## 7072 Wallis and Futuna Islands WF WLF 1981
## 7073 Wallis and Futuna Islands WF WLF 1982
## 7074 Wallis and Futuna Islands WF WLF 1983
## 7075 Wallis and Futuna Islands WF WLF 1984
## 7076 Wallis and Futuna Islands WF WLF 1985
## 7077 Wallis and Futuna Islands WF WLF 1986
## 7078 Wallis and Futuna Islands WF WLF 1987
## 7079 Wallis and Futuna Islands WF WLF 1988
## 7080 Wallis and Futuna Islands WF WLF 1989
## 7081 Wallis and Futuna Islands WF WLF 1990
## 7082 Wallis and Futuna Islands WF WLF 1991
## 7083 Wallis and Futuna Islands WF WLF 1992
## 7084 Wallis and Futuna Islands WF WLF 1993
## 7085 Wallis and Futuna Islands WF WLF 1994
## 7086 Wallis and Futuna Islands WF WLF 1995
## 7087 Wallis and Futuna Islands WF WLF 1996
## 7088 Wallis and Futuna Islands WF WLF 1997
## 7089 Wallis and Futuna Islands WF WLF 1998
## 7090 Wallis and Futuna Islands WF WLF 1999
## 7091 Wallis and Futuna Islands WF WLF 2000
## 7092 Wallis and Futuna Islands WF WLF 2001
## 7093 Wallis and Futuna Islands WF WLF 2002
## 7094 Wallis and Futuna Islands WF WLF 2003
## 7095 Wallis and Futuna Islands WF WLF 2004
## 7096 Wallis and Futuna Islands WF WLF 2005
## 7097 Wallis and Futuna Islands WF WLF 2006
## 7098 Wallis and Futuna Islands WF WLF 2007
## 7099 Wallis and Futuna Islands WF WLF 2008
## 7100 Wallis and Futuna Islands WF WLF 2009
## 7101 Wallis and Futuna Islands WF WLF 2010
## 7102 Wallis and Futuna Islands WF WLF 2011
## 7103 Wallis and Futuna Islands WF WLF 2012
## 7104 Wallis and Futuna Islands WF WLF 2013
## 7105 West Bank and Gaza Strip PS PSE 1980
## 7106 West Bank and Gaza Strip PS PSE 1981
## 7107 West Bank and Gaza Strip PS PSE 1982
## 7108 West Bank and Gaza Strip PS PSE 1983
## 7109 West Bank and Gaza Strip PS PSE 1984
## 7110 West Bank and Gaza Strip PS PSE 1985
## 7111 West Bank and Gaza Strip PS PSE 1986
## 7112 West Bank and Gaza Strip PS PSE 1987
## 7113 West Bank and Gaza Strip PS PSE 1988
## 7114 West Bank and Gaza Strip PS PSE 1989
## 7115 West Bank and Gaza Strip PS PSE 1990
## 7116 West Bank and Gaza Strip PS PSE 1991
## 7117 West Bank and Gaza Strip PS PSE 1992
## 7118 West Bank and Gaza Strip PS PSE 1993
## 7119 West Bank and Gaza Strip PS PSE 1994
## 7120 West Bank and Gaza Strip PS PSE 1995
## 7121 West Bank and Gaza Strip PS PSE 1996
## 7122 West Bank and Gaza Strip PS PSE 1997
## 7123 West Bank and Gaza Strip PS PSE 1998
## 7124 West Bank and Gaza Strip PS PSE 1999
## 7125 West Bank and Gaza Strip PS PSE 2000
## 7126 West Bank and Gaza Strip PS PSE 2001
## 7127 West Bank and Gaza Strip PS PSE 2002
## 7128 West Bank and Gaza Strip PS PSE 2003
## 7129 West Bank and Gaza Strip PS PSE 2004
## 7130 West Bank and Gaza Strip PS PSE 2005
## 7131 West Bank and Gaza Strip PS PSE 2006
## 7132 West Bank and Gaza Strip PS PSE 2007
## 7133 West Bank and Gaza Strip PS PSE 2008
## 7134 West Bank and Gaza Strip PS PSE 2009
## 7135 West Bank and Gaza Strip PS PSE 2010
## 7136 West Bank and Gaza Strip PS PSE 2011
## 7137 West Bank and Gaza Strip PS PSE 2012
## 7138 West Bank and Gaza Strip PS PSE 2013
## 7139 Yemen YE YEM 1980
## 7140 Yemen YE YEM 1981
## 7141 Yemen YE YEM 1982
## 7142 Yemen YE YEM 1983
## 7143 Yemen YE YEM 1984
## 7144 Yemen YE YEM 1985
## 7145 Yemen YE YEM 1986
## 7146 Yemen YE YEM 1987
## 7147 Yemen YE YEM 1988
## 7148 Yemen YE YEM 1989
## 7149 Yemen YE YEM 1990
## 7150 Yemen YE YEM 1991
## 7151 Yemen YE YEM 1992
## 7152 Yemen YE YEM 1993
## 7153 Yemen YE YEM 1994
## 7154 Yemen YE YEM 1995
## 7155 Yemen YE YEM 1996
## 7156 Yemen YE YEM 1997
## 7157 Yemen YE YEM 1998
## 7158 Yemen YE YEM 1999
## 7159 Yemen YE YEM 2000
## 7160 Yemen YE YEM 2001
## 7161 Yemen YE YEM 2002
## 7162 Yemen YE YEM 2003
## 7163 Yemen YE YEM 2004
## 7164 Yemen YE YEM 2005
## 7165 Yemen YE YEM 2006
## 7166 Yemen YE YEM 2007
## 7167 Yemen YE YEM 2008
## 7168 Yemen YE YEM 2009
## 7169 Yemen YE YEM 2010
## 7170 Yemen YE YEM 2011
## 7171 Yemen YE YEM 2012
## 7172 Yemen YE YEM 2013
## 7173 Zambia ZM ZMB 1980
## 7174 Zambia ZM ZMB 1981
## 7175 Zambia ZM ZMB 1982
## 7176 Zambia ZM ZMB 1983
## 7177 Zambia ZM ZMB 1984
## 7178 Zambia ZM ZMB 1985
## 7179 Zambia ZM ZMB 1986
## 7180 Zambia ZM ZMB 1987
## 7181 Zambia ZM ZMB 1988
## 7182 Zambia ZM ZMB 1989
## 7183 Zambia ZM ZMB 1990
## 7184 Zambia ZM ZMB 1991
## 7185 Zambia ZM ZMB 1992
## 7186 Zambia ZM ZMB 1993
## 7187 Zambia ZM ZMB 1994
## 7188 Zambia ZM ZMB 1995
## 7189 Zambia ZM ZMB 1996
## 7190 Zambia ZM ZMB 1997
## 7191 Zambia ZM ZMB 1998
## 7192 Zambia ZM ZMB 1999
## 7193 Zambia ZM ZMB 2000
## 7194 Zambia ZM ZMB 2001
## 7195 Zambia ZM ZMB 2002
## 7196 Zambia ZM ZMB 2003
## 7197 Zambia ZM ZMB 2004
## 7198 Zambia ZM ZMB 2005
## 7199 Zambia ZM ZMB 2006
## 7200 Zambia ZM ZMB 2007
## 7201 Zambia ZM ZMB 2008
## 7202 Zambia ZM ZMB 2009
## 7203 Zambia ZM ZMB 2010
## 7204 Zambia ZM ZMB 2011
## 7205 Zambia ZM ZMB 2012
## 7206 Zambia ZM ZMB 2013
## 7207 Zimbabwe ZW ZWE 1980
## 7208 Zimbabwe ZW ZWE 1981
## 7209 Zimbabwe ZW ZWE 1982
## 7210 Zimbabwe ZW ZWE 1983
## 7211 Zimbabwe ZW ZWE 1984
## 7212 Zimbabwe ZW ZWE 1985
## 7213 Zimbabwe ZW ZWE 1986
## 7214 Zimbabwe ZW ZWE 1987
## 7215 Zimbabwe ZW ZWE 1988
## 7216 Zimbabwe ZW ZWE 1989
## 7217 Zimbabwe ZW ZWE 1990
## 7218 Zimbabwe ZW ZWE 1991
## 7219 Zimbabwe ZW ZWE 1992
## 7220 Zimbabwe ZW ZWE 1993
## 7221 Zimbabwe ZW ZWE 1994
## 7222 Zimbabwe ZW ZWE 1995
## 7223 Zimbabwe ZW ZWE 1996
## 7224 Zimbabwe ZW ZWE 1997
## 7225 Zimbabwe ZW ZWE 1998
## 7226 Zimbabwe ZW ZWE 1999
## 7227 Zimbabwe ZW ZWE 2000
## 7228 Zimbabwe ZW ZWE 2001
## 7229 Zimbabwe ZW ZWE 2002
## 7230 Zimbabwe ZW ZWE 2003
## 7231 Zimbabwe ZW ZWE 2004
## 7232 Zimbabwe ZW ZWE 2005
## 7233 Zimbabwe ZW ZWE 2006
## 7234 Zimbabwe ZW ZWE 2007
## 7235 Zimbabwe ZW ZWE 2008
## 7236 Zimbabwe ZW ZWE 2009
## 7237 Zimbabwe ZW ZWE 2010
## 7238 Zimbabwe ZW ZWE 2011
## 7239 Zimbabwe ZW ZWE 2012
## 7240 Zimbabwe ZW ZWE 2013
## 7241 Afghanistan AF AFG 1980
## 7242 Afghanistan AF AFG 1981
## 7243 Afghanistan AF AFG 1982
## 7244 Afghanistan AF AFG 1983
## 7245 Afghanistan AF AFG 1984
## 7246 Afghanistan AF AFG 1985
## 7247 Afghanistan AF AFG 1986
## 7248 Afghanistan AF AFG 1987
## 7249 Afghanistan AF AFG 1988
## 7250 Afghanistan AF AFG 1989
## 7251 Afghanistan AF AFG 1990
## 7252 Afghanistan AF AFG 1991
## 7253 Afghanistan AF AFG 1992
## 7254 Afghanistan AF AFG 1993
## 7255 Afghanistan AF AFG 1994
## 7256 Afghanistan AF AFG 1995
## 7257 Afghanistan AF AFG 1996
## 7258 Afghanistan AF AFG 1997
## 7259 Afghanistan AF AFG 1998
## 7260 Afghanistan AF AFG 1999
## 7261 Afghanistan AF AFG 2000
## 7262 Afghanistan AF AFG 2001
## 7263 Afghanistan AF AFG 2002
## 7264 Afghanistan AF AFG 2003
## 7265 Afghanistan AF AFG 2004
## 7266 Afghanistan AF AFG 2005
## 7267 Afghanistan AF AFG 2006
## 7268 Afghanistan AF AFG 2007
## 7269 Afghanistan AF AFG 2008
## 7270 Afghanistan AF AFG 2009
## 7271 Afghanistan AF AFG 2010
## 7272 Afghanistan AF AFG 2011
## 7273 Afghanistan AF AFG 2012
## 7274 Afghanistan AF AFG 2013
## 7275 Albania AL ALB 1980
## 7276 Albania AL ALB 1981
## 7277 Albania AL ALB 1982
## 7278 Albania AL ALB 1983
## 7279 Albania AL ALB 1984
## 7280 Albania AL ALB 1985
## 7281 Albania AL ALB 1986
## 7282 Albania AL ALB 1987
## 7283 Albania AL ALB 1988
## 7284 Albania AL ALB 1989
## 7285 Albania AL ALB 1990
## 7286 Albania AL ALB 1991
## 7287 Albania AL ALB 1992
## 7288 Albania AL ALB 1993
## 7289 Albania AL ALB 1994
## 7290 Albania AL ALB 1995
## 7291 Albania AL ALB 1996
## 7292 Albania AL ALB 1997
## 7293 Albania AL ALB 1998
## 7294 Albania AL ALB 1999
## 7295 Albania AL ALB 2000
## 7296 Albania AL ALB 2001
## 7297 Albania AL ALB 2002
## 7298 Albania AL ALB 2003
## 7299 Albania AL ALB 2004
## 7300 Albania AL ALB 2005
## 7301 Albania AL ALB 2006
## 7302 Albania AL ALB 2007
## 7303 Albania AL ALB 2008
## 7304 Albania AL ALB 2009
## 7305 Albania AL ALB 2010
## 7306 Albania AL ALB 2011
## 7307 Albania AL ALB 2012
## 7308 Albania AL ALB 2013
## 7309 Algeria DZ DZA 1980
## 7310 Algeria DZ DZA 1981
## 7311 Algeria DZ DZA 1982
## 7312 Algeria DZ DZA 1983
## 7313 Algeria DZ DZA 1984
## 7314 Algeria DZ DZA 1985
## 7315 Algeria DZ DZA 1986
## 7316 Algeria DZ DZA 1987
## 7317 Algeria DZ DZA 1988
## 7318 Algeria DZ DZA 1989
## 7319 Algeria DZ DZA 1990
## 7320 Algeria DZ DZA 1991
## 7321 Algeria DZ DZA 1992
## 7322 Algeria DZ DZA 1993
## 7323 Algeria DZ DZA 1994
## 7324 Algeria DZ DZA 1995
## 7325 Algeria DZ DZA 1996
## 7326 Algeria DZ DZA 1997
## 7327 Algeria DZ DZA 1998
## 7328 Algeria DZ DZA 1999
## 7329 Algeria DZ DZA 2000
## 7330 Algeria DZ DZA 2001
## 7331 Algeria DZ DZA 2002
## 7332 Algeria DZ DZA 2003
## 7333 Algeria DZ DZA 2004
## 7334 Algeria DZ DZA 2005
## 7335 Algeria DZ DZA 2006
## 7336 Algeria DZ DZA 2007
## 7337 Algeria DZ DZA 2008
## 7338 Algeria DZ DZA 2009
## 7339 Algeria DZ DZA 2010
## 7340 Algeria DZ DZA 2011
## 7341 Algeria DZ DZA 2012
## 7342 Algeria DZ DZA 2013
## 7343 American Samoa AS ASM 1980
## 7344 American Samoa AS ASM 1981
## 7345 American Samoa AS ASM 1982
## 7346 American Samoa AS ASM 1983
## 7347 American Samoa AS ASM 1984
## 7348 American Samoa AS ASM 1985
## 7349 American Samoa AS ASM 1986
## 7350 American Samoa AS ASM 1987
## 7351 American Samoa AS ASM 1988
## 7352 American Samoa AS ASM 1989
## 7353 American Samoa AS ASM 1990
## 7354 American Samoa AS ASM 1991
## 7355 American Samoa AS ASM 1992
## 7356 American Samoa AS ASM 1993
## 7357 American Samoa AS ASM 1994
## 7358 American Samoa AS ASM 1995
## 7359 American Samoa AS ASM 1996
## 7360 American Samoa AS ASM 1997
## 7361 American Samoa AS ASM 1998
## 7362 American Samoa AS ASM 1999
## 7363 American Samoa AS ASM 2000
## 7364 American Samoa AS ASM 2001
## 7365 American Samoa AS ASM 2002
## 7366 American Samoa AS ASM 2003
## 7367 American Samoa AS ASM 2004
## 7368 American Samoa AS ASM 2005
## 7369 American Samoa AS ASM 2006
## 7370 American Samoa AS ASM 2007
## 7371 American Samoa AS ASM 2008
## 7372 American Samoa AS ASM 2009
## 7373 American Samoa AS ASM 2010
## 7374 American Samoa AS ASM 2011
## 7375 American Samoa AS ASM 2012
## 7376 American Samoa AS ASM 2013
## 7377 Andorra AD AND 1980
## 7378 Andorra AD AND 1981
## 7379 Andorra AD AND 1982
## 7380 Andorra AD AND 1983
## 7381 Andorra AD AND 1984
## 7382 Andorra AD AND 1985
## 7383 Andorra AD AND 1986
## 7384 Andorra AD AND 1987
## 7385 Andorra AD AND 1988
## 7386 Andorra AD AND 1989
## 7387 Andorra AD AND 1990
## 7388 Andorra AD AND 1991
## 7389 Andorra AD AND 1992
## 7390 Andorra AD AND 1993
## 7391 Andorra AD AND 1994
## 7392 Andorra AD AND 1995
## 7393 Andorra AD AND 1996
## 7394 Andorra AD AND 1997
## 7395 Andorra AD AND 1998
## 7396 Andorra AD AND 1999
## 7397 Andorra AD AND 2000
## 7398 Andorra AD AND 2001
## 7399 Andorra AD AND 2002
## 7400 Andorra AD AND 2003
## 7401 Andorra AD AND 2004
## 7402 Andorra AD AND 2005
## 7403 Andorra AD AND 2006
## 7404 Andorra AD AND 2007
## 7405 Andorra AD AND 2008
## 7406 Andorra AD AND 2009
## 7407 Andorra AD AND 2010
## 7408 Andorra AD AND 2011
## 7409 Andorra AD AND 2012
## 7410 Andorra AD AND 2013
## 7411 Angola AO AGO 1980
## 7412 Angola AO AGO 1981
## 7413 Angola AO AGO 1982
## 7414 Angola AO AGO 1983
## 7415 Angola AO AGO 1984
## 7416 Angola AO AGO 1985
## 7417 Angola AO AGO 1986
## 7418 Angola AO AGO 1987
## 7419 Angola AO AGO 1988
## 7420 Angola AO AGO 1989
## 7421 Angola AO AGO 1990
## 7422 Angola AO AGO 1991
## 7423 Angola AO AGO 1992
## 7424 Angola AO AGO 1993
## 7425 Angola AO AGO 1994
## 7426 Angola AO AGO 1995
## 7427 Angola AO AGO 1996
## 7428 Angola AO AGO 1997
## 7429 Angola AO AGO 1998
## 7430 Angola AO AGO 1999
## 7431 Angola AO AGO 2000
## 7432 Angola AO AGO 2001
## 7433 Angola AO AGO 2002
## 7434 Angola AO AGO 2003
## 7435 Angola AO AGO 2004
## 7436 Angola AO AGO 2005
## 7437 Angola AO AGO 2006
## 7438 Angola AO AGO 2007
## 7439 Angola AO AGO 2008
## 7440 Angola AO AGO 2009
## 7441 Angola AO AGO 2010
## 7442 Angola AO AGO 2011
## 7443 Angola AO AGO 2012
## 7444 Angola AO AGO 2013
## 7445 Anguilla AI AIA 1980
## 7446 Anguilla AI AIA 1981
## 7447 Anguilla AI AIA 1982
## 7448 Anguilla AI AIA 1983
## 7449 Anguilla AI AIA 1984
## 7450 Anguilla AI AIA 1985
## 7451 Anguilla AI AIA 1986
## 7452 Anguilla AI AIA 1987
## 7453 Anguilla AI AIA 1988
## 7454 Anguilla AI AIA 1989
## 7455 Anguilla AI AIA 1990
## 7456 Anguilla AI AIA 1991
## 7457 Anguilla AI AIA 1992
## 7458 Anguilla AI AIA 1993
## 7459 Anguilla AI AIA 1994
## 7460 Anguilla AI AIA 1995
## 7461 Anguilla AI AIA 1996
## 7462 Anguilla AI AIA 1997
## 7463 Anguilla AI AIA 1998
## 7464 Anguilla AI AIA 1999
## 7465 Anguilla AI AIA 2000
## 7466 Anguilla AI AIA 2001
## 7467 Anguilla AI AIA 2002
## 7468 Anguilla AI AIA 2003
## 7469 Anguilla AI AIA 2004
## 7470 Anguilla AI AIA 2005
## 7471 Anguilla AI AIA 2006
## 7472 Anguilla AI AIA 2007
## 7473 Anguilla AI AIA 2008
## 7474 Anguilla AI AIA 2009
## 7475 Anguilla AI AIA 2010
## 7476 Anguilla AI AIA 2011
## 7477 Anguilla AI AIA 2012
## 7478 Anguilla AI AIA 2013
## 7479 Antigua and Barbuda AG ATG 1980
## 7480 Antigua and Barbuda AG ATG 1981
## 7481 Antigua and Barbuda AG ATG 1982
## 7482 Antigua and Barbuda AG ATG 1983
## 7483 Antigua and Barbuda AG ATG 1984
## 7484 Antigua and Barbuda AG ATG 1985
## 7485 Antigua and Barbuda AG ATG 1986
## 7486 Antigua and Barbuda AG ATG 1987
## 7487 Antigua and Barbuda AG ATG 1988
## 7488 Antigua and Barbuda AG ATG 1989
## 7489 Antigua and Barbuda AG ATG 1990
## 7490 Antigua and Barbuda AG ATG 1991
## 7491 Antigua and Barbuda AG ATG 1992
## 7492 Antigua and Barbuda AG ATG 1993
## 7493 Antigua and Barbuda AG ATG 1994
## 7494 Antigua and Barbuda AG ATG 1995
## 7495 Antigua and Barbuda AG ATG 1996
## 7496 Antigua and Barbuda AG ATG 1997
## 7497 Antigua and Barbuda AG ATG 1998
## 7498 Antigua and Barbuda AG ATG 1999
## 7499 Antigua and Barbuda AG ATG 2000
## 7500 Antigua and Barbuda AG ATG 2001
## 7501 Antigua and Barbuda AG ATG 2002
## 7502 Antigua and Barbuda AG ATG 2003
## 7503 Antigua and Barbuda AG ATG 2004
## 7504 Antigua and Barbuda AG ATG 2005
## 7505 Antigua and Barbuda AG ATG 2006
## 7506 Antigua and Barbuda AG ATG 2007
## 7507 Antigua and Barbuda AG ATG 2008
## 7508 Antigua and Barbuda AG ATG 2009
## 7509 Antigua and Barbuda AG ATG 2010
## 7510 Antigua and Barbuda AG ATG 2011
## 7511 Antigua and Barbuda AG ATG 2012
## 7512 Antigua and Barbuda AG ATG 2013
## 7513 Argentina AR ARG 1980
## 7514 Argentina AR ARG 1981
## 7515 Argentina AR ARG 1982
## 7516 Argentina AR ARG 1983
## 7517 Argentina AR ARG 1984
## 7518 Argentina AR ARG 1985
## 7519 Argentina AR ARG 1986
## 7520 Argentina AR ARG 1987
## 7521 Argentina AR ARG 1988
## 7522 Argentina AR ARG 1989
## 7523 Argentina AR ARG 1990
## 7524 Argentina AR ARG 1991
## 7525 Argentina AR ARG 1992
## 7526 Argentina AR ARG 1993
## 7527 Argentina AR ARG 1994
## 7528 Argentina AR ARG 1995
## 7529 Argentina AR ARG 1996
## 7530 Argentina AR ARG 1997
## 7531 Argentina AR ARG 1998
## 7532 Argentina AR ARG 1999
## 7533 Argentina AR ARG 2000
## 7534 Argentina AR ARG 2001
## 7535 Argentina AR ARG 2002
## 7536 Argentina AR ARG 2003
## 7537 Argentina AR ARG 2004
## 7538 Argentina AR ARG 2005
## 7539 Argentina AR ARG 2006
## 7540 Argentina AR ARG 2007
## 7541 Argentina AR ARG 2008
## 7542 Argentina AR ARG 2009
## 7543 Argentina AR ARG 2010
## 7544 Argentina AR ARG 2011
## 7545 Argentina AR ARG 2012
## 7546 Argentina AR ARG 2013
## 7547 Armenia AM ARM 1980
## 7548 Armenia AM ARM 1981
## 7549 Armenia AM ARM 1982
## 7550 Armenia AM ARM 1983
## 7551 Armenia AM ARM 1984
## 7552 Armenia AM ARM 1985
## 7553 Armenia AM ARM 1986
## 7554 Armenia AM ARM 1987
## 7555 Armenia AM ARM 1988
## 7556 Armenia AM ARM 1989
## 7557 Armenia AM ARM 1990
## 7558 Armenia AM ARM 1991
## 7559 Armenia AM ARM 1992
## 7560 Armenia AM ARM 1993
## 7561 Armenia AM ARM 1994
## 7562 Armenia AM ARM 1995
## 7563 Armenia AM ARM 1996
## 7564 Armenia AM ARM 1997
## 7565 Armenia AM ARM 1998
## 7566 Armenia AM ARM 1999
## 7567 Armenia AM ARM 2000
## 7568 Armenia AM ARM 2001
## 7569 Armenia AM ARM 2002
## 7570 Armenia AM ARM 2003
## 7571 Armenia AM ARM 2004
## 7572 Armenia AM ARM 2005
## 7573 Armenia AM ARM 2006
## 7574 Armenia AM ARM 2007
## 7575 Armenia AM ARM 2008
## 7576 Armenia AM ARM 2009
## 7577 Armenia AM ARM 2010
## 7578 Armenia AM ARM 2011
## 7579 Armenia AM ARM 2012
## 7580 Armenia AM ARM 2013
## 7581 Aruba AW ABW 1980
## 7582 Aruba AW ABW 1981
## 7583 Aruba AW ABW 1982
## 7584 Aruba AW ABW 1983
## 7585 Aruba AW ABW 1984
## 7586 Aruba AW ABW 1985
## 7587 Aruba AW ABW 1986
## 7588 Aruba AW ABW 1987
## 7589 Aruba AW ABW 1988
## 7590 Aruba AW ABW 1989
## 7591 Aruba AW ABW 1990
## 7592 Aruba AW ABW 1991
## 7593 Aruba AW ABW 1992
## 7594 Aruba AW ABW 1993
## 7595 Aruba AW ABW 1994
## 7596 Aruba AW ABW 1995
## 7597 Aruba AW ABW 1996
## 7598 Aruba AW ABW 1997
## 7599 Aruba AW ABW 1998
## 7600 Aruba AW ABW 1999
## 7601 Aruba AW ABW 2000
## 7602 Aruba AW ABW 2001
## 7603 Aruba AW ABW 2002
## 7604 Aruba AW ABW 2003
## 7605 Aruba AW ABW 2004
## 7606 Aruba AW ABW 2005
## 7607 Aruba AW ABW 2006
## 7608 Aruba AW ABW 2007
## 7609 Aruba AW ABW 2008
## 7610 Aruba AW ABW 2009
## 7611 Aruba AW ABW 2010
## 7612 Aruba AW ABW 2011
## 7613 Aruba AW ABW 2012
## 7614 Aruba AW ABW 2013
## 7615 Australia AU AUS 1980
## 7616 Australia AU AUS 1981
## 7617 Australia AU AUS 1982
## 7618 Australia AU AUS 1983
## 7619 Australia AU AUS 1984
## 7620 Australia AU AUS 1985
## 7621 Australia AU AUS 1986
## 7622 Australia AU AUS 1987
## 7623 Australia AU AUS 1988
## 7624 Australia AU AUS 1989
## 7625 Australia AU AUS 1990
## 7626 Australia AU AUS 1991
## 7627 Australia AU AUS 1992
## 7628 Australia AU AUS 1993
## 7629 Australia AU AUS 1994
## 7630 Australia AU AUS 1995
## 7631 Australia AU AUS 1996
## 7632 Australia AU AUS 1997
## 7633 Australia AU AUS 1998
## 7634 Australia AU AUS 1999
## 7635 Australia AU AUS 2000
## 7636 Australia AU AUS 2001
## 7637 Australia AU AUS 2002
## 7638 Australia AU AUS 2003
## 7639 Australia AU AUS 2004
## 7640 Australia AU AUS 2005
## 7641 Australia AU AUS 2006
## 7642 Australia AU AUS 2007
## 7643 Australia AU AUS 2008
## 7644 Australia AU AUS 2009
## 7645 Australia AU AUS 2010
## 7646 Australia AU AUS 2011
## 7647 Australia AU AUS 2012
## 7648 Australia AU AUS 2013
## 7649 Austria AT AUT 1980
## 7650 Austria AT AUT 1981
## 7651 Austria AT AUT 1982
## 7652 Austria AT AUT 1983
## 7653 Austria AT AUT 1984
## 7654 Austria AT AUT 1985
## 7655 Austria AT AUT 1986
## 7656 Austria AT AUT 1987
## 7657 Austria AT AUT 1988
## 7658 Austria AT AUT 1989
## 7659 Austria AT AUT 1990
## 7660 Austria AT AUT 1991
## 7661 Austria AT AUT 1992
## 7662 Austria AT AUT 1993
## 7663 Austria AT AUT 1994
## 7664 Austria AT AUT 1995
## 7665 Austria AT AUT 1996
## 7666 Austria AT AUT 1997
## 7667 Austria AT AUT 1998
## 7668 Austria AT AUT 1999
## 7669 Austria AT AUT 2000
## 7670 Austria AT AUT 2001
## 7671 Austria AT AUT 2002
## 7672 Austria AT AUT 2003
## 7673 Austria AT AUT 2004
## 7674 Austria AT AUT 2005
## 7675 Austria AT AUT 2006
## 7676 Austria AT AUT 2007
## 7677 Austria AT AUT 2008
## 7678 Austria AT AUT 2009
## 7679 Austria AT AUT 2010
## 7680 Austria AT AUT 2011
## 7681 Austria AT AUT 2012
## 7682 Austria AT AUT 2013
## 7683 Azerbaijan AZ AZE 1980
## 7684 Azerbaijan AZ AZE 1981
## 7685 Azerbaijan AZ AZE 1982
## 7686 Azerbaijan AZ AZE 1983
## 7687 Azerbaijan AZ AZE 1984
## 7688 Azerbaijan AZ AZE 1985
## 7689 Azerbaijan AZ AZE 1986
## 7690 Azerbaijan AZ AZE 1987
## 7691 Azerbaijan AZ AZE 1988
## 7692 Azerbaijan AZ AZE 1989
## 7693 Azerbaijan AZ AZE 1990
## 7694 Azerbaijan AZ AZE 1991
## 7695 Azerbaijan AZ AZE 1992
## 7696 Azerbaijan AZ AZE 1993
## 7697 Azerbaijan AZ AZE 1994
## 7698 Azerbaijan AZ AZE 1995
## 7699 Azerbaijan AZ AZE 1996
## 7700 Azerbaijan AZ AZE 1997
## 7701 Azerbaijan AZ AZE 1998
## 7702 Azerbaijan AZ AZE 1999
## 7703 Azerbaijan AZ AZE 2000
## 7704 Azerbaijan AZ AZE 2001
## 7705 Azerbaijan AZ AZE 2002
## 7706 Azerbaijan AZ AZE 2003
## 7707 Azerbaijan AZ AZE 2004
## 7708 Azerbaijan AZ AZE 2005
## 7709 Azerbaijan AZ AZE 2006
## 7710 Azerbaijan AZ AZE 2007
## 7711 Azerbaijan AZ AZE 2008
## 7712 Azerbaijan AZ AZE 2009
## 7713 Azerbaijan AZ AZE 2010
## 7714 Azerbaijan AZ AZE 2011
## 7715 Azerbaijan AZ AZE 2012
## 7716 Azerbaijan AZ AZE 2013
## 7717 Bahamas BS BHS 1980
## 7718 Bahamas BS BHS 1981
## 7719 Bahamas BS BHS 1982
## 7720 Bahamas BS BHS 1983
## 7721 Bahamas BS BHS 1984
## 7722 Bahamas BS BHS 1985
## 7723 Bahamas BS BHS 1986
## 7724 Bahamas BS BHS 1987
## 7725 Bahamas BS BHS 1988
## 7726 Bahamas BS BHS 1989
## 7727 Bahamas BS BHS 1990
## 7728 Bahamas BS BHS 1991
## 7729 Bahamas BS BHS 1992
## 7730 Bahamas BS BHS 1993
## 7731 Bahamas BS BHS 1994
## 7732 Bahamas BS BHS 1995
## 7733 Bahamas BS BHS 1996
## 7734 Bahamas BS BHS 1997
## 7735 Bahamas BS BHS 1998
## 7736 Bahamas BS BHS 1999
## 7737 Bahamas BS BHS 2000
## 7738 Bahamas BS BHS 2001
## 7739 Bahamas BS BHS 2002
## 7740 Bahamas BS BHS 2003
## 7741 Bahamas BS BHS 2004
## 7742 Bahamas BS BHS 2005
## 7743 Bahamas BS BHS 2006
## 7744 Bahamas BS BHS 2007
## 7745 Bahamas BS BHS 2008
## 7746 Bahamas BS BHS 2009
## 7747 Bahamas BS BHS 2010
## 7748 Bahamas BS BHS 2011
## 7749 Bahamas BS BHS 2012
## 7750 Bahamas BS BHS 2013
## 7751 Bahrain BH BHR 1980
## 7752 Bahrain BH BHR 1981
## 7753 Bahrain BH BHR 1982
## 7754 Bahrain BH BHR 1983
## 7755 Bahrain BH BHR 1984
## 7756 Bahrain BH BHR 1985
## 7757 Bahrain BH BHR 1986
## 7758 Bahrain BH BHR 1987
## 7759 Bahrain BH BHR 1988
## 7760 Bahrain BH BHR 1989
## 7761 Bahrain BH BHR 1990
## 7762 Bahrain BH BHR 1991
## 7763 Bahrain BH BHR 1992
## 7764 Bahrain BH BHR 1993
## 7765 Bahrain BH BHR 1994
## 7766 Bahrain BH BHR 1995
## 7767 Bahrain BH BHR 1996
## 7768 Bahrain BH BHR 1997
## 7769 Bahrain BH BHR 1998
## 7770 Bahrain BH BHR 1999
## 7771 Bahrain BH BHR 2000
## 7772 Bahrain BH BHR 2001
## 7773 Bahrain BH BHR 2002
## 7774 Bahrain BH BHR 2003
## 7775 Bahrain BH BHR 2004
## 7776 Bahrain BH BHR 2005
## 7777 Bahrain BH BHR 2006
## 7778 Bahrain BH BHR 2007
## 7779 Bahrain BH BHR 2008
## 7780 Bahrain BH BHR 2009
## 7781 Bahrain BH BHR 2010
## 7782 Bahrain BH BHR 2011
## 7783 Bahrain BH BHR 2012
## 7784 Bahrain BH BHR 2013
## 7785 Bangladesh BD BGD 1980
## 7786 Bangladesh BD BGD 1981
## 7787 Bangladesh BD BGD 1982
## 7788 Bangladesh BD BGD 1983
## 7789 Bangladesh BD BGD 1984
## 7790 Bangladesh BD BGD 1985
## 7791 Bangladesh BD BGD 1986
## 7792 Bangladesh BD BGD 1987
## 7793 Bangladesh BD BGD 1988
## 7794 Bangladesh BD BGD 1989
## 7795 Bangladesh BD BGD 1990
## 7796 Bangladesh BD BGD 1991
## 7797 Bangladesh BD BGD 1992
## 7798 Bangladesh BD BGD 1993
## 7799 Bangladesh BD BGD 1994
## 7800 Bangladesh BD BGD 1995
## 7801 Bangladesh BD BGD 1996
## 7802 Bangladesh BD BGD 1997
## 7803 Bangladesh BD BGD 1998
## 7804 Bangladesh BD BGD 1999
## 7805 Bangladesh BD BGD 2000
## 7806 Bangladesh BD BGD 2001
## 7807 Bangladesh BD BGD 2002
## 7808 Bangladesh BD BGD 2003
## 7809 Bangladesh BD BGD 2004
## 7810 Bangladesh BD BGD 2005
## 7811 Bangladesh BD BGD 2006
## 7812 Bangladesh BD BGD 2007
## 7813 Bangladesh BD BGD 2008
## 7814 Bangladesh BD BGD 2009
## 7815 Bangladesh BD BGD 2010
## 7816 Bangladesh BD BGD 2011
## 7817 Bangladesh BD BGD 2012
## 7818 Bangladesh BD BGD 2013
## 7819 Barbados BB BRB 1980
## 7820 Barbados BB BRB 1981
## 7821 Barbados BB BRB 1982
## 7822 Barbados BB BRB 1983
## 7823 Barbados BB BRB 1984
## 7824 Barbados BB BRB 1985
## 7825 Barbados BB BRB 1986
## 7826 Barbados BB BRB 1987
## 7827 Barbados BB BRB 1988
## 7828 Barbados BB BRB 1989
## 7829 Barbados BB BRB 1990
## 7830 Barbados BB BRB 1991
## 7831 Barbados BB BRB 1992
## 7832 Barbados BB BRB 1993
## 7833 Barbados BB BRB 1994
## 7834 Barbados BB BRB 1995
## 7835 Barbados BB BRB 1996
## 7836 Barbados BB BRB 1997
## 7837 Barbados BB BRB 1998
## 7838 Barbados BB BRB 1999
## 7839 Barbados BB BRB 2000
## 7840 Barbados BB BRB 2001
## 7841 Barbados BB BRB 2002
## 7842 Barbados BB BRB 2003
## 7843 Barbados BB BRB 2004
## 7844 Barbados BB BRB 2005
## 7845 Barbados BB BRB 2006
## 7846 Barbados BB BRB 2007
## 7847 Barbados BB BRB 2008
## 7848 Barbados BB BRB 2009
## 7849 Barbados BB BRB 2010
## 7850 Barbados BB BRB 2011
## 7851 Barbados BB BRB 2012
## 7852 Barbados BB BRB 2013
## 7853 Belarus BY BLR 1980
## 7854 Belarus BY BLR 1981
## 7855 Belarus BY BLR 1982
## 7856 Belarus BY BLR 1983
## 7857 Belarus BY BLR 1984
## 7858 Belarus BY BLR 1985
## 7859 Belarus BY BLR 1986
## 7860 Belarus BY BLR 1987
## 7861 Belarus BY BLR 1988
## 7862 Belarus BY BLR 1989
## 7863 Belarus BY BLR 1990
## 7864 Belarus BY BLR 1991
## 7865 Belarus BY BLR 1992
## 7866 Belarus BY BLR 1993
## 7867 Belarus BY BLR 1994
## 7868 Belarus BY BLR 1995
## 7869 Belarus BY BLR 1996
## 7870 Belarus BY BLR 1997
## 7871 Belarus BY BLR 1998
## 7872 Belarus BY BLR 1999
## 7873 Belarus BY BLR 2000
## 7874 Belarus BY BLR 2001
## 7875 Belarus BY BLR 2002
## 7876 Belarus BY BLR 2003
## 7877 Belarus BY BLR 2004
## 7878 Belarus BY BLR 2005
## 7879 Belarus BY BLR 2006
## 7880 Belarus BY BLR 2007
## 7881 Belarus BY BLR 2008
## 7882 Belarus BY BLR 2009
## 7883 Belarus BY BLR 2010
## 7884 Belarus BY BLR 2011
## 7885 Belarus BY BLR 2012
## 7886 Belarus BY BLR 2013
## 7887 Belgium BE BEL 1980
## 7888 Belgium BE BEL 1981
## 7889 Belgium BE BEL 1982
## 7890 Belgium BE BEL 1983
## 7891 Belgium BE BEL 1984
## 7892 Belgium BE BEL 1985
## 7893 Belgium BE BEL 1986
## 7894 Belgium BE BEL 1987
## 7895 Belgium BE BEL 1988
## 7896 Belgium BE BEL 1989
## 7897 Belgium BE BEL 1990
## 7898 Belgium BE BEL 1991
## 7899 Belgium BE BEL 1992
## 7900 Belgium BE BEL 1993
## 7901 Belgium BE BEL 1994
## 7902 Belgium BE BEL 1995
## 7903 Belgium BE BEL 1996
## 7904 Belgium BE BEL 1997
## 7905 Belgium BE BEL 1998
## 7906 Belgium BE BEL 1999
## 7907 Belgium BE BEL 2000
## 7908 Belgium BE BEL 2001
## 7909 Belgium BE BEL 2002
## 7910 Belgium BE BEL 2003
## 7911 Belgium BE BEL 2004
## 7912 Belgium BE BEL 2005
## 7913 Belgium BE BEL 2006
## 7914 Belgium BE BEL 2007
## 7915 Belgium BE BEL 2008
## 7916 Belgium BE BEL 2009
## 7917 Belgium BE BEL 2010
## 7918 Belgium BE BEL 2011
## 7919 Belgium BE BEL 2012
## 7920 Belgium BE BEL 2013
## 7921 Belize BZ BLZ 1980
## 7922 Belize BZ BLZ 1981
## 7923 Belize BZ BLZ 1982
## 7924 Belize BZ BLZ 1983
## 7925 Belize BZ BLZ 1984
## 7926 Belize BZ BLZ 1985
## 7927 Belize BZ BLZ 1986
## 7928 Belize BZ BLZ 1987
## 7929 Belize BZ BLZ 1988
## 7930 Belize BZ BLZ 1989
## 7931 Belize BZ BLZ 1990
## 7932 Belize BZ BLZ 1991
## 7933 Belize BZ BLZ 1992
## 7934 Belize BZ BLZ 1993
## 7935 Belize BZ BLZ 1994
## 7936 Belize BZ BLZ 1995
## 7937 Belize BZ BLZ 1996
## 7938 Belize BZ BLZ 1997
## 7939 Belize BZ BLZ 1998
## 7940 Belize BZ BLZ 1999
## 7941 Belize BZ BLZ 2000
## 7942 Belize BZ BLZ 2001
## 7943 Belize BZ BLZ 2002
## 7944 Belize BZ BLZ 2003
## 7945 Belize BZ BLZ 2004
## 7946 Belize BZ BLZ 2005
## 7947 Belize BZ BLZ 2006
## 7948 Belize BZ BLZ 2007
## 7949 Belize BZ BLZ 2008
## 7950 Belize BZ BLZ 2009
## 7951 Belize BZ BLZ 2010
## 7952 Belize BZ BLZ 2011
## 7953 Belize BZ BLZ 2012
## 7954 Belize BZ BLZ 2013
## 7955 Benin BJ BEN 1980
## 7956 Benin BJ BEN 1981
## 7957 Benin BJ BEN 1982
## 7958 Benin BJ BEN 1983
## 7959 Benin BJ BEN 1984
## 7960 Benin BJ BEN 1985
## 7961 Benin BJ BEN 1986
## 7962 Benin BJ BEN 1987
## 7963 Benin BJ BEN 1988
## 7964 Benin BJ BEN 1989
## 7965 Benin BJ BEN 1990
## 7966 Benin BJ BEN 1991
## 7967 Benin BJ BEN 1992
## 7968 Benin BJ BEN 1993
## 7969 Benin BJ BEN 1994
## 7970 Benin BJ BEN 1995
## 7971 Benin BJ BEN 1996
## 7972 Benin BJ BEN 1997
## 7973 Benin BJ BEN 1998
## 7974 Benin BJ BEN 1999
## 7975 Benin BJ BEN 2000
## 7976 Benin BJ BEN 2001
## 7977 Benin BJ BEN 2002
## 7978 Benin BJ BEN 2003
## 7979 Benin BJ BEN 2004
## 7980 Benin BJ BEN 2005
## 7981 Benin BJ BEN 2006
## 7982 Benin BJ BEN 2007
## 7983 Benin BJ BEN 2008
## 7984 Benin BJ BEN 2009
## 7985 Benin BJ BEN 2010
## 7986 Benin BJ BEN 2011
## 7987 Benin BJ BEN 2012
## 7988 Benin BJ BEN 2013
## 7989 Bermuda BM BMU 1980
## 7990 Bermuda BM BMU 1981
## 7991 Bermuda BM BMU 1982
## 7992 Bermuda BM BMU 1983
## 7993 Bermuda BM BMU 1984
## 7994 Bermuda BM BMU 1985
## 7995 Bermuda BM BMU 1986
## 7996 Bermuda BM BMU 1987
## 7997 Bermuda BM BMU 1988
## 7998 Bermuda BM BMU 1989
## 7999 Bermuda BM BMU 1990
## 8000 Bermuda BM BMU 1991
## 8001 Bermuda BM BMU 1992
## 8002 Bermuda BM BMU 1993
## 8003 Bermuda BM BMU 1994
## 8004 Bermuda BM BMU 1995
## 8005 Bermuda BM BMU 1996
## 8006 Bermuda BM BMU 1997
## 8007 Bermuda BM BMU 1998
## 8008 Bermuda BM BMU 1999
## 8009 Bermuda BM BMU 2000
## 8010 Bermuda BM BMU 2001
## 8011 Bermuda BM BMU 2002
## 8012 Bermuda BM BMU 2003
## 8013 Bermuda BM BMU 2004
## 8014 Bermuda BM BMU 2005
## 8015 Bermuda BM BMU 2006
## 8016 Bermuda BM BMU 2007
## 8017 Bermuda BM BMU 2008
## 8018 Bermuda BM BMU 2009
## 8019 Bermuda BM BMU 2010
## 8020 Bermuda BM BMU 2011
## 8021 Bermuda BM BMU 2012
## 8022 Bermuda BM BMU 2013
## 8023 Bhutan BT BTN 1980
## 8024 Bhutan BT BTN 1981
## 8025 Bhutan BT BTN 1982
## 8026 Bhutan BT BTN 1983
## 8027 Bhutan BT BTN 1984
## 8028 Bhutan BT BTN 1985
## 8029 Bhutan BT BTN 1986
## 8030 Bhutan BT BTN 1987
## 8031 Bhutan BT BTN 1988
## 8032 Bhutan BT BTN 1989
## 8033 Bhutan BT BTN 1990
## 8034 Bhutan BT BTN 1991
## 8035 Bhutan BT BTN 1992
## 8036 Bhutan BT BTN 1993
## 8037 Bhutan BT BTN 1994
## 8038 Bhutan BT BTN 1995
## 8039 Bhutan BT BTN 1996
## 8040 Bhutan BT BTN 1997
## 8041 Bhutan BT BTN 1998
## 8042 Bhutan BT BTN 1999
## 8043 Bhutan BT BTN 2000
## 8044 Bhutan BT BTN 2001
## 8045 Bhutan BT BTN 2002
## 8046 Bhutan BT BTN 2003
## 8047 Bhutan BT BTN 2004
## 8048 Bhutan BT BTN 2005
## 8049 Bhutan BT BTN 2006
## 8050 Bhutan BT BTN 2007
## 8051 Bhutan BT BTN 2008
## 8052 Bhutan BT BTN 2009
## 8053 Bhutan BT BTN 2010
## 8054 Bhutan BT BTN 2011
## 8055 Bhutan BT BTN 2012
## 8056 Bhutan BT BTN 2013
## 8057 Bolivia (Plurinational State of) BO BOL 1980
## 8058 Bolivia (Plurinational State of) BO BOL 1981
## 8059 Bolivia (Plurinational State of) BO BOL 1982
## 8060 Bolivia (Plurinational State of) BO BOL 1983
## 8061 Bolivia (Plurinational State of) BO BOL 1984
## 8062 Bolivia (Plurinational State of) BO BOL 1985
## 8063 Bolivia (Plurinational State of) BO BOL 1986
## 8064 Bolivia (Plurinational State of) BO BOL 1987
## 8065 Bolivia (Plurinational State of) BO BOL 1988
## 8066 Bolivia (Plurinational State of) BO BOL 1989
## 8067 Bolivia (Plurinational State of) BO BOL 1990
## 8068 Bolivia (Plurinational State of) BO BOL 1991
## 8069 Bolivia (Plurinational State of) BO BOL 1992
## 8070 Bolivia (Plurinational State of) BO BOL 1993
## 8071 Bolivia (Plurinational State of) BO BOL 1994
## 8072 Bolivia (Plurinational State of) BO BOL 1995
## 8073 Bolivia (Plurinational State of) BO BOL 1996
## 8074 Bolivia (Plurinational State of) BO BOL 1997
## 8075 Bolivia (Plurinational State of) BO BOL 1998
## 8076 Bolivia (Plurinational State of) BO BOL 1999
## 8077 Bolivia (Plurinational State of) BO BOL 2000
## 8078 Bolivia (Plurinational State of) BO BOL 2001
## 8079 Bolivia (Plurinational State of) BO BOL 2002
## 8080 Bolivia (Plurinational State of) BO BOL 2003
## 8081 Bolivia (Plurinational State of) BO BOL 2004
## 8082 Bolivia (Plurinational State of) BO BOL 2005
## 8083 Bolivia (Plurinational State of) BO BOL 2006
## 8084 Bolivia (Plurinational State of) BO BOL 2007
## 8085 Bolivia (Plurinational State of) BO BOL 2008
## 8086 Bolivia (Plurinational State of) BO BOL 2009
## 8087 Bolivia (Plurinational State of) BO BOL 2010
## 8088 Bolivia (Plurinational State of) BO BOL 2011
## 8089 Bolivia (Plurinational State of) BO BOL 2012
## 8090 Bolivia (Plurinational State of) BO BOL 2013
## 8091 Bonaire, Saint Eustatius and Saba BQ BES 2010
## 8092 Bonaire, Saint Eustatius and Saba BQ BES 2011
## 8093 Bonaire, Saint Eustatius and Saba BQ BES 2012
## 8094 Bonaire, Saint Eustatius and Saba BQ BES 2013
## 8095 Bosnia and Herzegovina BA BIH 1980
## 8096 Bosnia and Herzegovina BA BIH 1981
## 8097 Bosnia and Herzegovina BA BIH 1982
## 8098 Bosnia and Herzegovina BA BIH 1983
## 8099 Bosnia and Herzegovina BA BIH 1984
## 8100 Bosnia and Herzegovina BA BIH 1985
## 8101 Bosnia and Herzegovina BA BIH 1986
## 8102 Bosnia and Herzegovina BA BIH 1987
## 8103 Bosnia and Herzegovina BA BIH 1988
## 8104 Bosnia and Herzegovina BA BIH 1989
## 8105 Bosnia and Herzegovina BA BIH 1990
## 8106 Bosnia and Herzegovina BA BIH 1991
## 8107 Bosnia and Herzegovina BA BIH 1992
## 8108 Bosnia and Herzegovina BA BIH 1993
## 8109 Bosnia and Herzegovina BA BIH 1994
## 8110 Bosnia and Herzegovina BA BIH 1995
## 8111 Bosnia and Herzegovina BA BIH 1996
## 8112 Bosnia and Herzegovina BA BIH 1997
## 8113 Bosnia and Herzegovina BA BIH 1998
## 8114 Bosnia and Herzegovina BA BIH 1999
## 8115 Bosnia and Herzegovina BA BIH 2000
## 8116 Bosnia and Herzegovina BA BIH 2001
## 8117 Bosnia and Herzegovina BA BIH 2002
## 8118 Bosnia and Herzegovina BA BIH 2003
## 8119 Bosnia and Herzegovina BA BIH 2004
## 8120 Bosnia and Herzegovina BA BIH 2005
## 8121 Bosnia and Herzegovina BA BIH 2006
## 8122 Bosnia and Herzegovina BA BIH 2007
## 8123 Bosnia and Herzegovina BA BIH 2008
## 8124 Bosnia and Herzegovina BA BIH 2009
## 8125 Bosnia and Herzegovina BA BIH 2010
## 8126 Bosnia and Herzegovina BA BIH 2011
## 8127 Bosnia and Herzegovina BA BIH 2012
## 8128 Bosnia and Herzegovina BA BIH 2013
## 8129 Botswana BW BWA 1980
## 8130 Botswana BW BWA 1981
## 8131 Botswana BW BWA 1982
## 8132 Botswana BW BWA 1983
## 8133 Botswana BW BWA 1984
## 8134 Botswana BW BWA 1985
## 8135 Botswana BW BWA 1986
## 8136 Botswana BW BWA 1987
## 8137 Botswana BW BWA 1988
## 8138 Botswana BW BWA 1989
## 8139 Botswana BW BWA 1990
## 8140 Botswana BW BWA 1991
## 8141 Botswana BW BWA 1992
## 8142 Botswana BW BWA 1993
## 8143 Botswana BW BWA 1994
## 8144 Botswana BW BWA 1995
## 8145 Botswana BW BWA 1996
## 8146 Botswana BW BWA 1997
## 8147 Botswana BW BWA 1998
## 8148 Botswana BW BWA 1999
## 8149 Botswana BW BWA 2000
## 8150 Botswana BW BWA 2001
## 8151 Botswana BW BWA 2002
## 8152 Botswana BW BWA 2003
## 8153 Botswana BW BWA 2004
## 8154 Botswana BW BWA 2005
## 8155 Botswana BW BWA 2006
## 8156 Botswana BW BWA 2007
## 8157 Botswana BW BWA 2008
## 8158 Botswana BW BWA 2009
## 8159 Botswana BW BWA 2010
## 8160 Botswana BW BWA 2011
## 8161 Botswana BW BWA 2012
## 8162 Botswana BW BWA 2013
## 8163 Brazil BR BRA 1980
## 8164 Brazil BR BRA 1981
## 8165 Brazil BR BRA 1982
## 8166 Brazil BR BRA 1983
## 8167 Brazil BR BRA 1984
## 8168 Brazil BR BRA 1985
## 8169 Brazil BR BRA 1986
## 8170 Brazil BR BRA 1987
## 8171 Brazil BR BRA 1988
## 8172 Brazil BR BRA 1989
## 8173 Brazil BR BRA 1990
## 8174 Brazil BR BRA 1991
## 8175 Brazil BR BRA 1992
## 8176 Brazil BR BRA 1993
## 8177 Brazil BR BRA 1994
## 8178 Brazil BR BRA 1995
## 8179 Brazil BR BRA 1996
## 8180 Brazil BR BRA 1997
## 8181 Brazil BR BRA 1998
## 8182 Brazil BR BRA 1999
## 8183 Brazil BR BRA 2000
## 8184 Brazil BR BRA 2001
## 8185 Brazil BR BRA 2002
## 8186 Brazil BR BRA 2003
## 8187 Brazil BR BRA 2004
## 8188 Brazil BR BRA 2005
## 8189 Brazil BR BRA 2006
## 8190 Brazil BR BRA 2007
## 8191 Brazil BR BRA 2008
## 8192 Brazil BR BRA 2009
## 8193 Brazil BR BRA 2010
## 8194 Brazil BR BRA 2011
## 8195 Brazil BR BRA 2012
## 8196 Brazil BR BRA 2013
## 8197 British Virgin Islands VG VGB 1980
## 8198 British Virgin Islands VG VGB 1981
## 8199 British Virgin Islands VG VGB 1982
## 8200 British Virgin Islands VG VGB 1983
## 8201 British Virgin Islands VG VGB 1984
## 8202 British Virgin Islands VG VGB 1985
## 8203 British Virgin Islands VG VGB 1986
## 8204 British Virgin Islands VG VGB 1987
## 8205 British Virgin Islands VG VGB 1988
## 8206 British Virgin Islands VG VGB 1989
## 8207 British Virgin Islands VG VGB 1990
## 8208 British Virgin Islands VG VGB 1991
## 8209 British Virgin Islands VG VGB 1992
## 8210 British Virgin Islands VG VGB 1993
## 8211 British Virgin Islands VG VGB 1994
## 8212 British Virgin Islands VG VGB 1995
## 8213 British Virgin Islands VG VGB 1996
## 8214 British Virgin Islands VG VGB 1997
## 8215 British Virgin Islands VG VGB 1998
## 8216 British Virgin Islands VG VGB 1999
## 8217 British Virgin Islands VG VGB 2000
## 8218 British Virgin Islands VG VGB 2001
## 8219 British Virgin Islands VG VGB 2002
## 8220 British Virgin Islands VG VGB 2003
## 8221 British Virgin Islands VG VGB 2004
## 8222 British Virgin Islands VG VGB 2005
## 8223 British Virgin Islands VG VGB 2006
## 8224 British Virgin Islands VG VGB 2007
## 8225 British Virgin Islands VG VGB 2008
## 8226 British Virgin Islands VG VGB 2009
## 8227 British Virgin Islands VG VGB 2010
## 8228 British Virgin Islands VG VGB 2011
## 8229 British Virgin Islands VG VGB 2012
## 8230 British Virgin Islands VG VGB 2013
## 8231 Brunei Darussalam BN BRN 1980
## 8232 Brunei Darussalam BN BRN 1981
## 8233 Brunei Darussalam BN BRN 1982
## 8234 Brunei Darussalam BN BRN 1983
## 8235 Brunei Darussalam BN BRN 1984
## 8236 Brunei Darussalam BN BRN 1985
## 8237 Brunei Darussalam BN BRN 1986
## 8238 Brunei Darussalam BN BRN 1987
## 8239 Brunei Darussalam BN BRN 1988
## 8240 Brunei Darussalam BN BRN 1989
## 8241 Brunei Darussalam BN BRN 1990
## 8242 Brunei Darussalam BN BRN 1991
## 8243 Brunei Darussalam BN BRN 1992
## 8244 Brunei Darussalam BN BRN 1993
## 8245 Brunei Darussalam BN BRN 1994
## 8246 Brunei Darussalam BN BRN 1995
## 8247 Brunei Darussalam BN BRN 1996
## 8248 Brunei Darussalam BN BRN 1997
## 8249 Brunei Darussalam BN BRN 1998
## 8250 Brunei Darussalam BN BRN 1999
## 8251 Brunei Darussalam BN BRN 2000
## 8252 Brunei Darussalam BN BRN 2001
## 8253 Brunei Darussalam BN BRN 2002
## 8254 Brunei Darussalam BN BRN 2003
## 8255 Brunei Darussalam BN BRN 2004
## 8256 Brunei Darussalam BN BRN 2005
## 8257 Brunei Darussalam BN BRN 2006
## 8258 Brunei Darussalam BN BRN 2007
## 8259 Brunei Darussalam BN BRN 2008
## 8260 Brunei Darussalam BN BRN 2009
## 8261 Brunei Darussalam BN BRN 2010
## 8262 Brunei Darussalam BN BRN 2011
## 8263 Brunei Darussalam BN BRN 2012
## 8264 Brunei Darussalam BN BRN 2013
## 8265 Bulgaria BG BGR 1980
## 8266 Bulgaria BG BGR 1981
## 8267 Bulgaria BG BGR 1982
## 8268 Bulgaria BG BGR 1983
## 8269 Bulgaria BG BGR 1984
## 8270 Bulgaria BG BGR 1985
## 8271 Bulgaria BG BGR 1986
## 8272 Bulgaria BG BGR 1987
## 8273 Bulgaria BG BGR 1988
## 8274 Bulgaria BG BGR 1989
## 8275 Bulgaria BG BGR 1990
## 8276 Bulgaria BG BGR 1991
## 8277 Bulgaria BG BGR 1992
## 8278 Bulgaria BG BGR 1993
## 8279 Bulgaria BG BGR 1994
## 8280 Bulgaria BG BGR 1995
## 8281 Bulgaria BG BGR 1996
## 8282 Bulgaria BG BGR 1997
## 8283 Bulgaria BG BGR 1998
## 8284 Bulgaria BG BGR 1999
## 8285 Bulgaria BG BGR 2000
## 8286 Bulgaria BG BGR 2001
## 8287 Bulgaria BG BGR 2002
## 8288 Bulgaria BG BGR 2003
## 8289 Bulgaria BG BGR 2004
## 8290 Bulgaria BG BGR 2005
## 8291 Bulgaria BG BGR 2006
## 8292 Bulgaria BG BGR 2007
## 8293 Bulgaria BG BGR 2008
## 8294 Bulgaria BG BGR 2009
## 8295 Bulgaria BG BGR 2010
## 8296 Bulgaria BG BGR 2011
## 8297 Bulgaria BG BGR 2012
## 8298 Bulgaria BG BGR 2013
## 8299 Burkina Faso BF BFA 1980
## 8300 Burkina Faso BF BFA 1981
## 8301 Burkina Faso BF BFA 1982
## 8302 Burkina Faso BF BFA 1983
## 8303 Burkina Faso BF BFA 1984
## 8304 Burkina Faso BF BFA 1985
## 8305 Burkina Faso BF BFA 1986
## 8306 Burkina Faso BF BFA 1987
## 8307 Burkina Faso BF BFA 1988
## 8308 Burkina Faso BF BFA 1989
## 8309 Burkina Faso BF BFA 1990
## 8310 Burkina Faso BF BFA 1991
## 8311 Burkina Faso BF BFA 1992
## 8312 Burkina Faso BF BFA 1993
## 8313 Burkina Faso BF BFA 1994
## 8314 Burkina Faso BF BFA 1995
## 8315 Burkina Faso BF BFA 1996
## 8316 Burkina Faso BF BFA 1997
## 8317 Burkina Faso BF BFA 1998
## 8318 Burkina Faso BF BFA 1999
## 8319 Burkina Faso BF BFA 2000
## 8320 Burkina Faso BF BFA 2001
## 8321 Burkina Faso BF BFA 2002
## 8322 Burkina Faso BF BFA 2003
## 8323 Burkina Faso BF BFA 2004
## 8324 Burkina Faso BF BFA 2005
## 8325 Burkina Faso BF BFA 2006
## 8326 Burkina Faso BF BFA 2007
## 8327 Burkina Faso BF BFA 2008
## 8328 Burkina Faso BF BFA 2009
## 8329 Burkina Faso BF BFA 2010
## 8330 Burkina Faso BF BFA 2011
## 8331 Burkina Faso BF BFA 2012
## 8332 Burkina Faso BF BFA 2013
## 8333 Burundi BI BDI 1980
## 8334 Burundi BI BDI 1981
## 8335 Burundi BI BDI 1982
## 8336 Burundi BI BDI 1983
## 8337 Burundi BI BDI 1984
## 8338 Burundi BI BDI 1985
## 8339 Burundi BI BDI 1986
## 8340 Burundi BI BDI 1987
## 8341 Burundi BI BDI 1988
## 8342 Burundi BI BDI 1989
## 8343 Burundi BI BDI 1990
## 8344 Burundi BI BDI 1991
## 8345 Burundi BI BDI 1992
## 8346 Burundi BI BDI 1993
## 8347 Burundi BI BDI 1994
## 8348 Burundi BI BDI 1995
## 8349 Burundi BI BDI 1996
## 8350 Burundi BI BDI 1997
## 8351 Burundi BI BDI 1998
## 8352 Burundi BI BDI 1999
## 8353 Burundi BI BDI 2000
## 8354 Burundi BI BDI 2001
## 8355 Burundi BI BDI 2002
## 8356 Burundi BI BDI 2003
## 8357 Burundi BI BDI 2004
## 8358 Burundi BI BDI 2005
## 8359 Burundi BI BDI 2006
## 8360 Burundi BI BDI 2007
## 8361 Burundi BI BDI 2008
## 8362 Burundi BI BDI 2009
## 8363 Burundi BI BDI 2010
## 8364 Burundi BI BDI 2011
## 8365 Burundi BI BDI 2012
## 8366 Burundi BI BDI 2013
## 8367 Cabo Verde CV CPV 1980
## 8368 Cabo Verde CV CPV 1981
## 8369 Cabo Verde CV CPV 1982
## 8370 Cabo Verde CV CPV 1983
## 8371 Cabo Verde CV CPV 1984
## 8372 Cabo Verde CV CPV 1985
## 8373 Cabo Verde CV CPV 1986
## 8374 Cabo Verde CV CPV 1987
## 8375 Cabo Verde CV CPV 1988
## 8376 Cabo Verde CV CPV 1989
## 8377 Cabo Verde CV CPV 1990
## 8378 Cabo Verde CV CPV 1991
## 8379 Cabo Verde CV CPV 1992
## 8380 Cabo Verde CV CPV 1993
## 8381 Cabo Verde CV CPV 1994
## 8382 Cabo Verde CV CPV 1995
## 8383 Cabo Verde CV CPV 1996
## 8384 Cabo Verde CV CPV 1997
## 8385 Cabo Verde CV CPV 1998
## 8386 Cabo Verde CV CPV 1999
## 8387 Cabo Verde CV CPV 2000
## 8388 Cabo Verde CV CPV 2001
## 8389 Cabo Verde CV CPV 2002
## 8390 Cabo Verde CV CPV 2003
## 8391 Cabo Verde CV CPV 2004
## 8392 Cabo Verde CV CPV 2005
## 8393 Cabo Verde CV CPV 2006
## 8394 Cabo Verde CV CPV 2007
## 8395 Cabo Verde CV CPV 2008
## 8396 Cabo Verde CV CPV 2009
## 8397 Cabo Verde CV CPV 2010
## 8398 Cabo Verde CV CPV 2011
## 8399 Cabo Verde CV CPV 2012
## 8400 Cabo Verde CV CPV 2013
## 8401 Cambodia KH KHM 1980
## 8402 Cambodia KH KHM 1981
## 8403 Cambodia KH KHM 1982
## 8404 Cambodia KH KHM 1983
## 8405 Cambodia KH KHM 1984
## 8406 Cambodia KH KHM 1985
## 8407 Cambodia KH KHM 1986
## 8408 Cambodia KH KHM 1987
## 8409 Cambodia KH KHM 1988
## 8410 Cambodia KH KHM 1989
## 8411 Cambodia KH KHM 1990
## 8412 Cambodia KH KHM 1991
## 8413 Cambodia KH KHM 1992
## 8414 Cambodia KH KHM 1993
## 8415 Cambodia KH KHM 1994
## 8416 Cambodia KH KHM 1995
## 8417 Cambodia KH KHM 1996
## 8418 Cambodia KH KHM 1997
## 8419 Cambodia KH KHM 1998
## 8420 Cambodia KH KHM 1999
## 8421 Cambodia KH KHM 2000
## 8422 Cambodia KH KHM 2001
## 8423 Cambodia KH KHM 2002
## 8424 Cambodia KH KHM 2003
## 8425 Cambodia KH KHM 2004
## 8426 Cambodia KH KHM 2005
## 8427 Cambodia KH KHM 2006
## 8428 Cambodia KH KHM 2007
## 8429 Cambodia KH KHM 2008
## 8430 Cambodia KH KHM 2009
## 8431 Cambodia KH KHM 2010
## 8432 Cambodia KH KHM 2011
## 8433 Cambodia KH KHM 2012
## 8434 Cambodia KH KHM 2013
## 8435 Cameroon CM CMR 1980
## 8436 Cameroon CM CMR 1981
## 8437 Cameroon CM CMR 1982
## 8438 Cameroon CM CMR 1983
## 8439 Cameroon CM CMR 1984
## 8440 Cameroon CM CMR 1985
## 8441 Cameroon CM CMR 1986
## 8442 Cameroon CM CMR 1987
## 8443 Cameroon CM CMR 1988
## 8444 Cameroon CM CMR 1989
## 8445 Cameroon CM CMR 1990
## 8446 Cameroon CM CMR 1991
## 8447 Cameroon CM CMR 1992
## 8448 Cameroon CM CMR 1993
## 8449 Cameroon CM CMR 1994
## 8450 Cameroon CM CMR 1995
## 8451 Cameroon CM CMR 1996
## 8452 Cameroon CM CMR 1997
## 8453 Cameroon CM CMR 1998
## 8454 Cameroon CM CMR 1999
## 8455 Cameroon CM CMR 2000
## 8456 Cameroon CM CMR 2001
## 8457 Cameroon CM CMR 2002
## 8458 Cameroon CM CMR 2003
## 8459 Cameroon CM CMR 2004
## 8460 Cameroon CM CMR 2005
## 8461 Cameroon CM CMR 2006
## 8462 Cameroon CM CMR 2007
## 8463 Cameroon CM CMR 2008
## 8464 Cameroon CM CMR 2009
## 8465 Cameroon CM CMR 2010
## 8466 Cameroon CM CMR 2011
## 8467 Cameroon CM CMR 2012
## 8468 Cameroon CM CMR 2013
## 8469 Canada CA CAN 1980
## 8470 Canada CA CAN 1981
## 8471 Canada CA CAN 1982
## 8472 Canada CA CAN 1983
## 8473 Canada CA CAN 1984
## 8474 Canada CA CAN 1985
## 8475 Canada CA CAN 1986
## 8476 Canada CA CAN 1987
## 8477 Canada CA CAN 1988
## 8478 Canada CA CAN 1989
## 8479 Canada CA CAN 1990
## 8480 Canada CA CAN 1991
## 8481 Canada CA CAN 1992
## 8482 Canada CA CAN 1993
## 8483 Canada CA CAN 1994
## 8484 Canada CA CAN 1995
## 8485 Canada CA CAN 1996
## 8486 Canada CA CAN 1997
## 8487 Canada CA CAN 1998
## 8488 Canada CA CAN 1999
## 8489 Canada CA CAN 2000
## 8490 Canada CA CAN 2001
## 8491 Canada CA CAN 2002
## 8492 Canada CA CAN 2003
## 8493 Canada CA CAN 2004
## 8494 Canada CA CAN 2005
## 8495 Canada CA CAN 2006
## 8496 Canada CA CAN 2007
## 8497 Canada CA CAN 2008
## 8498 Canada CA CAN 2009
## 8499 Canada CA CAN 2010
## 8500 Canada CA CAN 2011
## 8501 Canada CA CAN 2012
## 8502 Canada CA CAN 2013
## 8503 Cayman Islands KY CYM 1980
## 8504 Cayman Islands KY CYM 1981
## 8505 Cayman Islands KY CYM 1982
## 8506 Cayman Islands KY CYM 1983
## 8507 Cayman Islands KY CYM 1984
## 8508 Cayman Islands KY CYM 1985
## 8509 Cayman Islands KY CYM 1986
## 8510 Cayman Islands KY CYM 1987
## 8511 Cayman Islands KY CYM 1988
## 8512 Cayman Islands KY CYM 1989
## 8513 Cayman Islands KY CYM 1990
## 8514 Cayman Islands KY CYM 1991
## 8515 Cayman Islands KY CYM 1992
## 8516 Cayman Islands KY CYM 1993
## 8517 Cayman Islands KY CYM 1994
## 8518 Cayman Islands KY CYM 1995
## 8519 Cayman Islands KY CYM 1996
## 8520 Cayman Islands KY CYM 1997
## 8521 Cayman Islands KY CYM 1998
## 8522 Cayman Islands KY CYM 1999
## 8523 Cayman Islands KY CYM 2000
## 8524 Cayman Islands KY CYM 2001
## 8525 Cayman Islands KY CYM 2002
## 8526 Cayman Islands KY CYM 2003
## 8527 Cayman Islands KY CYM 2004
## 8528 Cayman Islands KY CYM 2005
## 8529 Cayman Islands KY CYM 2006
## 8530 Cayman Islands KY CYM 2007
## 8531 Cayman Islands KY CYM 2008
## 8532 Cayman Islands KY CYM 2009
## 8533 Cayman Islands KY CYM 2010
## 8534 Cayman Islands KY CYM 2011
## 8535 Cayman Islands KY CYM 2012
## 8536 Cayman Islands KY CYM 2013
## 8537 Central African Republic CF CAF 1980
## 8538 Central African Republic CF CAF 1981
## 8539 Central African Republic CF CAF 1982
## 8540 Central African Republic CF CAF 1983
## 8541 Central African Republic CF CAF 1984
## 8542 Central African Republic CF CAF 1985
## 8543 Central African Republic CF CAF 1986
## 8544 Central African Republic CF CAF 1987
## 8545 Central African Republic CF CAF 1988
## 8546 Central African Republic CF CAF 1989
## 8547 Central African Republic CF CAF 1990
## 8548 Central African Republic CF CAF 1991
## 8549 Central African Republic CF CAF 1992
## 8550 Central African Republic CF CAF 1993
## 8551 Central African Republic CF CAF 1994
## 8552 Central African Republic CF CAF 1995
## 8553 Central African Republic CF CAF 1996
## 8554 Central African Republic CF CAF 1997
## 8555 Central African Republic CF CAF 1998
## 8556 Central African Republic CF CAF 1999
## 8557 Central African Republic CF CAF 2000
## 8558 Central African Republic CF CAF 2001
## 8559 Central African Republic CF CAF 2002
## 8560 Central African Republic CF CAF 2003
## 8561 Central African Republic CF CAF 2004
## 8562 Central African Republic CF CAF 2005
## 8563 Central African Republic CF CAF 2006
## 8564 Central African Republic CF CAF 2007
## 8565 Central African Republic CF CAF 2008
## 8566 Central African Republic CF CAF 2009
## 8567 Central African Republic CF CAF 2010
## 8568 Central African Republic CF CAF 2011
## 8569 Central African Republic CF CAF 2012
## 8570 Central African Republic CF CAF 2013
## 8571 Chad TD TCD 1980
## 8572 Chad TD TCD 1981
## 8573 Chad TD TCD 1982
## 8574 Chad TD TCD 1983
## 8575 Chad TD TCD 1984
## 8576 Chad TD TCD 1985
## 8577 Chad TD TCD 1986
## 8578 Chad TD TCD 1987
## 8579 Chad TD TCD 1988
## 8580 Chad TD TCD 1989
## 8581 Chad TD TCD 1990
## 8582 Chad TD TCD 1991
## 8583 Chad TD TCD 1992
## 8584 Chad TD TCD 1993
## 8585 Chad TD TCD 1994
## 8586 Chad TD TCD 1995
## 8587 Chad TD TCD 1996
## 8588 Chad TD TCD 1997
## 8589 Chad TD TCD 1998
## 8590 Chad TD TCD 1999
## 8591 Chad TD TCD 2000
## 8592 Chad TD TCD 2001
## 8593 Chad TD TCD 2002
## 8594 Chad TD TCD 2003
## 8595 Chad TD TCD 2004
## 8596 Chad TD TCD 2005
## 8597 Chad TD TCD 2006
## 8598 Chad TD TCD 2007
## 8599 Chad TD TCD 2008
## 8600 Chad TD TCD 2009
## 8601 Chad TD TCD 2010
## 8602 Chad TD TCD 2011
## 8603 Chad TD TCD 2012
## 8604 Chad TD TCD 2013
## 8605 Chile CL CHL 1980
## 8606 Chile CL CHL 1981
## 8607 Chile CL CHL 1982
## 8608 Chile CL CHL 1983
## 8609 Chile CL CHL 1984
## 8610 Chile CL CHL 1985
## 8611 Chile CL CHL 1986
## 8612 Chile CL CHL 1987
## 8613 Chile CL CHL 1988
## 8614 Chile CL CHL 1989
## 8615 Chile CL CHL 1990
## 8616 Chile CL CHL 1991
## 8617 Chile CL CHL 1992
## 8618 Chile CL CHL 1993
## 8619 Chile CL CHL 1994
## 8620 Chile CL CHL 1995
## 8621 Chile CL CHL 1996
## 8622 Chile CL CHL 1997
## 8623 Chile CL CHL 1998
## 8624 Chile CL CHL 1999
## 8625 Chile CL CHL 2000
## 8626 Chile CL CHL 2001
## 8627 Chile CL CHL 2002
## 8628 Chile CL CHL 2003
## 8629 Chile CL CHL 2004
## 8630 Chile CL CHL 2005
## 8631 Chile CL CHL 2006
## 8632 Chile CL CHL 2007
## 8633 Chile CL CHL 2008
## 8634 Chile CL CHL 2009
## 8635 Chile CL CHL 2010
## 8636 Chile CL CHL 2011
## 8637 Chile CL CHL 2012
## 8638 Chile CL CHL 2013
## 8639 China CN CHN 1980
## 8640 China CN CHN 1981
## 8641 China CN CHN 1982
## 8642 China CN CHN 1983
## 8643 China CN CHN 1984
## 8644 China CN CHN 1985
## 8645 China CN CHN 1986
## 8646 China CN CHN 1987
## 8647 China CN CHN 1988
## 8648 China CN CHN 1989
## 8649 China CN CHN 1990
## 8650 China CN CHN 1991
## 8651 China CN CHN 1992
## 8652 China CN CHN 1993
## 8653 China CN CHN 1994
## 8654 China CN CHN 1995
## 8655 China CN CHN 1996
## 8656 China CN CHN 1997
## 8657 China CN CHN 1998
## 8658 China CN CHN 1999
## 8659 China CN CHN 2000
## 8660 China CN CHN 2001
## 8661 China CN CHN 2002
## 8662 China CN CHN 2003
## 8663 China CN CHN 2004
## 8664 China CN CHN 2005
## 8665 China CN CHN 2006
## 8666 China CN CHN 2007
## 8667 China CN CHN 2008
## 8668 China CN CHN 2009
## 8669 China CN CHN 2010
## 8670 China CN CHN 2011
## 8671 China CN CHN 2012
## 8672 China CN CHN 2013
## 8673 China, Hong Kong SAR HK HKG 1980
## 8674 China, Hong Kong SAR HK HKG 1981
## 8675 China, Hong Kong SAR HK HKG 1982
## 8676 China, Hong Kong SAR HK HKG 1983
## 8677 China, Hong Kong SAR HK HKG 1984
## 8678 China, Hong Kong SAR HK HKG 1985
## 8679 China, Hong Kong SAR HK HKG 1986
## 8680 China, Hong Kong SAR HK HKG 1987
## 8681 China, Hong Kong SAR HK HKG 1988
## 8682 China, Hong Kong SAR HK HKG 1989
## 8683 China, Hong Kong SAR HK HKG 1990
## 8684 China, Hong Kong SAR HK HKG 1991
## 8685 China, Hong Kong SAR HK HKG 1992
## 8686 China, Hong Kong SAR HK HKG 1993
## 8687 China, Hong Kong SAR HK HKG 1994
## 8688 China, Hong Kong SAR HK HKG 1995
## 8689 China, Hong Kong SAR HK HKG 1996
## 8690 China, Hong Kong SAR HK HKG 1997
## 8691 China, Hong Kong SAR HK HKG 1998
## 8692 China, Hong Kong SAR HK HKG 1999
## 8693 China, Hong Kong SAR HK HKG 2000
## 8694 China, Hong Kong SAR HK HKG 2001
## 8695 China, Hong Kong SAR HK HKG 2002
## 8696 China, Hong Kong SAR HK HKG 2003
## 8697 China, Hong Kong SAR HK HKG 2004
## 8698 China, Hong Kong SAR HK HKG 2005
## 8699 China, Hong Kong SAR HK HKG 2006
## 8700 China, Hong Kong SAR HK HKG 2007
## 8701 China, Hong Kong SAR HK HKG 2008
## 8702 China, Hong Kong SAR HK HKG 2009
## 8703 China, Hong Kong SAR HK HKG 2010
## 8704 China, Hong Kong SAR HK HKG 2011
## 8705 China, Hong Kong SAR HK HKG 2012
## 8706 China, Hong Kong SAR HK HKG 2013
## 8707 China, Macao SAR MO MAC 1980
## 8708 China, Macao SAR MO MAC 1981
## 8709 China, Macao SAR MO MAC 1982
## 8710 China, Macao SAR MO MAC 1983
## 8711 China, Macao SAR MO MAC 1984
## 8712 China, Macao SAR MO MAC 1985
## 8713 China, Macao SAR MO MAC 1986
## 8714 China, Macao SAR MO MAC 1987
## 8715 China, Macao SAR MO MAC 1988
## 8716 China, Macao SAR MO MAC 1989
## 8717 China, Macao SAR MO MAC 1990
## 8718 China, Macao SAR MO MAC 1991
## 8719 China, Macao SAR MO MAC 1992
## 8720 China, Macao SAR MO MAC 1993
## 8721 China, Macao SAR MO MAC 1994
## 8722 China, Macao SAR MO MAC 1995
## 8723 China, Macao SAR MO MAC 1996
## 8724 China, Macao SAR MO MAC 1997
## 8725 China, Macao SAR MO MAC 1998
## 8726 China, Macao SAR MO MAC 1999
## 8727 China, Macao SAR MO MAC 2000
## 8728 China, Macao SAR MO MAC 2001
## 8729 China, Macao SAR MO MAC 2002
## 8730 China, Macao SAR MO MAC 2003
## 8731 China, Macao SAR MO MAC 2004
## 8732 China, Macao SAR MO MAC 2005
## 8733 China, Macao SAR MO MAC 2006
## 8734 China, Macao SAR MO MAC 2007
## 8735 China, Macao SAR MO MAC 2008
## 8736 China, Macao SAR MO MAC 2009
## 8737 China, Macao SAR MO MAC 2010
## 8738 China, Macao SAR MO MAC 2011
## 8739 China, Macao SAR MO MAC 2012
## 8740 China, Macao SAR MO MAC 2013
## 8741 Colombia CO COL 1980
## 8742 Colombia CO COL 1981
## 8743 Colombia CO COL 1982
## 8744 Colombia CO COL 1983
## 8745 Colombia CO COL 1984
## 8746 Colombia CO COL 1985
## 8747 Colombia CO COL 1986
## 8748 Colombia CO COL 1987
## 8749 Colombia CO COL 1988
## 8750 Colombia CO COL 1989
## 8751 Colombia CO COL 1990
## 8752 Colombia CO COL 1991
## 8753 Colombia CO COL 1992
## 8754 Colombia CO COL 1993
## 8755 Colombia CO COL 1994
## 8756 Colombia CO COL 1995
## 8757 Colombia CO COL 1996
## 8758 Colombia CO COL 1997
## 8759 Colombia CO COL 1998
## 8760 Colombia CO COL 1999
## 8761 Colombia CO COL 2000
## 8762 Colombia CO COL 2001
## 8763 Colombia CO COL 2002
## 8764 Colombia CO COL 2003
## 8765 Colombia CO COL 2004
## 8766 Colombia CO COL 2005
## 8767 Colombia CO COL 2006
## 8768 Colombia CO COL 2007
## 8769 Colombia CO COL 2008
## 8770 Colombia CO COL 2009
## 8771 Colombia CO COL 2010
## 8772 Colombia CO COL 2011
## 8773 Colombia CO COL 2012
## 8774 Colombia CO COL 2013
## 8775 Comoros KM COM 1980
## 8776 Comoros KM COM 1981
## 8777 Comoros KM COM 1982
## 8778 Comoros KM COM 1983
## 8779 Comoros KM COM 1984
## 8780 Comoros KM COM 1985
## 8781 Comoros KM COM 1986
## 8782 Comoros KM COM 1987
## 8783 Comoros KM COM 1988
## 8784 Comoros KM COM 1989
## 8785 Comoros KM COM 1990
## 8786 Comoros KM COM 1991
## 8787 Comoros KM COM 1992
## 8788 Comoros KM COM 1993
## 8789 Comoros KM COM 1994
## 8790 Comoros KM COM 1995
## 8791 Comoros KM COM 1996
## 8792 Comoros KM COM 1997
## 8793 Comoros KM COM 1998
## 8794 Comoros KM COM 1999
## 8795 Comoros KM COM 2000
## 8796 Comoros KM COM 2001
## 8797 Comoros KM COM 2002
## 8798 Comoros KM COM 2003
## 8799 Comoros KM COM 2004
## 8800 Comoros KM COM 2005
## 8801 Comoros KM COM 2006
## 8802 Comoros KM COM 2007
## 8803 Comoros KM COM 2008
## 8804 Comoros KM COM 2009
## 8805 Comoros KM COM 2010
## 8806 Comoros KM COM 2011
## 8807 Comoros KM COM 2012
## 8808 Comoros KM COM 2013
## 8809 Congo CG COG 1980
## 8810 Congo CG COG 1981
## 8811 Congo CG COG 1982
## 8812 Congo CG COG 1983
## 8813 Congo CG COG 1984
## 8814 Congo CG COG 1985
## 8815 Congo CG COG 1986
## 8816 Congo CG COG 1987
## 8817 Congo CG COG 1988
## 8818 Congo CG COG 1989
## 8819 Congo CG COG 1990
## 8820 Congo CG COG 1991
## 8821 Congo CG COG 1992
## 8822 Congo CG COG 1993
## 8823 Congo CG COG 1994
## 8824 Congo CG COG 1995
## 8825 Congo CG COG 1996
## 8826 Congo CG COG 1997
## 8827 Congo CG COG 1998
## 8828 Congo CG COG 1999
## 8829 Congo CG COG 2000
## 8830 Congo CG COG 2001
## 8831 Congo CG COG 2002
## 8832 Congo CG COG 2003
## 8833 Congo CG COG 2004
## 8834 Congo CG COG 2005
## 8835 Congo CG COG 2006
## 8836 Congo CG COG 2007
## 8837 Congo CG COG 2008
## 8838 Congo CG COG 2009
## 8839 Congo CG COG 2010
## 8840 Congo CG COG 2011
## 8841 Congo CG COG 2012
## 8842 Congo CG COG 2013
## 8843 Cook Islands CK COK 1980
## 8844 Cook Islands CK COK 1981
## 8845 Cook Islands CK COK 1982
## 8846 Cook Islands CK COK 1983
## 8847 Cook Islands CK COK 1984
## 8848 Cook Islands CK COK 1985
## 8849 Cook Islands CK COK 1986
## 8850 Cook Islands CK COK 1987
## 8851 Cook Islands CK COK 1988
## 8852 Cook Islands CK COK 1989
## 8853 Cook Islands CK COK 1990
## 8854 Cook Islands CK COK 1991
## 8855 Cook Islands CK COK 1992
## 8856 Cook Islands CK COK 1993
## 8857 Cook Islands CK COK 1994
## 8858 Cook Islands CK COK 1995
## 8859 Cook Islands CK COK 1996
## 8860 Cook Islands CK COK 1997
## 8861 Cook Islands CK COK 1998
## 8862 Cook Islands CK COK 1999
## 8863 Cook Islands CK COK 2000
## 8864 Cook Islands CK COK 2001
## 8865 Cook Islands CK COK 2002
## 8866 Cook Islands CK COK 2003
## 8867 Cook Islands CK COK 2004
## 8868 Cook Islands CK COK 2005
## 8869 Cook Islands CK COK 2006
## 8870 Cook Islands CK COK 2007
## 8871 Cook Islands CK COK 2008
## 8872 Cook Islands CK COK 2009
## 8873 Cook Islands CK COK 2010
## 8874 Cook Islands CK COK 2011
## 8875 Cook Islands CK COK 2012
## 8876 Cook Islands CK COK 2013
## 8877 Costa Rica CR CRI 1980
## 8878 Costa Rica CR CRI 1981
## 8879 Costa Rica CR CRI 1982
## 8880 Costa Rica CR CRI 1983
## 8881 Costa Rica CR CRI 1984
## 8882 Costa Rica CR CRI 1985
## 8883 Costa Rica CR CRI 1986
## 8884 Costa Rica CR CRI 1987
## 8885 Costa Rica CR CRI 1988
## 8886 Costa Rica CR CRI 1989
## 8887 Costa Rica CR CRI 1990
## 8888 Costa Rica CR CRI 1991
## 8889 Costa Rica CR CRI 1992
## 8890 Costa Rica CR CRI 1993
## 8891 Costa Rica CR CRI 1994
## 8892 Costa Rica CR CRI 1995
## 8893 Costa Rica CR CRI 1996
## 8894 Costa Rica CR CRI 1997
## 8895 Costa Rica CR CRI 1998
## 8896 Costa Rica CR CRI 1999
## 8897 Costa Rica CR CRI 2000
## 8898 Costa Rica CR CRI 2001
## 8899 Costa Rica CR CRI 2002
## 8900 Costa Rica CR CRI 2003
## 8901 Costa Rica CR CRI 2004
## 8902 Costa Rica CR CRI 2005
## 8903 Costa Rica CR CRI 2006
## 8904 Costa Rica CR CRI 2007
## 8905 Costa Rica CR CRI 2008
## 8906 Costa Rica CR CRI 2009
## 8907 Costa Rica CR CRI 2010
## 8908 Costa Rica CR CRI 2011
## 8909 Costa Rica CR CRI 2012
## 8910 Costa Rica CR CRI 2013
## 8911 Cote d'Ivoire CI CIV 1980
## 8912 Cote d'Ivoire CI CIV 1981
## 8913 Cote d'Ivoire CI CIV 1982
## 8914 Cote d'Ivoire CI CIV 1983
## 8915 Cote d'Ivoire CI CIV 1984
## 8916 Cote d'Ivoire CI CIV 1985
## 8917 Cote d'Ivoire CI CIV 1986
## 8918 Cote d'Ivoire CI CIV 1987
## 8919 Cote d'Ivoire CI CIV 1988
## 8920 Cote d'Ivoire CI CIV 1989
## 8921 Cote d'Ivoire CI CIV 1990
## 8922 Cote d'Ivoire CI CIV 1991
## 8923 Cote d'Ivoire CI CIV 1992
## 8924 Cote d'Ivoire CI CIV 1993
## 8925 Cote d'Ivoire CI CIV 1994
## 8926 Cote d'Ivoire CI CIV 1995
## 8927 Cote d'Ivoire CI CIV 1996
## 8928 Cote d'Ivoire CI CIV 1997
## 8929 Cote d'Ivoire CI CIV 1998
## 8930 Cote d'Ivoire CI CIV 1999
## 8931 Cote d'Ivoire CI CIV 2000
## 8932 Cote d'Ivoire CI CIV 2001
## 8933 Cote d'Ivoire CI CIV 2002
## 8934 Cote d'Ivoire CI CIV 2003
## 8935 Cote d'Ivoire CI CIV 2004
## 8936 Cote d'Ivoire CI CIV 2005
## 8937 Cote d'Ivoire CI CIV 2006
## 8938 Cote d'Ivoire CI CIV 2007
## 8939 Cote d'Ivoire CI CIV 2008
## 8940 Cote d'Ivoire CI CIV 2009
## 8941 Cote d'Ivoire CI CIV 2010
## 8942 Cote d'Ivoire CI CIV 2011
## 8943 Cote d'Ivoire CI CIV 2012
## 8944 Cote d'Ivoire CI CIV 2013
## 8945 Croatia HR HRV 1980
## 8946 Croatia HR HRV 1981
## 8947 Croatia HR HRV 1982
## 8948 Croatia HR HRV 1983
## 8949 Croatia HR HRV 1984
## 8950 Croatia HR HRV 1985
## 8951 Croatia HR HRV 1986
## 8952 Croatia HR HRV 1987
## 8953 Croatia HR HRV 1988
## 8954 Croatia HR HRV 1989
## 8955 Croatia HR HRV 1990
## 8956 Croatia HR HRV 1991
## 8957 Croatia HR HRV 1992
## 8958 Croatia HR HRV 1993
## 8959 Croatia HR HRV 1994
## 8960 Croatia HR HRV 1995
## 8961 Croatia HR HRV 1996
## 8962 Croatia HR HRV 1997
## 8963 Croatia HR HRV 1998
## 8964 Croatia HR HRV 1999
## 8965 Croatia HR HRV 2000
## 8966 Croatia HR HRV 2001
## 8967 Croatia HR HRV 2002
## 8968 Croatia HR HRV 2003
## 8969 Croatia HR HRV 2004
## 8970 Croatia HR HRV 2005
## 8971 Croatia HR HRV 2006
## 8972 Croatia HR HRV 2007
## 8973 Croatia HR HRV 2008
## 8974 Croatia HR HRV 2009
## 8975 Croatia HR HRV 2010
## 8976 Croatia HR HRV 2011
## 8977 Croatia HR HRV 2012
## 8978 Croatia HR HRV 2013
## 8979 Cuba CU CUB 1980
## 8980 Cuba CU CUB 1981
## 8981 Cuba CU CUB 1982
## 8982 Cuba CU CUB 1983
## 8983 Cuba CU CUB 1984
## 8984 Cuba CU CUB 1985
## 8985 Cuba CU CUB 1986
## 8986 Cuba CU CUB 1987
## 8987 Cuba CU CUB 1988
## 8988 Cuba CU CUB 1989
## 8989 Cuba CU CUB 1990
## 8990 Cuba CU CUB 1991
## 8991 Cuba CU CUB 1992
## 8992 Cuba CU CUB 1993
## 8993 Cuba CU CUB 1994
## 8994 Cuba CU CUB 1995
## 8995 Cuba CU CUB 1996
## 8996 Cuba CU CUB 1997
## 8997 Cuba CU CUB 1998
## 8998 Cuba CU CUB 1999
## 8999 Cuba CU CUB 2000
## 9000 Cuba CU CUB 2001
## 9001 Cuba CU CUB 2002
## 9002 Cuba CU CUB 2003
## 9003 Cuba CU CUB 2004
## 9004 Cuba CU CUB 2005
## 9005 Cuba CU CUB 2006
## 9006 Cuba CU CUB 2007
## 9007 Cuba CU CUB 2008
## 9008 Cuba CU CUB 2009
## 9009 Cuba CU CUB 2010
## 9010 Cuba CU CUB 2011
## 9011 Cuba CU CUB 2012
## 9012 Cuba CU CUB 2013
## 9013 Curacao CW CUW 2010
## 9014 Curacao CW CUW 2011
## 9015 Curacao CW CUW 2012
## 9016 Curacao CW CUW 2013
## 9017 Cyprus CY CYP 1980
## 9018 Cyprus CY CYP 1981
## 9019 Cyprus CY CYP 1982
## 9020 Cyprus CY CYP 1983
## 9021 Cyprus CY CYP 1984
## 9022 Cyprus CY CYP 1985
## 9023 Cyprus CY CYP 1986
## 9024 Cyprus CY CYP 1987
## 9025 Cyprus CY CYP 1988
## 9026 Cyprus CY CYP 1989
## 9027 Cyprus CY CYP 1990
## 9028 Cyprus CY CYP 1991
## 9029 Cyprus CY CYP 1992
## 9030 Cyprus CY CYP 1993
## 9031 Cyprus CY CYP 1994
## 9032 Cyprus CY CYP 1995
## 9033 Cyprus CY CYP 1996
## 9034 Cyprus CY CYP 1997
## 9035 Cyprus CY CYP 1998
## 9036 Cyprus CY CYP 1999
## 9037 Cyprus CY CYP 2000
## 9038 Cyprus CY CYP 2001
## 9039 Cyprus CY CYP 2002
## 9040 Cyprus CY CYP 2003
## 9041 Cyprus CY CYP 2004
## 9042 Cyprus CY CYP 2005
## 9043 Cyprus CY CYP 2006
## 9044 Cyprus CY CYP 2007
## 9045 Cyprus CY CYP 2008
## 9046 Cyprus CY CYP 2009
## 9047 Cyprus CY CYP 2010
## 9048 Cyprus CY CYP 2011
## 9049 Cyprus CY CYP 2012
## 9050 Cyprus CY CYP 2013
## 9051 Czech Republic CZ CZE 1980
## 9052 Czech Republic CZ CZE 1981
## 9053 Czech Republic CZ CZE 1982
## 9054 Czech Republic CZ CZE 1983
## 9055 Czech Republic CZ CZE 1984
## 9056 Czech Republic CZ CZE 1985
## 9057 Czech Republic CZ CZE 1986
## 9058 Czech Republic CZ CZE 1987
## 9059 Czech Republic CZ CZE 1988
## 9060 Czech Republic CZ CZE 1989
## 9061 Czech Republic CZ CZE 1990
## 9062 Czech Republic CZ CZE 1991
## 9063 Czech Republic CZ CZE 1992
## 9064 Czech Republic CZ CZE 1993
## 9065 Czech Republic CZ CZE 1994
## 9066 Czech Republic CZ CZE 1995
## 9067 Czech Republic CZ CZE 1996
## 9068 Czech Republic CZ CZE 1997
## 9069 Czech Republic CZ CZE 1998
## 9070 Czech Republic CZ CZE 1999
## 9071 Czech Republic CZ CZE 2000
## 9072 Czech Republic CZ CZE 2001
## 9073 Czech Republic CZ CZE 2002
## 9074 Czech Republic CZ CZE 2003
## 9075 Czech Republic CZ CZE 2004
## 9076 Czech Republic CZ CZE 2005
## 9077 Czech Republic CZ CZE 2006
## 9078 Czech Republic CZ CZE 2007
## 9079 Czech Republic CZ CZE 2008
## 9080 Czech Republic CZ CZE 2009
## 9081 Czech Republic CZ CZE 2010
## 9082 Czech Republic CZ CZE 2011
## 9083 Czech Republic CZ CZE 2012
## 9084 Czech Republic CZ CZE 2013
## 9085 Democratic People's Republic of Korea KP PRK 1980
## 9086 Democratic People's Republic of Korea KP PRK 1981
## 9087 Democratic People's Republic of Korea KP PRK 1982
## 9088 Democratic People's Republic of Korea KP PRK 1983
## 9089 Democratic People's Republic of Korea KP PRK 1984
## 9090 Democratic People's Republic of Korea KP PRK 1985
## 9091 Democratic People's Republic of Korea KP PRK 1986
## 9092 Democratic People's Republic of Korea KP PRK 1987
## 9093 Democratic People's Republic of Korea KP PRK 1988
## 9094 Democratic People's Republic of Korea KP PRK 1989
## 9095 Democratic People's Republic of Korea KP PRK 1990
## 9096 Democratic People's Republic of Korea KP PRK 1991
## 9097 Democratic People's Republic of Korea KP PRK 1992
## 9098 Democratic People's Republic of Korea KP PRK 1993
## 9099 Democratic People's Republic of Korea KP PRK 1994
## 9100 Democratic People's Republic of Korea KP PRK 1995
## 9101 Democratic People's Republic of Korea KP PRK 1996
## 9102 Democratic People's Republic of Korea KP PRK 1997
## 9103 Democratic People's Republic of Korea KP PRK 1998
## 9104 Democratic People's Republic of Korea KP PRK 1999
## 9105 Democratic People's Republic of Korea KP PRK 2000
## 9106 Democratic People's Republic of Korea KP PRK 2001
## 9107 Democratic People's Republic of Korea KP PRK 2002
## 9108 Democratic People's Republic of Korea KP PRK 2003
## 9109 Democratic People's Republic of Korea KP PRK 2004
## 9110 Democratic People's Republic of Korea KP PRK 2005
## 9111 Democratic People's Republic of Korea KP PRK 2006
## 9112 Democratic People's Republic of Korea KP PRK 2007
## 9113 Democratic People's Republic of Korea KP PRK 2008
## 9114 Democratic People's Republic of Korea KP PRK 2009
## 9115 Democratic People's Republic of Korea KP PRK 2010
## 9116 Democratic People's Republic of Korea KP PRK 2011
## 9117 Democratic People's Republic of Korea KP PRK 2012
## 9118 Democratic People's Republic of Korea KP PRK 2013
## 9119 Democratic Republic of the Congo CD COD 1980
## 9120 Democratic Republic of the Congo CD COD 1981
## 9121 Democratic Republic of the Congo CD COD 1982
## 9122 Democratic Republic of the Congo CD COD 1983
## 9123 Democratic Republic of the Congo CD COD 1984
## 9124 Democratic Republic of the Congo CD COD 1985
## 9125 Democratic Republic of the Congo CD COD 1986
## 9126 Democratic Republic of the Congo CD COD 1987
## 9127 Democratic Republic of the Congo CD COD 1988
## 9128 Democratic Republic of the Congo CD COD 1989
## 9129 Democratic Republic of the Congo CD COD 1990
## 9130 Democratic Republic of the Congo CD COD 1991
## 9131 Democratic Republic of the Congo CD COD 1992
## 9132 Democratic Republic of the Congo CD COD 1993
## 9133 Democratic Republic of the Congo CD COD 1994
## 9134 Democratic Republic of the Congo CD COD 1995
## 9135 Democratic Republic of the Congo CD COD 1996
## 9136 Democratic Republic of the Congo CD COD 1997
## 9137 Democratic Republic of the Congo CD COD 1998
## 9138 Democratic Republic of the Congo CD COD 1999
## 9139 Democratic Republic of the Congo CD COD 2000
## 9140 Democratic Republic of the Congo CD COD 2001
## 9141 Democratic Republic of the Congo CD COD 2002
## 9142 Democratic Republic of the Congo CD COD 2003
## 9143 Democratic Republic of the Congo CD COD 2004
## 9144 Democratic Republic of the Congo CD COD 2005
## 9145 Democratic Republic of the Congo CD COD 2006
## 9146 Democratic Republic of the Congo CD COD 2007
## 9147 Democratic Republic of the Congo CD COD 2008
## 9148 Democratic Republic of the Congo CD COD 2009
## 9149 Democratic Republic of the Congo CD COD 2010
## 9150 Democratic Republic of the Congo CD COD 2011
## 9151 Democratic Republic of the Congo CD COD 2012
## 9152 Democratic Republic of the Congo CD COD 2013
## 9153 Denmark DK DNK 1980
## 9154 Denmark DK DNK 1981
## 9155 Denmark DK DNK 1982
## 9156 Denmark DK DNK 1983
## 9157 Denmark DK DNK 1984
## 9158 Denmark DK DNK 1985
## 9159 Denmark DK DNK 1986
## 9160 Denmark DK DNK 1987
## 9161 Denmark DK DNK 1988
## 9162 Denmark DK DNK 1989
## 9163 Denmark DK DNK 1990
## 9164 Denmark DK DNK 1991
## 9165 Denmark DK DNK 1992
## 9166 Denmark DK DNK 1993
## 9167 Denmark DK DNK 1994
## 9168 Denmark DK DNK 1995
## 9169 Denmark DK DNK 1996
## 9170 Denmark DK DNK 1997
## 9171 Denmark DK DNK 1998
## 9172 Denmark DK DNK 1999
## 9173 Denmark DK DNK 2000
## 9174 Denmark DK DNK 2001
## 9175 Denmark DK DNK 2002
## 9176 Denmark DK DNK 2003
## 9177 Denmark DK DNK 2004
## 9178 Denmark DK DNK 2005
## 9179 Denmark DK DNK 2006
## 9180 Denmark DK DNK 2007
## 9181 Denmark DK DNK 2008
## 9182 Denmark DK DNK 2009
## 9183 Denmark DK DNK 2010
## 9184 Denmark DK DNK 2011
## 9185 Denmark DK DNK 2012
## 9186 Denmark DK DNK 2013
## 9187 Djibouti DJ DJI 1980
## 9188 Djibouti DJ DJI 1981
## 9189 Djibouti DJ DJI 1982
## 9190 Djibouti DJ DJI 1983
## 9191 Djibouti DJ DJI 1984
## 9192 Djibouti DJ DJI 1985
## 9193 Djibouti DJ DJI 1986
## 9194 Djibouti DJ DJI 1987
## 9195 Djibouti DJ DJI 1988
## 9196 Djibouti DJ DJI 1989
## 9197 Djibouti DJ DJI 1990
## 9198 Djibouti DJ DJI 1991
## 9199 Djibouti DJ DJI 1992
## 9200 Djibouti DJ DJI 1993
## 9201 Djibouti DJ DJI 1994
## 9202 Djibouti DJ DJI 1995
## 9203 Djibouti DJ DJI 1996
## 9204 Djibouti DJ DJI 1997
## 9205 Djibouti DJ DJI 1998
## 9206 Djibouti DJ DJI 1999
## 9207 Djibouti DJ DJI 2000
## 9208 Djibouti DJ DJI 2001
## 9209 Djibouti DJ DJI 2002
## 9210 Djibouti DJ DJI 2003
## 9211 Djibouti DJ DJI 2004
## 9212 Djibouti DJ DJI 2005
## 9213 Djibouti DJ DJI 2006
## 9214 Djibouti DJ DJI 2007
## 9215 Djibouti DJ DJI 2008
## 9216 Djibouti DJ DJI 2009
## 9217 Djibouti DJ DJI 2010
## 9218 Djibouti DJ DJI 2011
## 9219 Djibouti DJ DJI 2012
## 9220 Djibouti DJ DJI 2013
## 9221 Dominica DM DMA 1980
## 9222 Dominica DM DMA 1981
## 9223 Dominica DM DMA 1982
## 9224 Dominica DM DMA 1983
## 9225 Dominica DM DMA 1984
## 9226 Dominica DM DMA 1985
## 9227 Dominica DM DMA 1986
## 9228 Dominica DM DMA 1987
## 9229 Dominica DM DMA 1988
## 9230 Dominica DM DMA 1989
## 9231 Dominica DM DMA 1990
## 9232 Dominica DM DMA 1991
## 9233 Dominica DM DMA 1992
## 9234 Dominica DM DMA 1993
## 9235 Dominica DM DMA 1994
## 9236 Dominica DM DMA 1995
## 9237 Dominica DM DMA 1996
## 9238 Dominica DM DMA 1997
## 9239 Dominica DM DMA 1998
## 9240 Dominica DM DMA 1999
## 9241 Dominica DM DMA 2000
## 9242 Dominica DM DMA 2001
## 9243 Dominica DM DMA 2002
## 9244 Dominica DM DMA 2003
## 9245 Dominica DM DMA 2004
## 9246 Dominica DM DMA 2005
## 9247 Dominica DM DMA 2006
## 9248 Dominica DM DMA 2007
## 9249 Dominica DM DMA 2008
## 9250 Dominica DM DMA 2009
## 9251 Dominica DM DMA 2010
## 9252 Dominica DM DMA 2011
## 9253 Dominica DM DMA 2012
## 9254 Dominica DM DMA 2013
## 9255 Dominican Republic DO DOM 1980
## 9256 Dominican Republic DO DOM 1981
## 9257 Dominican Republic DO DOM 1982
## 9258 Dominican Republic DO DOM 1983
## 9259 Dominican Republic DO DOM 1984
## 9260 Dominican Republic DO DOM 1985
## 9261 Dominican Republic DO DOM 1986
## 9262 Dominican Republic DO DOM 1987
## 9263 Dominican Republic DO DOM 1988
## 9264 Dominican Republic DO DOM 1989
## 9265 Dominican Republic DO DOM 1990
## 9266 Dominican Republic DO DOM 1991
## 9267 Dominican Republic DO DOM 1992
## 9268 Dominican Republic DO DOM 1993
## 9269 Dominican Republic DO DOM 1994
## 9270 Dominican Republic DO DOM 1995
## 9271 Dominican Republic DO DOM 1996
## 9272 Dominican Republic DO DOM 1997
## 9273 Dominican Republic DO DOM 1998
## 9274 Dominican Republic DO DOM 1999
## 9275 Dominican Republic DO DOM 2000
## 9276 Dominican Republic DO DOM 2001
## 9277 Dominican Republic DO DOM 2002
## 9278 Dominican Republic DO DOM 2003
## 9279 Dominican Republic DO DOM 2004
## 9280 Dominican Republic DO DOM 2005
## 9281 Dominican Republic DO DOM 2006
## 9282 Dominican Republic DO DOM 2007
## 9283 Dominican Republic DO DOM 2008
## 9284 Dominican Republic DO DOM 2009
## 9285 Dominican Republic DO DOM 2010
## 9286 Dominican Republic DO DOM 2011
## 9287 Dominican Republic DO DOM 2012
## 9288 Dominican Republic DO DOM 2013
## 9289 Ecuador EC ECU 1980
## 9290 Ecuador EC ECU 1981
## 9291 Ecuador EC ECU 1982
## 9292 Ecuador EC ECU 1983
## 9293 Ecuador EC ECU 1984
## 9294 Ecuador EC ECU 1985
## 9295 Ecuador EC ECU 1986
## 9296 Ecuador EC ECU 1987
## 9297 Ecuador EC ECU 1988
## 9298 Ecuador EC ECU 1989
## 9299 Ecuador EC ECU 1990
## 9300 Ecuador EC ECU 1991
## 9301 Ecuador EC ECU 1992
## 9302 Ecuador EC ECU 1993
## 9303 Ecuador EC ECU 1994
## 9304 Ecuador EC ECU 1995
## 9305 Ecuador EC ECU 1996
## 9306 Ecuador EC ECU 1997
## 9307 Ecuador EC ECU 1998
## 9308 Ecuador EC ECU 1999
## 9309 Ecuador EC ECU 2000
## 9310 Ecuador EC ECU 2001
## 9311 Ecuador EC ECU 2002
## 9312 Ecuador EC ECU 2003
## 9313 Ecuador EC ECU 2004
## 9314 Ecuador EC ECU 2005
## 9315 Ecuador EC ECU 2006
## 9316 Ecuador EC ECU 2007
## 9317 Ecuador EC ECU 2008
## 9318 Ecuador EC ECU 2009
## 9319 Ecuador EC ECU 2010
## 9320 Ecuador EC ECU 2011
## 9321 Ecuador EC ECU 2012
## 9322 Ecuador EC ECU 2013
## 9323 Egypt EG EGY 1980
## 9324 Egypt EG EGY 1981
## 9325 Egypt EG EGY 1982
## 9326 Egypt EG EGY 1983
## 9327 Egypt EG EGY 1984
## 9328 Egypt EG EGY 1985
## 9329 Egypt EG EGY 1986
## 9330 Egypt EG EGY 1987
## 9331 Egypt EG EGY 1988
## 9332 Egypt EG EGY 1989
## 9333 Egypt EG EGY 1990
## 9334 Egypt EG EGY 1991
## 9335 Egypt EG EGY 1992
## 9336 Egypt EG EGY 1993
## 9337 Egypt EG EGY 1994
## 9338 Egypt EG EGY 1995
## 9339 Egypt EG EGY 1996
## 9340 Egypt EG EGY 1997
## 9341 Egypt EG EGY 1998
## 9342 Egypt EG EGY 1999
## 9343 Egypt EG EGY 2000
## 9344 Egypt EG EGY 2001
## 9345 Egypt EG EGY 2002
## 9346 Egypt EG EGY 2003
## 9347 Egypt EG EGY 2004
## 9348 Egypt EG EGY 2005
## 9349 Egypt EG EGY 2006
## 9350 Egypt EG EGY 2007
## 9351 Egypt EG EGY 2008
## 9352 Egypt EG EGY 2009
## 9353 Egypt EG EGY 2010
## 9354 Egypt EG EGY 2011
## 9355 Egypt EG EGY 2012
## 9356 Egypt EG EGY 2013
## 9357 El Salvador SV SLV 1980
## 9358 El Salvador SV SLV 1981
## 9359 El Salvador SV SLV 1982
## 9360 El Salvador SV SLV 1983
## 9361 El Salvador SV SLV 1984
## 9362 El Salvador SV SLV 1985
## 9363 El Salvador SV SLV 1986
## 9364 El Salvador SV SLV 1987
## 9365 El Salvador SV SLV 1988
## 9366 El Salvador SV SLV 1989
## 9367 El Salvador SV SLV 1990
## 9368 El Salvador SV SLV 1991
## 9369 El Salvador SV SLV 1992
## 9370 El Salvador SV SLV 1993
## 9371 El Salvador SV SLV 1994
## 9372 El Salvador SV SLV 1995
## 9373 El Salvador SV SLV 1996
## 9374 El Salvador SV SLV 1997
## 9375 El Salvador SV SLV 1998
## 9376 El Salvador SV SLV 1999
## 9377 El Salvador SV SLV 2000
## 9378 El Salvador SV SLV 2001
## 9379 El Salvador SV SLV 2002
## 9380 El Salvador SV SLV 2003
## 9381 El Salvador SV SLV 2004
## 9382 El Salvador SV SLV 2005
## 9383 El Salvador SV SLV 2006
## 9384 El Salvador SV SLV 2007
## 9385 El Salvador SV SLV 2008
## 9386 El Salvador SV SLV 2009
## 9387 El Salvador SV SLV 2010
## 9388 El Salvador SV SLV 2011
## 9389 El Salvador SV SLV 2012
## 9390 El Salvador SV SLV 2013
## 9391 Equatorial Guinea GQ GNQ 1980
## 9392 Equatorial Guinea GQ GNQ 1981
## 9393 Equatorial Guinea GQ GNQ 1982
## 9394 Equatorial Guinea GQ GNQ 1983
## 9395 Equatorial Guinea GQ GNQ 1984
## 9396 Equatorial Guinea GQ GNQ 1985
## 9397 Equatorial Guinea GQ GNQ 1986
## 9398 Equatorial Guinea GQ GNQ 1987
## 9399 Equatorial Guinea GQ GNQ 1988
## 9400 Equatorial Guinea GQ GNQ 1989
## 9401 Equatorial Guinea GQ GNQ 1990
## 9402 Equatorial Guinea GQ GNQ 1991
## 9403 Equatorial Guinea GQ GNQ 1992
## 9404 Equatorial Guinea GQ GNQ 1993
## 9405 Equatorial Guinea GQ GNQ 1994
## 9406 Equatorial Guinea GQ GNQ 1995
## 9407 Equatorial Guinea GQ GNQ 1996
## 9408 Equatorial Guinea GQ GNQ 1997
## 9409 Equatorial Guinea GQ GNQ 1998
## 9410 Equatorial Guinea GQ GNQ 1999
## 9411 Equatorial Guinea GQ GNQ 2000
## 9412 Equatorial Guinea GQ GNQ 2001
## 9413 Equatorial Guinea GQ GNQ 2002
## 9414 Equatorial Guinea GQ GNQ 2003
## 9415 Equatorial Guinea GQ GNQ 2004
## 9416 Equatorial Guinea GQ GNQ 2005
## 9417 Equatorial Guinea GQ GNQ 2006
## 9418 Equatorial Guinea GQ GNQ 2007
## 9419 Equatorial Guinea GQ GNQ 2008
## 9420 Equatorial Guinea GQ GNQ 2009
## 9421 Equatorial Guinea GQ GNQ 2010
## 9422 Equatorial Guinea GQ GNQ 2011
## 9423 Equatorial Guinea GQ GNQ 2012
## 9424 Equatorial Guinea GQ GNQ 2013
## 9425 Eritrea ER ERI 1980
## 9426 Eritrea ER ERI 1981
## 9427 Eritrea ER ERI 1982
## 9428 Eritrea ER ERI 1983
## 9429 Eritrea ER ERI 1984
## 9430 Eritrea ER ERI 1985
## 9431 Eritrea ER ERI 1986
## 9432 Eritrea ER ERI 1987
## 9433 Eritrea ER ERI 1988
## 9434 Eritrea ER ERI 1989
## 9435 Eritrea ER ERI 1990
## 9436 Eritrea ER ERI 1991
## 9437 Eritrea ER ERI 1992
## 9438 Eritrea ER ERI 1993
## 9439 Eritrea ER ERI 1994
## 9440 Eritrea ER ERI 1995
## 9441 Eritrea ER ERI 1996
## 9442 Eritrea ER ERI 1997
## 9443 Eritrea ER ERI 1998
## 9444 Eritrea ER ERI 1999
## 9445 Eritrea ER ERI 2000
## 9446 Eritrea ER ERI 2001
## 9447 Eritrea ER ERI 2002
## 9448 Eritrea ER ERI 2003
## 9449 Eritrea ER ERI 2004
## 9450 Eritrea ER ERI 2005
## 9451 Eritrea ER ERI 2006
## 9452 Eritrea ER ERI 2007
## 9453 Eritrea ER ERI 2008
## 9454 Eritrea ER ERI 2009
## 9455 Eritrea ER ERI 2010
## 9456 Eritrea ER ERI 2011
## 9457 Eritrea ER ERI 2012
## 9458 Eritrea ER ERI 2013
## 9459 Estonia EE EST 1980
## 9460 Estonia EE EST 1981
## 9461 Estonia EE EST 1982
## 9462 Estonia EE EST 1983
## 9463 Estonia EE EST 1984
## 9464 Estonia EE EST 1985
## 9465 Estonia EE EST 1986
## 9466 Estonia EE EST 1987
## 9467 Estonia EE EST 1988
## 9468 Estonia EE EST 1989
## 9469 Estonia EE EST 1990
## 9470 Estonia EE EST 1991
## 9471 Estonia EE EST 1992
## 9472 Estonia EE EST 1993
## 9473 Estonia EE EST 1994
## 9474 Estonia EE EST 1995
## 9475 Estonia EE EST 1996
## 9476 Estonia EE EST 1997
## 9477 Estonia EE EST 1998
## 9478 Estonia EE EST 1999
## 9479 Estonia EE EST 2000
## 9480 Estonia EE EST 2001
## 9481 Estonia EE EST 2002
## 9482 Estonia EE EST 2003
## 9483 Estonia EE EST 2004
## 9484 Estonia EE EST 2005
## 9485 Estonia EE EST 2006
## 9486 Estonia EE EST 2007
## 9487 Estonia EE EST 2008
## 9488 Estonia EE EST 2009
## 9489 Estonia EE EST 2010
## 9490 Estonia EE EST 2011
## 9491 Estonia EE EST 2012
## 9492 Estonia EE EST 2013
## 9493 Ethiopia ET ETH 1980
## 9494 Ethiopia ET ETH 1981
## 9495 Ethiopia ET ETH 1982
## 9496 Ethiopia ET ETH 1983
## 9497 Ethiopia ET ETH 1984
## 9498 Ethiopia ET ETH 1985
## 9499 Ethiopia ET ETH 1986
## 9500 Ethiopia ET ETH 1987
## 9501 Ethiopia ET ETH 1988
## 9502 Ethiopia ET ETH 1989
## 9503 Ethiopia ET ETH 1990
## 9504 Ethiopia ET ETH 1991
## 9505 Ethiopia ET ETH 1992
## 9506 Ethiopia ET ETH 1993
## 9507 Ethiopia ET ETH 1994
## 9508 Ethiopia ET ETH 1995
## 9509 Ethiopia ET ETH 1996
## 9510 Ethiopia ET ETH 1997
## 9511 Ethiopia ET ETH 1998
## 9512 Ethiopia ET ETH 1999
## 9513 Ethiopia ET ETH 2000
## 9514 Ethiopia ET ETH 2001
## 9515 Ethiopia ET ETH 2002
## 9516 Ethiopia ET ETH 2003
## 9517 Ethiopia ET ETH 2004
## 9518 Ethiopia ET ETH 2005
## 9519 Ethiopia ET ETH 2006
## 9520 Ethiopia ET ETH 2007
## 9521 Ethiopia ET ETH 2008
## 9522 Ethiopia ET ETH 2009
## 9523 Ethiopia ET ETH 2010
## 9524 Ethiopia ET ETH 2011
## 9525 Ethiopia ET ETH 2012
## 9526 Ethiopia ET ETH 2013
## 9527 Fiji FJ FJI 1980
## 9528 Fiji FJ FJI 1981
## 9529 Fiji FJ FJI 1982
## 9530 Fiji FJ FJI 1983
## 9531 Fiji FJ FJI 1984
## 9532 Fiji FJ FJI 1985
## 9533 Fiji FJ FJI 1986
## 9534 Fiji FJ FJI 1987
## 9535 Fiji FJ FJI 1988
## 9536 Fiji FJ FJI 1989
## 9537 Fiji FJ FJI 1990
## 9538 Fiji FJ FJI 1991
## 9539 Fiji FJ FJI 1992
## 9540 Fiji FJ FJI 1993
## 9541 Fiji FJ FJI 1994
## 9542 Fiji FJ FJI 1995
## 9543 Fiji FJ FJI 1996
## 9544 Fiji FJ FJI 1997
## 9545 Fiji FJ FJI 1998
## 9546 Fiji FJ FJI 1999
## 9547 Fiji FJ FJI 2000
## 9548 Fiji FJ FJI 2001
## 9549 Fiji FJ FJI 2002
## 9550 Fiji FJ FJI 2003
## 9551 Fiji FJ FJI 2004
## 9552 Fiji FJ FJI 2005
## 9553 Fiji FJ FJI 2006
## 9554 Fiji FJ FJI 2007
## 9555 Fiji FJ FJI 2008
## 9556 Fiji FJ FJI 2009
## 9557 Fiji FJ FJI 2010
## 9558 Fiji FJ FJI 2011
## 9559 Fiji FJ FJI 2012
## 9560 Fiji FJ FJI 2013
## 9561 Finland FI FIN 1980
## 9562 Finland FI FIN 1981
## 9563 Finland FI FIN 1982
## 9564 Finland FI FIN 1983
## 9565 Finland FI FIN 1984
## 9566 Finland FI FIN 1985
## 9567 Finland FI FIN 1986
## 9568 Finland FI FIN 1987
## 9569 Finland FI FIN 1988
## 9570 Finland FI FIN 1989
## 9571 Finland FI FIN 1990
## 9572 Finland FI FIN 1991
## 9573 Finland FI FIN 1992
## 9574 Finland FI FIN 1993
## 9575 Finland FI FIN 1994
## 9576 Finland FI FIN 1995
## 9577 Finland FI FIN 1996
## 9578 Finland FI FIN 1997
## 9579 Finland FI FIN 1998
## 9580 Finland FI FIN 1999
## 9581 Finland FI FIN 2000
## 9582 Finland FI FIN 2001
## 9583 Finland FI FIN 2002
## 9584 Finland FI FIN 2003
## 9585 Finland FI FIN 2004
## 9586 Finland FI FIN 2005
## 9587 Finland FI FIN 2006
## 9588 Finland FI FIN 2007
## 9589 Finland FI FIN 2008
## 9590 Finland FI FIN 2009
## 9591 Finland FI FIN 2010
## 9592 Finland FI FIN 2011
## 9593 Finland FI FIN 2012
## 9594 Finland FI FIN 2013
## 9595 France FR FRA 1980
## 9596 France FR FRA 1981
## 9597 France FR FRA 1982
## 9598 France FR FRA 1983
## 9599 France FR FRA 1984
## 9600 France FR FRA 1985
## 9601 France FR FRA 1986
## 9602 France FR FRA 1987
## 9603 France FR FRA 1988
## 9604 France FR FRA 1989
## 9605 France FR FRA 1990
## 9606 France FR FRA 1991
## 9607 France FR FRA 1992
## 9608 France FR FRA 1993
## 9609 France FR FRA 1994
## 9610 France FR FRA 1995
## 9611 France FR FRA 1996
## 9612 France FR FRA 1997
## 9613 France FR FRA 1998
## 9614 France FR FRA 1999
## 9615 France FR FRA 2000
## 9616 France FR FRA 2001
## 9617 France FR FRA 2002
## 9618 France FR FRA 2003
## 9619 France FR FRA 2004
## 9620 France FR FRA 2005
## 9621 France FR FRA 2006
## 9622 France FR FRA 2007
## 9623 France FR FRA 2008
## 9624 France FR FRA 2009
## 9625 France FR FRA 2010
## 9626 France FR FRA 2011
## 9627 France FR FRA 2012
## 9628 France FR FRA 2013
## 9629 French Polynesia PF PYF 1980
## 9630 French Polynesia PF PYF 1981
## 9631 French Polynesia PF PYF 1982
## 9632 French Polynesia PF PYF 1983
## 9633 French Polynesia PF PYF 1984
## 9634 French Polynesia PF PYF 1985
## 9635 French Polynesia PF PYF 1986
## 9636 French Polynesia PF PYF 1987
## 9637 French Polynesia PF PYF 1988
## 9638 French Polynesia PF PYF 1989
## 9639 French Polynesia PF PYF 1990
## 9640 French Polynesia PF PYF 1991
## 9641 French Polynesia PF PYF 1992
## 9642 French Polynesia PF PYF 1993
## 9643 French Polynesia PF PYF 1994
## 9644 French Polynesia PF PYF 1995
## 9645 French Polynesia PF PYF 1996
## 9646 French Polynesia PF PYF 1997
## 9647 French Polynesia PF PYF 1998
## 9648 French Polynesia PF PYF 1999
## 9649 French Polynesia PF PYF 2000
## 9650 French Polynesia PF PYF 2001
## 9651 French Polynesia PF PYF 2002
## 9652 French Polynesia PF PYF 2003
## 9653 French Polynesia PF PYF 2004
## 9654 French Polynesia PF PYF 2005
## 9655 French Polynesia PF PYF 2006
## 9656 French Polynesia PF PYF 2007
## 9657 French Polynesia PF PYF 2008
## 9658 French Polynesia PF PYF 2009
## 9659 French Polynesia PF PYF 2010
## 9660 French Polynesia PF PYF 2011
## 9661 French Polynesia PF PYF 2012
## 9662 French Polynesia PF PYF 2013
## 9663 Gabon GA GAB 1980
## 9664 Gabon GA GAB 1981
## 9665 Gabon GA GAB 1982
## 9666 Gabon GA GAB 1983
## 9667 Gabon GA GAB 1984
## 9668 Gabon GA GAB 1985
## 9669 Gabon GA GAB 1986
## 9670 Gabon GA GAB 1987
## 9671 Gabon GA GAB 1988
## 9672 Gabon GA GAB 1989
## 9673 Gabon GA GAB 1990
## 9674 Gabon GA GAB 1991
## 9675 Gabon GA GAB 1992
## 9676 Gabon GA GAB 1993
## 9677 Gabon GA GAB 1994
## 9678 Gabon GA GAB 1995
## 9679 Gabon GA GAB 1996
## 9680 Gabon GA GAB 1997
## 9681 Gabon GA GAB 1998
## 9682 Gabon GA GAB 1999
## 9683 Gabon GA GAB 2000
## 9684 Gabon GA GAB 2001
## 9685 Gabon GA GAB 2002
## 9686 Gabon GA GAB 2003
## 9687 Gabon GA GAB 2004
## 9688 Gabon GA GAB 2005
## 9689 Gabon GA GAB 2006
## 9690 Gabon GA GAB 2007
## 9691 Gabon GA GAB 2008
## 9692 Gabon GA GAB 2009
## 9693 Gabon GA GAB 2010
## 9694 Gabon GA GAB 2011
## 9695 Gabon GA GAB 2012
## 9696 Gabon GA GAB 2013
## 9697 Gambia GM GMB 1980
## 9698 Gambia GM GMB 1981
## 9699 Gambia GM GMB 1982
## 9700 Gambia GM GMB 1983
## 9701 Gambia GM GMB 1984
## 9702 Gambia GM GMB 1985
## 9703 Gambia GM GMB 1986
## 9704 Gambia GM GMB 1987
## 9705 Gambia GM GMB 1988
## 9706 Gambia GM GMB 1989
## 9707 Gambia GM GMB 1990
## 9708 Gambia GM GMB 1991
## 9709 Gambia GM GMB 1992
## 9710 Gambia GM GMB 1993
## 9711 Gambia GM GMB 1994
## 9712 Gambia GM GMB 1995
## 9713 Gambia GM GMB 1996
## 9714 Gambia GM GMB 1997
## 9715 Gambia GM GMB 1998
## 9716 Gambia GM GMB 1999
## 9717 Gambia GM GMB 2000
## 9718 Gambia GM GMB 2001
## 9719 Gambia GM GMB 2002
## 9720 Gambia GM GMB 2003
## 9721 Gambia GM GMB 2004
## 9722 Gambia GM GMB 2005
## 9723 Gambia GM GMB 2006
## 9724 Gambia GM GMB 2007
## 9725 Gambia GM GMB 2008
## 9726 Gambia GM GMB 2009
## 9727 Gambia GM GMB 2010
## 9728 Gambia GM GMB 2011
## 9729 Gambia GM GMB 2012
## 9730 Gambia GM GMB 2013
## 9731 Georgia GE GEO 1980
## 9732 Georgia GE GEO 1981
## 9733 Georgia GE GEO 1982
## 9734 Georgia GE GEO 1983
## 9735 Georgia GE GEO 1984
## 9736 Georgia GE GEO 1985
## 9737 Georgia GE GEO 1986
## 9738 Georgia GE GEO 1987
## 9739 Georgia GE GEO 1988
## 9740 Georgia GE GEO 1989
## 9741 Georgia GE GEO 1990
## 9742 Georgia GE GEO 1991
## 9743 Georgia GE GEO 1992
## 9744 Georgia GE GEO 1993
## 9745 Georgia GE GEO 1994
## 9746 Georgia GE GEO 1995
## 9747 Georgia GE GEO 1996
## 9748 Georgia GE GEO 1997
## 9749 Georgia GE GEO 1998
## 9750 Georgia GE GEO 1999
## 9751 Georgia GE GEO 2000
## 9752 Georgia GE GEO 2001
## 9753 Georgia GE GEO 2002
## 9754 Georgia GE GEO 2003
## 9755 Georgia GE GEO 2004
## 9756 Georgia GE GEO 2005
## 9757 Georgia GE GEO 2006
## 9758 Georgia GE GEO 2007
## 9759 Georgia GE GEO 2008
## 9760 Georgia GE GEO 2009
## 9761 Georgia GE GEO 2010
## 9762 Georgia GE GEO 2011
## 9763 Georgia GE GEO 2012
## 9764 Georgia GE GEO 2013
## 9765 Germany DE DEU 1980
## 9766 Germany DE DEU 1981
## 9767 Germany DE DEU 1982
## 9768 Germany DE DEU 1983
## 9769 Germany DE DEU 1984
## 9770 Germany DE DEU 1985
## 9771 Germany DE DEU 1986
## 9772 Germany DE DEU 1987
## 9773 Germany DE DEU 1988
## 9774 Germany DE DEU 1989
## 9775 Germany DE DEU 1990
## 9776 Germany DE DEU 1991
## 9777 Germany DE DEU 1992
## 9778 Germany DE DEU 1993
## 9779 Germany DE DEU 1994
## 9780 Germany DE DEU 1995
## 9781 Germany DE DEU 1996
## 9782 Germany DE DEU 1997
## 9783 Germany DE DEU 1998
## 9784 Germany DE DEU 1999
## 9785 Germany DE DEU 2000
## 9786 Germany DE DEU 2001
## 9787 Germany DE DEU 2002
## 9788 Germany DE DEU 2003
## 9789 Germany DE DEU 2004
## 9790 Germany DE DEU 2005
## 9791 Germany DE DEU 2006
## 9792 Germany DE DEU 2007
## 9793 Germany DE DEU 2008
## 9794 Germany DE DEU 2009
## 9795 Germany DE DEU 2010
## 9796 Germany DE DEU 2011
## 9797 Germany DE DEU 2012
## 9798 Germany DE DEU 2013
## 9799 Ghana GH GHA 1980
## 9800 Ghana GH GHA 1981
## 9801 Ghana GH GHA 1982
## 9802 Ghana GH GHA 1983
## 9803 Ghana GH GHA 1984
## 9804 Ghana GH GHA 1985
## 9805 Ghana GH GHA 1986
## 9806 Ghana GH GHA 1987
## 9807 Ghana GH GHA 1988
## 9808 Ghana GH GHA 1989
## 9809 Ghana GH GHA 1990
## 9810 Ghana GH GHA 1991
## 9811 Ghana GH GHA 1992
## 9812 Ghana GH GHA 1993
## 9813 Ghana GH GHA 1994
## 9814 Ghana GH GHA 1995
## 9815 Ghana GH GHA 1996
## 9816 Ghana GH GHA 1997
## 9817 Ghana GH GHA 1998
## 9818 Ghana GH GHA 1999
## 9819 Ghana GH GHA 2000
## 9820 Ghana GH GHA 2001
## 9821 Ghana GH GHA 2002
## 9822 Ghana GH GHA 2003
## 9823 Ghana GH GHA 2004
## 9824 Ghana GH GHA 2005
## 9825 Ghana GH GHA 2006
## 9826 Ghana GH GHA 2007
## 9827 Ghana GH GHA 2008
## 9828 Ghana GH GHA 2009
## 9829 Ghana GH GHA 2010
## 9830 Ghana GH GHA 2011
## 9831 Ghana GH GHA 2012
## 9832 Ghana GH GHA 2013
## 9833 Greece GR GRC 1980
## 9834 Greece GR GRC 1981
## 9835 Greece GR GRC 1982
## 9836 Greece GR GRC 1983
## 9837 Greece GR GRC 1984
## 9838 Greece GR GRC 1985
## 9839 Greece GR GRC 1986
## 9840 Greece GR GRC 1987
## 9841 Greece GR GRC 1988
## 9842 Greece GR GRC 1989
## 9843 Greece GR GRC 1990
## 9844 Greece GR GRC 1991
## 9845 Greece GR GRC 1992
## 9846 Greece GR GRC 1993
## 9847 Greece GR GRC 1994
## 9848 Greece GR GRC 1995
## 9849 Greece GR GRC 1996
## 9850 Greece GR GRC 1997
## 9851 Greece GR GRC 1998
## 9852 Greece GR GRC 1999
## 9853 Greece GR GRC 2000
## 9854 Greece GR GRC 2001
## 9855 Greece GR GRC 2002
## 9856 Greece GR GRC 2003
## 9857 Greece GR GRC 2004
## 9858 Greece GR GRC 2005
## 9859 Greece GR GRC 2006
## 9860 Greece GR GRC 2007
## 9861 Greece GR GRC 2008
## 9862 Greece GR GRC 2009
## 9863 Greece GR GRC 2010
## 9864 Greece GR GRC 2011
## 9865 Greece GR GRC 2012
## 9866 Greece GR GRC 2013
## 9867 Greenland GL GRL 1980
## 9868 Greenland GL GRL 1981
## 9869 Greenland GL GRL 1982
## 9870 Greenland GL GRL 1983
## 9871 Greenland GL GRL 1984
## 9872 Greenland GL GRL 1985
## 9873 Greenland GL GRL 1986
## 9874 Greenland GL GRL 1987
## 9875 Greenland GL GRL 1988
## 9876 Greenland GL GRL 1989
## 9877 Greenland GL GRL 1990
## 9878 Greenland GL GRL 1991
## 9879 Greenland GL GRL 1992
## 9880 Greenland GL GRL 1993
## 9881 Greenland GL GRL 1994
## 9882 Greenland GL GRL 1995
## 9883 Greenland GL GRL 1996
## 9884 Greenland GL GRL 1997
## 9885 Greenland GL GRL 1998
## 9886 Greenland GL GRL 1999
## 9887 Greenland GL GRL 2000
## 9888 Greenland GL GRL 2001
## 9889 Greenland GL GRL 2002
## 9890 Greenland GL GRL 2003
## 9891 Greenland GL GRL 2004
## 9892 Greenland GL GRL 2005
## 9893 Greenland GL GRL 2006
## 9894 Greenland GL GRL 2007
## 9895 Greenland GL GRL 2008
## 9896 Greenland GL GRL 2009
## 9897 Greenland GL GRL 2010
## 9898 Greenland GL GRL 2011
## 9899 Greenland GL GRL 2012
## 9900 Greenland GL GRL 2013
## 9901 Grenada GD GRD 1980
## 9902 Grenada GD GRD 1981
## 9903 Grenada GD GRD 1982
## 9904 Grenada GD GRD 1983
## 9905 Grenada GD GRD 1984
## 9906 Grenada GD GRD 1985
## 9907 Grenada GD GRD 1986
## 9908 Grenada GD GRD 1987
## 9909 Grenada GD GRD 1988
## 9910 Grenada GD GRD 1989
## 9911 Grenada GD GRD 1990
## 9912 Grenada GD GRD 1991
## 9913 Grenada GD GRD 1992
## 9914 Grenada GD GRD 1993
## 9915 Grenada GD GRD 1994
## 9916 Grenada GD GRD 1995
## 9917 Grenada GD GRD 1996
## 9918 Grenada GD GRD 1997
## 9919 Grenada GD GRD 1998
## 9920 Grenada GD GRD 1999
## 9921 Grenada GD GRD 2000
## 9922 Grenada GD GRD 2001
## 9923 Grenada GD GRD 2002
## 9924 Grenada GD GRD 2003
## 9925 Grenada GD GRD 2004
## 9926 Grenada GD GRD 2005
## 9927 Grenada GD GRD 2006
## 9928 Grenada GD GRD 2007
## 9929 Grenada GD GRD 2008
## 9930 Grenada GD GRD 2009
## 9931 Grenada GD GRD 2010
## 9932 Grenada GD GRD 2011
## 9933 Grenada GD GRD 2012
## 9934 Grenada GD GRD 2013
## 9935 Guam GU GUM 1980
## 9936 Guam GU GUM 1981
## 9937 Guam GU GUM 1982
## 9938 Guam GU GUM 1983
## 9939 Guam GU GUM 1984
## 9940 Guam GU GUM 1985
## 9941 Guam GU GUM 1986
## 9942 Guam GU GUM 1987
## 9943 Guam GU GUM 1988
## 9944 Guam GU GUM 1989
## 9945 Guam GU GUM 1990
## 9946 Guam GU GUM 1991
## 9947 Guam GU GUM 1992
## 9948 Guam GU GUM 1993
## 9949 Guam GU GUM 1994
## 9950 Guam GU GUM 1995
## 9951 Guam GU GUM 1996
## 9952 Guam GU GUM 1997
## 9953 Guam GU GUM 1998
## 9954 Guam GU GUM 1999
## 9955 Guam GU GUM 2000
## 9956 Guam GU GUM 2001
## 9957 Guam GU GUM 2002
## 9958 Guam GU GUM 2003
## 9959 Guam GU GUM 2004
## 9960 Guam GU GUM 2005
## 9961 Guam GU GUM 2006
## 9962 Guam GU GUM 2007
## 9963 Guam GU GUM 2008
## 9964 Guam GU GUM 2009
## 9965 Guam GU GUM 2010
## 9966 Guam GU GUM 2011
## 9967 Guam GU GUM 2012
## 9968 Guam GU GUM 2013
## 9969 Guatemala GT GTM 1980
## 9970 Guatemala GT GTM 1981
## 9971 Guatemala GT GTM 1982
## 9972 Guatemala GT GTM 1983
## 9973 Guatemala GT GTM 1984
## 9974 Guatemala GT GTM 1985
## 9975 Guatemala GT GTM 1986
## 9976 Guatemala GT GTM 1987
## 9977 Guatemala GT GTM 1988
## 9978 Guatemala GT GTM 1989
## 9979 Guatemala GT GTM 1990
## 9980 Guatemala GT GTM 1991
## 9981 Guatemala GT GTM 1992
## 9982 Guatemala GT GTM 1993
## 9983 Guatemala GT GTM 1994
## 9984 Guatemala GT GTM 1995
## 9985 Guatemala GT GTM 1996
## 9986 Guatemala GT GTM 1997
## 9987 Guatemala GT GTM 1998
## 9988 Guatemala GT GTM 1999
## 9989 Guatemala GT GTM 2000
## 9990 Guatemala GT GTM 2001
## 9991 Guatemala GT GTM 2002
## 9992 Guatemala GT GTM 2003
## 9993 Guatemala GT GTM 2004
## 9994 Guatemala GT GTM 2005
## 9995 Guatemala GT GTM 2006
## 9996 Guatemala GT GTM 2007
## 9997 Guatemala GT GTM 2008
## 9998 Guatemala GT GTM 2009
## 9999 Guatemala GT GTM 2010
## 10000 Guatemala GT GTM 2011
## 10001 Guatemala GT GTM 2012
## 10002 Guatemala GT GTM 2013
## 10003 Guinea GN GIN 1980
## 10004 Guinea GN GIN 1981
## 10005 Guinea GN GIN 1982
## 10006 Guinea GN GIN 1983
## 10007 Guinea GN GIN 1984
## 10008 Guinea GN GIN 1985
## 10009 Guinea GN GIN 1986
## 10010 Guinea GN GIN 1987
## 10011 Guinea GN GIN 1988
## 10012 Guinea GN GIN 1989
## 10013 Guinea GN GIN 1990
## 10014 Guinea GN GIN 1991
## 10015 Guinea GN GIN 1992
## 10016 Guinea GN GIN 1993
## 10017 Guinea GN GIN 1994
## 10018 Guinea GN GIN 1995
## 10019 Guinea GN GIN 1996
## 10020 Guinea GN GIN 1997
## 10021 Guinea GN GIN 1998
## 10022 Guinea GN GIN 1999
## 10023 Guinea GN GIN 2000
## 10024 Guinea GN GIN 2001
## 10025 Guinea GN GIN 2002
## 10026 Guinea GN GIN 2003
## 10027 Guinea GN GIN 2004
## 10028 Guinea GN GIN 2005
## 10029 Guinea GN GIN 2006
## 10030 Guinea GN GIN 2007
## 10031 Guinea GN GIN 2008
## 10032 Guinea GN GIN 2009
## 10033 Guinea GN GIN 2010
## 10034 Guinea GN GIN 2011
## 10035 Guinea GN GIN 2012
## 10036 Guinea GN GIN 2013
## 10037 Guinea-Bissau GW GNB 1980
## 10038 Guinea-Bissau GW GNB 1981
## 10039 Guinea-Bissau GW GNB 1982
## 10040 Guinea-Bissau GW GNB 1983
## 10041 Guinea-Bissau GW GNB 1984
## 10042 Guinea-Bissau GW GNB 1985
## 10043 Guinea-Bissau GW GNB 1986
## 10044 Guinea-Bissau GW GNB 1987
## 10045 Guinea-Bissau GW GNB 1988
## 10046 Guinea-Bissau GW GNB 1989
## 10047 Guinea-Bissau GW GNB 1990
## 10048 Guinea-Bissau GW GNB 1991
## 10049 Guinea-Bissau GW GNB 1992
## 10050 Guinea-Bissau GW GNB 1993
## 10051 Guinea-Bissau GW GNB 1994
## 10052 Guinea-Bissau GW GNB 1995
## 10053 Guinea-Bissau GW GNB 1996
## 10054 Guinea-Bissau GW GNB 1997
## 10055 Guinea-Bissau GW GNB 1998
## 10056 Guinea-Bissau GW GNB 1999
## 10057 Guinea-Bissau GW GNB 2000
## 10058 Guinea-Bissau GW GNB 2001
## 10059 Guinea-Bissau GW GNB 2002
## 10060 Guinea-Bissau GW GNB 2003
## 10061 Guinea-Bissau GW GNB 2004
## 10062 Guinea-Bissau GW GNB 2005
## 10063 Guinea-Bissau GW GNB 2006
## 10064 Guinea-Bissau GW GNB 2007
## 10065 Guinea-Bissau GW GNB 2008
## 10066 Guinea-Bissau GW GNB 2009
## 10067 Guinea-Bissau GW GNB 2010
## 10068 Guinea-Bissau GW GNB 2011
## 10069 Guinea-Bissau GW GNB 2012
## 10070 Guinea-Bissau GW GNB 2013
## 10071 Guyana GY GUY 1980
## 10072 Guyana GY GUY 1981
## 10073 Guyana GY GUY 1982
## 10074 Guyana GY GUY 1983
## 10075 Guyana GY GUY 1984
## 10076 Guyana GY GUY 1985
## 10077 Guyana GY GUY 1986
## 10078 Guyana GY GUY 1987
## 10079 Guyana GY GUY 1988
## 10080 Guyana GY GUY 1989
## 10081 Guyana GY GUY 1990
## 10082 Guyana GY GUY 1991
## 10083 Guyana GY GUY 1992
## 10084 Guyana GY GUY 1993
## 10085 Guyana GY GUY 1994
## 10086 Guyana GY GUY 1995
## 10087 Guyana GY GUY 1996
## 10088 Guyana GY GUY 1997
## 10089 Guyana GY GUY 1998
## 10090 Guyana GY GUY 1999
## 10091 Guyana GY GUY 2000
## 10092 Guyana GY GUY 2001
## 10093 Guyana GY GUY 2002
## 10094 Guyana GY GUY 2003
## 10095 Guyana GY GUY 2004
## 10096 Guyana GY GUY 2005
## 10097 Guyana GY GUY 2006
## 10098 Guyana GY GUY 2007
## 10099 Guyana GY GUY 2008
## 10100 Guyana GY GUY 2009
## 10101 Guyana GY GUY 2010
## 10102 Guyana GY GUY 2011
## 10103 Guyana GY GUY 2012
## 10104 Guyana GY GUY 2013
## 10105 Haiti HT HTI 1980
## 10106 Haiti HT HTI 1981
## 10107 Haiti HT HTI 1982
## 10108 Haiti HT HTI 1983
## 10109 Haiti HT HTI 1984
## 10110 Haiti HT HTI 1985
## 10111 Haiti HT HTI 1986
## 10112 Haiti HT HTI 1987
## 10113 Haiti HT HTI 1988
## 10114 Haiti HT HTI 1989
## 10115 Haiti HT HTI 1990
## 10116 Haiti HT HTI 1991
## 10117 Haiti HT HTI 1992
## 10118 Haiti HT HTI 1993
## 10119 Haiti HT HTI 1994
## 10120 Haiti HT HTI 1995
## 10121 Haiti HT HTI 1996
## 10122 Haiti HT HTI 1997
## 10123 Haiti HT HTI 1998
## 10124 Haiti HT HTI 1999
## 10125 Haiti HT HTI 2000
## 10126 Haiti HT HTI 2001
## 10127 Haiti HT HTI 2002
## 10128 Haiti HT HTI 2003
## 10129 Haiti HT HTI 2004
## 10130 Haiti HT HTI 2005
## 10131 Haiti HT HTI 2006
## 10132 Haiti HT HTI 2007
## 10133 Haiti HT HTI 2008
## 10134 Haiti HT HTI 2009
## 10135 Haiti HT HTI 2010
## 10136 Haiti HT HTI 2011
## 10137 Haiti HT HTI 2012
## 10138 Haiti HT HTI 2013
## 10139 Honduras HN HND 1980
## 10140 Honduras HN HND 1981
## 10141 Honduras HN HND 1982
## 10142 Honduras HN HND 1983
## 10143 Honduras HN HND 1984
## 10144 Honduras HN HND 1985
## 10145 Honduras HN HND 1986
## 10146 Honduras HN HND 1987
## 10147 Honduras HN HND 1988
## 10148 Honduras HN HND 1989
## 10149 Honduras HN HND 1990
## 10150 Honduras HN HND 1991
## 10151 Honduras HN HND 1992
## 10152 Honduras HN HND 1993
## 10153 Honduras HN HND 1994
## 10154 Honduras HN HND 1995
## 10155 Honduras HN HND 1996
## 10156 Honduras HN HND 1997
## 10157 Honduras HN HND 1998
## 10158 Honduras HN HND 1999
## 10159 Honduras HN HND 2000
## 10160 Honduras HN HND 2001
## 10161 Honduras HN HND 2002
## 10162 Honduras HN HND 2003
## 10163 Honduras HN HND 2004
## 10164 Honduras HN HND 2005
## 10165 Honduras HN HND 2006
## 10166 Honduras HN HND 2007
## 10167 Honduras HN HND 2008
## 10168 Honduras HN HND 2009
## 10169 Honduras HN HND 2010
## 10170 Honduras HN HND 2011
## 10171 Honduras HN HND 2012
## 10172 Honduras HN HND 2013
## 10173 Hungary HU HUN 1980
## 10174 Hungary HU HUN 1981
## 10175 Hungary HU HUN 1982
## 10176 Hungary HU HUN 1983
## 10177 Hungary HU HUN 1984
## 10178 Hungary HU HUN 1985
## 10179 Hungary HU HUN 1986
## 10180 Hungary HU HUN 1987
## 10181 Hungary HU HUN 1988
## 10182 Hungary HU HUN 1989
## 10183 Hungary HU HUN 1990
## 10184 Hungary HU HUN 1991
## 10185 Hungary HU HUN 1992
## 10186 Hungary HU HUN 1993
## 10187 Hungary HU HUN 1994
## 10188 Hungary HU HUN 1995
## 10189 Hungary HU HUN 1996
## 10190 Hungary HU HUN 1997
## 10191 Hungary HU HUN 1998
## 10192 Hungary HU HUN 1999
## 10193 Hungary HU HUN 2000
## 10194 Hungary HU HUN 2001
## 10195 Hungary HU HUN 2002
## 10196 Hungary HU HUN 2003
## 10197 Hungary HU HUN 2004
## 10198 Hungary HU HUN 2005
## 10199 Hungary HU HUN 2006
## 10200 Hungary HU HUN 2007
## 10201 Hungary HU HUN 2008
## 10202 Hungary HU HUN 2009
## 10203 Hungary HU HUN 2010
## 10204 Hungary HU HUN 2011
## 10205 Hungary HU HUN 2012
## 10206 Hungary HU HUN 2013
## 10207 Iceland IS ISL 1980
## 10208 Iceland IS ISL 1981
## 10209 Iceland IS ISL 1982
## 10210 Iceland IS ISL 1983
## 10211 Iceland IS ISL 1984
## 10212 Iceland IS ISL 1985
## 10213 Iceland IS ISL 1986
## 10214 Iceland IS ISL 1987
## 10215 Iceland IS ISL 1988
## 10216 Iceland IS ISL 1989
## 10217 Iceland IS ISL 1990
## 10218 Iceland IS ISL 1991
## 10219 Iceland IS ISL 1992
## 10220 Iceland IS ISL 1993
## 10221 Iceland IS ISL 1994
## 10222 Iceland IS ISL 1995
## 10223 Iceland IS ISL 1996
## 10224 Iceland IS ISL 1997
## 10225 Iceland IS ISL 1998
## 10226 Iceland IS ISL 1999
## 10227 Iceland IS ISL 2000
## 10228 Iceland IS ISL 2001
## 10229 Iceland IS ISL 2002
## 10230 Iceland IS ISL 2003
## 10231 Iceland IS ISL 2004
## 10232 Iceland IS ISL 2005
## 10233 Iceland IS ISL 2006
## 10234 Iceland IS ISL 2007
## 10235 Iceland IS ISL 2008
## 10236 Iceland IS ISL 2009
## 10237 Iceland IS ISL 2010
## 10238 Iceland IS ISL 2011
## 10239 Iceland IS ISL 2012
## 10240 Iceland IS ISL 2013
## 10241 India IN IND 1980
## 10242 India IN IND 1981
## 10243 India IN IND 1982
## 10244 India IN IND 1983
## 10245 India IN IND 1984
## 10246 India IN IND 1985
## 10247 India IN IND 1986
## 10248 India IN IND 1987
## 10249 India IN IND 1988
## 10250 India IN IND 1989
## 10251 India IN IND 1990
## 10252 India IN IND 1991
## 10253 India IN IND 1992
## 10254 India IN IND 1993
## 10255 India IN IND 1994
## 10256 India IN IND 1995
## 10257 India IN IND 1996
## 10258 India IN IND 1997
## 10259 India IN IND 1998
## 10260 India IN IND 1999
## 10261 India IN IND 2000
## 10262 India IN IND 2001
## 10263 India IN IND 2002
## 10264 India IN IND 2003
## 10265 India IN IND 2004
## 10266 India IN IND 2005
## 10267 India IN IND 2006
## 10268 India IN IND 2007
## 10269 India IN IND 2008
## 10270 India IN IND 2009
## 10271 India IN IND 2010
## 10272 India IN IND 2011
## 10273 India IN IND 2012
## 10274 India IN IND 2013
## 10275 Indonesia ID IDN 1980
## 10276 Indonesia ID IDN 1981
## 10277 Indonesia ID IDN 1982
## 10278 Indonesia ID IDN 1983
## 10279 Indonesia ID IDN 1984
## 10280 Indonesia ID IDN 1985
## 10281 Indonesia ID IDN 1986
## 10282 Indonesia ID IDN 1987
## 10283 Indonesia ID IDN 1988
## 10284 Indonesia ID IDN 1989
## 10285 Indonesia ID IDN 1990
## 10286 Indonesia ID IDN 1991
## 10287 Indonesia ID IDN 1992
## 10288 Indonesia ID IDN 1993
## 10289 Indonesia ID IDN 1994
## 10290 Indonesia ID IDN 1995
## 10291 Indonesia ID IDN 1996
## 10292 Indonesia ID IDN 1997
## 10293 Indonesia ID IDN 1998
## 10294 Indonesia ID IDN 1999
## 10295 Indonesia ID IDN 2000
## 10296 Indonesia ID IDN 2001
## 10297 Indonesia ID IDN 2002
## 10298 Indonesia ID IDN 2003
## 10299 Indonesia ID IDN 2004
## 10300 Indonesia ID IDN 2005
## 10301 Indonesia ID IDN 2006
## 10302 Indonesia ID IDN 2007
## 10303 Indonesia ID IDN 2008
## 10304 Indonesia ID IDN 2009
## 10305 Indonesia ID IDN 2010
## 10306 Indonesia ID IDN 2011
## 10307 Indonesia ID IDN 2012
## 10308 Indonesia ID IDN 2013
## 10309 Iran (Islamic Republic of) IR IRN 1980
## 10310 Iran (Islamic Republic of) IR IRN 1981
## 10311 Iran (Islamic Republic of) IR IRN 1982
## 10312 Iran (Islamic Republic of) IR IRN 1983
## 10313 Iran (Islamic Republic of) IR IRN 1984
## 10314 Iran (Islamic Republic of) IR IRN 1985
## 10315 Iran (Islamic Republic of) IR IRN 1986
## 10316 Iran (Islamic Republic of) IR IRN 1987
## 10317 Iran (Islamic Republic of) IR IRN 1988
## 10318 Iran (Islamic Republic of) IR IRN 1989
## 10319 Iran (Islamic Republic of) IR IRN 1990
## 10320 Iran (Islamic Republic of) IR IRN 1991
## 10321 Iran (Islamic Republic of) IR IRN 1992
## 10322 Iran (Islamic Republic of) IR IRN 1993
## 10323 Iran (Islamic Republic of) IR IRN 1994
## 10324 Iran (Islamic Republic of) IR IRN 1995
## 10325 Iran (Islamic Republic of) IR IRN 1996
## 10326 Iran (Islamic Republic of) IR IRN 1997
## 10327 Iran (Islamic Republic of) IR IRN 1998
## 10328 Iran (Islamic Republic of) IR IRN 1999
## 10329 Iran (Islamic Republic of) IR IRN 2000
## 10330 Iran (Islamic Republic of) IR IRN 2001
## 10331 Iran (Islamic Republic of) IR IRN 2002
## 10332 Iran (Islamic Republic of) IR IRN 2003
## 10333 Iran (Islamic Republic of) IR IRN 2004
## 10334 Iran (Islamic Republic of) IR IRN 2005
## 10335 Iran (Islamic Republic of) IR IRN 2006
## 10336 Iran (Islamic Republic of) IR IRN 2007
## 10337 Iran (Islamic Republic of) IR IRN 2008
## 10338 Iran (Islamic Republic of) IR IRN 2009
## 10339 Iran (Islamic Republic of) IR IRN 2010
## 10340 Iran (Islamic Republic of) IR IRN 2011
## 10341 Iran (Islamic Republic of) IR IRN 2012
## 10342 Iran (Islamic Republic of) IR IRN 2013
## 10343 Iraq IQ IRQ 1980
## 10344 Iraq IQ IRQ 1981
## 10345 Iraq IQ IRQ 1982
## 10346 Iraq IQ IRQ 1983
## 10347 Iraq IQ IRQ 1984
## 10348 Iraq IQ IRQ 1985
## 10349 Iraq IQ IRQ 1986
## 10350 Iraq IQ IRQ 1987
## 10351 Iraq IQ IRQ 1988
## 10352 Iraq IQ IRQ 1989
## 10353 Iraq IQ IRQ 1990
## 10354 Iraq IQ IRQ 1991
## 10355 Iraq IQ IRQ 1992
## 10356 Iraq IQ IRQ 1993
## 10357 Iraq IQ IRQ 1994
## 10358 Iraq IQ IRQ 1995
## 10359 Iraq IQ IRQ 1996
## 10360 Iraq IQ IRQ 1997
## 10361 Iraq IQ IRQ 1998
## 10362 Iraq IQ IRQ 1999
## 10363 Iraq IQ IRQ 2000
## 10364 Iraq IQ IRQ 2001
## 10365 Iraq IQ IRQ 2002
## 10366 Iraq IQ IRQ 2003
## 10367 Iraq IQ IRQ 2004
## 10368 Iraq IQ IRQ 2005
## 10369 Iraq IQ IRQ 2006
## 10370 Iraq IQ IRQ 2007
## 10371 Iraq IQ IRQ 2008
## 10372 Iraq IQ IRQ 2009
## 10373 Iraq IQ IRQ 2010
## 10374 Iraq IQ IRQ 2011
## 10375 Iraq IQ IRQ 2012
## 10376 Iraq IQ IRQ 2013
## 10377 Ireland IE IRL 1980
## 10378 Ireland IE IRL 1981
## 10379 Ireland IE IRL 1982
## 10380 Ireland IE IRL 1983
## 10381 Ireland IE IRL 1984
## 10382 Ireland IE IRL 1985
## 10383 Ireland IE IRL 1986
## 10384 Ireland IE IRL 1987
## 10385 Ireland IE IRL 1988
## 10386 Ireland IE IRL 1989
## 10387 Ireland IE IRL 1990
## 10388 Ireland IE IRL 1991
## 10389 Ireland IE IRL 1992
## 10390 Ireland IE IRL 1993
## 10391 Ireland IE IRL 1994
## 10392 Ireland IE IRL 1995
## 10393 Ireland IE IRL 1996
## 10394 Ireland IE IRL 1997
## 10395 Ireland IE IRL 1998
## 10396 Ireland IE IRL 1999
## 10397 Ireland IE IRL 2000
## 10398 Ireland IE IRL 2001
## 10399 Ireland IE IRL 2002
## 10400 Ireland IE IRL 2003
## 10401 Ireland IE IRL 2004
## 10402 Ireland IE IRL 2005
## 10403 Ireland IE IRL 2006
## 10404 Ireland IE IRL 2007
## 10405 Ireland IE IRL 2008
## 10406 Ireland IE IRL 2009
## 10407 Ireland IE IRL 2010
## 10408 Ireland IE IRL 2011
## 10409 Ireland IE IRL 2012
## 10410 Ireland IE IRL 2013
## 10411 Israel IL ISR 1980
## 10412 Israel IL ISR 1981
## 10413 Israel IL ISR 1982
## 10414 Israel IL ISR 1983
## 10415 Israel IL ISR 1984
## 10416 Israel IL ISR 1985
## 10417 Israel IL ISR 1986
## 10418 Israel IL ISR 1987
## 10419 Israel IL ISR 1988
## 10420 Israel IL ISR 1989
## 10421 Israel IL ISR 1990
## 10422 Israel IL ISR 1991
## 10423 Israel IL ISR 1992
## 10424 Israel IL ISR 1993
## 10425 Israel IL ISR 1994
## 10426 Israel IL ISR 1995
## 10427 Israel IL ISR 1996
## 10428 Israel IL ISR 1997
## 10429 Israel IL ISR 1998
## 10430 Israel IL ISR 1999
## 10431 Israel IL ISR 2000
## 10432 Israel IL ISR 2001
## 10433 Israel IL ISR 2002
## 10434 Israel IL ISR 2003
## 10435 Israel IL ISR 2004
## 10436 Israel IL ISR 2005
## 10437 Israel IL ISR 2006
## 10438 Israel IL ISR 2007
## 10439 Israel IL ISR 2008
## 10440 Israel IL ISR 2009
## 10441 Israel IL ISR 2010
## 10442 Israel IL ISR 2011
## 10443 Israel IL ISR 2012
## 10444 Israel IL ISR 2013
## 10445 Italy IT ITA 1980
## 10446 Italy IT ITA 1981
## 10447 Italy IT ITA 1982
## 10448 Italy IT ITA 1983
## 10449 Italy IT ITA 1984
## 10450 Italy IT ITA 1985
## 10451 Italy IT ITA 1986
## 10452 Italy IT ITA 1987
## 10453 Italy IT ITA 1988
## 10454 Italy IT ITA 1989
## 10455 Italy IT ITA 1990
## 10456 Italy IT ITA 1991
## 10457 Italy IT ITA 1992
## 10458 Italy IT ITA 1993
## 10459 Italy IT ITA 1994
## 10460 Italy IT ITA 1995
## 10461 Italy IT ITA 1996
## 10462 Italy IT ITA 1997
## 10463 Italy IT ITA 1998
## 10464 Italy IT ITA 1999
## 10465 Italy IT ITA 2000
## 10466 Italy IT ITA 2001
## 10467 Italy IT ITA 2002
## 10468 Italy IT ITA 2003
## 10469 Italy IT ITA 2004
## 10470 Italy IT ITA 2005
## 10471 Italy IT ITA 2006
## 10472 Italy IT ITA 2007
## 10473 Italy IT ITA 2008
## 10474 Italy IT ITA 2009
## 10475 Italy IT ITA 2010
## 10476 Italy IT ITA 2011
## 10477 Italy IT ITA 2012
## 10478 Italy IT ITA 2013
## 10479 Jamaica JM JAM 1980
## 10480 Jamaica JM JAM 1981
## 10481 Jamaica JM JAM 1982
## 10482 Jamaica JM JAM 1983
## 10483 Jamaica JM JAM 1984
## 10484 Jamaica JM JAM 1985
## 10485 Jamaica JM JAM 1986
## 10486 Jamaica JM JAM 1987
## 10487 Jamaica JM JAM 1988
## 10488 Jamaica JM JAM 1989
## 10489 Jamaica JM JAM 1990
## 10490 Jamaica JM JAM 1991
## 10491 Jamaica JM JAM 1992
## 10492 Jamaica JM JAM 1993
## 10493 Jamaica JM JAM 1994
## 10494 Jamaica JM JAM 1995
## 10495 Jamaica JM JAM 1996
## 10496 Jamaica JM JAM 1997
## 10497 Jamaica JM JAM 1998
## 10498 Jamaica JM JAM 1999
## 10499 Jamaica JM JAM 2000
## 10500 Jamaica JM JAM 2001
## 10501 Jamaica JM JAM 2002
## 10502 Jamaica JM JAM 2003
## 10503 Jamaica JM JAM 2004
## 10504 Jamaica JM JAM 2005
## 10505 Jamaica JM JAM 2006
## 10506 Jamaica JM JAM 2007
## 10507 Jamaica JM JAM 2008
## 10508 Jamaica JM JAM 2009
## 10509 Jamaica JM JAM 2010
## 10510 Jamaica JM JAM 2011
## 10511 Jamaica JM JAM 2012
## 10512 Jamaica JM JAM 2013
## 10513 Japan JP JPN 1980
## 10514 Japan JP JPN 1981
## 10515 Japan JP JPN 1982
## 10516 Japan JP JPN 1983
## 10517 Japan JP JPN 1984
## 10518 Japan JP JPN 1985
## 10519 Japan JP JPN 1986
## 10520 Japan JP JPN 1987
## 10521 Japan JP JPN 1988
## 10522 Japan JP JPN 1989
## 10523 Japan JP JPN 1990
## 10524 Japan JP JPN 1991
## 10525 Japan JP JPN 1992
## 10526 Japan JP JPN 1993
## 10527 Japan JP JPN 1994
## 10528 Japan JP JPN 1995
## 10529 Japan JP JPN 1996
## 10530 Japan JP JPN 1997
## 10531 Japan JP JPN 1998
## 10532 Japan JP JPN 1999
## 10533 Japan JP JPN 2000
## 10534 Japan JP JPN 2001
## 10535 Japan JP JPN 2002
## 10536 Japan JP JPN 2003
## 10537 Japan JP JPN 2004
## 10538 Japan JP JPN 2005
## 10539 Japan JP JPN 2006
## 10540 Japan JP JPN 2007
## 10541 Japan JP JPN 2008
## 10542 Japan JP JPN 2009
## 10543 Japan JP JPN 2010
## 10544 Japan JP JPN 2011
## 10545 Japan JP JPN 2012
## 10546 Japan JP JPN 2013
## 10547 Jordan JO JOR 1980
## 10548 Jordan JO JOR 1981
## 10549 Jordan JO JOR 1982
## 10550 Jordan JO JOR 1983
## 10551 Jordan JO JOR 1984
## 10552 Jordan JO JOR 1985
## 10553 Jordan JO JOR 1986
## 10554 Jordan JO JOR 1987
## 10555 Jordan JO JOR 1988
## 10556 Jordan JO JOR 1989
## 10557 Jordan JO JOR 1990
## 10558 Jordan JO JOR 1991
## 10559 Jordan JO JOR 1992
## 10560 Jordan JO JOR 1993
## 10561 Jordan JO JOR 1994
## 10562 Jordan JO JOR 1995
## 10563 Jordan JO JOR 1996
## 10564 Jordan JO JOR 1997
## 10565 Jordan JO JOR 1998
## 10566 Jordan JO JOR 1999
## 10567 Jordan JO JOR 2000
## 10568 Jordan JO JOR 2001
## 10569 Jordan JO JOR 2002
## 10570 Jordan JO JOR 2003
## 10571 Jordan JO JOR 2004
## 10572 Jordan JO JOR 2005
## 10573 Jordan JO JOR 2006
## 10574 Jordan JO JOR 2007
## 10575 Jordan JO JOR 2008
## 10576 Jordan JO JOR 2009
## 10577 Jordan JO JOR 2010
## 10578 Jordan JO JOR 2011
## 10579 Jordan JO JOR 2012
## 10580 Jordan JO JOR 2013
## 10581 Kazakhstan KZ KAZ 1980
## 10582 Kazakhstan KZ KAZ 1981
## 10583 Kazakhstan KZ KAZ 1982
## 10584 Kazakhstan KZ KAZ 1983
## 10585 Kazakhstan KZ KAZ 1984
## 10586 Kazakhstan KZ KAZ 1985
## 10587 Kazakhstan KZ KAZ 1986
## 10588 Kazakhstan KZ KAZ 1987
## 10589 Kazakhstan KZ KAZ 1988
## 10590 Kazakhstan KZ KAZ 1989
## 10591 Kazakhstan KZ KAZ 1990
## 10592 Kazakhstan KZ KAZ 1991
## 10593 Kazakhstan KZ KAZ 1992
## 10594 Kazakhstan KZ KAZ 1993
## 10595 Kazakhstan KZ KAZ 1994
## 10596 Kazakhstan KZ KAZ 1995
## 10597 Kazakhstan KZ KAZ 1996
## 10598 Kazakhstan KZ KAZ 1997
## 10599 Kazakhstan KZ KAZ 1998
## 10600 Kazakhstan KZ KAZ 1999
## 10601 Kazakhstan KZ KAZ 2000
## 10602 Kazakhstan KZ KAZ 2001
## 10603 Kazakhstan KZ KAZ 2002
## 10604 Kazakhstan KZ KAZ 2003
## 10605 Kazakhstan KZ KAZ 2004
## 10606 Kazakhstan KZ KAZ 2005
## 10607 Kazakhstan KZ KAZ 2006
## 10608 Kazakhstan KZ KAZ 2007
## 10609 Kazakhstan KZ KAZ 2008
## 10610 Kazakhstan KZ KAZ 2009
## 10611 Kazakhstan KZ KAZ 2010
## 10612 Kazakhstan KZ KAZ 2011
## 10613 Kazakhstan KZ KAZ 2012
## 10614 Kazakhstan KZ KAZ 2013
## 10615 Kenya KE KEN 1980
## 10616 Kenya KE KEN 1981
## 10617 Kenya KE KEN 1982
## 10618 Kenya KE KEN 1983
## 10619 Kenya KE KEN 1984
## 10620 Kenya KE KEN 1985
## 10621 Kenya KE KEN 1986
## 10622 Kenya KE KEN 1987
## 10623 Kenya KE KEN 1988
## 10624 Kenya KE KEN 1989
## 10625 Kenya KE KEN 1990
## 10626 Kenya KE KEN 1991
## 10627 Kenya KE KEN 1992
## 10628 Kenya KE KEN 1993
## 10629 Kenya KE KEN 1994
## 10630 Kenya KE KEN 1995
## 10631 Kenya KE KEN 1996
## 10632 Kenya KE KEN 1997
## 10633 Kenya KE KEN 1998
## 10634 Kenya KE KEN 1999
## 10635 Kenya KE KEN 2000
## 10636 Kenya KE KEN 2001
## 10637 Kenya KE KEN 2002
## 10638 Kenya KE KEN 2003
## 10639 Kenya KE KEN 2004
## 10640 Kenya KE KEN 2005
## 10641 Kenya KE KEN 2006
## 10642 Kenya KE KEN 2007
## 10643 Kenya KE KEN 2008
## 10644 Kenya KE KEN 2009
## 10645 Kenya KE KEN 2010
## 10646 Kenya KE KEN 2011
## 10647 Kenya KE KEN 2012
## 10648 Kenya KE KEN 2013
## 10649 Kiribati KI KIR 1980
## 10650 Kiribati KI KIR 1981
## 10651 Kiribati KI KIR 1982
## 10652 Kiribati KI KIR 1983
## 10653 Kiribati KI KIR 1984
## 10654 Kiribati KI KIR 1985
## 10655 Kiribati KI KIR 1986
## 10656 Kiribati KI KIR 1987
## 10657 Kiribati KI KIR 1988
## 10658 Kiribati KI KIR 1989
## 10659 Kiribati KI KIR 1990
## 10660 Kiribati KI KIR 1991
## 10661 Kiribati KI KIR 1992
## 10662 Kiribati KI KIR 1993
## 10663 Kiribati KI KIR 1994
## 10664 Kiribati KI KIR 1995
## 10665 Kiribati KI KIR 1996
## 10666 Kiribati KI KIR 1997
## 10667 Kiribati KI KIR 1998
## 10668 Kiribati KI KIR 1999
## 10669 Kiribati KI KIR 2000
## 10670 Kiribati KI KIR 2001
## 10671 Kiribati KI KIR 2002
## 10672 Kiribati KI KIR 2003
## 10673 Kiribati KI KIR 2004
## 10674 Kiribati KI KIR 2005
## 10675 Kiribati KI KIR 2006
## 10676 Kiribati KI KIR 2007
## 10677 Kiribati KI KIR 2008
## 10678 Kiribati KI KIR 2009
## 10679 Kiribati KI KIR 2010
## 10680 Kiribati KI KIR 2011
## 10681 Kiribati KI KIR 2012
## 10682 Kiribati KI KIR 2013
## 10683 Kuwait KW KWT 1980
## 10684 Kuwait KW KWT 1981
## 10685 Kuwait KW KWT 1982
## 10686 Kuwait KW KWT 1983
## 10687 Kuwait KW KWT 1984
## 10688 Kuwait KW KWT 1985
## 10689 Kuwait KW KWT 1986
## 10690 Kuwait KW KWT 1987
## 10691 Kuwait KW KWT 1988
## 10692 Kuwait KW KWT 1989
## 10693 Kuwait KW KWT 1990
## 10694 Kuwait KW KWT 1991
## 10695 Kuwait KW KWT 1992
## 10696 Kuwait KW KWT 1993
## 10697 Kuwait KW KWT 1994
## 10698 Kuwait KW KWT 1995
## 10699 Kuwait KW KWT 1996
## 10700 Kuwait KW KWT 1997
## 10701 Kuwait KW KWT 1998
## 10702 Kuwait KW KWT 1999
## 10703 Kuwait KW KWT 2000
## 10704 Kuwait KW KWT 2001
## 10705 Kuwait KW KWT 2002
## 10706 Kuwait KW KWT 2003
## 10707 Kuwait KW KWT 2004
## 10708 Kuwait KW KWT 2005
## 10709 Kuwait KW KWT 2006
## 10710 Kuwait KW KWT 2007
## 10711 Kuwait KW KWT 2008
## 10712 Kuwait KW KWT 2009
## 10713 Kuwait KW KWT 2010
## 10714 Kuwait KW KWT 2011
## 10715 Kuwait KW KWT 2012
## 10716 Kuwait KW KWT 2013
## 10717 Kyrgyzstan KG KGZ 1980
## 10718 Kyrgyzstan KG KGZ 1981
## 10719 Kyrgyzstan KG KGZ 1982
## 10720 Kyrgyzstan KG KGZ 1983
## 10721 Kyrgyzstan KG KGZ 1984
## 10722 Kyrgyzstan KG KGZ 1985
## 10723 Kyrgyzstan KG KGZ 1986
## 10724 Kyrgyzstan KG KGZ 1987
## 10725 Kyrgyzstan KG KGZ 1988
## 10726 Kyrgyzstan KG KGZ 1989
## 10727 Kyrgyzstan KG KGZ 1990
## 10728 Kyrgyzstan KG KGZ 1991
## 10729 Kyrgyzstan KG KGZ 1992
## 10730 Kyrgyzstan KG KGZ 1993
## 10731 Kyrgyzstan KG KGZ 1994
## 10732 Kyrgyzstan KG KGZ 1995
## 10733 Kyrgyzstan KG KGZ 1996
## 10734 Kyrgyzstan KG KGZ 1997
## 10735 Kyrgyzstan KG KGZ 1998
## 10736 Kyrgyzstan KG KGZ 1999
## 10737 Kyrgyzstan KG KGZ 2000
## 10738 Kyrgyzstan KG KGZ 2001
## 10739 Kyrgyzstan KG KGZ 2002
## 10740 Kyrgyzstan KG KGZ 2003
## 10741 Kyrgyzstan KG KGZ 2004
## 10742 Kyrgyzstan KG KGZ 2005
## 10743 Kyrgyzstan KG KGZ 2006
## 10744 Kyrgyzstan KG KGZ 2007
## 10745 Kyrgyzstan KG KGZ 2008
## 10746 Kyrgyzstan KG KGZ 2009
## 10747 Kyrgyzstan KG KGZ 2010
## 10748 Kyrgyzstan KG KGZ 2011
## 10749 Kyrgyzstan KG KGZ 2012
## 10750 Kyrgyzstan KG KGZ 2013
## 10751 Lao People's Democratic Republic LA LAO 1980
## 10752 Lao People's Democratic Republic LA LAO 1981
## 10753 Lao People's Democratic Republic LA LAO 1982
## 10754 Lao People's Democratic Republic LA LAO 1983
## 10755 Lao People's Democratic Republic LA LAO 1984
## 10756 Lao People's Democratic Republic LA LAO 1985
## 10757 Lao People's Democratic Republic LA LAO 1986
## 10758 Lao People's Democratic Republic LA LAO 1987
## 10759 Lao People's Democratic Republic LA LAO 1988
## 10760 Lao People's Democratic Republic LA LAO 1989
## 10761 Lao People's Democratic Republic LA LAO 1990
## 10762 Lao People's Democratic Republic LA LAO 1991
## 10763 Lao People's Democratic Republic LA LAO 1992
## 10764 Lao People's Democratic Republic LA LAO 1993
## 10765 Lao People's Democratic Republic LA LAO 1994
## 10766 Lao People's Democratic Republic LA LAO 1995
## 10767 Lao People's Democratic Republic LA LAO 1996
## 10768 Lao People's Democratic Republic LA LAO 1997
## 10769 Lao People's Democratic Republic LA LAO 1998
## 10770 Lao People's Democratic Republic LA LAO 1999
## 10771 Lao People's Democratic Republic LA LAO 2000
## 10772 Lao People's Democratic Republic LA LAO 2001
## 10773 Lao People's Democratic Republic LA LAO 2002
## 10774 Lao People's Democratic Republic LA LAO 2003
## 10775 Lao People's Democratic Republic LA LAO 2004
## 10776 Lao People's Democratic Republic LA LAO 2005
## 10777 Lao People's Democratic Republic LA LAO 2006
## 10778 Lao People's Democratic Republic LA LAO 2007
## 10779 Lao People's Democratic Republic LA LAO 2008
## 10780 Lao People's Democratic Republic LA LAO 2009
## 10781 Lao People's Democratic Republic LA LAO 2010
## 10782 Lao People's Democratic Republic LA LAO 2011
## 10783 Lao People's Democratic Republic LA LAO 2012
## 10784 Lao People's Democratic Republic LA LAO 2013
## 10785 Latvia LV LVA 1980
## 10786 Latvia LV LVA 1981
## 10787 Latvia LV LVA 1982
## 10788 Latvia LV LVA 1983
## 10789 Latvia LV LVA 1984
## 10790 Latvia LV LVA 1985
## 10791 Latvia LV LVA 1986
## 10792 Latvia LV LVA 1987
## 10793 Latvia LV LVA 1988
## 10794 Latvia LV LVA 1989
## 10795 Latvia LV LVA 1990
## 10796 Latvia LV LVA 1991
## 10797 Latvia LV LVA 1992
## 10798 Latvia LV LVA 1993
## 10799 Latvia LV LVA 1994
## 10800 Latvia LV LVA 1995
## 10801 Latvia LV LVA 1996
## 10802 Latvia LV LVA 1997
## 10803 Latvia LV LVA 1998
## 10804 Latvia LV LVA 1999
## 10805 Latvia LV LVA 2000
## 10806 Latvia LV LVA 2001
## 10807 Latvia LV LVA 2002
## 10808 Latvia LV LVA 2003
## 10809 Latvia LV LVA 2004
## 10810 Latvia LV LVA 2005
## 10811 Latvia LV LVA 2006
## 10812 Latvia LV LVA 2007
## 10813 Latvia LV LVA 2008
## 10814 Latvia LV LVA 2009
## 10815 Latvia LV LVA 2010
## 10816 Latvia LV LVA 2011
## 10817 Latvia LV LVA 2012
## 10818 Latvia LV LVA 2013
## 10819 Lebanon LB LBN 1980
## 10820 Lebanon LB LBN 1981
## 10821 Lebanon LB LBN 1982
## 10822 Lebanon LB LBN 1983
## 10823 Lebanon LB LBN 1984
## 10824 Lebanon LB LBN 1985
## 10825 Lebanon LB LBN 1986
## 10826 Lebanon LB LBN 1987
## 10827 Lebanon LB LBN 1988
## 10828 Lebanon LB LBN 1989
## 10829 Lebanon LB LBN 1990
## 10830 Lebanon LB LBN 1991
## 10831 Lebanon LB LBN 1992
## 10832 Lebanon LB LBN 1993
## 10833 Lebanon LB LBN 1994
## 10834 Lebanon LB LBN 1995
## 10835 Lebanon LB LBN 1996
## 10836 Lebanon LB LBN 1997
## 10837 Lebanon LB LBN 1998
## 10838 Lebanon LB LBN 1999
## 10839 Lebanon LB LBN 2000
## 10840 Lebanon LB LBN 2001
## 10841 Lebanon LB LBN 2002
## 10842 Lebanon LB LBN 2003
## 10843 Lebanon LB LBN 2004
## 10844 Lebanon LB LBN 2005
## 10845 Lebanon LB LBN 2006
## 10846 Lebanon LB LBN 2007
## 10847 Lebanon LB LBN 2008
## 10848 Lebanon LB LBN 2009
## 10849 Lebanon LB LBN 2010
## 10850 Lebanon LB LBN 2011
## 10851 Lebanon LB LBN 2012
## 10852 Lebanon LB LBN 2013
## 10853 Lesotho LS LSO 1980
## 10854 Lesotho LS LSO 1981
## 10855 Lesotho LS LSO 1982
## 10856 Lesotho LS LSO 1983
## 10857 Lesotho LS LSO 1984
## 10858 Lesotho LS LSO 1985
## 10859 Lesotho LS LSO 1986
## 10860 Lesotho LS LSO 1987
## 10861 Lesotho LS LSO 1988
## 10862 Lesotho LS LSO 1989
## 10863 Lesotho LS LSO 1990
## 10864 Lesotho LS LSO 1991
## 10865 Lesotho LS LSO 1992
## 10866 Lesotho LS LSO 1993
## 10867 Lesotho LS LSO 1994
## 10868 Lesotho LS LSO 1995
## 10869 Lesotho LS LSO 1996
## 10870 Lesotho LS LSO 1997
## 10871 Lesotho LS LSO 1998
## 10872 Lesotho LS LSO 1999
## 10873 Lesotho LS LSO 2000
## 10874 Lesotho LS LSO 2001
## 10875 Lesotho LS LSO 2002
## 10876 Lesotho LS LSO 2003
## 10877 Lesotho LS LSO 2004
## 10878 Lesotho LS LSO 2005
## 10879 Lesotho LS LSO 2006
## 10880 Lesotho LS LSO 2007
## 10881 Lesotho LS LSO 2008
## 10882 Lesotho LS LSO 2009
## 10883 Lesotho LS LSO 2010
## 10884 Lesotho LS LSO 2011
## 10885 Lesotho LS LSO 2012
## 10886 Lesotho LS LSO 2013
## 10887 Liberia LR LBR 1980
## 10888 Liberia LR LBR 1981
## 10889 Liberia LR LBR 1982
## 10890 Liberia LR LBR 1983
## 10891 Liberia LR LBR 1984
## 10892 Liberia LR LBR 1985
## 10893 Liberia LR LBR 1986
## 10894 Liberia LR LBR 1987
## 10895 Liberia LR LBR 1988
## 10896 Liberia LR LBR 1989
## 10897 Liberia LR LBR 1990
## 10898 Liberia LR LBR 1991
## 10899 Liberia LR LBR 1992
## 10900 Liberia LR LBR 1993
## 10901 Liberia LR LBR 1994
## 10902 Liberia LR LBR 1995
## 10903 Liberia LR LBR 1996
## 10904 Liberia LR LBR 1997
## 10905 Liberia LR LBR 1998
## 10906 Liberia LR LBR 1999
## 10907 Liberia LR LBR 2000
## 10908 Liberia LR LBR 2001
## 10909 Liberia LR LBR 2002
## 10910 Liberia LR LBR 2003
## 10911 Liberia LR LBR 2004
## 10912 Liberia LR LBR 2005
## 10913 Liberia LR LBR 2006
## 10914 Liberia LR LBR 2007
## 10915 Liberia LR LBR 2008
## 10916 Liberia LR LBR 2009
## 10917 Liberia LR LBR 2010
## 10918 Liberia LR LBR 2011
## 10919 Liberia LR LBR 2012
## 10920 Liberia LR LBR 2013
## 10921 Libya LY LBY 1980
## 10922 Libya LY LBY 1981
## 10923 Libya LY LBY 1982
## 10924 Libya LY LBY 1983
## 10925 Libya LY LBY 1984
## 10926 Libya LY LBY 1985
## 10927 Libya LY LBY 1986
## 10928 Libya LY LBY 1987
## 10929 Libya LY LBY 1988
## 10930 Libya LY LBY 1989
## 10931 Libya LY LBY 1990
## 10932 Libya LY LBY 1991
## 10933 Libya LY LBY 1992
## 10934 Libya LY LBY 1993
## 10935 Libya LY LBY 1994
## 10936 Libya LY LBY 1995
## 10937 Libya LY LBY 1996
## 10938 Libya LY LBY 1997
## 10939 Libya LY LBY 1998
## 10940 Libya LY LBY 1999
## 10941 Libya LY LBY 2000
## 10942 Libya LY LBY 2001
## 10943 Libya LY LBY 2002
## 10944 Libya LY LBY 2003
## 10945 Libya LY LBY 2004
## 10946 Libya LY LBY 2005
## 10947 Libya LY LBY 2006
## 10948 Libya LY LBY 2007
## 10949 Libya LY LBY 2008
## 10950 Libya LY LBY 2009
## 10951 Libya LY LBY 2010
## 10952 Libya LY LBY 2011
## 10953 Libya LY LBY 2012
## 10954 Libya LY LBY 2013
## 10955 Lithuania LT LTU 1980
## 10956 Lithuania LT LTU 1981
## 10957 Lithuania LT LTU 1982
## 10958 Lithuania LT LTU 1983
## 10959 Lithuania LT LTU 1984
## 10960 Lithuania LT LTU 1985
## 10961 Lithuania LT LTU 1986
## 10962 Lithuania LT LTU 1987
## 10963 Lithuania LT LTU 1988
## 10964 Lithuania LT LTU 1989
## 10965 Lithuania LT LTU 1990
## 10966 Lithuania LT LTU 1991
## 10967 Lithuania LT LTU 1992
## 10968 Lithuania LT LTU 1993
## 10969 Lithuania LT LTU 1994
## 10970 Lithuania LT LTU 1995
## 10971 Lithuania LT LTU 1996
## 10972 Lithuania LT LTU 1997
## 10973 Lithuania LT LTU 1998
## 10974 Lithuania LT LTU 1999
## 10975 Lithuania LT LTU 2000
## 10976 Lithuania LT LTU 2001
## 10977 Lithuania LT LTU 2002
## 10978 Lithuania LT LTU 2003
## 10979 Lithuania LT LTU 2004
## 10980 Lithuania LT LTU 2005
## 10981 Lithuania LT LTU 2006
## 10982 Lithuania LT LTU 2007
## 10983 Lithuania LT LTU 2008
## 10984 Lithuania LT LTU 2009
## 10985 Lithuania LT LTU 2010
## 10986 Lithuania LT LTU 2011
## 10987 Lithuania LT LTU 2012
## 10988 Lithuania LT LTU 2013
## 10989 Luxembourg LU LUX 1980
## 10990 Luxembourg LU LUX 1981
## 10991 Luxembourg LU LUX 1982
## 10992 Luxembourg LU LUX 1983
## 10993 Luxembourg LU LUX 1984
## 10994 Luxembourg LU LUX 1985
## 10995 Luxembourg LU LUX 1986
## 10996 Luxembourg LU LUX 1987
## 10997 Luxembourg LU LUX 1988
## 10998 Luxembourg LU LUX 1989
## 10999 Luxembourg LU LUX 1990
## 11000 Luxembourg LU LUX 1991
## 11001 Luxembourg LU LUX 1992
## 11002 Luxembourg LU LUX 1993
## 11003 Luxembourg LU LUX 1994
## 11004 Luxembourg LU LUX 1995
## 11005 Luxembourg LU LUX 1996
## 11006 Luxembourg LU LUX 1997
## 11007 Luxembourg LU LUX 1998
## 11008 Luxembourg LU LUX 1999
## 11009 Luxembourg LU LUX 2000
## 11010 Luxembourg LU LUX 2001
## 11011 Luxembourg LU LUX 2002
## 11012 Luxembourg LU LUX 2003
## 11013 Luxembourg LU LUX 2004
## 11014 Luxembourg LU LUX 2005
## 11015 Luxembourg LU LUX 2006
## 11016 Luxembourg LU LUX 2007
## 11017 Luxembourg LU LUX 2008
## 11018 Luxembourg LU LUX 2009
## 11019 Luxembourg LU LUX 2010
## 11020 Luxembourg LU LUX 2011
## 11021 Luxembourg LU LUX 2012
## 11022 Luxembourg LU LUX 2013
## 11023 Madagascar MG MDG 1980
## 11024 Madagascar MG MDG 1981
## 11025 Madagascar MG MDG 1982
## 11026 Madagascar MG MDG 1983
## 11027 Madagascar MG MDG 1984
## 11028 Madagascar MG MDG 1985
## 11029 Madagascar MG MDG 1986
## 11030 Madagascar MG MDG 1987
## 11031 Madagascar MG MDG 1988
## 11032 Madagascar MG MDG 1989
## 11033 Madagascar MG MDG 1990
## 11034 Madagascar MG MDG 1991
## 11035 Madagascar MG MDG 1992
## 11036 Madagascar MG MDG 1993
## 11037 Madagascar MG MDG 1994
## 11038 Madagascar MG MDG 1995
## 11039 Madagascar MG MDG 1996
## 11040 Madagascar MG MDG 1997
## 11041 Madagascar MG MDG 1998
## 11042 Madagascar MG MDG 1999
## 11043 Madagascar MG MDG 2000
## 11044 Madagascar MG MDG 2001
## 11045 Madagascar MG MDG 2002
## 11046 Madagascar MG MDG 2003
## 11047 Madagascar MG MDG 2004
## 11048 Madagascar MG MDG 2005
## 11049 Madagascar MG MDG 2006
## 11050 Madagascar MG MDG 2007
## 11051 Madagascar MG MDG 2008
## 11052 Madagascar MG MDG 2009
## 11053 Madagascar MG MDG 2010
## 11054 Madagascar MG MDG 2011
## 11055 Madagascar MG MDG 2012
## 11056 Madagascar MG MDG 2013
## 11057 Malawi MW MWI 1980
## 11058 Malawi MW MWI 1981
## 11059 Malawi MW MWI 1982
## 11060 Malawi MW MWI 1983
## 11061 Malawi MW MWI 1984
## 11062 Malawi MW MWI 1985
## 11063 Malawi MW MWI 1986
## 11064 Malawi MW MWI 1987
## 11065 Malawi MW MWI 1988
## 11066 Malawi MW MWI 1989
## 11067 Malawi MW MWI 1990
## 11068 Malawi MW MWI 1991
## 11069 Malawi MW MWI 1992
## 11070 Malawi MW MWI 1993
## 11071 Malawi MW MWI 1994
## 11072 Malawi MW MWI 1995
## 11073 Malawi MW MWI 1996
## 11074 Malawi MW MWI 1997
## 11075 Malawi MW MWI 1998
## 11076 Malawi MW MWI 1999
## 11077 Malawi MW MWI 2000
## 11078 Malawi MW MWI 2001
## 11079 Malawi MW MWI 2002
## 11080 Malawi MW MWI 2003
## 11081 Malawi MW MWI 2004
## 11082 Malawi MW MWI 2005
## 11083 Malawi MW MWI 2006
## 11084 Malawi MW MWI 2007
## 11085 Malawi MW MWI 2008
## 11086 Malawi MW MWI 2009
## 11087 Malawi MW MWI 2010
## 11088 Malawi MW MWI 2011
## 11089 Malawi MW MWI 2012
## 11090 Malawi MW MWI 2013
## 11091 Malaysia MY MYS 1980
## 11092 Malaysia MY MYS 1981
## 11093 Malaysia MY MYS 1982
## 11094 Malaysia MY MYS 1983
## 11095 Malaysia MY MYS 1984
## 11096 Malaysia MY MYS 1985
## 11097 Malaysia MY MYS 1986
## 11098 Malaysia MY MYS 1987
## 11099 Malaysia MY MYS 1988
## 11100 Malaysia MY MYS 1989
## 11101 Malaysia MY MYS 1990
## 11102 Malaysia MY MYS 1991
## 11103 Malaysia MY MYS 1992
## 11104 Malaysia MY MYS 1993
## 11105 Malaysia MY MYS 1994
## 11106 Malaysia MY MYS 1995
## 11107 Malaysia MY MYS 1996
## 11108 Malaysia MY MYS 1997
## 11109 Malaysia MY MYS 1998
## 11110 Malaysia MY MYS 1999
## 11111 Malaysia MY MYS 2000
## 11112 Malaysia MY MYS 2001
## 11113 Malaysia MY MYS 2002
## 11114 Malaysia MY MYS 2003
## 11115 Malaysia MY MYS 2004
## 11116 Malaysia MY MYS 2005
## 11117 Malaysia MY MYS 2006
## 11118 Malaysia MY MYS 2007
## 11119 Malaysia MY MYS 2008
## 11120 Malaysia MY MYS 2009
## 11121 Malaysia MY MYS 2010
## 11122 Malaysia MY MYS 2011
## 11123 Malaysia MY MYS 2012
## 11124 Malaysia MY MYS 2013
## 11125 Maldives MV MDV 1980
## 11126 Maldives MV MDV 1981
## 11127 Maldives MV MDV 1982
## 11128 Maldives MV MDV 1983
## 11129 Maldives MV MDV 1984
## 11130 Maldives MV MDV 1985
## 11131 Maldives MV MDV 1986
## 11132 Maldives MV MDV 1987
## 11133 Maldives MV MDV 1988
## 11134 Maldives MV MDV 1989
## 11135 Maldives MV MDV 1990
## 11136 Maldives MV MDV 1991
## 11137 Maldives MV MDV 1992
## 11138 Maldives MV MDV 1993
## 11139 Maldives MV MDV 1994
## 11140 Maldives MV MDV 1995
## 11141 Maldives MV MDV 1996
## 11142 Maldives MV MDV 1997
## 11143 Maldives MV MDV 1998
## 11144 Maldives MV MDV 1999
## 11145 Maldives MV MDV 2000
## 11146 Maldives MV MDV 2001
## 11147 Maldives MV MDV 2002
## 11148 Maldives MV MDV 2003
## 11149 Maldives MV MDV 2004
## 11150 Maldives MV MDV 2005
## 11151 Maldives MV MDV 2006
## 11152 Maldives MV MDV 2007
## 11153 Maldives MV MDV 2008
## 11154 Maldives MV MDV 2009
## 11155 Maldives MV MDV 2010
## 11156 Maldives MV MDV 2011
## 11157 Maldives MV MDV 2012
## 11158 Maldives MV MDV 2013
## 11159 Mali ML MLI 1980
## 11160 Mali ML MLI 1981
## 11161 Mali ML MLI 1982
## 11162 Mali ML MLI 1983
## 11163 Mali ML MLI 1984
## 11164 Mali ML MLI 1985
## 11165 Mali ML MLI 1986
## 11166 Mali ML MLI 1987
## 11167 Mali ML MLI 1988
## 11168 Mali ML MLI 1989
## 11169 Mali ML MLI 1990
## 11170 Mali ML MLI 1991
## 11171 Mali ML MLI 1992
## 11172 Mali ML MLI 1993
## 11173 Mali ML MLI 1994
## 11174 Mali ML MLI 1995
## 11175 Mali ML MLI 1996
## 11176 Mali ML MLI 1997
## 11177 Mali ML MLI 1998
## 11178 Mali ML MLI 1999
## 11179 Mali ML MLI 2000
## 11180 Mali ML MLI 2001
## 11181 Mali ML MLI 2002
## 11182 Mali ML MLI 2003
## 11183 Mali ML MLI 2004
## 11184 Mali ML MLI 2005
## 11185 Mali ML MLI 2006
## 11186 Mali ML MLI 2007
## 11187 Mali ML MLI 2008
## 11188 Mali ML MLI 2009
## 11189 Mali ML MLI 2010
## 11190 Mali ML MLI 2011
## 11191 Mali ML MLI 2012
## 11192 Mali ML MLI 2013
## 11193 Malta MT MLT 1980
## 11194 Malta MT MLT 1981
## 11195 Malta MT MLT 1982
## 11196 Malta MT MLT 1983
## 11197 Malta MT MLT 1984
## 11198 Malta MT MLT 1985
## 11199 Malta MT MLT 1986
## 11200 Malta MT MLT 1987
## 11201 Malta MT MLT 1988
## 11202 Malta MT MLT 1989
## 11203 Malta MT MLT 1990
## 11204 Malta MT MLT 1991
## 11205 Malta MT MLT 1992
## 11206 Malta MT MLT 1993
## 11207 Malta MT MLT 1994
## 11208 Malta MT MLT 1995
## 11209 Malta MT MLT 1996
## 11210 Malta MT MLT 1997
## 11211 Malta MT MLT 1998
## 11212 Malta MT MLT 1999
## 11213 Malta MT MLT 2000
## 11214 Malta MT MLT 2001
## 11215 Malta MT MLT 2002
## 11216 Malta MT MLT 2003
## 11217 Malta MT MLT 2004
## 11218 Malta MT MLT 2005
## 11219 Malta MT MLT 2006
## 11220 Malta MT MLT 2007
## 11221 Malta MT MLT 2008
## 11222 Malta MT MLT 2009
## 11223 Malta MT MLT 2010
## 11224 Malta MT MLT 2011
## 11225 Malta MT MLT 2012
## 11226 Malta MT MLT 2013
## 11227 Marshall Islands MH MHL 1980
## 11228 Marshall Islands MH MHL 1981
## 11229 Marshall Islands MH MHL 1982
## 11230 Marshall Islands MH MHL 1983
## 11231 Marshall Islands MH MHL 1984
## 11232 Marshall Islands MH MHL 1985
## 11233 Marshall Islands MH MHL 1986
## 11234 Marshall Islands MH MHL 1987
## 11235 Marshall Islands MH MHL 1988
## 11236 Marshall Islands MH MHL 1989
## 11237 Marshall Islands MH MHL 1990
## 11238 Marshall Islands MH MHL 1991
## 11239 Marshall Islands MH MHL 1992
## 11240 Marshall Islands MH MHL 1993
## 11241 Marshall Islands MH MHL 1994
## 11242 Marshall Islands MH MHL 1995
## 11243 Marshall Islands MH MHL 1996
## 11244 Marshall Islands MH MHL 1997
## 11245 Marshall Islands MH MHL 1998
## 11246 Marshall Islands MH MHL 1999
## 11247 Marshall Islands MH MHL 2000
## 11248 Marshall Islands MH MHL 2001
## 11249 Marshall Islands MH MHL 2002
## 11250 Marshall Islands MH MHL 2003
## 11251 Marshall Islands MH MHL 2004
## 11252 Marshall Islands MH MHL 2005
## 11253 Marshall Islands MH MHL 2006
## 11254 Marshall Islands MH MHL 2007
## 11255 Marshall Islands MH MHL 2008
## 11256 Marshall Islands MH MHL 2009
## 11257 Marshall Islands MH MHL 2010
## 11258 Marshall Islands MH MHL 2011
## 11259 Marshall Islands MH MHL 2012
## 11260 Marshall Islands MH MHL 2013
## 11261 Mauritania MR MRT 1980
## 11262 Mauritania MR MRT 1981
## 11263 Mauritania MR MRT 1982
## 11264 Mauritania MR MRT 1983
## 11265 Mauritania MR MRT 1984
## 11266 Mauritania MR MRT 1985
## 11267 Mauritania MR MRT 1986
## 11268 Mauritania MR MRT 1987
## 11269 Mauritania MR MRT 1988
## 11270 Mauritania MR MRT 1989
## 11271 Mauritania MR MRT 1990
## 11272 Mauritania MR MRT 1991
## 11273 Mauritania MR MRT 1992
## 11274 Mauritania MR MRT 1993
## 11275 Mauritania MR MRT 1994
## 11276 Mauritania MR MRT 1995
## 11277 Mauritania MR MRT 1996
## 11278 Mauritania MR MRT 1997
## 11279 Mauritania MR MRT 1998
## 11280 Mauritania MR MRT 1999
## 11281 Mauritania MR MRT 2000
## 11282 Mauritania MR MRT 2001
## 11283 Mauritania MR MRT 2002
## 11284 Mauritania MR MRT 2003
## 11285 Mauritania MR MRT 2004
## 11286 Mauritania MR MRT 2005
## 11287 Mauritania MR MRT 2006
## 11288 Mauritania MR MRT 2007
## 11289 Mauritania MR MRT 2008
## 11290 Mauritania MR MRT 2009
## 11291 Mauritania MR MRT 2010
## 11292 Mauritania MR MRT 2011
## 11293 Mauritania MR MRT 2012
## 11294 Mauritania MR MRT 2013
## 11295 Mauritius MU MUS 1980
## 11296 Mauritius MU MUS 1981
## 11297 Mauritius MU MUS 1982
## 11298 Mauritius MU MUS 1983
## 11299 Mauritius MU MUS 1984
## 11300 Mauritius MU MUS 1985
## 11301 Mauritius MU MUS 1986
## 11302 Mauritius MU MUS 1987
## 11303 Mauritius MU MUS 1988
## 11304 Mauritius MU MUS 1989
## 11305 Mauritius MU MUS 1990
## 11306 Mauritius MU MUS 1991
## 11307 Mauritius MU MUS 1992
## 11308 Mauritius MU MUS 1993
## 11309 Mauritius MU MUS 1994
## 11310 Mauritius MU MUS 1995
## 11311 Mauritius MU MUS 1996
## 11312 Mauritius MU MUS 1997
## 11313 Mauritius MU MUS 1998
## 11314 Mauritius MU MUS 1999
## 11315 Mauritius MU MUS 2000
## 11316 Mauritius MU MUS 2001
## 11317 Mauritius MU MUS 2002
## 11318 Mauritius MU MUS 2003
## 11319 Mauritius MU MUS 2004
## 11320 Mauritius MU MUS 2005
## 11321 Mauritius MU MUS 2006
## 11322 Mauritius MU MUS 2007
## 11323 Mauritius MU MUS 2008
## 11324 Mauritius MU MUS 2009
## 11325 Mauritius MU MUS 2010
## 11326 Mauritius MU MUS 2011
## 11327 Mauritius MU MUS 2012
## 11328 Mauritius MU MUS 2013
## 11329 Mexico MX MEX 1980
## 11330 Mexico MX MEX 1981
## 11331 Mexico MX MEX 1982
## 11332 Mexico MX MEX 1983
## 11333 Mexico MX MEX 1984
## 11334 Mexico MX MEX 1985
## 11335 Mexico MX MEX 1986
## 11336 Mexico MX MEX 1987
## 11337 Mexico MX MEX 1988
## 11338 Mexico MX MEX 1989
## 11339 Mexico MX MEX 1990
## 11340 Mexico MX MEX 1991
## 11341 Mexico MX MEX 1992
## 11342 Mexico MX MEX 1993
## 11343 Mexico MX MEX 1994
## 11344 Mexico MX MEX 1995
## 11345 Mexico MX MEX 1996
## 11346 Mexico MX MEX 1997
## 11347 Mexico MX MEX 1998
## 11348 Mexico MX MEX 1999
## 11349 Mexico MX MEX 2000
## 11350 Mexico MX MEX 2001
## 11351 Mexico MX MEX 2002
## 11352 Mexico MX MEX 2003
## 11353 Mexico MX MEX 2004
## 11354 Mexico MX MEX 2005
## 11355 Mexico MX MEX 2006
## 11356 Mexico MX MEX 2007
## 11357 Mexico MX MEX 2008
## 11358 Mexico MX MEX 2009
## 11359 Mexico MX MEX 2010
## 11360 Mexico MX MEX 2011
## 11361 Mexico MX MEX 2012
## 11362 Mexico MX MEX 2013
## 11363 Micronesia (Federated States of) FM FSM 1980
## 11364 Micronesia (Federated States of) FM FSM 1981
## 11365 Micronesia (Federated States of) FM FSM 1982
## 11366 Micronesia (Federated States of) FM FSM 1983
## 11367 Micronesia (Federated States of) FM FSM 1984
## 11368 Micronesia (Federated States of) FM FSM 1985
## 11369 Micronesia (Federated States of) FM FSM 1986
## 11370 Micronesia (Federated States of) FM FSM 1987
## 11371 Micronesia (Federated States of) FM FSM 1988
## 11372 Micronesia (Federated States of) FM FSM 1989
## 11373 Micronesia (Federated States of) FM FSM 1990
## 11374 Micronesia (Federated States of) FM FSM 1991
## 11375 Micronesia (Federated States of) FM FSM 1992
## 11376 Micronesia (Federated States of) FM FSM 1993
## 11377 Micronesia (Federated States of) FM FSM 1994
## 11378 Micronesia (Federated States of) FM FSM 1995
## 11379 Micronesia (Federated States of) FM FSM 1996
## 11380 Micronesia (Federated States of) FM FSM 1997
## 11381 Micronesia (Federated States of) FM FSM 1998
## 11382 Micronesia (Federated States of) FM FSM 1999
## 11383 Micronesia (Federated States of) FM FSM 2000
## 11384 Micronesia (Federated States of) FM FSM 2001
## 11385 Micronesia (Federated States of) FM FSM 2002
## 11386 Micronesia (Federated States of) FM FSM 2003
## 11387 Micronesia (Federated States of) FM FSM 2004
## 11388 Micronesia (Federated States of) FM FSM 2005
## 11389 Micronesia (Federated States of) FM FSM 2006
## 11390 Micronesia (Federated States of) FM FSM 2007
## 11391 Micronesia (Federated States of) FM FSM 2008
## 11392 Micronesia (Federated States of) FM FSM 2009
## 11393 Micronesia (Federated States of) FM FSM 2010
## 11394 Micronesia (Federated States of) FM FSM 2011
## 11395 Micronesia (Federated States of) FM FSM 2012
## 11396 Micronesia (Federated States of) FM FSM 2013
## 11397 Monaco MC MCO 1980
## 11398 Monaco MC MCO 1981
## 11399 Monaco MC MCO 1982
## 11400 Monaco MC MCO 1983
## 11401 Monaco MC MCO 1984
## 11402 Monaco MC MCO 1985
## 11403 Monaco MC MCO 1986
## 11404 Monaco MC MCO 1987
## 11405 Monaco MC MCO 1988
## 11406 Monaco MC MCO 1989
## 11407 Monaco MC MCO 1990
## 11408 Monaco MC MCO 1991
## 11409 Monaco MC MCO 1992
## 11410 Monaco MC MCO 1993
## 11411 Monaco MC MCO 1994
## 11412 Monaco MC MCO 1995
## 11413 Monaco MC MCO 1996
## 11414 Monaco MC MCO 1997
## 11415 Monaco MC MCO 1998
## 11416 Monaco MC MCO 1999
## 11417 Monaco MC MCO 2000
## 11418 Monaco MC MCO 2001
## 11419 Monaco MC MCO 2002
## 11420 Monaco MC MCO 2003
## 11421 Monaco MC MCO 2004
## 11422 Monaco MC MCO 2005
## 11423 Monaco MC MCO 2006
## 11424 Monaco MC MCO 2007
## 11425 Monaco MC MCO 2008
## 11426 Monaco MC MCO 2009
## 11427 Monaco MC MCO 2010
## 11428 Monaco MC MCO 2011
## 11429 Monaco MC MCO 2012
## 11430 Monaco MC MCO 2013
## 11431 Mongolia MN MNG 1980
## 11432 Mongolia MN MNG 1981
## 11433 Mongolia MN MNG 1982
## 11434 Mongolia MN MNG 1983
## 11435 Mongolia MN MNG 1984
## 11436 Mongolia MN MNG 1985
## 11437 Mongolia MN MNG 1986
## 11438 Mongolia MN MNG 1987
## 11439 Mongolia MN MNG 1988
## 11440 Mongolia MN MNG 1989
## 11441 Mongolia MN MNG 1990
## 11442 Mongolia MN MNG 1991
## 11443 Mongolia MN MNG 1992
## 11444 Mongolia MN MNG 1993
## 11445 Mongolia MN MNG 1994
## 11446 Mongolia MN MNG 1995
## 11447 Mongolia MN MNG 1996
## 11448 Mongolia MN MNG 1997
## 11449 Mongolia MN MNG 1998
## 11450 Mongolia MN MNG 1999
## 11451 Mongolia MN MNG 2000
## 11452 Mongolia MN MNG 2001
## 11453 Mongolia MN MNG 2002
## 11454 Mongolia MN MNG 2003
## 11455 Mongolia MN MNG 2004
## 11456 Mongolia MN MNG 2005
## 11457 Mongolia MN MNG 2006
## 11458 Mongolia MN MNG 2007
## 11459 Mongolia MN MNG 2008
## 11460 Mongolia MN MNG 2009
## 11461 Mongolia MN MNG 2010
## 11462 Mongolia MN MNG 2011
## 11463 Mongolia MN MNG 2012
## 11464 Mongolia MN MNG 2013
## 11465 Montenegro ME MNE 2005
## 11466 Montenegro ME MNE 2006
## 11467 Montenegro ME MNE 2007
## 11468 Montenegro ME MNE 2008
## 11469 Montenegro ME MNE 2009
## 11470 Montenegro ME MNE 2010
## 11471 Montenegro ME MNE 2011
## 11472 Montenegro ME MNE 2012
## 11473 Montenegro ME MNE 2013
## 11474 Montserrat MS MSR 1980
## 11475 Montserrat MS MSR 1981
## 11476 Montserrat MS MSR 1982
## 11477 Montserrat MS MSR 1983
## 11478 Montserrat MS MSR 1984
## 11479 Montserrat MS MSR 1985
## 11480 Montserrat MS MSR 1986
## 11481 Montserrat MS MSR 1987
## 11482 Montserrat MS MSR 1988
## 11483 Montserrat MS MSR 1989
## 11484 Montserrat MS MSR 1990
## 11485 Montserrat MS MSR 1991
## 11486 Montserrat MS MSR 1992
## 11487 Montserrat MS MSR 1993
## 11488 Montserrat MS MSR 1994
## 11489 Montserrat MS MSR 1995
## 11490 Montserrat MS MSR 1996
## 11491 Montserrat MS MSR 1997
## 11492 Montserrat MS MSR 1998
## 11493 Montserrat MS MSR 1999
## 11494 Montserrat MS MSR 2000
## 11495 Montserrat MS MSR 2001
## 11496 Montserrat MS MSR 2002
## 11497 Montserrat MS MSR 2003
## 11498 Montserrat MS MSR 2004
## 11499 Montserrat MS MSR 2005
## 11500 Montserrat MS MSR 2006
## 11501 Montserrat MS MSR 2007
## 11502 Montserrat MS MSR 2008
## 11503 Montserrat MS MSR 2009
## 11504 Montserrat MS MSR 2010
## 11505 Montserrat MS MSR 2011
## 11506 Montserrat MS MSR 2012
## 11507 Montserrat MS MSR 2013
## 11508 Morocco MA MAR 1980
## 11509 Morocco MA MAR 1981
## 11510 Morocco MA MAR 1982
## 11511 Morocco MA MAR 1983
## 11512 Morocco MA MAR 1984
## 11513 Morocco MA MAR 1985
## 11514 Morocco MA MAR 1986
## 11515 Morocco MA MAR 1987
## 11516 Morocco MA MAR 1988
## 11517 Morocco MA MAR 1989
## 11518 Morocco MA MAR 1990
## 11519 Morocco MA MAR 1991
## 11520 Morocco MA MAR 1992
## 11521 Morocco MA MAR 1993
## 11522 Morocco MA MAR 1994
## 11523 Morocco MA MAR 1995
## 11524 Morocco MA MAR 1996
## 11525 Morocco MA MAR 1997
## 11526 Morocco MA MAR 1998
## 11527 Morocco MA MAR 1999
## 11528 Morocco MA MAR 2000
## 11529 Morocco MA MAR 2001
## 11530 Morocco MA MAR 2002
## 11531 Morocco MA MAR 2003
## 11532 Morocco MA MAR 2004
## 11533 Morocco MA MAR 2005
## 11534 Morocco MA MAR 2006
## 11535 Morocco MA MAR 2007
## 11536 Morocco MA MAR 2008
## 11537 Morocco MA MAR 2009
## 11538 Morocco MA MAR 2010
## 11539 Morocco MA MAR 2011
## 11540 Morocco MA MAR 2012
## 11541 Morocco MA MAR 2013
## 11542 Mozambique MZ MOZ 1980
## 11543 Mozambique MZ MOZ 1981
## 11544 Mozambique MZ MOZ 1982
## 11545 Mozambique MZ MOZ 1983
## 11546 Mozambique MZ MOZ 1984
## 11547 Mozambique MZ MOZ 1985
## 11548 Mozambique MZ MOZ 1986
## 11549 Mozambique MZ MOZ 1987
## 11550 Mozambique MZ MOZ 1988
## 11551 Mozambique MZ MOZ 1989
## 11552 Mozambique MZ MOZ 1990
## 11553 Mozambique MZ MOZ 1991
## 11554 Mozambique MZ MOZ 1992
## 11555 Mozambique MZ MOZ 1993
## 11556 Mozambique MZ MOZ 1994
## 11557 Mozambique MZ MOZ 1995
## 11558 Mozambique MZ MOZ 1996
## 11559 Mozambique MZ MOZ 1997
## 11560 Mozambique MZ MOZ 1998
## 11561 Mozambique MZ MOZ 1999
## 11562 Mozambique MZ MOZ 2000
## 11563 Mozambique MZ MOZ 2001
## 11564 Mozambique MZ MOZ 2002
## 11565 Mozambique MZ MOZ 2003
## 11566 Mozambique MZ MOZ 2004
## 11567 Mozambique MZ MOZ 2005
## 11568 Mozambique MZ MOZ 2006
## 11569 Mozambique MZ MOZ 2007
## 11570 Mozambique MZ MOZ 2008
## 11571 Mozambique MZ MOZ 2009
## 11572 Mozambique MZ MOZ 2010
## 11573 Mozambique MZ MOZ 2011
## 11574 Mozambique MZ MOZ 2012
## 11575 Mozambique MZ MOZ 2013
## 11576 Myanmar MM MMR 1980
## 11577 Myanmar MM MMR 1981
## 11578 Myanmar MM MMR 1982
## 11579 Myanmar MM MMR 1983
## 11580 Myanmar MM MMR 1984
## 11581 Myanmar MM MMR 1985
## 11582 Myanmar MM MMR 1986
## 11583 Myanmar MM MMR 1987
## 11584 Myanmar MM MMR 1988
## 11585 Myanmar MM MMR 1989
## 11586 Myanmar MM MMR 1990
## 11587 Myanmar MM MMR 1991
## 11588 Myanmar MM MMR 1992
## 11589 Myanmar MM MMR 1993
## 11590 Myanmar MM MMR 1994
## 11591 Myanmar MM MMR 1995
## 11592 Myanmar MM MMR 1996
## 11593 Myanmar MM MMR 1997
## 11594 Myanmar MM MMR 1998
## 11595 Myanmar MM MMR 1999
## 11596 Myanmar MM MMR 2000
## 11597 Myanmar MM MMR 2001
## 11598 Myanmar MM MMR 2002
## 11599 Myanmar MM MMR 2003
## 11600 Myanmar MM MMR 2004
## 11601 Myanmar MM MMR 2005
## 11602 Myanmar MM MMR 2006
## 11603 Myanmar MM MMR 2007
## 11604 Myanmar MM MMR 2008
## 11605 Myanmar MM MMR 2009
## 11606 Myanmar MM MMR 2010
## 11607 Myanmar MM MMR 2011
## 11608 Myanmar MM MMR 2012
## 11609 Myanmar MM MMR 2013
## 11610 Namibia NA NAM 1980
## 11611 Namibia NA NAM 1981
## 11612 Namibia NA NAM 1982
## 11613 Namibia NA NAM 1983
## 11614 Namibia NA NAM 1984
## 11615 Namibia NA NAM 1985
## 11616 Namibia NA NAM 1986
## 11617 Namibia NA NAM 1987
## 11618 Namibia NA NAM 1988
## 11619 Namibia NA NAM 1989
## 11620 Namibia NA NAM 1990
## 11621 Namibia NA NAM 1991
## 11622 Namibia NA NAM 1992
## 11623 Namibia NA NAM 1993
## 11624 Namibia NA NAM 1994
## 11625 Namibia NA NAM 1995
## 11626 Namibia NA NAM 1996
## 11627 Namibia NA NAM 1997
## 11628 Namibia NA NAM 1998
## 11629 Namibia NA NAM 1999
## 11630 Namibia NA NAM 2000
## 11631 Namibia NA NAM 2001
## 11632 Namibia NA NAM 2002
## 11633 Namibia NA NAM 2003
## 11634 Namibia NA NAM 2004
## 11635 Namibia NA NAM 2005
## 11636 Namibia NA NAM 2006
## 11637 Namibia NA NAM 2007
## 11638 Namibia NA NAM 2008
## 11639 Namibia NA NAM 2009
## 11640 Namibia NA NAM 2010
## 11641 Namibia NA NAM 2011
## 11642 Namibia NA NAM 2012
## 11643 Namibia NA NAM 2013
## 11644 Nauru NR NRU 1980
## 11645 Nauru NR NRU 1981
## 11646 Nauru NR NRU 1982
## 11647 Nauru NR NRU 1983
## 11648 Nauru NR NRU 1984
## 11649 Nauru NR NRU 1985
## 11650 Nauru NR NRU 1986
## 11651 Nauru NR NRU 1987
## 11652 Nauru NR NRU 1988
## 11653 Nauru NR NRU 1989
## 11654 Nauru NR NRU 1990
## 11655 Nauru NR NRU 1991
## 11656 Nauru NR NRU 1992
## 11657 Nauru NR NRU 1993
## 11658 Nauru NR NRU 1994
## 11659 Nauru NR NRU 1995
## 11660 Nauru NR NRU 1996
## 11661 Nauru NR NRU 1997
## 11662 Nauru NR NRU 1998
## 11663 Nauru NR NRU 1999
## 11664 Nauru NR NRU 2000
## 11665 Nauru NR NRU 2001
## 11666 Nauru NR NRU 2002
## 11667 Nauru NR NRU 2003
## 11668 Nauru NR NRU 2004
## 11669 Nauru NR NRU 2005
## 11670 Nauru NR NRU 2006
## 11671 Nauru NR NRU 2007
## 11672 Nauru NR NRU 2008
## 11673 Nauru NR NRU 2009
## 11674 Nauru NR NRU 2010
## 11675 Nauru NR NRU 2011
## 11676 Nauru NR NRU 2012
## 11677 Nauru NR NRU 2013
## 11678 Nepal NP NPL 1980
## 11679 Nepal NP NPL 1981
## 11680 Nepal NP NPL 1982
## 11681 Nepal NP NPL 1983
## 11682 Nepal NP NPL 1984
## 11683 Nepal NP NPL 1985
## 11684 Nepal NP NPL 1986
## 11685 Nepal NP NPL 1987
## 11686 Nepal NP NPL 1988
## 11687 Nepal NP NPL 1989
## 11688 Nepal NP NPL 1990
## 11689 Nepal NP NPL 1991
## 11690 Nepal NP NPL 1992
## 11691 Nepal NP NPL 1993
## 11692 Nepal NP NPL 1994
## 11693 Nepal NP NPL 1995
## 11694 Nepal NP NPL 1996
## 11695 Nepal NP NPL 1997
## 11696 Nepal NP NPL 1998
## 11697 Nepal NP NPL 1999
## 11698 Nepal NP NPL 2000
## 11699 Nepal NP NPL 2001
## 11700 Nepal NP NPL 2002
## 11701 Nepal NP NPL 2003
## 11702 Nepal NP NPL 2004
## 11703 Nepal NP NPL 2005
## 11704 Nepal NP NPL 2006
## 11705 Nepal NP NPL 2007
## 11706 Nepal NP NPL 2008
## 11707 Nepal NP NPL 2009
## 11708 Nepal NP NPL 2010
## 11709 Nepal NP NPL 2011
## 11710 Nepal NP NPL 2012
## 11711 Nepal NP NPL 2013
## 11712 Netherlands NL NLD 1980
## 11713 Netherlands NL NLD 1981
## 11714 Netherlands NL NLD 1982
## 11715 Netherlands NL NLD 1983
## 11716 Netherlands NL NLD 1984
## 11717 Netherlands NL NLD 1985
## 11718 Netherlands NL NLD 1986
## 11719 Netherlands NL NLD 1987
## 11720 Netherlands NL NLD 1988
## 11721 Netherlands NL NLD 1989
## 11722 Netherlands NL NLD 1990
## 11723 Netherlands NL NLD 1991
## 11724 Netherlands NL NLD 1992
## 11725 Netherlands NL NLD 1993
## 11726 Netherlands NL NLD 1994
## 11727 Netherlands NL NLD 1995
## 11728 Netherlands NL NLD 1996
## 11729 Netherlands NL NLD 1997
## 11730 Netherlands NL NLD 1998
## 11731 Netherlands NL NLD 1999
## 11732 Netherlands NL NLD 2000
## 11733 Netherlands NL NLD 2001
## 11734 Netherlands NL NLD 2002
## 11735 Netherlands NL NLD 2003
## 11736 Netherlands NL NLD 2004
## 11737 Netherlands NL NLD 2005
## 11738 Netherlands NL NLD 2006
## 11739 Netherlands NL NLD 2007
## 11740 Netherlands NL NLD 2008
## 11741 Netherlands NL NLD 2009
## 11742 Netherlands NL NLD 2010
## 11743 Netherlands NL NLD 2011
## 11744 Netherlands NL NLD 2012
## 11745 Netherlands NL NLD 2013
## 11746 Netherlands Antilles AN ANT 1980
## 11747 Netherlands Antilles AN ANT 1981
## 11748 Netherlands Antilles AN ANT 1982
## 11749 Netherlands Antilles AN ANT 1983
## 11750 Netherlands Antilles AN ANT 1984
## 11751 Netherlands Antilles AN ANT 1985
## 11752 Netherlands Antilles AN ANT 1986
## 11753 Netherlands Antilles AN ANT 1987
## 11754 Netherlands Antilles AN ANT 1988
## 11755 Netherlands Antilles AN ANT 1989
## 11756 Netherlands Antilles AN ANT 1990
## 11757 Netherlands Antilles AN ANT 1991
## 11758 Netherlands Antilles AN ANT 1992
## 11759 Netherlands Antilles AN ANT 1993
## 11760 Netherlands Antilles AN ANT 1994
## 11761 Netherlands Antilles AN ANT 1995
## 11762 Netherlands Antilles AN ANT 1996
## 11763 Netherlands Antilles AN ANT 1997
## 11764 Netherlands Antilles AN ANT 1998
## 11765 Netherlands Antilles AN ANT 1999
## 11766 Netherlands Antilles AN ANT 2000
## 11767 Netherlands Antilles AN ANT 2001
## 11768 Netherlands Antilles AN ANT 2002
## 11769 Netherlands Antilles AN ANT 2003
## 11770 Netherlands Antilles AN ANT 2004
## 11771 Netherlands Antilles AN ANT 2005
## 11772 Netherlands Antilles AN ANT 2006
## 11773 Netherlands Antilles AN ANT 2007
## 11774 Netherlands Antilles AN ANT 2008
## 11775 Netherlands Antilles AN ANT 2009
## 11776 New Caledonia NC NCL 1980
## 11777 New Caledonia NC NCL 1981
## 11778 New Caledonia NC NCL 1982
## 11779 New Caledonia NC NCL 1983
## 11780 New Caledonia NC NCL 1984
## 11781 New Caledonia NC NCL 1985
## 11782 New Caledonia NC NCL 1986
## 11783 New Caledonia NC NCL 1987
## 11784 New Caledonia NC NCL 1988
## 11785 New Caledonia NC NCL 1989
## 11786 New Caledonia NC NCL 1990
## 11787 New Caledonia NC NCL 1991
## 11788 New Caledonia NC NCL 1992
## 11789 New Caledonia NC NCL 1993
## 11790 New Caledonia NC NCL 1994
## 11791 New Caledonia NC NCL 1995
## 11792 New Caledonia NC NCL 1996
## 11793 New Caledonia NC NCL 1997
## 11794 New Caledonia NC NCL 1998
## 11795 New Caledonia NC NCL 1999
## 11796 New Caledonia NC NCL 2000
## 11797 New Caledonia NC NCL 2001
## 11798 New Caledonia NC NCL 2002
## 11799 New Caledonia NC NCL 2003
## 11800 New Caledonia NC NCL 2004
## 11801 New Caledonia NC NCL 2005
## 11802 New Caledonia NC NCL 2006
## 11803 New Caledonia NC NCL 2007
## 11804 New Caledonia NC NCL 2008
## 11805 New Caledonia NC NCL 2009
## 11806 New Caledonia NC NCL 2010
## 11807 New Caledonia NC NCL 2011
## 11808 New Caledonia NC NCL 2012
## 11809 New Caledonia NC NCL 2013
## 11810 New Zealand NZ NZL 1980
## 11811 New Zealand NZ NZL 1981
## 11812 New Zealand NZ NZL 1982
## 11813 New Zealand NZ NZL 1983
## 11814 New Zealand NZ NZL 1984
## 11815 New Zealand NZ NZL 1985
## 11816 New Zealand NZ NZL 1986
## 11817 New Zealand NZ NZL 1987
## 11818 New Zealand NZ NZL 1988
## 11819 New Zealand NZ NZL 1989
## 11820 New Zealand NZ NZL 1990
## 11821 New Zealand NZ NZL 1991
## 11822 New Zealand NZ NZL 1992
## 11823 New Zealand NZ NZL 1993
## 11824 New Zealand NZ NZL 1994
## 11825 New Zealand NZ NZL 1995
## 11826 New Zealand NZ NZL 1996
## 11827 New Zealand NZ NZL 1997
## 11828 New Zealand NZ NZL 1998
## 11829 New Zealand NZ NZL 1999
## 11830 New Zealand NZ NZL 2000
## 11831 New Zealand NZ NZL 2001
## 11832 New Zealand NZ NZL 2002
## 11833 New Zealand NZ NZL 2003
## 11834 New Zealand NZ NZL 2004
## 11835 New Zealand NZ NZL 2005
## 11836 New Zealand NZ NZL 2006
## 11837 New Zealand NZ NZL 2007
## 11838 New Zealand NZ NZL 2008
## 11839 New Zealand NZ NZL 2009
## 11840 New Zealand NZ NZL 2010
## 11841 New Zealand NZ NZL 2011
## 11842 New Zealand NZ NZL 2012
## 11843 New Zealand NZ NZL 2013
## 11844 Nicaragua NI NIC 1980
## 11845 Nicaragua NI NIC 1981
## 11846 Nicaragua NI NIC 1982
## 11847 Nicaragua NI NIC 1983
## 11848 Nicaragua NI NIC 1984
## 11849 Nicaragua NI NIC 1985
## 11850 Nicaragua NI NIC 1986
## 11851 Nicaragua NI NIC 1987
## 11852 Nicaragua NI NIC 1988
## 11853 Nicaragua NI NIC 1989
## 11854 Nicaragua NI NIC 1990
## 11855 Nicaragua NI NIC 1991
## 11856 Nicaragua NI NIC 1992
## 11857 Nicaragua NI NIC 1993
## 11858 Nicaragua NI NIC 1994
## 11859 Nicaragua NI NIC 1995
## 11860 Nicaragua NI NIC 1996
## 11861 Nicaragua NI NIC 1997
## 11862 Nicaragua NI NIC 1998
## 11863 Nicaragua NI NIC 1999
## 11864 Nicaragua NI NIC 2000
## 11865 Nicaragua NI NIC 2001
## 11866 Nicaragua NI NIC 2002
## 11867 Nicaragua NI NIC 2003
## 11868 Nicaragua NI NIC 2004
## 11869 Nicaragua NI NIC 2005
## 11870 Nicaragua NI NIC 2006
## 11871 Nicaragua NI NIC 2007
## 11872 Nicaragua NI NIC 2008
## 11873 Nicaragua NI NIC 2009
## 11874 Nicaragua NI NIC 2010
## 11875 Nicaragua NI NIC 2011
## 11876 Nicaragua NI NIC 2012
## 11877 Nicaragua NI NIC 2013
## 11878 Niger NE NER 1980
## 11879 Niger NE NER 1981
## 11880 Niger NE NER 1982
## 11881 Niger NE NER 1983
## 11882 Niger NE NER 1984
## 11883 Niger NE NER 1985
## 11884 Niger NE NER 1986
## 11885 Niger NE NER 1987
## 11886 Niger NE NER 1988
## 11887 Niger NE NER 1989
## 11888 Niger NE NER 1990
## 11889 Niger NE NER 1991
## 11890 Niger NE NER 1992
## 11891 Niger NE NER 1993
## 11892 Niger NE NER 1994
## 11893 Niger NE NER 1995
## 11894 Niger NE NER 1996
## 11895 Niger NE NER 1997
## 11896 Niger NE NER 1998
## 11897 Niger NE NER 1999
## 11898 Niger NE NER 2000
## 11899 Niger NE NER 2001
## 11900 Niger NE NER 2002
## 11901 Niger NE NER 2003
## 11902 Niger NE NER 2004
## 11903 Niger NE NER 2005
## 11904 Niger NE NER 2006
## 11905 Niger NE NER 2007
## 11906 Niger NE NER 2008
## 11907 Niger NE NER 2009
## 11908 Niger NE NER 2010
## 11909 Niger NE NER 2011
## 11910 Niger NE NER 2012
## 11911 Niger NE NER 2013
## 11912 Nigeria NG NGA 1980
## 11913 Nigeria NG NGA 1981
## 11914 Nigeria NG NGA 1982
## 11915 Nigeria NG NGA 1983
## 11916 Nigeria NG NGA 1984
## 11917 Nigeria NG NGA 1985
## 11918 Nigeria NG NGA 1986
## 11919 Nigeria NG NGA 1987
## 11920 Nigeria NG NGA 1988
## 11921 Nigeria NG NGA 1989
## 11922 Nigeria NG NGA 1990
## 11923 Nigeria NG NGA 1991
## 11924 Nigeria NG NGA 1992
## 11925 Nigeria NG NGA 1993
## 11926 Nigeria NG NGA 1994
## 11927 Nigeria NG NGA 1995
## 11928 Nigeria NG NGA 1996
## 11929 Nigeria NG NGA 1997
## 11930 Nigeria NG NGA 1998
## 11931 Nigeria NG NGA 1999
## 11932 Nigeria NG NGA 2000
## 11933 Nigeria NG NGA 2001
## 11934 Nigeria NG NGA 2002
## 11935 Nigeria NG NGA 2003
## 11936 Nigeria NG NGA 2004
## 11937 Nigeria NG NGA 2005
## 11938 Nigeria NG NGA 2006
## 11939 Nigeria NG NGA 2007
## 11940 Nigeria NG NGA 2008
## 11941 Nigeria NG NGA 2009
## 11942 Nigeria NG NGA 2010
## 11943 Nigeria NG NGA 2011
## 11944 Nigeria NG NGA 2012
## 11945 Nigeria NG NGA 2013
## 11946 Niue NU NIU 1980
## 11947 Niue NU NIU 1981
## 11948 Niue NU NIU 1982
## 11949 Niue NU NIU 1983
## 11950 Niue NU NIU 1984
## 11951 Niue NU NIU 1985
## 11952 Niue NU NIU 1986
## 11953 Niue NU NIU 1987
## 11954 Niue NU NIU 1988
## 11955 Niue NU NIU 1989
## 11956 Niue NU NIU 1990
## 11957 Niue NU NIU 1991
## 11958 Niue NU NIU 1992
## 11959 Niue NU NIU 1993
## 11960 Niue NU NIU 1994
## 11961 Niue NU NIU 1995
## 11962 Niue NU NIU 1996
## 11963 Niue NU NIU 1997
## 11964 Niue NU NIU 1998
## 11965 Niue NU NIU 1999
## 11966 Niue NU NIU 2000
## 11967 Niue NU NIU 2001
## 11968 Niue NU NIU 2002
## 11969 Niue NU NIU 2003
## 11970 Niue NU NIU 2004
## 11971 Niue NU NIU 2005
## 11972 Niue NU NIU 2006
## 11973 Niue NU NIU 2007
## 11974 Niue NU NIU 2008
## 11975 Niue NU NIU 2009
## 11976 Niue NU NIU 2010
## 11977 Niue NU NIU 2011
## 11978 Niue NU NIU 2012
## 11979 Niue NU NIU 2013
## 11980 Northern Mariana Islands MP MNP 1980
## 11981 Northern Mariana Islands MP MNP 1981
## 11982 Northern Mariana Islands MP MNP 1982
## 11983 Northern Mariana Islands MP MNP 1983
## 11984 Northern Mariana Islands MP MNP 1984
## 11985 Northern Mariana Islands MP MNP 1985
## 11986 Northern Mariana Islands MP MNP 1986
## 11987 Northern Mariana Islands MP MNP 1987
## 11988 Northern Mariana Islands MP MNP 1988
## 11989 Northern Mariana Islands MP MNP 1989
## 11990 Northern Mariana Islands MP MNP 1990
## 11991 Northern Mariana Islands MP MNP 1991
## 11992 Northern Mariana Islands MP MNP 1992
## 11993 Northern Mariana Islands MP MNP 1993
## 11994 Northern Mariana Islands MP MNP 1994
## 11995 Northern Mariana Islands MP MNP 1995
## 11996 Northern Mariana Islands MP MNP 1996
## 11997 Northern Mariana Islands MP MNP 1997
## 11998 Northern Mariana Islands MP MNP 1998
## 11999 Northern Mariana Islands MP MNP 1999
## 12000 Northern Mariana Islands MP MNP 2000
## 12001 Northern Mariana Islands MP MNP 2001
## 12002 Northern Mariana Islands MP MNP 2002
## 12003 Northern Mariana Islands MP MNP 2003
## 12004 Northern Mariana Islands MP MNP 2004
## 12005 Northern Mariana Islands MP MNP 2005
## 12006 Northern Mariana Islands MP MNP 2006
## 12007 Northern Mariana Islands MP MNP 2007
## 12008 Northern Mariana Islands MP MNP 2008
## 12009 Northern Mariana Islands MP MNP 2009
## 12010 Northern Mariana Islands MP MNP 2010
## 12011 Northern Mariana Islands MP MNP 2011
## 12012 Northern Mariana Islands MP MNP 2012
## 12013 Northern Mariana Islands MP MNP 2013
## 12014 Norway NO NOR 1980
## 12015 Norway NO NOR 1981
## 12016 Norway NO NOR 1982
## 12017 Norway NO NOR 1983
## 12018 Norway NO NOR 1984
## 12019 Norway NO NOR 1985
## 12020 Norway NO NOR 1986
## 12021 Norway NO NOR 1987
## 12022 Norway NO NOR 1988
## 12023 Norway NO NOR 1989
## 12024 Norway NO NOR 1990
## 12025 Norway NO NOR 1991
## 12026 Norway NO NOR 1992
## 12027 Norway NO NOR 1993
## 12028 Norway NO NOR 1994
## 12029 Norway NO NOR 1995
## 12030 Norway NO NOR 1996
## 12031 Norway NO NOR 1997
## 12032 Norway NO NOR 1998
## 12033 Norway NO NOR 1999
## 12034 Norway NO NOR 2000
## 12035 Norway NO NOR 2001
## 12036 Norway NO NOR 2002
## 12037 Norway NO NOR 2003
## 12038 Norway NO NOR 2004
## 12039 Norway NO NOR 2005
## 12040 Norway NO NOR 2006
## 12041 Norway NO NOR 2007
## 12042 Norway NO NOR 2008
## 12043 Norway NO NOR 2009
## 12044 Norway NO NOR 2010
## 12045 Norway NO NOR 2011
## 12046 Norway NO NOR 2012
## 12047 Norway NO NOR 2013
## 12048 Oman OM OMN 1980
## 12049 Oman OM OMN 1981
## 12050 Oman OM OMN 1982
## 12051 Oman OM OMN 1983
## 12052 Oman OM OMN 1984
## 12053 Oman OM OMN 1985
## 12054 Oman OM OMN 1986
## 12055 Oman OM OMN 1987
## 12056 Oman OM OMN 1988
## 12057 Oman OM OMN 1989
## 12058 Oman OM OMN 1990
## 12059 Oman OM OMN 1991
## 12060 Oman OM OMN 1992
## 12061 Oman OM OMN 1993
## 12062 Oman OM OMN 1994
## 12063 Oman OM OMN 1995
## 12064 Oman OM OMN 1996
## 12065 Oman OM OMN 1997
## 12066 Oman OM OMN 1998
## 12067 Oman OM OMN 1999
## 12068 Oman OM OMN 2000
## 12069 Oman OM OMN 2001
## 12070 Oman OM OMN 2002
## 12071 Oman OM OMN 2003
## 12072 Oman OM OMN 2004
## 12073 Oman OM OMN 2005
## 12074 Oman OM OMN 2006
## 12075 Oman OM OMN 2007
## 12076 Oman OM OMN 2008
## 12077 Oman OM OMN 2009
## 12078 Oman OM OMN 2010
## 12079 Oman OM OMN 2011
## 12080 Oman OM OMN 2012
## 12081 Oman OM OMN 2013
## 12082 Pakistan PK PAK 1980
## 12083 Pakistan PK PAK 1981
## 12084 Pakistan PK PAK 1982
## 12085 Pakistan PK PAK 1983
## 12086 Pakistan PK PAK 1984
## 12087 Pakistan PK PAK 1985
## 12088 Pakistan PK PAK 1986
## 12089 Pakistan PK PAK 1987
## 12090 Pakistan PK PAK 1988
## 12091 Pakistan PK PAK 1989
## 12092 Pakistan PK PAK 1990
## 12093 Pakistan PK PAK 1991
## 12094 Pakistan PK PAK 1992
## 12095 Pakistan PK PAK 1993
## 12096 Pakistan PK PAK 1994
## 12097 Pakistan PK PAK 1995
## 12098 Pakistan PK PAK 1996
## 12099 Pakistan PK PAK 1997
## 12100 Pakistan PK PAK 1998
## 12101 Pakistan PK PAK 1999
## 12102 Pakistan PK PAK 2000
## 12103 Pakistan PK PAK 2001
## 12104 Pakistan PK PAK 2002
## 12105 Pakistan PK PAK 2003
## 12106 Pakistan PK PAK 2004
## 12107 Pakistan PK PAK 2005
## 12108 Pakistan PK PAK 2006
## 12109 Pakistan PK PAK 2007
## 12110 Pakistan PK PAK 2008
## 12111 Pakistan PK PAK 2009
## 12112 Pakistan PK PAK 2010
## 12113 Pakistan PK PAK 2011
## 12114 Pakistan PK PAK 2012
## 12115 Pakistan PK PAK 2013
## 12116 Palau PW PLW 1980
## 12117 Palau PW PLW 1981
## 12118 Palau PW PLW 1982
## 12119 Palau PW PLW 1983
## 12120 Palau PW PLW 1984
## 12121 Palau PW PLW 1985
## 12122 Palau PW PLW 1986
## 12123 Palau PW PLW 1987
## 12124 Palau PW PLW 1988
## 12125 Palau PW PLW 1989
## 12126 Palau PW PLW 1990
## 12127 Palau PW PLW 1991
## 12128 Palau PW PLW 1992
## 12129 Palau PW PLW 1993
## 12130 Palau PW PLW 1994
## 12131 Palau PW PLW 1995
## 12132 Palau PW PLW 1996
## 12133 Palau PW PLW 1997
## 12134 Palau PW PLW 1998
## 12135 Palau PW PLW 1999
## 12136 Palau PW PLW 2000
## 12137 Palau PW PLW 2001
## 12138 Palau PW PLW 2002
## 12139 Palau PW PLW 2003
## 12140 Palau PW PLW 2004
## 12141 Palau PW PLW 2005
## 12142 Palau PW PLW 2006
## 12143 Palau PW PLW 2007
## 12144 Palau PW PLW 2008
## 12145 Palau PW PLW 2009
## 12146 Palau PW PLW 2010
## 12147 Palau PW PLW 2011
## 12148 Palau PW PLW 2012
## 12149 Palau PW PLW 2013
## 12150 Panama PA PAN 1980
## 12151 Panama PA PAN 1981
## 12152 Panama PA PAN 1982
## 12153 Panama PA PAN 1983
## 12154 Panama PA PAN 1984
## 12155 Panama PA PAN 1985
## 12156 Panama PA PAN 1986
## 12157 Panama PA PAN 1987
## 12158 Panama PA PAN 1988
## 12159 Panama PA PAN 1989
## 12160 Panama PA PAN 1990
## 12161 Panama PA PAN 1991
## 12162 Panama PA PAN 1992
## 12163 Panama PA PAN 1993
## 12164 Panama PA PAN 1994
## 12165 Panama PA PAN 1995
## 12166 Panama PA PAN 1996
## 12167 Panama PA PAN 1997
## 12168 Panama PA PAN 1998
## 12169 Panama PA PAN 1999
## 12170 Panama PA PAN 2000
## 12171 Panama PA PAN 2001
## 12172 Panama PA PAN 2002
## 12173 Panama PA PAN 2003
## 12174 Panama PA PAN 2004
## 12175 Panama PA PAN 2005
## 12176 Panama PA PAN 2006
## 12177 Panama PA PAN 2007
## 12178 Panama PA PAN 2008
## 12179 Panama PA PAN 2009
## 12180 Panama PA PAN 2010
## 12181 Panama PA PAN 2011
## 12182 Panama PA PAN 2012
## 12183 Panama PA PAN 2013
## 12184 Papua New Guinea PG PNG 1980
## 12185 Papua New Guinea PG PNG 1981
## 12186 Papua New Guinea PG PNG 1982
## 12187 Papua New Guinea PG PNG 1983
## 12188 Papua New Guinea PG PNG 1984
## 12189 Papua New Guinea PG PNG 1985
## 12190 Papua New Guinea PG PNG 1986
## 12191 Papua New Guinea PG PNG 1987
## 12192 Papua New Guinea PG PNG 1988
## 12193 Papua New Guinea PG PNG 1989
## 12194 Papua New Guinea PG PNG 1990
## 12195 Papua New Guinea PG PNG 1991
## 12196 Papua New Guinea PG PNG 1992
## 12197 Papua New Guinea PG PNG 1993
## 12198 Papua New Guinea PG PNG 1994
## 12199 Papua New Guinea PG PNG 1995
## 12200 Papua New Guinea PG PNG 1996
## 12201 Papua New Guinea PG PNG 1997
## 12202 Papua New Guinea PG PNG 1998
## 12203 Papua New Guinea PG PNG 1999
## 12204 Papua New Guinea PG PNG 2000
## 12205 Papua New Guinea PG PNG 2001
## 12206 Papua New Guinea PG PNG 2002
## 12207 Papua New Guinea PG PNG 2003
## 12208 Papua New Guinea PG PNG 2004
## 12209 Papua New Guinea PG PNG 2005
## 12210 Papua New Guinea PG PNG 2006
## 12211 Papua New Guinea PG PNG 2007
## 12212 Papua New Guinea PG PNG 2008
## 12213 Papua New Guinea PG PNG 2009
## 12214 Papua New Guinea PG PNG 2010
## 12215 Papua New Guinea PG PNG 2011
## 12216 Papua New Guinea PG PNG 2012
## 12217 Papua New Guinea PG PNG 2013
## 12218 Paraguay PY PRY 1980
## 12219 Paraguay PY PRY 1981
## 12220 Paraguay PY PRY 1982
## 12221 Paraguay PY PRY 1983
## 12222 Paraguay PY PRY 1984
## 12223 Paraguay PY PRY 1985
## 12224 Paraguay PY PRY 1986
## 12225 Paraguay PY PRY 1987
## 12226 Paraguay PY PRY 1988
## 12227 Paraguay PY PRY 1989
## 12228 Paraguay PY PRY 1990
## 12229 Paraguay PY PRY 1991
## 12230 Paraguay PY PRY 1992
## 12231 Paraguay PY PRY 1993
## 12232 Paraguay PY PRY 1994
## 12233 Paraguay PY PRY 1995
## 12234 Paraguay PY PRY 1996
## 12235 Paraguay PY PRY 1997
## 12236 Paraguay PY PRY 1998
## 12237 Paraguay PY PRY 1999
## 12238 Paraguay PY PRY 2000
## 12239 Paraguay PY PRY 2001
## 12240 Paraguay PY PRY 2002
## 12241 Paraguay PY PRY 2003
## 12242 Paraguay PY PRY 2004
## 12243 Paraguay PY PRY 2005
## 12244 Paraguay PY PRY 2006
## 12245 Paraguay PY PRY 2007
## 12246 Paraguay PY PRY 2008
## 12247 Paraguay PY PRY 2009
## 12248 Paraguay PY PRY 2010
## 12249 Paraguay PY PRY 2011
## 12250 Paraguay PY PRY 2012
## 12251 Paraguay PY PRY 2013
## 12252 Peru PE PER 1980
## 12253 Peru PE PER 1981
## 12254 Peru PE PER 1982
## 12255 Peru PE PER 1983
## 12256 Peru PE PER 1984
## 12257 Peru PE PER 1985
## 12258 Peru PE PER 1986
## 12259 Peru PE PER 1987
## 12260 Peru PE PER 1988
## 12261 Peru PE PER 1989
## 12262 Peru PE PER 1990
## 12263 Peru PE PER 1991
## 12264 Peru PE PER 1992
## 12265 Peru PE PER 1993
## 12266 Peru PE PER 1994
## 12267 Peru PE PER 1995
## 12268 Peru PE PER 1996
## 12269 Peru PE PER 1997
## 12270 Peru PE PER 1998
## 12271 Peru PE PER 1999
## 12272 Peru PE PER 2000
## 12273 Peru PE PER 2001
## 12274 Peru PE PER 2002
## 12275 Peru PE PER 2003
## 12276 Peru PE PER 2004
## 12277 Peru PE PER 2005
## 12278 Peru PE PER 2006
## 12279 Peru PE PER 2007
## 12280 Peru PE PER 2008
## 12281 Peru PE PER 2009
## 12282 Peru PE PER 2010
## 12283 Peru PE PER 2011
## 12284 Peru PE PER 2012
## 12285 Peru PE PER 2013
## 12286 Philippines PH PHL 1980
## 12287 Philippines PH PHL 1981
## 12288 Philippines PH PHL 1982
## 12289 Philippines PH PHL 1983
## 12290 Philippines PH PHL 1984
## 12291 Philippines PH PHL 1985
## 12292 Philippines PH PHL 1986
## 12293 Philippines PH PHL 1987
## 12294 Philippines PH PHL 1988
## 12295 Philippines PH PHL 1989
## 12296 Philippines PH PHL 1990
## 12297 Philippines PH PHL 1991
## 12298 Philippines PH PHL 1992
## 12299 Philippines PH PHL 1993
## 12300 Philippines PH PHL 1994
## 12301 Philippines PH PHL 1995
## 12302 Philippines PH PHL 1996
## 12303 Philippines PH PHL 1997
## 12304 Philippines PH PHL 1998
## 12305 Philippines PH PHL 1999
## 12306 Philippines PH PHL 2000
## 12307 Philippines PH PHL 2001
## 12308 Philippines PH PHL 2002
## 12309 Philippines PH PHL 2003
## 12310 Philippines PH PHL 2004
## 12311 Philippines PH PHL 2005
## 12312 Philippines PH PHL 2006
## 12313 Philippines PH PHL 2007
## 12314 Philippines PH PHL 2008
## 12315 Philippines PH PHL 2009
## 12316 Philippines PH PHL 2010
## 12317 Philippines PH PHL 2011
## 12318 Philippines PH PHL 2012
## 12319 Philippines PH PHL 2013
## 12320 Poland PL POL 1980
## 12321 Poland PL POL 1981
## 12322 Poland PL POL 1982
## 12323 Poland PL POL 1983
## 12324 Poland PL POL 1984
## 12325 Poland PL POL 1985
## 12326 Poland PL POL 1986
## 12327 Poland PL POL 1987
## 12328 Poland PL POL 1988
## 12329 Poland PL POL 1989
## 12330 Poland PL POL 1990
## 12331 Poland PL POL 1991
## 12332 Poland PL POL 1992
## 12333 Poland PL POL 1993
## 12334 Poland PL POL 1994
## 12335 Poland PL POL 1995
## 12336 Poland PL POL 1996
## 12337 Poland PL POL 1997
## 12338 Poland PL POL 1998
## 12339 Poland PL POL 1999
## 12340 Poland PL POL 2000
## 12341 Poland PL POL 2001
## 12342 Poland PL POL 2002
## 12343 Poland PL POL 2003
## 12344 Poland PL POL 2004
## 12345 Poland PL POL 2005
## 12346 Poland PL POL 2006
## 12347 Poland PL POL 2007
## 12348 Poland PL POL 2008
## 12349 Poland PL POL 2009
## 12350 Poland PL POL 2010
## 12351 Poland PL POL 2011
## 12352 Poland PL POL 2012
## 12353 Poland PL POL 2013
## 12354 Portugal PT PRT 1980
## 12355 Portugal PT PRT 1981
## 12356 Portugal PT PRT 1982
## 12357 Portugal PT PRT 1983
## 12358 Portugal PT PRT 1984
## 12359 Portugal PT PRT 1985
## 12360 Portugal PT PRT 1986
## 12361 Portugal PT PRT 1987
## 12362 Portugal PT PRT 1988
## 12363 Portugal PT PRT 1989
## 12364 Portugal PT PRT 1990
## 12365 Portugal PT PRT 1991
## 12366 Portugal PT PRT 1992
## 12367 Portugal PT PRT 1993
## 12368 Portugal PT PRT 1994
## 12369 Portugal PT PRT 1995
## 12370 Portugal PT PRT 1996
## 12371 Portugal PT PRT 1997
## 12372 Portugal PT PRT 1998
## 12373 Portugal PT PRT 1999
## 12374 Portugal PT PRT 2000
## 12375 Portugal PT PRT 2001
## 12376 Portugal PT PRT 2002
## 12377 Portugal PT PRT 2003
## 12378 Portugal PT PRT 2004
## 12379 Portugal PT PRT 2005
## 12380 Portugal PT PRT 2006
## 12381 Portugal PT PRT 2007
## 12382 Portugal PT PRT 2008
## 12383 Portugal PT PRT 2009
## 12384 Portugal PT PRT 2010
## 12385 Portugal PT PRT 2011
## 12386 Portugal PT PRT 2012
## 12387 Portugal PT PRT 2013
## 12388 Puerto Rico PR PRI 1980
## 12389 Puerto Rico PR PRI 1981
## 12390 Puerto Rico PR PRI 1982
## 12391 Puerto Rico PR PRI 1983
## 12392 Puerto Rico PR PRI 1984
## 12393 Puerto Rico PR PRI 1985
## 12394 Puerto Rico PR PRI 1986
## 12395 Puerto Rico PR PRI 1987
## 12396 Puerto Rico PR PRI 1988
## 12397 Puerto Rico PR PRI 1989
## 12398 Puerto Rico PR PRI 1990
## 12399 Puerto Rico PR PRI 1991
## 12400 Puerto Rico PR PRI 1992
## 12401 Puerto Rico PR PRI 1993
## 12402 Puerto Rico PR PRI 1994
## 12403 Puerto Rico PR PRI 1995
## 12404 Puerto Rico PR PRI 1996
## 12405 Puerto Rico PR PRI 1997
## 12406 Puerto Rico PR PRI 1998
## 12407 Puerto Rico PR PRI 1999
## 12408 Puerto Rico PR PRI 2000
## 12409 Puerto Rico PR PRI 2001
## 12410 Puerto Rico PR PRI 2002
## 12411 Puerto Rico PR PRI 2003
## 12412 Puerto Rico PR PRI 2004
## 12413 Puerto Rico PR PRI 2005
## 12414 Puerto Rico PR PRI 2006
## 12415 Puerto Rico PR PRI 2007
## 12416 Puerto Rico PR PRI 2008
## 12417 Puerto Rico PR PRI 2009
## 12418 Puerto Rico PR PRI 2010
## 12419 Puerto Rico PR PRI 2011
## 12420 Puerto Rico PR PRI 2012
## 12421 Puerto Rico PR PRI 2013
## 12422 Qatar QA QAT 1980
## 12423 Qatar QA QAT 1981
## 12424 Qatar QA QAT 1982
## 12425 Qatar QA QAT 1983
## 12426 Qatar QA QAT 1984
## 12427 Qatar QA QAT 1985
## 12428 Qatar QA QAT 1986
## 12429 Qatar QA QAT 1987
## 12430 Qatar QA QAT 1988
## 12431 Qatar QA QAT 1989
## 12432 Qatar QA QAT 1990
## 12433 Qatar QA QAT 1991
## 12434 Qatar QA QAT 1992
## 12435 Qatar QA QAT 1993
## 12436 Qatar QA QAT 1994
## 12437 Qatar QA QAT 1995
## 12438 Qatar QA QAT 1996
## 12439 Qatar QA QAT 1997
## 12440 Qatar QA QAT 1998
## 12441 Qatar QA QAT 1999
## 12442 Qatar QA QAT 2000
## 12443 Qatar QA QAT 2001
## 12444 Qatar QA QAT 2002
## 12445 Qatar QA QAT 2003
## 12446 Qatar QA QAT 2004
## 12447 Qatar QA QAT 2005
## 12448 Qatar QA QAT 2006
## 12449 Qatar QA QAT 2007
## 12450 Qatar QA QAT 2008
## 12451 Qatar QA QAT 2009
## 12452 Qatar QA QAT 2010
## 12453 Qatar QA QAT 2011
## 12454 Qatar QA QAT 2012
## 12455 Qatar QA QAT 2013
## 12456 Republic of Korea KR KOR 1980
## 12457 Republic of Korea KR KOR 1981
## 12458 Republic of Korea KR KOR 1982
## 12459 Republic of Korea KR KOR 1983
## 12460 Republic of Korea KR KOR 1984
## 12461 Republic of Korea KR KOR 1985
## 12462 Republic of Korea KR KOR 1986
## 12463 Republic of Korea KR KOR 1987
## 12464 Republic of Korea KR KOR 1988
## 12465 Republic of Korea KR KOR 1989
## 12466 Republic of Korea KR KOR 1990
## 12467 Republic of Korea KR KOR 1991
## 12468 Republic of Korea KR KOR 1992
## 12469 Republic of Korea KR KOR 1993
## 12470 Republic of Korea KR KOR 1994
## 12471 Republic of Korea KR KOR 1995
## 12472 Republic of Korea KR KOR 1996
## 12473 Republic of Korea KR KOR 1997
## 12474 Republic of Korea KR KOR 1998
## 12475 Republic of Korea KR KOR 1999
## 12476 Republic of Korea KR KOR 2000
## 12477 Republic of Korea KR KOR 2001
## 12478 Republic of Korea KR KOR 2002
## 12479 Republic of Korea KR KOR 2003
## 12480 Republic of Korea KR KOR 2004
## 12481 Republic of Korea KR KOR 2005
## 12482 Republic of Korea KR KOR 2006
## 12483 Republic of Korea KR KOR 2007
## 12484 Republic of Korea KR KOR 2008
## 12485 Republic of Korea KR KOR 2009
## 12486 Republic of Korea KR KOR 2010
## 12487 Republic of Korea KR KOR 2011
## 12488 Republic of Korea KR KOR 2012
## 12489 Republic of Korea KR KOR 2013
## 12490 Republic of Moldova MD MDA 1980
## 12491 Republic of Moldova MD MDA 1981
## 12492 Republic of Moldova MD MDA 1982
## 12493 Republic of Moldova MD MDA 1983
## 12494 Republic of Moldova MD MDA 1984
## 12495 Republic of Moldova MD MDA 1985
## 12496 Republic of Moldova MD MDA 1986
## 12497 Republic of Moldova MD MDA 1987
## 12498 Republic of Moldova MD MDA 1988
## 12499 Republic of Moldova MD MDA 1989
## 12500 Republic of Moldova MD MDA 1990
## 12501 Republic of Moldova MD MDA 1991
## 12502 Republic of Moldova MD MDA 1992
## 12503 Republic of Moldova MD MDA 1993
## 12504 Republic of Moldova MD MDA 1994
## 12505 Republic of Moldova MD MDA 1995
## 12506 Republic of Moldova MD MDA 1996
## 12507 Republic of Moldova MD MDA 1997
## 12508 Republic of Moldova MD MDA 1998
## 12509 Republic of Moldova MD MDA 1999
## 12510 Republic of Moldova MD MDA 2000
## 12511 Republic of Moldova MD MDA 2001
## 12512 Republic of Moldova MD MDA 2002
## 12513 Republic of Moldova MD MDA 2003
## 12514 Republic of Moldova MD MDA 2004
## 12515 Republic of Moldova MD MDA 2005
## 12516 Republic of Moldova MD MDA 2006
## 12517 Republic of Moldova MD MDA 2007
## 12518 Republic of Moldova MD MDA 2008
## 12519 Republic of Moldova MD MDA 2009
## 12520 Republic of Moldova MD MDA 2010
## 12521 Republic of Moldova MD MDA 2011
## 12522 Republic of Moldova MD MDA 2012
## 12523 Republic of Moldova MD MDA 2013
## 12524 Romania RO ROU 1980
## 12525 Romania RO ROU 1981
## 12526 Romania RO ROU 1982
## 12527 Romania RO ROU 1983
## 12528 Romania RO ROU 1984
## 12529 Romania RO ROU 1985
## 12530 Romania RO ROU 1986
## 12531 Romania RO ROU 1987
## 12532 Romania RO ROU 1988
## 12533 Romania RO ROU 1989
## 12534 Romania RO ROU 1990
## 12535 Romania RO ROU 1991
## 12536 Romania RO ROU 1992
## 12537 Romania RO ROU 1993
## 12538 Romania RO ROU 1994
## 12539 Romania RO ROU 1995
## 12540 Romania RO ROU 1996
## 12541 Romania RO ROU 1997
## 12542 Romania RO ROU 1998
## 12543 Romania RO ROU 1999
## 12544 Romania RO ROU 2000
## 12545 Romania RO ROU 2001
## 12546 Romania RO ROU 2002
## 12547 Romania RO ROU 2003
## 12548 Romania RO ROU 2004
## 12549 Romania RO ROU 2005
## 12550 Romania RO ROU 2006
## 12551 Romania RO ROU 2007
## 12552 Romania RO ROU 2008
## 12553 Romania RO ROU 2009
## 12554 Romania RO ROU 2010
## 12555 Romania RO ROU 2011
## 12556 Romania RO ROU 2012
## 12557 Romania RO ROU 2013
## 12558 Russian Federation RU RUS 1980
## 12559 Russian Federation RU RUS 1981
## 12560 Russian Federation RU RUS 1982
## 12561 Russian Federation RU RUS 1983
## 12562 Russian Federation RU RUS 1984
## 12563 Russian Federation RU RUS 1985
## 12564 Russian Federation RU RUS 1986
## 12565 Russian Federation RU RUS 1987
## 12566 Russian Federation RU RUS 1988
## 12567 Russian Federation RU RUS 1989
## 12568 Russian Federation RU RUS 1990
## 12569 Russian Federation RU RUS 1991
## 12570 Russian Federation RU RUS 1992
## 12571 Russian Federation RU RUS 1993
## 12572 Russian Federation RU RUS 1994
## 12573 Russian Federation RU RUS 1995
## 12574 Russian Federation RU RUS 1996
## 12575 Russian Federation RU RUS 1997
## 12576 Russian Federation RU RUS 1998
## 12577 Russian Federation RU RUS 1999
## 12578 Russian Federation RU RUS 2000
## 12579 Russian Federation RU RUS 2001
## 12580 Russian Federation RU RUS 2002
## 12581 Russian Federation RU RUS 2003
## 12582 Russian Federation RU RUS 2004
## 12583 Russian Federation RU RUS 2005
## 12584 Russian Federation RU RUS 2006
## 12585 Russian Federation RU RUS 2007
## 12586 Russian Federation RU RUS 2008
## 12587 Russian Federation RU RUS 2009
## 12588 Russian Federation RU RUS 2010
## 12589 Russian Federation RU RUS 2011
## 12590 Russian Federation RU RUS 2012
## 12591 Russian Federation RU RUS 2013
## 12592 Rwanda RW RWA 1980
## 12593 Rwanda RW RWA 1981
## 12594 Rwanda RW RWA 1982
## 12595 Rwanda RW RWA 1983
## 12596 Rwanda RW RWA 1984
## 12597 Rwanda RW RWA 1985
## 12598 Rwanda RW RWA 1986
## 12599 Rwanda RW RWA 1987
## 12600 Rwanda RW RWA 1988
## 12601 Rwanda RW RWA 1989
## 12602 Rwanda RW RWA 1990
## 12603 Rwanda RW RWA 1991
## 12604 Rwanda RW RWA 1992
## 12605 Rwanda RW RWA 1993
## 12606 Rwanda RW RWA 1994
## 12607 Rwanda RW RWA 1995
## 12608 Rwanda RW RWA 1996
## 12609 Rwanda RW RWA 1997
## 12610 Rwanda RW RWA 1998
## 12611 Rwanda RW RWA 1999
## 12612 Rwanda RW RWA 2000
## 12613 Rwanda RW RWA 2001
## 12614 Rwanda RW RWA 2002
## 12615 Rwanda RW RWA 2003
## 12616 Rwanda RW RWA 2004
## 12617 Rwanda RW RWA 2005
## 12618 Rwanda RW RWA 2006
## 12619 Rwanda RW RWA 2007
## 12620 Rwanda RW RWA 2008
## 12621 Rwanda RW RWA 2009
## 12622 Rwanda RW RWA 2010
## 12623 Rwanda RW RWA 2011
## 12624 Rwanda RW RWA 2012
## 12625 Rwanda RW RWA 2013
## 12626 Saint Kitts and Nevis KN KNA 1980
## 12627 Saint Kitts and Nevis KN KNA 1981
## 12628 Saint Kitts and Nevis KN KNA 1982
## 12629 Saint Kitts and Nevis KN KNA 1983
## 12630 Saint Kitts and Nevis KN KNA 1984
## 12631 Saint Kitts and Nevis KN KNA 1985
## 12632 Saint Kitts and Nevis KN KNA 1986
## 12633 Saint Kitts and Nevis KN KNA 1987
## 12634 Saint Kitts and Nevis KN KNA 1988
## 12635 Saint Kitts and Nevis KN KNA 1989
## 12636 Saint Kitts and Nevis KN KNA 1990
## 12637 Saint Kitts and Nevis KN KNA 1991
## 12638 Saint Kitts and Nevis KN KNA 1992
## 12639 Saint Kitts and Nevis KN KNA 1993
## 12640 Saint Kitts and Nevis KN KNA 1994
## 12641 Saint Kitts and Nevis KN KNA 1995
## 12642 Saint Kitts and Nevis KN KNA 1996
## 12643 Saint Kitts and Nevis KN KNA 1997
## 12644 Saint Kitts and Nevis KN KNA 1998
## 12645 Saint Kitts and Nevis KN KNA 1999
## 12646 Saint Kitts and Nevis KN KNA 2000
## 12647 Saint Kitts and Nevis KN KNA 2001
## 12648 Saint Kitts and Nevis KN KNA 2002
## 12649 Saint Kitts and Nevis KN KNA 2003
## 12650 Saint Kitts and Nevis KN KNA 2004
## 12651 Saint Kitts and Nevis KN KNA 2005
## 12652 Saint Kitts and Nevis KN KNA 2006
## 12653 Saint Kitts and Nevis KN KNA 2007
## 12654 Saint Kitts and Nevis KN KNA 2008
## 12655 Saint Kitts and Nevis KN KNA 2009
## 12656 Saint Kitts and Nevis KN KNA 2010
## 12657 Saint Kitts and Nevis KN KNA 2011
## 12658 Saint Kitts and Nevis KN KNA 2012
## 12659 Saint Kitts and Nevis KN KNA 2013
## 12660 Saint Lucia LC LCA 1980
## 12661 Saint Lucia LC LCA 1981
## 12662 Saint Lucia LC LCA 1982
## 12663 Saint Lucia LC LCA 1983
## 12664 Saint Lucia LC LCA 1984
## 12665 Saint Lucia LC LCA 1985
## 12666 Saint Lucia LC LCA 1986
## 12667 Saint Lucia LC LCA 1987
## 12668 Saint Lucia LC LCA 1988
## 12669 Saint Lucia LC LCA 1989
## 12670 Saint Lucia LC LCA 1990
## 12671 Saint Lucia LC LCA 1991
## 12672 Saint Lucia LC LCA 1992
## 12673 Saint Lucia LC LCA 1993
## 12674 Saint Lucia LC LCA 1994
## 12675 Saint Lucia LC LCA 1995
## 12676 Saint Lucia LC LCA 1996
## 12677 Saint Lucia LC LCA 1997
## 12678 Saint Lucia LC LCA 1998
## 12679 Saint Lucia LC LCA 1999
## 12680 Saint Lucia LC LCA 2000
## 12681 Saint Lucia LC LCA 2001
## 12682 Saint Lucia LC LCA 2002
## 12683 Saint Lucia LC LCA 2003
## 12684 Saint Lucia LC LCA 2004
## 12685 Saint Lucia LC LCA 2005
## 12686 Saint Lucia LC LCA 2006
## 12687 Saint Lucia LC LCA 2007
## 12688 Saint Lucia LC LCA 2008
## 12689 Saint Lucia LC LCA 2009
## 12690 Saint Lucia LC LCA 2010
## 12691 Saint Lucia LC LCA 2011
## 12692 Saint Lucia LC LCA 2012
## 12693 Saint Lucia LC LCA 2013
## 12694 Saint Vincent and the Grenadines VC VCT 1980
## 12695 Saint Vincent and the Grenadines VC VCT 1981
## 12696 Saint Vincent and the Grenadines VC VCT 1982
## 12697 Saint Vincent and the Grenadines VC VCT 1983
## 12698 Saint Vincent and the Grenadines VC VCT 1984
## 12699 Saint Vincent and the Grenadines VC VCT 1985
## 12700 Saint Vincent and the Grenadines VC VCT 1986
## 12701 Saint Vincent and the Grenadines VC VCT 1987
## 12702 Saint Vincent and the Grenadines VC VCT 1988
## 12703 Saint Vincent and the Grenadines VC VCT 1989
## 12704 Saint Vincent and the Grenadines VC VCT 1990
## 12705 Saint Vincent and the Grenadines VC VCT 1991
## 12706 Saint Vincent and the Grenadines VC VCT 1992
## 12707 Saint Vincent and the Grenadines VC VCT 1993
## 12708 Saint Vincent and the Grenadines VC VCT 1994
## 12709 Saint Vincent and the Grenadines VC VCT 1995
## 12710 Saint Vincent and the Grenadines VC VCT 1996
## 12711 Saint Vincent and the Grenadines VC VCT 1997
## 12712 Saint Vincent and the Grenadines VC VCT 1998
## 12713 Saint Vincent and the Grenadines VC VCT 1999
## 12714 Saint Vincent and the Grenadines VC VCT 2000
## 12715 Saint Vincent and the Grenadines VC VCT 2001
## 12716 Saint Vincent and the Grenadines VC VCT 2002
## 12717 Saint Vincent and the Grenadines VC VCT 2003
## 12718 Saint Vincent and the Grenadines VC VCT 2004
## 12719 Saint Vincent and the Grenadines VC VCT 2005
## 12720 Saint Vincent and the Grenadines VC VCT 2006
## 12721 Saint Vincent and the Grenadines VC VCT 2007
## 12722 Saint Vincent and the Grenadines VC VCT 2008
## 12723 Saint Vincent and the Grenadines VC VCT 2009
## 12724 Saint Vincent and the Grenadines VC VCT 2010
## 12725 Saint Vincent and the Grenadines VC VCT 2011
## 12726 Saint Vincent and the Grenadines VC VCT 2012
## 12727 Saint Vincent and the Grenadines VC VCT 2013
## 12728 Samoa WS WSM 1980
## 12729 Samoa WS WSM 1981
## 12730 Samoa WS WSM 1982
## 12731 Samoa WS WSM 1983
## 12732 Samoa WS WSM 1984
## 12733 Samoa WS WSM 1985
## 12734 Samoa WS WSM 1986
## 12735 Samoa WS WSM 1987
## 12736 Samoa WS WSM 1988
## 12737 Samoa WS WSM 1989
## 12738 Samoa WS WSM 1990
## 12739 Samoa WS WSM 1991
## 12740 Samoa WS WSM 1992
## 12741 Samoa WS WSM 1993
## 12742 Samoa WS WSM 1994
## 12743 Samoa WS WSM 1995
## 12744 Samoa WS WSM 1996
## 12745 Samoa WS WSM 1997
## 12746 Samoa WS WSM 1998
## 12747 Samoa WS WSM 1999
## 12748 Samoa WS WSM 2000
## 12749 Samoa WS WSM 2001
## 12750 Samoa WS WSM 2002
## 12751 Samoa WS WSM 2003
## 12752 Samoa WS WSM 2004
## 12753 Samoa WS WSM 2005
## 12754 Samoa WS WSM 2006
## 12755 Samoa WS WSM 2007
## 12756 Samoa WS WSM 2008
## 12757 Samoa WS WSM 2009
## 12758 Samoa WS WSM 2010
## 12759 Samoa WS WSM 2011
## 12760 Samoa WS WSM 2012
## 12761 Samoa WS WSM 2013
## 12762 San Marino SM SMR 1980
## 12763 San Marino SM SMR 1981
## 12764 San Marino SM SMR 1982
## 12765 San Marino SM SMR 1983
## 12766 San Marino SM SMR 1984
## 12767 San Marino SM SMR 1985
## 12768 San Marino SM SMR 1986
## 12769 San Marino SM SMR 1987
## 12770 San Marino SM SMR 1988
## 12771 San Marino SM SMR 1989
## 12772 San Marino SM SMR 1990
## 12773 San Marino SM SMR 1991
## 12774 San Marino SM SMR 1992
## 12775 San Marino SM SMR 1993
## 12776 San Marino SM SMR 1994
## 12777 San Marino SM SMR 1995
## 12778 San Marino SM SMR 1996
## 12779 San Marino SM SMR 1997
## 12780 San Marino SM SMR 1998
## 12781 San Marino SM SMR 1999
## 12782 San Marino SM SMR 2000
## 12783 San Marino SM SMR 2001
## 12784 San Marino SM SMR 2002
## 12785 San Marino SM SMR 2003
## 12786 San Marino SM SMR 2004
## 12787 San Marino SM SMR 2005
## 12788 San Marino SM SMR 2006
## 12789 San Marino SM SMR 2007
## 12790 San Marino SM SMR 2008
## 12791 San Marino SM SMR 2009
## 12792 San Marino SM SMR 2010
## 12793 San Marino SM SMR 2011
## 12794 San Marino SM SMR 2012
## 12795 San Marino SM SMR 2013
## 12796 Sao Tome and Principe ST STP 1980
## 12797 Sao Tome and Principe ST STP 1981
## 12798 Sao Tome and Principe ST STP 1982
## 12799 Sao Tome and Principe ST STP 1983
## 12800 Sao Tome and Principe ST STP 1984
## 12801 Sao Tome and Principe ST STP 1985
## 12802 Sao Tome and Principe ST STP 1986
## 12803 Sao Tome and Principe ST STP 1987
## 12804 Sao Tome and Principe ST STP 1988
## 12805 Sao Tome and Principe ST STP 1989
## 12806 Sao Tome and Principe ST STP 1990
## 12807 Sao Tome and Principe ST STP 1991
## 12808 Sao Tome and Principe ST STP 1992
## 12809 Sao Tome and Principe ST STP 1993
## 12810 Sao Tome and Principe ST STP 1994
## 12811 Sao Tome and Principe ST STP 1995
## 12812 Sao Tome and Principe ST STP 1996
## 12813 Sao Tome and Principe ST STP 1997
## 12814 Sao Tome and Principe ST STP 1998
## 12815 Sao Tome and Principe ST STP 1999
## 12816 Sao Tome and Principe ST STP 2000
## 12817 Sao Tome and Principe ST STP 2001
## 12818 Sao Tome and Principe ST STP 2002
## 12819 Sao Tome and Principe ST STP 2003
## 12820 Sao Tome and Principe ST STP 2004
## 12821 Sao Tome and Principe ST STP 2005
## 12822 Sao Tome and Principe ST STP 2006
## 12823 Sao Tome and Principe ST STP 2007
## 12824 Sao Tome and Principe ST STP 2008
## 12825 Sao Tome and Principe ST STP 2009
## 12826 Sao Tome and Principe ST STP 2010
## 12827 Sao Tome and Principe ST STP 2011
## 12828 Sao Tome and Principe ST STP 2012
## 12829 Sao Tome and Principe ST STP 2013
## 12830 Saudi Arabia SA SAU 1980
## 12831 Saudi Arabia SA SAU 1981
## 12832 Saudi Arabia SA SAU 1982
## 12833 Saudi Arabia SA SAU 1983
## 12834 Saudi Arabia SA SAU 1984
## 12835 Saudi Arabia SA SAU 1985
## 12836 Saudi Arabia SA SAU 1986
## 12837 Saudi Arabia SA SAU 1987
## 12838 Saudi Arabia SA SAU 1988
## 12839 Saudi Arabia SA SAU 1989
## 12840 Saudi Arabia SA SAU 1990
## 12841 Saudi Arabia SA SAU 1991
## 12842 Saudi Arabia SA SAU 1992
## 12843 Saudi Arabia SA SAU 1993
## 12844 Saudi Arabia SA SAU 1994
## 12845 Saudi Arabia SA SAU 1995
## 12846 Saudi Arabia SA SAU 1996
## 12847 Saudi Arabia SA SAU 1997
## 12848 Saudi Arabia SA SAU 1998
## 12849 Saudi Arabia SA SAU 1999
## 12850 Saudi Arabia SA SAU 2000
## 12851 Saudi Arabia SA SAU 2001
## 12852 Saudi Arabia SA SAU 2002
## 12853 Saudi Arabia SA SAU 2003
## 12854 Saudi Arabia SA SAU 2004
## 12855 Saudi Arabia SA SAU 2005
## 12856 Saudi Arabia SA SAU 2006
## 12857 Saudi Arabia SA SAU 2007
## 12858 Saudi Arabia SA SAU 2008
## 12859 Saudi Arabia SA SAU 2009
## 12860 Saudi Arabia SA SAU 2010
## 12861 Saudi Arabia SA SAU 2011
## 12862 Saudi Arabia SA SAU 2012
## 12863 Saudi Arabia SA SAU 2013
## 12864 Senegal SN SEN 1980
## 12865 Senegal SN SEN 1981
## 12866 Senegal SN SEN 1982
## 12867 Senegal SN SEN 1983
## 12868 Senegal SN SEN 1984
## 12869 Senegal SN SEN 1985
## 12870 Senegal SN SEN 1986
## 12871 Senegal SN SEN 1987
## 12872 Senegal SN SEN 1988
## 12873 Senegal SN SEN 1989
## 12874 Senegal SN SEN 1990
## 12875 Senegal SN SEN 1991
## 12876 Senegal SN SEN 1992
## 12877 Senegal SN SEN 1993
## 12878 Senegal SN SEN 1994
## 12879 Senegal SN SEN 1995
## 12880 Senegal SN SEN 1996
## 12881 Senegal SN SEN 1997
## 12882 Senegal SN SEN 1998
## 12883 Senegal SN SEN 1999
## 12884 Senegal SN SEN 2000
## 12885 Senegal SN SEN 2001
## 12886 Senegal SN SEN 2002
## 12887 Senegal SN SEN 2003
## 12888 Senegal SN SEN 2004
## 12889 Senegal SN SEN 2005
## 12890 Senegal SN SEN 2006
## 12891 Senegal SN SEN 2007
## 12892 Senegal SN SEN 2008
## 12893 Senegal SN SEN 2009
## 12894 Senegal SN SEN 2010
## 12895 Senegal SN SEN 2011
## 12896 Senegal SN SEN 2012
## 12897 Senegal SN SEN 2013
## 12898 Serbia RS SRB 2005
## 12899 Serbia RS SRB 2006
## 12900 Serbia RS SRB 2007
## 12901 Serbia RS SRB 2008
## 12902 Serbia RS SRB 2009
## 12903 Serbia RS SRB 2010
## 12904 Serbia RS SRB 2011
## 12905 Serbia RS SRB 2012
## 12906 Serbia RS SRB 2013
## 12907 Serbia & Montenegro YU SCG 1980
## 12908 Serbia & Montenegro YU SCG 1981
## 12909 Serbia & Montenegro YU SCG 1982
## 12910 Serbia & Montenegro YU SCG 1983
## 12911 Serbia & Montenegro YU SCG 1984
## 12912 Serbia & Montenegro YU SCG 1985
## 12913 Serbia & Montenegro YU SCG 1986
## 12914 Serbia & Montenegro YU SCG 1987
## 12915 Serbia & Montenegro YU SCG 1988
## 12916 Serbia & Montenegro YU SCG 1989
## 12917 Serbia & Montenegro YU SCG 1990
## 12918 Serbia & Montenegro YU SCG 1991
## 12919 Serbia & Montenegro YU SCG 1992
## 12920 Serbia & Montenegro YU SCG 1993
## 12921 Serbia & Montenegro YU SCG 1994
## 12922 Serbia & Montenegro YU SCG 1995
## 12923 Serbia & Montenegro YU SCG 1996
## 12924 Serbia & Montenegro YU SCG 1997
## 12925 Serbia & Montenegro YU SCG 1998
## 12926 Serbia & Montenegro YU SCG 1999
## 12927 Serbia & Montenegro YU SCG 2000
## 12928 Serbia & Montenegro YU SCG 2001
## 12929 Serbia & Montenegro YU SCG 2002
## 12930 Serbia & Montenegro YU SCG 2003
## 12931 Serbia & Montenegro YU SCG 2004
## 12932 Seychelles SC SYC 1980
## 12933 Seychelles SC SYC 1981
## 12934 Seychelles SC SYC 1982
## 12935 Seychelles SC SYC 1983
## 12936 Seychelles SC SYC 1984
## 12937 Seychelles SC SYC 1985
## 12938 Seychelles SC SYC 1986
## 12939 Seychelles SC SYC 1987
## 12940 Seychelles SC SYC 1988
## 12941 Seychelles SC SYC 1989
## 12942 Seychelles SC SYC 1990
## 12943 Seychelles SC SYC 1991
## 12944 Seychelles SC SYC 1992
## 12945 Seychelles SC SYC 1993
## 12946 Seychelles SC SYC 1994
## 12947 Seychelles SC SYC 1995
## 12948 Seychelles SC SYC 1996
## 12949 Seychelles SC SYC 1997
## 12950 Seychelles SC SYC 1998
## 12951 Seychelles SC SYC 1999
## 12952 Seychelles SC SYC 2000
## 12953 Seychelles SC SYC 2001
## 12954 Seychelles SC SYC 2002
## 12955 Seychelles SC SYC 2003
## 12956 Seychelles SC SYC 2004
## 12957 Seychelles SC SYC 2005
## 12958 Seychelles SC SYC 2006
## 12959 Seychelles SC SYC 2007
## 12960 Seychelles SC SYC 2008
## 12961 Seychelles SC SYC 2009
## 12962 Seychelles SC SYC 2010
## 12963 Seychelles SC SYC 2011
## 12964 Seychelles SC SYC 2012
## 12965 Seychelles SC SYC 2013
## 12966 Sierra Leone SL SLE 1980
## 12967 Sierra Leone SL SLE 1981
## 12968 Sierra Leone SL SLE 1982
## 12969 Sierra Leone SL SLE 1983
## 12970 Sierra Leone SL SLE 1984
## 12971 Sierra Leone SL SLE 1985
## 12972 Sierra Leone SL SLE 1986
## 12973 Sierra Leone SL SLE 1987
## 12974 Sierra Leone SL SLE 1988
## 12975 Sierra Leone SL SLE 1989
## 12976 Sierra Leone SL SLE 1990
## 12977 Sierra Leone SL SLE 1991
## 12978 Sierra Leone SL SLE 1992
## 12979 Sierra Leone SL SLE 1993
## 12980 Sierra Leone SL SLE 1994
## 12981 Sierra Leone SL SLE 1995
## 12982 Sierra Leone SL SLE 1996
## 12983 Sierra Leone SL SLE 1997
## 12984 Sierra Leone SL SLE 1998
## 12985 Sierra Leone SL SLE 1999
## 12986 Sierra Leone SL SLE 2000
## 12987 Sierra Leone SL SLE 2001
## 12988 Sierra Leone SL SLE 2002
## 12989 Sierra Leone SL SLE 2003
## 12990 Sierra Leone SL SLE 2004
## 12991 Sierra Leone SL SLE 2005
## 12992 Sierra Leone SL SLE 2006
## 12993 Sierra Leone SL SLE 2007
## 12994 Sierra Leone SL SLE 2008
## 12995 Sierra Leone SL SLE 2009
## 12996 Sierra Leone SL SLE 2010
## 12997 Sierra Leone SL SLE 2011
## 12998 Sierra Leone SL SLE 2012
## 12999 Sierra Leone SL SLE 2013
## 13000 Singapore SG SGP 1980
## 13001 Singapore SG SGP 1981
## 13002 Singapore SG SGP 1982
## 13003 Singapore SG SGP 1983
## 13004 Singapore SG SGP 1984
## 13005 Singapore SG SGP 1985
## 13006 Singapore SG SGP 1986
## 13007 Singapore SG SGP 1987
## 13008 Singapore SG SGP 1988
## 13009 Singapore SG SGP 1989
## 13010 Singapore SG SGP 1990
## 13011 Singapore SG SGP 1991
## 13012 Singapore SG SGP 1992
## 13013 Singapore SG SGP 1993
## 13014 Singapore SG SGP 1994
## 13015 Singapore SG SGP 1995
## 13016 Singapore SG SGP 1996
## 13017 Singapore SG SGP 1997
## 13018 Singapore SG SGP 1998
## 13019 Singapore SG SGP 1999
## 13020 Singapore SG SGP 2000
## 13021 Singapore SG SGP 2001
## 13022 Singapore SG SGP 2002
## 13023 Singapore SG SGP 2003
## 13024 Singapore SG SGP 2004
## 13025 Singapore SG SGP 2005
## 13026 Singapore SG SGP 2006
## 13027 Singapore SG SGP 2007
## 13028 Singapore SG SGP 2008
## 13029 Singapore SG SGP 2009
## 13030 Singapore SG SGP 2010
## 13031 Singapore SG SGP 2011
## 13032 Singapore SG SGP 2012
## 13033 Singapore SG SGP 2013
## 13034 Sint Maarten (Dutch part) SX SXM 2010
## 13035 Sint Maarten (Dutch part) SX SXM 2011
## 13036 Sint Maarten (Dutch part) SX SXM 2012
## 13037 Sint Maarten (Dutch part) SX SXM 2013
## 13038 Slovakia SK SVK 1980
## 13039 Slovakia SK SVK 1981
## 13040 Slovakia SK SVK 1982
## 13041 Slovakia SK SVK 1983
## 13042 Slovakia SK SVK 1984
## 13043 Slovakia SK SVK 1985
## 13044 Slovakia SK SVK 1986
## 13045 Slovakia SK SVK 1987
## 13046 Slovakia SK SVK 1988
## 13047 Slovakia SK SVK 1989
## 13048 Slovakia SK SVK 1990
## 13049 Slovakia SK SVK 1991
## 13050 Slovakia SK SVK 1992
## 13051 Slovakia SK SVK 1993
## 13052 Slovakia SK SVK 1994
## 13053 Slovakia SK SVK 1995
## 13054 Slovakia SK SVK 1996
## 13055 Slovakia SK SVK 1997
## 13056 Slovakia SK SVK 1998
## 13057 Slovakia SK SVK 1999
## 13058 Slovakia SK SVK 2000
## 13059 Slovakia SK SVK 2001
## 13060 Slovakia SK SVK 2002
## 13061 Slovakia SK SVK 2003
## 13062 Slovakia SK SVK 2004
## 13063 Slovakia SK SVK 2005
## 13064 Slovakia SK SVK 2006
## 13065 Slovakia SK SVK 2007
## 13066 Slovakia SK SVK 2008
## 13067 Slovakia SK SVK 2009
## 13068 Slovakia SK SVK 2010
## 13069 Slovakia SK SVK 2011
## 13070 Slovakia SK SVK 2012
## 13071 Slovakia SK SVK 2013
## 13072 Slovenia SI SVN 1980
## 13073 Slovenia SI SVN 1981
## 13074 Slovenia SI SVN 1982
## 13075 Slovenia SI SVN 1983
## 13076 Slovenia SI SVN 1984
## 13077 Slovenia SI SVN 1985
## 13078 Slovenia SI SVN 1986
## 13079 Slovenia SI SVN 1987
## 13080 Slovenia SI SVN 1988
## 13081 Slovenia SI SVN 1989
## 13082 Slovenia SI SVN 1990
## 13083 Slovenia SI SVN 1991
## 13084 Slovenia SI SVN 1992
## 13085 Slovenia SI SVN 1993
## 13086 Slovenia SI SVN 1994
## 13087 Slovenia SI SVN 1995
## 13088 Slovenia SI SVN 1996
## 13089 Slovenia SI SVN 1997
## 13090 Slovenia SI SVN 1998
## 13091 Slovenia SI SVN 1999
## 13092 Slovenia SI SVN 2000
## 13093 Slovenia SI SVN 2001
## 13094 Slovenia SI SVN 2002
## 13095 Slovenia SI SVN 2003
## 13096 Slovenia SI SVN 2004
## 13097 Slovenia SI SVN 2005
## 13098 Slovenia SI SVN 2006
## 13099 Slovenia SI SVN 2007
## 13100 Slovenia SI SVN 2008
## 13101 Slovenia SI SVN 2009
## 13102 Slovenia SI SVN 2010
## 13103 Slovenia SI SVN 2011
## 13104 Slovenia SI SVN 2012
## 13105 Slovenia SI SVN 2013
## 13106 Solomon Islands SB SLB 1980
## 13107 Solomon Islands SB SLB 1981
## 13108 Solomon Islands SB SLB 1982
## 13109 Solomon Islands SB SLB 1983
## 13110 Solomon Islands SB SLB 1984
## 13111 Solomon Islands SB SLB 1985
## 13112 Solomon Islands SB SLB 1986
## 13113 Solomon Islands SB SLB 1987
## 13114 Solomon Islands SB SLB 1988
## 13115 Solomon Islands SB SLB 1989
## 13116 Solomon Islands SB SLB 1990
## 13117 Solomon Islands SB SLB 1991
## 13118 Solomon Islands SB SLB 1992
## 13119 Solomon Islands SB SLB 1993
## 13120 Solomon Islands SB SLB 1994
## 13121 Solomon Islands SB SLB 1995
## 13122 Solomon Islands SB SLB 1996
## 13123 Solomon Islands SB SLB 1997
## 13124 Solomon Islands SB SLB 1998
## 13125 Solomon Islands SB SLB 1999
## 13126 Solomon Islands SB SLB 2000
## 13127 Solomon Islands SB SLB 2001
## 13128 Solomon Islands SB SLB 2002
## 13129 Solomon Islands SB SLB 2003
## 13130 Solomon Islands SB SLB 2004
## 13131 Solomon Islands SB SLB 2005
## 13132 Solomon Islands SB SLB 2006
## 13133 Solomon Islands SB SLB 2007
## 13134 Solomon Islands SB SLB 2008
## 13135 Solomon Islands SB SLB 2009
## 13136 Solomon Islands SB SLB 2010
## 13137 Solomon Islands SB SLB 2011
## 13138 Solomon Islands SB SLB 2012
## 13139 Solomon Islands SB SLB 2013
## 13140 Somalia SO SOM 1980
## 13141 Somalia SO SOM 1981
## 13142 Somalia SO SOM 1982
## 13143 Somalia SO SOM 1983
## 13144 Somalia SO SOM 1984
## 13145 Somalia SO SOM 1985
## 13146 Somalia SO SOM 1986
## 13147 Somalia SO SOM 1987
## 13148 Somalia SO SOM 1988
## 13149 Somalia SO SOM 1989
## 13150 Somalia SO SOM 1990
## 13151 Somalia SO SOM 1991
## 13152 Somalia SO SOM 1992
## 13153 Somalia SO SOM 1993
## 13154 Somalia SO SOM 1994
## 13155 Somalia SO SOM 1995
## 13156 Somalia SO SOM 1996
## 13157 Somalia SO SOM 1997
## 13158 Somalia SO SOM 1998
## 13159 Somalia SO SOM 1999
## 13160 Somalia SO SOM 2000
## 13161 Somalia SO SOM 2001
## 13162 Somalia SO SOM 2002
## 13163 Somalia SO SOM 2003
## 13164 Somalia SO SOM 2004
## 13165 Somalia SO SOM 2005
## 13166 Somalia SO SOM 2006
## 13167 Somalia SO SOM 2007
## 13168 Somalia SO SOM 2008
## 13169 Somalia SO SOM 2009
## 13170 Somalia SO SOM 2010
## 13171 Somalia SO SOM 2011
## 13172 Somalia SO SOM 2012
## 13173 Somalia SO SOM 2013
## 13174 South Africa ZA ZAF 1980
## 13175 South Africa ZA ZAF 1981
## 13176 South Africa ZA ZAF 1982
## 13177 South Africa ZA ZAF 1983
## 13178 South Africa ZA ZAF 1984
## 13179 South Africa ZA ZAF 1985
## 13180 South Africa ZA ZAF 1986
## 13181 South Africa ZA ZAF 1987
## 13182 South Africa ZA ZAF 1988
## 13183 South Africa ZA ZAF 1989
## 13184 South Africa ZA ZAF 1990
## 13185 South Africa ZA ZAF 1991
## 13186 South Africa ZA ZAF 1992
## 13187 South Africa ZA ZAF 1993
## 13188 South Africa ZA ZAF 1994
## 13189 South Africa ZA ZAF 1995
## 13190 South Africa ZA ZAF 1996
## 13191 South Africa ZA ZAF 1997
## 13192 South Africa ZA ZAF 1998
## 13193 South Africa ZA ZAF 1999
## 13194 South Africa ZA ZAF 2000
## 13195 South Africa ZA ZAF 2001
## 13196 South Africa ZA ZAF 2002
## 13197 South Africa ZA ZAF 2003
## 13198 South Africa ZA ZAF 2004
## 13199 South Africa ZA ZAF 2005
## 13200 South Africa ZA ZAF 2006
## 13201 South Africa ZA ZAF 2007
## 13202 South Africa ZA ZAF 2008
## 13203 South Africa ZA ZAF 2009
## 13204 South Africa ZA ZAF 2010
## 13205 South Africa ZA ZAF 2011
## 13206 South Africa ZA ZAF 2012
## 13207 South Africa ZA ZAF 2013
## 13208 South Sudan SS SSD 2011
## 13209 South Sudan SS SSD 2012
## 13210 South Sudan SS SSD 2013
## 13211 Spain ES ESP 1980
## 13212 Spain ES ESP 1981
## 13213 Spain ES ESP 1982
## 13214 Spain ES ESP 1983
## 13215 Spain ES ESP 1984
## 13216 Spain ES ESP 1985
## 13217 Spain ES ESP 1986
## 13218 Spain ES ESP 1987
## 13219 Spain ES ESP 1988
## 13220 Spain ES ESP 1989
## 13221 Spain ES ESP 1990
## 13222 Spain ES ESP 1991
## 13223 Spain ES ESP 1992
## 13224 Spain ES ESP 1993
## 13225 Spain ES ESP 1994
## 13226 Spain ES ESP 1995
## 13227 Spain ES ESP 1996
## 13228 Spain ES ESP 1997
## 13229 Spain ES ESP 1998
## 13230 Spain ES ESP 1999
## 13231 Spain ES ESP 2000
## 13232 Spain ES ESP 2001
## 13233 Spain ES ESP 2002
## 13234 Spain ES ESP 2003
## 13235 Spain ES ESP 2004
## 13236 Spain ES ESP 2005
## 13237 Spain ES ESP 2006
## 13238 Spain ES ESP 2007
## 13239 Spain ES ESP 2008
## 13240 Spain ES ESP 2009
## 13241 Spain ES ESP 2010
## 13242 Spain ES ESP 2011
## 13243 Spain ES ESP 2012
## 13244 Spain ES ESP 2013
## 13245 Sri Lanka LK LKA 1980
## 13246 Sri Lanka LK LKA 1981
## 13247 Sri Lanka LK LKA 1982
## 13248 Sri Lanka LK LKA 1983
## 13249 Sri Lanka LK LKA 1984
## 13250 Sri Lanka LK LKA 1985
## 13251 Sri Lanka LK LKA 1986
## 13252 Sri Lanka LK LKA 1987
## 13253 Sri Lanka LK LKA 1988
## 13254 Sri Lanka LK LKA 1989
## 13255 Sri Lanka LK LKA 1990
## 13256 Sri Lanka LK LKA 1991
## 13257 Sri Lanka LK LKA 1992
## 13258 Sri Lanka LK LKA 1993
## 13259 Sri Lanka LK LKA 1994
## 13260 Sri Lanka LK LKA 1995
## 13261 Sri Lanka LK LKA 1996
## 13262 Sri Lanka LK LKA 1997
## 13263 Sri Lanka LK LKA 1998
## 13264 Sri Lanka LK LKA 1999
## 13265 Sri Lanka LK LKA 2000
## 13266 Sri Lanka LK LKA 2001
## 13267 Sri Lanka LK LKA 2002
## 13268 Sri Lanka LK LKA 2003
## 13269 Sri Lanka LK LKA 2004
## 13270 Sri Lanka LK LKA 2005
## 13271 Sri Lanka LK LKA 2006
## 13272 Sri Lanka LK LKA 2007
## 13273 Sri Lanka LK LKA 2008
## 13274 Sri Lanka LK LKA 2009
## 13275 Sri Lanka LK LKA 2010
## 13276 Sri Lanka LK LKA 2011
## 13277 Sri Lanka LK LKA 2012
## 13278 Sri Lanka LK LKA 2013
## 13279 Sudan SD SDN 1980
## 13280 Sudan SD SDN 1981
## 13281 Sudan SD SDN 1982
## 13282 Sudan SD SDN 1983
## 13283 Sudan SD SDN 1984
## 13284 Sudan SD SDN 1985
## 13285 Sudan SD SDN 1986
## 13286 Sudan SD SDN 1987
## 13287 Sudan SD SDN 1988
## 13288 Sudan SD SDN 1989
## 13289 Sudan SD SDN 1990
## 13290 Sudan SD SDN 1991
## 13291 Sudan SD SDN 1992
## 13292 Sudan SD SDN 1993
## 13293 Sudan SD SDN 1994
## 13294 Sudan SD SDN 1995
## 13295 Sudan SD SDN 1996
## 13296 Sudan SD SDN 1997
## 13297 Sudan SD SDN 1998
## 13298 Sudan SD SDN 1999
## 13299 Sudan SD SDN 2000
## 13300 Sudan SD SDN 2001
## 13301 Sudan SD SDN 2002
## 13302 Sudan SD SDN 2003
## 13303 Sudan SD SDN 2004
## 13304 Sudan SD SDN 2005
## 13305 Sudan SD SDN 2006
## 13306 Sudan SD SDN 2007
## 13307 Sudan SD SDN 2008
## 13308 Sudan SD SDN 2009
## 13309 Sudan SD SDN 2010
## 13310 Sudan SD SDN 2011
## 13311 Sudan SD SDN 2012
## 13312 Sudan SD SDN 2013
## 13313 Suriname SR SUR 1980
## 13314 Suriname SR SUR 1981
## 13315 Suriname SR SUR 1982
## 13316 Suriname SR SUR 1983
## 13317 Suriname SR SUR 1984
## 13318 Suriname SR SUR 1985
## 13319 Suriname SR SUR 1986
## 13320 Suriname SR SUR 1987
## 13321 Suriname SR SUR 1988
## 13322 Suriname SR SUR 1989
## 13323 Suriname SR SUR 1990
## 13324 Suriname SR SUR 1991
## 13325 Suriname SR SUR 1992
## 13326 Suriname SR SUR 1993
## 13327 Suriname SR SUR 1994
## 13328 Suriname SR SUR 1995
## 13329 Suriname SR SUR 1996
## 13330 Suriname SR SUR 1997
## 13331 Suriname SR SUR 1998
## 13332 Suriname SR SUR 1999
## 13333 Suriname SR SUR 2000
## 13334 Suriname SR SUR 2001
## 13335 Suriname SR SUR 2002
## 13336 Suriname SR SUR 2003
## 13337 Suriname SR SUR 2004
## 13338 Suriname SR SUR 2005
## 13339 Suriname SR SUR 2006
## 13340 Suriname SR SUR 2007
## 13341 Suriname SR SUR 2008
## 13342 Suriname SR SUR 2009
## 13343 Suriname SR SUR 2010
## 13344 Suriname SR SUR 2011
## 13345 Suriname SR SUR 2012
## 13346 Suriname SR SUR 2013
## 13347 Swaziland SZ SWZ 1980
## 13348 Swaziland SZ SWZ 1981
## 13349 Swaziland SZ SWZ 1982
## 13350 Swaziland SZ SWZ 1983
## 13351 Swaziland SZ SWZ 1984
## 13352 Swaziland SZ SWZ 1985
## 13353 Swaziland SZ SWZ 1986
## 13354 Swaziland SZ SWZ 1987
## 13355 Swaziland SZ SWZ 1988
## 13356 Swaziland SZ SWZ 1989
## 13357 Swaziland SZ SWZ 1990
## 13358 Swaziland SZ SWZ 1991
## 13359 Swaziland SZ SWZ 1992
## 13360 Swaziland SZ SWZ 1993
## 13361 Swaziland SZ SWZ 1994
## 13362 Swaziland SZ SWZ 1995
## 13363 Swaziland SZ SWZ 1996
## 13364 Swaziland SZ SWZ 1997
## 13365 Swaziland SZ SWZ 1998
## 13366 Swaziland SZ SWZ 1999
## 13367 Swaziland SZ SWZ 2000
## 13368 Swaziland SZ SWZ 2001
## 13369 Swaziland SZ SWZ 2002
## 13370 Swaziland SZ SWZ 2003
## 13371 Swaziland SZ SWZ 2004
## 13372 Swaziland SZ SWZ 2005
## 13373 Swaziland SZ SWZ 2006
## 13374 Swaziland SZ SWZ 2007
## 13375 Swaziland SZ SWZ 2008
## 13376 Swaziland SZ SWZ 2009
## 13377 Swaziland SZ SWZ 2010
## 13378 Swaziland SZ SWZ 2011
## 13379 Swaziland SZ SWZ 2012
## 13380 Swaziland SZ SWZ 2013
## 13381 Sweden SE SWE 1980
## 13382 Sweden SE SWE 1981
## 13383 Sweden SE SWE 1982
## 13384 Sweden SE SWE 1983
## 13385 Sweden SE SWE 1984
## 13386 Sweden SE SWE 1985
## 13387 Sweden SE SWE 1986
## 13388 Sweden SE SWE 1987
## 13389 Sweden SE SWE 1988
## 13390 Sweden SE SWE 1989
## 13391 Sweden SE SWE 1990
## 13392 Sweden SE SWE 1991
## 13393 Sweden SE SWE 1992
## 13394 Sweden SE SWE 1993
## 13395 Sweden SE SWE 1994
## 13396 Sweden SE SWE 1995
## 13397 Sweden SE SWE 1996
## 13398 Sweden SE SWE 1997
## 13399 Sweden SE SWE 1998
## 13400 Sweden SE SWE 1999
## 13401 Sweden SE SWE 2000
## 13402 Sweden SE SWE 2001
## 13403 Sweden SE SWE 2002
## 13404 Sweden SE SWE 2003
## 13405 Sweden SE SWE 2004
## 13406 Sweden SE SWE 2005
## 13407 Sweden SE SWE 2006
## 13408 Sweden SE SWE 2007
## 13409 Sweden SE SWE 2008
## 13410 Sweden SE SWE 2009
## 13411 Sweden SE SWE 2010
## 13412 Sweden SE SWE 2011
## 13413 Sweden SE SWE 2012
## 13414 Sweden SE SWE 2013
## 13415 Switzerland CH CHE 1980
## 13416 Switzerland CH CHE 1981
## 13417 Switzerland CH CHE 1982
## 13418 Switzerland CH CHE 1983
## 13419 Switzerland CH CHE 1984
## 13420 Switzerland CH CHE 1985
## 13421 Switzerland CH CHE 1986
## 13422 Switzerland CH CHE 1987
## 13423 Switzerland CH CHE 1988
## 13424 Switzerland CH CHE 1989
## 13425 Switzerland CH CHE 1990
## 13426 Switzerland CH CHE 1991
## 13427 Switzerland CH CHE 1992
## 13428 Switzerland CH CHE 1993
## 13429 Switzerland CH CHE 1994
## 13430 Switzerland CH CHE 1995
## 13431 Switzerland CH CHE 1996
## 13432 Switzerland CH CHE 1997
## 13433 Switzerland CH CHE 1998
## 13434 Switzerland CH CHE 1999
## 13435 Switzerland CH CHE 2000
## 13436 Switzerland CH CHE 2001
## 13437 Switzerland CH CHE 2002
## 13438 Switzerland CH CHE 2003
## 13439 Switzerland CH CHE 2004
## 13440 Switzerland CH CHE 2005
## 13441 Switzerland CH CHE 2006
## 13442 Switzerland CH CHE 2007
## 13443 Switzerland CH CHE 2008
## 13444 Switzerland CH CHE 2009
## 13445 Switzerland CH CHE 2010
## 13446 Switzerland CH CHE 2011
## 13447 Switzerland CH CHE 2012
## 13448 Switzerland CH CHE 2013
## 13449 Syrian Arab Republic SY SYR 1980
## 13450 Syrian Arab Republic SY SYR 1981
## 13451 Syrian Arab Republic SY SYR 1982
## 13452 Syrian Arab Republic SY SYR 1983
## 13453 Syrian Arab Republic SY SYR 1984
## 13454 Syrian Arab Republic SY SYR 1985
## 13455 Syrian Arab Republic SY SYR 1986
## 13456 Syrian Arab Republic SY SYR 1987
## 13457 Syrian Arab Republic SY SYR 1988
## 13458 Syrian Arab Republic SY SYR 1989
## 13459 Syrian Arab Republic SY SYR 1990
## 13460 Syrian Arab Republic SY SYR 1991
## 13461 Syrian Arab Republic SY SYR 1992
## 13462 Syrian Arab Republic SY SYR 1993
## 13463 Syrian Arab Republic SY SYR 1994
## 13464 Syrian Arab Republic SY SYR 1995
## 13465 Syrian Arab Republic SY SYR 1996
## 13466 Syrian Arab Republic SY SYR 1997
## 13467 Syrian Arab Republic SY SYR 1998
## 13468 Syrian Arab Republic SY SYR 1999
## 13469 Syrian Arab Republic SY SYR 2000
## 13470 Syrian Arab Republic SY SYR 2001
## 13471 Syrian Arab Republic SY SYR 2002
## 13472 Syrian Arab Republic SY SYR 2003
## 13473 Syrian Arab Republic SY SYR 2004
## 13474 Syrian Arab Republic SY SYR 2005
## 13475 Syrian Arab Republic SY SYR 2006
## 13476 Syrian Arab Republic SY SYR 2007
## 13477 Syrian Arab Republic SY SYR 2008
## 13478 Syrian Arab Republic SY SYR 2009
## 13479 Syrian Arab Republic SY SYR 2010
## 13480 Syrian Arab Republic SY SYR 2011
## 13481 Syrian Arab Republic SY SYR 2012
## 13482 Syrian Arab Republic SY SYR 2013
## 13483 Tajikistan TJ TJK 1980
## 13484 Tajikistan TJ TJK 1981
## 13485 Tajikistan TJ TJK 1982
## 13486 Tajikistan TJ TJK 1983
## 13487 Tajikistan TJ TJK 1984
## 13488 Tajikistan TJ TJK 1985
## 13489 Tajikistan TJ TJK 1986
## 13490 Tajikistan TJ TJK 1987
## 13491 Tajikistan TJ TJK 1988
## 13492 Tajikistan TJ TJK 1989
## 13493 Tajikistan TJ TJK 1990
## 13494 Tajikistan TJ TJK 1991
## 13495 Tajikistan TJ TJK 1992
## 13496 Tajikistan TJ TJK 1993
## 13497 Tajikistan TJ TJK 1994
## 13498 Tajikistan TJ TJK 1995
## 13499 Tajikistan TJ TJK 1996
## 13500 Tajikistan TJ TJK 1997
## 13501 Tajikistan TJ TJK 1998
## 13502 Tajikistan TJ TJK 1999
## 13503 Tajikistan TJ TJK 2000
## 13504 Tajikistan TJ TJK 2001
## 13505 Tajikistan TJ TJK 2002
## 13506 Tajikistan TJ TJK 2003
## 13507 Tajikistan TJ TJK 2004
## 13508 Tajikistan TJ TJK 2005
## 13509 Tajikistan TJ TJK 2006
## 13510 Tajikistan TJ TJK 2007
## 13511 Tajikistan TJ TJK 2008
## 13512 Tajikistan TJ TJK 2009
## 13513 Tajikistan TJ TJK 2010
## 13514 Tajikistan TJ TJK 2011
## 13515 Tajikistan TJ TJK 2012
## 13516 Tajikistan TJ TJK 2013
## 13517 Thailand TH THA 1980
## 13518 Thailand TH THA 1981
## 13519 Thailand TH THA 1982
## 13520 Thailand TH THA 1983
## 13521 Thailand TH THA 1984
## 13522 Thailand TH THA 1985
## 13523 Thailand TH THA 1986
## 13524 Thailand TH THA 1987
## 13525 Thailand TH THA 1988
## 13526 Thailand TH THA 1989
## 13527 Thailand TH THA 1990
## 13528 Thailand TH THA 1991
## 13529 Thailand TH THA 1992
## 13530 Thailand TH THA 1993
## 13531 Thailand TH THA 1994
## 13532 Thailand TH THA 1995
## 13533 Thailand TH THA 1996
## 13534 Thailand TH THA 1997
## 13535 Thailand TH THA 1998
## 13536 Thailand TH THA 1999
## 13537 Thailand TH THA 2000
## 13538 Thailand TH THA 2001
## 13539 Thailand TH THA 2002
## 13540 Thailand TH THA 2003
## 13541 Thailand TH THA 2004
## 13542 Thailand TH THA 2005
## 13543 Thailand TH THA 2006
## 13544 Thailand TH THA 2007
## 13545 Thailand TH THA 2008
## 13546 Thailand TH THA 2009
## 13547 Thailand TH THA 2010
## 13548 Thailand TH THA 2011
## 13549 Thailand TH THA 2012
## 13550 Thailand TH THA 2013
## 13551 The Former Yugoslav Republic of Macedonia MK MKD 1980
## 13552 The Former Yugoslav Republic of Macedonia MK MKD 1981
## 13553 The Former Yugoslav Republic of Macedonia MK MKD 1982
## 13554 The Former Yugoslav Republic of Macedonia MK MKD 1983
## 13555 The Former Yugoslav Republic of Macedonia MK MKD 1984
## 13556 The Former Yugoslav Republic of Macedonia MK MKD 1985
## 13557 The Former Yugoslav Republic of Macedonia MK MKD 1986
## 13558 The Former Yugoslav Republic of Macedonia MK MKD 1987
## 13559 The Former Yugoslav Republic of Macedonia MK MKD 1988
## 13560 The Former Yugoslav Republic of Macedonia MK MKD 1989
## 13561 The Former Yugoslav Republic of Macedonia MK MKD 1990
## 13562 The Former Yugoslav Republic of Macedonia MK MKD 1991
## 13563 The Former Yugoslav Republic of Macedonia MK MKD 1992
## 13564 The Former Yugoslav Republic of Macedonia MK MKD 1993
## 13565 The Former Yugoslav Republic of Macedonia MK MKD 1994
## 13566 The Former Yugoslav Republic of Macedonia MK MKD 1995
## 13567 The Former Yugoslav Republic of Macedonia MK MKD 1996
## 13568 The Former Yugoslav Republic of Macedonia MK MKD 1997
## 13569 The Former Yugoslav Republic of Macedonia MK MKD 1998
## 13570 The Former Yugoslav Republic of Macedonia MK MKD 1999
## 13571 The Former Yugoslav Republic of Macedonia MK MKD 2000
## 13572 The Former Yugoslav Republic of Macedonia MK MKD 2001
## 13573 The Former Yugoslav Republic of Macedonia MK MKD 2002
## 13574 The Former Yugoslav Republic of Macedonia MK MKD 2003
## 13575 The Former Yugoslav Republic of Macedonia MK MKD 2004
## 13576 The Former Yugoslav Republic of Macedonia MK MKD 2005
## 13577 The Former Yugoslav Republic of Macedonia MK MKD 2006
## 13578 The Former Yugoslav Republic of Macedonia MK MKD 2007
## 13579 The Former Yugoslav Republic of Macedonia MK MKD 2008
## 13580 The Former Yugoslav Republic of Macedonia MK MKD 2009
## 13581 The Former Yugoslav Republic of Macedonia MK MKD 2010
## 13582 The Former Yugoslav Republic of Macedonia MK MKD 2011
## 13583 The Former Yugoslav Republic of Macedonia MK MKD 2012
## 13584 The Former Yugoslav Republic of Macedonia MK MKD 2013
## 13585 Timor-Leste TL TLS 2002
## 13586 Timor-Leste TL TLS 2003
## 13587 Timor-Leste TL TLS 2004
## 13588 Timor-Leste TL TLS 2005
## 13589 Timor-Leste TL TLS 2006
## 13590 Timor-Leste TL TLS 2007
## 13591 Timor-Leste TL TLS 2008
## 13592 Timor-Leste TL TLS 2009
## 13593 Timor-Leste TL TLS 2010
## 13594 Timor-Leste TL TLS 2011
## 13595 Timor-Leste TL TLS 2012
## 13596 Timor-Leste TL TLS 2013
## 13597 Togo TG TGO 1980
## 13598 Togo TG TGO 1981
## 13599 Togo TG TGO 1982
## 13600 Togo TG TGO 1983
## 13601 Togo TG TGO 1984
## 13602 Togo TG TGO 1985
## 13603 Togo TG TGO 1986
## 13604 Togo TG TGO 1987
## 13605 Togo TG TGO 1988
## 13606 Togo TG TGO 1989
## 13607 Togo TG TGO 1990
## 13608 Togo TG TGO 1991
## 13609 Togo TG TGO 1992
## 13610 Togo TG TGO 1993
## 13611 Togo TG TGO 1994
## 13612 Togo TG TGO 1995
## 13613 Togo TG TGO 1996
## 13614 Togo TG TGO 1997
## 13615 Togo TG TGO 1998
## 13616 Togo TG TGO 1999
## 13617 Togo TG TGO 2000
## 13618 Togo TG TGO 2001
## 13619 Togo TG TGO 2002
## 13620 Togo TG TGO 2003
## 13621 Togo TG TGO 2004
## 13622 Togo TG TGO 2005
## 13623 Togo TG TGO 2006
## 13624 Togo TG TGO 2007
## 13625 Togo TG TGO 2008
## 13626 Togo TG TGO 2009
## 13627 Togo TG TGO 2010
## 13628 Togo TG TGO 2011
## 13629 Togo TG TGO 2012
## 13630 Togo TG TGO 2013
## 13631 Tokelau TK TKL 1980
## 13632 Tokelau TK TKL 1981
## 13633 Tokelau TK TKL 1982
## 13634 Tokelau TK TKL 1983
## 13635 Tokelau TK TKL 1984
## 13636 Tokelau TK TKL 1985
## 13637 Tokelau TK TKL 1986
## 13638 Tokelau TK TKL 1987
## 13639 Tokelau TK TKL 1988
## 13640 Tokelau TK TKL 1989
## 13641 Tokelau TK TKL 1990
## 13642 Tokelau TK TKL 1991
## 13643 Tokelau TK TKL 1992
## 13644 Tokelau TK TKL 1993
## 13645 Tokelau TK TKL 1994
## 13646 Tokelau TK TKL 1995
## 13647 Tokelau TK TKL 1996
## 13648 Tokelau TK TKL 1997
## 13649 Tokelau TK TKL 1998
## 13650 Tokelau TK TKL 1999
## 13651 Tokelau TK TKL 2000
## 13652 Tokelau TK TKL 2001
## 13653 Tokelau TK TKL 2002
## 13654 Tokelau TK TKL 2003
## 13655 Tokelau TK TKL 2004
## 13656 Tokelau TK TKL 2005
## 13657 Tokelau TK TKL 2006
## 13658 Tokelau TK TKL 2007
## 13659 Tokelau TK TKL 2008
## 13660 Tokelau TK TKL 2009
## 13661 Tokelau TK TKL 2010
## 13662 Tokelau TK TKL 2011
## 13663 Tokelau TK TKL 2012
## 13664 Tokelau TK TKL 2013
## 13665 Tonga TO TON 1980
## 13666 Tonga TO TON 1981
## 13667 Tonga TO TON 1982
## 13668 Tonga TO TON 1983
## 13669 Tonga TO TON 1984
## 13670 Tonga TO TON 1985
## 13671 Tonga TO TON 1986
## 13672 Tonga TO TON 1987
## 13673 Tonga TO TON 1988
## 13674 Tonga TO TON 1989
## 13675 Tonga TO TON 1990
## 13676 Tonga TO TON 1991
## 13677 Tonga TO TON 1992
## 13678 Tonga TO TON 1993
## 13679 Tonga TO TON 1994
## 13680 Tonga TO TON 1995
## 13681 Tonga TO TON 1996
## 13682 Tonga TO TON 1997
## 13683 Tonga TO TON 1998
## 13684 Tonga TO TON 1999
## 13685 Tonga TO TON 2000
## 13686 Tonga TO TON 2001
## 13687 Tonga TO TON 2002
## 13688 Tonga TO TON 2003
## 13689 Tonga TO TON 2004
## 13690 Tonga TO TON 2005
## 13691 Tonga TO TON 2006
## 13692 Tonga TO TON 2007
## 13693 Tonga TO TON 2008
## 13694 Tonga TO TON 2009
## 13695 Tonga TO TON 2010
## 13696 Tonga TO TON 2011
## 13697 Tonga TO TON 2012
## 13698 Tonga TO TON 2013
## 13699 Trinidad and Tobago TT TTO 1980
## 13700 Trinidad and Tobago TT TTO 1981
## 13701 Trinidad and Tobago TT TTO 1982
## 13702 Trinidad and Tobago TT TTO 1983
## 13703 Trinidad and Tobago TT TTO 1984
## 13704 Trinidad and Tobago TT TTO 1985
## 13705 Trinidad and Tobago TT TTO 1986
## 13706 Trinidad and Tobago TT TTO 1987
## 13707 Trinidad and Tobago TT TTO 1988
## 13708 Trinidad and Tobago TT TTO 1989
## 13709 Trinidad and Tobago TT TTO 1990
## 13710 Trinidad and Tobago TT TTO 1991
## 13711 Trinidad and Tobago TT TTO 1992
## 13712 Trinidad and Tobago TT TTO 1993
## 13713 Trinidad and Tobago TT TTO 1994
## 13714 Trinidad and Tobago TT TTO 1995
## 13715 Trinidad and Tobago TT TTO 1996
## 13716 Trinidad and Tobago TT TTO 1997
## 13717 Trinidad and Tobago TT TTO 1998
## 13718 Trinidad and Tobago TT TTO 1999
## 13719 Trinidad and Tobago TT TTO 2000
## 13720 Trinidad and Tobago TT TTO 2001
## 13721 Trinidad and Tobago TT TTO 2002
## 13722 Trinidad and Tobago TT TTO 2003
## 13723 Trinidad and Tobago TT TTO 2004
## 13724 Trinidad and Tobago TT TTO 2005
## 13725 Trinidad and Tobago TT TTO 2006
## 13726 Trinidad and Tobago TT TTO 2007
## 13727 Trinidad and Tobago TT TTO 2008
## 13728 Trinidad and Tobago TT TTO 2009
## 13729 Trinidad and Tobago TT TTO 2010
## 13730 Trinidad and Tobago TT TTO 2011
## 13731 Trinidad and Tobago TT TTO 2012
## 13732 Trinidad and Tobago TT TTO 2013
## 13733 Tunisia TN TUN 1980
## 13734 Tunisia TN TUN 1981
## 13735 Tunisia TN TUN 1982
## 13736 Tunisia TN TUN 1983
## 13737 Tunisia TN TUN 1984
## 13738 Tunisia TN TUN 1985
## 13739 Tunisia TN TUN 1986
## 13740 Tunisia TN TUN 1987
## 13741 Tunisia TN TUN 1988
## 13742 Tunisia TN TUN 1989
## 13743 Tunisia TN TUN 1990
## 13744 Tunisia TN TUN 1991
## 13745 Tunisia TN TUN 1992
## 13746 Tunisia TN TUN 1993
## 13747 Tunisia TN TUN 1994
## 13748 Tunisia TN TUN 1995
## 13749 Tunisia TN TUN 1996
## 13750 Tunisia TN TUN 1997
## 13751 Tunisia TN TUN 1998
## 13752 Tunisia TN TUN 1999
## 13753 Tunisia TN TUN 2000
## 13754 Tunisia TN TUN 2001
## 13755 Tunisia TN TUN 2002
## 13756 Tunisia TN TUN 2003
## 13757 Tunisia TN TUN 2004
## 13758 Tunisia TN TUN 2005
## 13759 Tunisia TN TUN 2006
## 13760 Tunisia TN TUN 2007
## 13761 Tunisia TN TUN 2008
## 13762 Tunisia TN TUN 2009
## 13763 Tunisia TN TUN 2010
## 13764 Tunisia TN TUN 2011
## 13765 Tunisia TN TUN 2012
## 13766 Tunisia TN TUN 2013
## 13767 Turkey TR TUR 1980
## 13768 Turkey TR TUR 1981
## 13769 Turkey TR TUR 1982
## 13770 Turkey TR TUR 1983
## 13771 Turkey TR TUR 1984
## 13772 Turkey TR TUR 1985
## 13773 Turkey TR TUR 1986
## 13774 Turkey TR TUR 1987
## 13775 Turkey TR TUR 1988
## 13776 Turkey TR TUR 1989
## 13777 Turkey TR TUR 1990
## 13778 Turkey TR TUR 1991
## 13779 Turkey TR TUR 1992
## 13780 Turkey TR TUR 1993
## 13781 Turkey TR TUR 1994
## 13782 Turkey TR TUR 1995
## 13783 Turkey TR TUR 1996
## 13784 Turkey TR TUR 1997
## 13785 Turkey TR TUR 1998
## 13786 Turkey TR TUR 1999
## 13787 Turkey TR TUR 2000
## 13788 Turkey TR TUR 2001
## 13789 Turkey TR TUR 2002
## 13790 Turkey TR TUR 2003
## 13791 Turkey TR TUR 2004
## 13792 Turkey TR TUR 2005
## 13793 Turkey TR TUR 2006
## 13794 Turkey TR TUR 2007
## 13795 Turkey TR TUR 2008
## 13796 Turkey TR TUR 2009
## 13797 Turkey TR TUR 2010
## 13798 Turkey TR TUR 2011
## 13799 Turkey TR TUR 2012
## 13800 Turkey TR TUR 2013
## 13801 Turkmenistan TM TKM 1980
## 13802 Turkmenistan TM TKM 1981
## 13803 Turkmenistan TM TKM 1982
## 13804 Turkmenistan TM TKM 1983
## 13805 Turkmenistan TM TKM 1984
## 13806 Turkmenistan TM TKM 1985
## 13807 Turkmenistan TM TKM 1986
## 13808 Turkmenistan TM TKM 1987
## 13809 Turkmenistan TM TKM 1988
## 13810 Turkmenistan TM TKM 1989
## 13811 Turkmenistan TM TKM 1990
## 13812 Turkmenistan TM TKM 1991
## 13813 Turkmenistan TM TKM 1992
## 13814 Turkmenistan TM TKM 1993
## 13815 Turkmenistan TM TKM 1994
## 13816 Turkmenistan TM TKM 1995
## 13817 Turkmenistan TM TKM 1996
## 13818 Turkmenistan TM TKM 1997
## 13819 Turkmenistan TM TKM 1998
## 13820 Turkmenistan TM TKM 1999
## 13821 Turkmenistan TM TKM 2000
## 13822 Turkmenistan TM TKM 2001
## 13823 Turkmenistan TM TKM 2002
## 13824 Turkmenistan TM TKM 2003
## 13825 Turkmenistan TM TKM 2004
## 13826 Turkmenistan TM TKM 2005
## 13827 Turkmenistan TM TKM 2006
## 13828 Turkmenistan TM TKM 2007
## 13829 Turkmenistan TM TKM 2008
## 13830 Turkmenistan TM TKM 2009
## 13831 Turkmenistan TM TKM 2010
## 13832 Turkmenistan TM TKM 2011
## 13833 Turkmenistan TM TKM 2012
## 13834 Turkmenistan TM TKM 2013
## 13835 Turks and Caicos Islands TC TCA 1980
## 13836 Turks and Caicos Islands TC TCA 1981
## 13837 Turks and Caicos Islands TC TCA 1982
## 13838 Turks and Caicos Islands TC TCA 1983
## 13839 Turks and Caicos Islands TC TCA 1984
## 13840 Turks and Caicos Islands TC TCA 1985
## 13841 Turks and Caicos Islands TC TCA 1986
## 13842 Turks and Caicos Islands TC TCA 1987
## 13843 Turks and Caicos Islands TC TCA 1988
## 13844 Turks and Caicos Islands TC TCA 1989
## 13845 Turks and Caicos Islands TC TCA 1990
## 13846 Turks and Caicos Islands TC TCA 1991
## 13847 Turks and Caicos Islands TC TCA 1992
## 13848 Turks and Caicos Islands TC TCA 1993
## 13849 Turks and Caicos Islands TC TCA 1994
## 13850 Turks and Caicos Islands TC TCA 1995
## 13851 Turks and Caicos Islands TC TCA 1996
## 13852 Turks and Caicos Islands TC TCA 1997
## 13853 Turks and Caicos Islands TC TCA 1998
## 13854 Turks and Caicos Islands TC TCA 1999
## 13855 Turks and Caicos Islands TC TCA 2000
## 13856 Turks and Caicos Islands TC TCA 2001
## 13857 Turks and Caicos Islands TC TCA 2002
## 13858 Turks and Caicos Islands TC TCA 2003
## 13859 Turks and Caicos Islands TC TCA 2004
## 13860 Turks and Caicos Islands TC TCA 2005
## 13861 Turks and Caicos Islands TC TCA 2006
## 13862 Turks and Caicos Islands TC TCA 2007
## 13863 Turks and Caicos Islands TC TCA 2008
## 13864 Turks and Caicos Islands TC TCA 2009
## 13865 Turks and Caicos Islands TC TCA 2010
## 13866 Turks and Caicos Islands TC TCA 2011
## 13867 Turks and Caicos Islands TC TCA 2012
## 13868 Turks and Caicos Islands TC TCA 2013
## 13869 Tuvalu TV TUV 1980
## 13870 Tuvalu TV TUV 1981
## 13871 Tuvalu TV TUV 1982
## 13872 Tuvalu TV TUV 1983
## 13873 Tuvalu TV TUV 1984
## 13874 Tuvalu TV TUV 1985
## 13875 Tuvalu TV TUV 1986
## 13876 Tuvalu TV TUV 1987
## 13877 Tuvalu TV TUV 1988
## 13878 Tuvalu TV TUV 1989
## 13879 Tuvalu TV TUV 1990
## 13880 Tuvalu TV TUV 1991
## 13881 Tuvalu TV TUV 1992
## 13882 Tuvalu TV TUV 1993
## 13883 Tuvalu TV TUV 1994
## 13884 Tuvalu TV TUV 1995
## 13885 Tuvalu TV TUV 1996
## 13886 Tuvalu TV TUV 1997
## 13887 Tuvalu TV TUV 1998
## 13888 Tuvalu TV TUV 1999
## 13889 Tuvalu TV TUV 2000
## 13890 Tuvalu TV TUV 2001
## 13891 Tuvalu TV TUV 2002
## 13892 Tuvalu TV TUV 2003
## 13893 Tuvalu TV TUV 2004
## 13894 Tuvalu TV TUV 2005
## 13895 Tuvalu TV TUV 2006
## 13896 Tuvalu TV TUV 2007
## 13897 Tuvalu TV TUV 2008
## 13898 Tuvalu TV TUV 2009
## 13899 Tuvalu TV TUV 2010
## 13900 Tuvalu TV TUV 2011
## 13901 Tuvalu TV TUV 2012
## 13902 Tuvalu TV TUV 2013
## 13903 Uganda UG UGA 1980
## 13904 Uganda UG UGA 1981
## 13905 Uganda UG UGA 1982
## 13906 Uganda UG UGA 1983
## 13907 Uganda UG UGA 1984
## 13908 Uganda UG UGA 1985
## 13909 Uganda UG UGA 1986
## 13910 Uganda UG UGA 1987
## 13911 Uganda UG UGA 1988
## 13912 Uganda UG UGA 1989
## 13913 Uganda UG UGA 1990
## 13914 Uganda UG UGA 1991
## 13915 Uganda UG UGA 1992
## 13916 Uganda UG UGA 1993
## 13917 Uganda UG UGA 1994
## 13918 Uganda UG UGA 1995
## 13919 Uganda UG UGA 1996
## 13920 Uganda UG UGA 1997
## 13921 Uganda UG UGA 1998
## 13922 Uganda UG UGA 1999
## 13923 Uganda UG UGA 2000
## 13924 Uganda UG UGA 2001
## 13925 Uganda UG UGA 2002
## 13926 Uganda UG UGA 2003
## 13927 Uganda UG UGA 2004
## 13928 Uganda UG UGA 2005
## 13929 Uganda UG UGA 2006
## 13930 Uganda UG UGA 2007
## 13931 Uganda UG UGA 2008
## 13932 Uganda UG UGA 2009
## 13933 Uganda UG UGA 2010
## 13934 Uganda UG UGA 2011
## 13935 Uganda UG UGA 2012
## 13936 Uganda UG UGA 2013
## 13937 Ukraine UA UKR 1980
## 13938 Ukraine UA UKR 1981
## 13939 Ukraine UA UKR 1982
## 13940 Ukraine UA UKR 1983
## 13941 Ukraine UA UKR 1984
## 13942 Ukraine UA UKR 1985
## 13943 Ukraine UA UKR 1986
## 13944 Ukraine UA UKR 1987
## 13945 Ukraine UA UKR 1988
## 13946 Ukraine UA UKR 1989
## 13947 Ukraine UA UKR 1990
## 13948 Ukraine UA UKR 1991
## 13949 Ukraine UA UKR 1992
## 13950 Ukraine UA UKR 1993
## 13951 Ukraine UA UKR 1994
## 13952 Ukraine UA UKR 1995
## 13953 Ukraine UA UKR 1996
## 13954 Ukraine UA UKR 1997
## 13955 Ukraine UA UKR 1998
## 13956 Ukraine UA UKR 1999
## 13957 Ukraine UA UKR 2000
## 13958 Ukraine UA UKR 2001
## 13959 Ukraine UA UKR 2002
## 13960 Ukraine UA UKR 2003
## 13961 Ukraine UA UKR 2004
## 13962 Ukraine UA UKR 2005
## 13963 Ukraine UA UKR 2006
## 13964 Ukraine UA UKR 2007
## 13965 Ukraine UA UKR 2008
## 13966 Ukraine UA UKR 2009
## 13967 Ukraine UA UKR 2010
## 13968 Ukraine UA UKR 2011
## 13969 Ukraine UA UKR 2012
## 13970 Ukraine UA UKR 2013
## 13971 United Arab Emirates AE ARE 1980
## 13972 United Arab Emirates AE ARE 1981
## 13973 United Arab Emirates AE ARE 1982
## 13974 United Arab Emirates AE ARE 1983
## 13975 United Arab Emirates AE ARE 1984
## 13976 United Arab Emirates AE ARE 1985
## 13977 United Arab Emirates AE ARE 1986
## 13978 United Arab Emirates AE ARE 1987
## 13979 United Arab Emirates AE ARE 1988
## 13980 United Arab Emirates AE ARE 1989
## 13981 United Arab Emirates AE ARE 1990
## 13982 United Arab Emirates AE ARE 1991
## 13983 United Arab Emirates AE ARE 1992
## 13984 United Arab Emirates AE ARE 1993
## 13985 United Arab Emirates AE ARE 1994
## 13986 United Arab Emirates AE ARE 1995
## 13987 United Arab Emirates AE ARE 1996
## 13988 United Arab Emirates AE ARE 1997
## 13989 United Arab Emirates AE ARE 1998
## 13990 United Arab Emirates AE ARE 1999
## 13991 United Arab Emirates AE ARE 2000
## 13992 United Arab Emirates AE ARE 2001
## 13993 United Arab Emirates AE ARE 2002
## 13994 United Arab Emirates AE ARE 2003
## 13995 United Arab Emirates AE ARE 2004
## 13996 United Arab Emirates AE ARE 2005
## 13997 United Arab Emirates AE ARE 2006
## 13998 United Arab Emirates AE ARE 2007
## 13999 United Arab Emirates AE ARE 2008
## 14000 United Arab Emirates AE ARE 2009
## 14001 United Arab Emirates AE ARE 2010
## 14002 United Arab Emirates AE ARE 2011
## 14003 United Arab Emirates AE ARE 2012
## 14004 United Arab Emirates AE ARE 2013
## 14005 United Kingdom of Great Britain and Northern Ireland GB GBR 1980
## 14006 United Kingdom of Great Britain and Northern Ireland GB GBR 1981
## 14007 United Kingdom of Great Britain and Northern Ireland GB GBR 1982
## 14008 United Kingdom of Great Britain and Northern Ireland GB GBR 1983
## 14009 United Kingdom of Great Britain and Northern Ireland GB GBR 1984
## 14010 United Kingdom of Great Britain and Northern Ireland GB GBR 1985
## 14011 United Kingdom of Great Britain and Northern Ireland GB GBR 1986
## 14012 United Kingdom of Great Britain and Northern Ireland GB GBR 1987
## 14013 United Kingdom of Great Britain and Northern Ireland GB GBR 1988
## 14014 United Kingdom of Great Britain and Northern Ireland GB GBR 1989
## 14015 United Kingdom of Great Britain and Northern Ireland GB GBR 1990
## 14016 United Kingdom of Great Britain and Northern Ireland GB GBR 1991
## 14017 United Kingdom of Great Britain and Northern Ireland GB GBR 1992
## 14018 United Kingdom of Great Britain and Northern Ireland GB GBR 1993
## 14019 United Kingdom of Great Britain and Northern Ireland GB GBR 1994
## 14020 United Kingdom of Great Britain and Northern Ireland GB GBR 1995
## 14021 United Kingdom of Great Britain and Northern Ireland GB GBR 1996
## 14022 United Kingdom of Great Britain and Northern Ireland GB GBR 1997
## 14023 United Kingdom of Great Britain and Northern Ireland GB GBR 1998
## 14024 United Kingdom of Great Britain and Northern Ireland GB GBR 1999
## 14025 United Kingdom of Great Britain and Northern Ireland GB GBR 2000
## 14026 United Kingdom of Great Britain and Northern Ireland GB GBR 2001
## 14027 United Kingdom of Great Britain and Northern Ireland GB GBR 2002
## 14028 United Kingdom of Great Britain and Northern Ireland GB GBR 2003
## 14029 United Kingdom of Great Britain and Northern Ireland GB GBR 2004
## 14030 United Kingdom of Great Britain and Northern Ireland GB GBR 2005
## 14031 United Kingdom of Great Britain and Northern Ireland GB GBR 2006
## 14032 United Kingdom of Great Britain and Northern Ireland GB GBR 2007
## 14033 United Kingdom of Great Britain and Northern Ireland GB GBR 2008
## 14034 United Kingdom of Great Britain and Northern Ireland GB GBR 2009
## 14035 United Kingdom of Great Britain and Northern Ireland GB GBR 2010
## 14036 United Kingdom of Great Britain and Northern Ireland GB GBR 2011
## 14037 United Kingdom of Great Britain and Northern Ireland GB GBR 2012
## 14038 United Kingdom of Great Britain and Northern Ireland GB GBR 2013
## 14039 United Republic of Tanzania TZ TZA 1980
## 14040 United Republic of Tanzania TZ TZA 1981
## 14041 United Republic of Tanzania TZ TZA 1982
## 14042 United Republic of Tanzania TZ TZA 1983
## 14043 United Republic of Tanzania TZ TZA 1984
## 14044 United Republic of Tanzania TZ TZA 1985
## 14045 United Republic of Tanzania TZ TZA 1986
## 14046 United Republic of Tanzania TZ TZA 1987
## 14047 United Republic of Tanzania TZ TZA 1988
## 14048 United Republic of Tanzania TZ TZA 1989
## 14049 United Republic of Tanzania TZ TZA 1990
## 14050 United Republic of Tanzania TZ TZA 1991
## 14051 United Republic of Tanzania TZ TZA 1992
## 14052 United Republic of Tanzania TZ TZA 1993
## 14053 United Republic of Tanzania TZ TZA 1994
## 14054 United Republic of Tanzania TZ TZA 1995
## 14055 United Republic of Tanzania TZ TZA 1996
## 14056 United Republic of Tanzania TZ TZA 1997
## 14057 United Republic of Tanzania TZ TZA 1998
## 14058 United Republic of Tanzania TZ TZA 1999
## 14059 United Republic of Tanzania TZ TZA 2000
## 14060 United Republic of Tanzania TZ TZA 2001
## 14061 United Republic of Tanzania TZ TZA 2002
## 14062 United Republic of Tanzania TZ TZA 2003
## 14063 United Republic of Tanzania TZ TZA 2004
## 14064 United Republic of Tanzania TZ TZA 2005
## 14065 United Republic of Tanzania TZ TZA 2006
## 14066 United Republic of Tanzania TZ TZA 2007
## 14067 United Republic of Tanzania TZ TZA 2008
## 14068 United Republic of Tanzania TZ TZA 2009
## 14069 United Republic of Tanzania TZ TZA 2010
## 14070 United Republic of Tanzania TZ TZA 2011
## 14071 United Republic of Tanzania TZ TZA 2012
## 14072 United Republic of Tanzania TZ TZA 2013
## 14073 United States of America US USA 1980
## 14074 United States of America US USA 1981
## 14075 United States of America US USA 1982
## 14076 United States of America US USA 1983
## 14077 United States of America US USA 1984
## 14078 United States of America US USA 1985
## 14079 United States of America US USA 1986
## 14080 United States of America US USA 1987
## 14081 United States of America US USA 1988
## 14082 United States of America US USA 1989
## 14083 United States of America US USA 1990
## 14084 United States of America US USA 1991
## 14085 United States of America US USA 1992
## 14086 United States of America US USA 1993
## 14087 United States of America US USA 1994
## 14088 United States of America US USA 1995
## 14089 United States of America US USA 1996
## 14090 United States of America US USA 1997
## 14091 United States of America US USA 1998
## 14092 United States of America US USA 1999
## 14093 United States of America US USA 2000
## 14094 United States of America US USA 2001
## 14095 United States of America US USA 2002
## 14096 United States of America US USA 2003
## 14097 United States of America US USA 2004
## 14098 United States of America US USA 2005
## 14099 United States of America US USA 2006
## 14100 United States of America US USA 2007
## 14101 United States of America US USA 2008
## 14102 United States of America US USA 2009
## 14103 United States of America US USA 2010
## 14104 United States of America US USA 2011
## 14105 United States of America US USA 2012
## 14106 United States of America US USA 2013
## 14107 Uruguay UY URY 1980
## 14108 Uruguay UY URY 1981
## 14109 Uruguay UY URY 1982
## 14110 Uruguay UY URY 1983
## 14111 Uruguay UY URY 1984
## 14112 Uruguay UY URY 1985
## 14113 Uruguay UY URY 1986
## 14114 Uruguay UY URY 1987
## 14115 Uruguay UY URY 1988
## 14116 Uruguay UY URY 1989
## 14117 Uruguay UY URY 1990
## 14118 Uruguay UY URY 1991
## 14119 Uruguay UY URY 1992
## 14120 Uruguay UY URY 1993
## 14121 Uruguay UY URY 1994
## 14122 Uruguay UY URY 1995
## 14123 Uruguay UY URY 1996
## 14124 Uruguay UY URY 1997
## 14125 Uruguay UY URY 1998
## 14126 Uruguay UY URY 1999
## 14127 Uruguay UY URY 2000
## 14128 Uruguay UY URY 2001
## 14129 Uruguay UY URY 2002
## 14130 Uruguay UY URY 2003
## 14131 Uruguay UY URY 2004
## 14132 Uruguay UY URY 2005
## 14133 Uruguay UY URY 2006
## 14134 Uruguay UY URY 2007
## 14135 Uruguay UY URY 2008
## 14136 Uruguay UY URY 2009
## 14137 Uruguay UY URY 2010
## 14138 Uruguay UY URY 2011
## 14139 Uruguay UY URY 2012
## 14140 Uruguay UY URY 2013
## 14141 US Virgin Islands VI VIR 1980
## 14142 US Virgin Islands VI VIR 1981
## 14143 US Virgin Islands VI VIR 1982
## 14144 US Virgin Islands VI VIR 1983
## 14145 US Virgin Islands VI VIR 1984
## 14146 US Virgin Islands VI VIR 1985
## 14147 US Virgin Islands VI VIR 1986
## 14148 US Virgin Islands VI VIR 1987
## 14149 US Virgin Islands VI VIR 1988
## 14150 US Virgin Islands VI VIR 1989
## 14151 US Virgin Islands VI VIR 1990
## 14152 US Virgin Islands VI VIR 1991
## 14153 US Virgin Islands VI VIR 1992
## 14154 US Virgin Islands VI VIR 1993
## 14155 US Virgin Islands VI VIR 1994
## 14156 US Virgin Islands VI VIR 1995
## 14157 US Virgin Islands VI VIR 1996
## 14158 US Virgin Islands VI VIR 1997
## 14159 US Virgin Islands VI VIR 1998
## 14160 US Virgin Islands VI VIR 1999
## 14161 US Virgin Islands VI VIR 2000
## 14162 US Virgin Islands VI VIR 2001
## 14163 US Virgin Islands VI VIR 2002
## 14164 US Virgin Islands VI VIR 2003
## 14165 US Virgin Islands VI VIR 2004
## 14166 US Virgin Islands VI VIR 2005
## 14167 US Virgin Islands VI VIR 2006
## 14168 US Virgin Islands VI VIR 2007
## 14169 US Virgin Islands VI VIR 2008
## 14170 US Virgin Islands VI VIR 2009
## 14171 US Virgin Islands VI VIR 2010
## 14172 US Virgin Islands VI VIR 2011
## 14173 US Virgin Islands VI VIR 2012
## 14174 US Virgin Islands VI VIR 2013
## 14175 Uzbekistan UZ UZB 1980
## 14176 Uzbekistan UZ UZB 1981
## 14177 Uzbekistan UZ UZB 1982
## 14178 Uzbekistan UZ UZB 1983
## 14179 Uzbekistan UZ UZB 1984
## 14180 Uzbekistan UZ UZB 1985
## 14181 Uzbekistan UZ UZB 1986
## 14182 Uzbekistan UZ UZB 1987
## 14183 Uzbekistan UZ UZB 1988
## 14184 Uzbekistan UZ UZB 1989
## 14185 Uzbekistan UZ UZB 1990
## 14186 Uzbekistan UZ UZB 1991
## 14187 Uzbekistan UZ UZB 1992
## 14188 Uzbekistan UZ UZB 1993
## 14189 Uzbekistan UZ UZB 1994
## 14190 Uzbekistan UZ UZB 1995
## 14191 Uzbekistan UZ UZB 1996
## 14192 Uzbekistan UZ UZB 1997
## 14193 Uzbekistan UZ UZB 1998
## 14194 Uzbekistan UZ UZB 1999
## 14195 Uzbekistan UZ UZB 2000
## 14196 Uzbekistan UZ UZB 2001
## 14197 Uzbekistan UZ UZB 2002
## 14198 Uzbekistan UZ UZB 2003
## 14199 Uzbekistan UZ UZB 2004
## 14200 Uzbekistan UZ UZB 2005
## 14201 Uzbekistan UZ UZB 2006
## 14202 Uzbekistan UZ UZB 2007
## 14203 Uzbekistan UZ UZB 2008
## 14204 Uzbekistan UZ UZB 2009
## 14205 Uzbekistan UZ UZB 2010
## 14206 Uzbekistan UZ UZB 2011
## 14207 Uzbekistan UZ UZB 2012
## 14208 Uzbekistan UZ UZB 2013
## 14209 Vanuatu VU VUT 1980
## 14210 Vanuatu VU VUT 1981
## 14211 Vanuatu VU VUT 1982
## 14212 Vanuatu VU VUT 1983
## 14213 Vanuatu VU VUT 1984
## 14214 Vanuatu VU VUT 1985
## 14215 Vanuatu VU VUT 1986
## 14216 Vanuatu VU VUT 1987
## 14217 Vanuatu VU VUT 1988
## 14218 Vanuatu VU VUT 1989
## 14219 Vanuatu VU VUT 1990
## 14220 Vanuatu VU VUT 1991
## 14221 Vanuatu VU VUT 1992
## 14222 Vanuatu VU VUT 1993
## 14223 Vanuatu VU VUT 1994
## 14224 Vanuatu VU VUT 1995
## 14225 Vanuatu VU VUT 1996
## 14226 Vanuatu VU VUT 1997
## 14227 Vanuatu VU VUT 1998
## 14228 Vanuatu VU VUT 1999
## 14229 Vanuatu VU VUT 2000
## 14230 Vanuatu VU VUT 2001
## 14231 Vanuatu VU VUT 2002
## 14232 Vanuatu VU VUT 2003
## 14233 Vanuatu VU VUT 2004
## 14234 Vanuatu VU VUT 2005
## 14235 Vanuatu VU VUT 2006
## 14236 Vanuatu VU VUT 2007
## 14237 Vanuatu VU VUT 2008
## 14238 Vanuatu VU VUT 2009
## 14239 Vanuatu VU VUT 2010
## 14240 Vanuatu VU VUT 2011
## 14241 Vanuatu VU VUT 2012
## 14242 Vanuatu VU VUT 2013
## 14243 Venezuela (Bolivarian Republic of) VE VEN 1980
## 14244 Venezuela (Bolivarian Republic of) VE VEN 1981
## 14245 Venezuela (Bolivarian Republic of) VE VEN 1982
## 14246 Venezuela (Bolivarian Republic of) VE VEN 1983
## 14247 Venezuela (Bolivarian Republic of) VE VEN 1984
## 14248 Venezuela (Bolivarian Republic of) VE VEN 1985
## 14249 Venezuela (Bolivarian Republic of) VE VEN 1986
## 14250 Venezuela (Bolivarian Republic of) VE VEN 1987
## 14251 Venezuela (Bolivarian Republic of) VE VEN 1988
## 14252 Venezuela (Bolivarian Republic of) VE VEN 1989
## 14253 Venezuela (Bolivarian Republic of) VE VEN 1990
## 14254 Venezuela (Bolivarian Republic of) VE VEN 1991
## 14255 Venezuela (Bolivarian Republic of) VE VEN 1992
## 14256 Venezuela (Bolivarian Republic of) VE VEN 1993
## 14257 Venezuela (Bolivarian Republic of) VE VEN 1994
## 14258 Venezuela (Bolivarian Republic of) VE VEN 1995
## 14259 Venezuela (Bolivarian Republic of) VE VEN 1996
## 14260 Venezuela (Bolivarian Republic of) VE VEN 1997
## 14261 Venezuela (Bolivarian Republic of) VE VEN 1998
## 14262 Venezuela (Bolivarian Republic of) VE VEN 1999
## 14263 Venezuela (Bolivarian Republic of) VE VEN 2000
## 14264 Venezuela (Bolivarian Republic of) VE VEN 2001
## 14265 Venezuela (Bolivarian Republic of) VE VEN 2002
## 14266 Venezuela (Bolivarian Republic of) VE VEN 2003
## 14267 Venezuela (Bolivarian Republic of) VE VEN 2004
## 14268 Venezuela (Bolivarian Republic of) VE VEN 2005
## 14269 Venezuela (Bolivarian Republic of) VE VEN 2006
## 14270 Venezuela (Bolivarian Republic of) VE VEN 2007
## 14271 Venezuela (Bolivarian Republic of) VE VEN 2008
## 14272 Venezuela (Bolivarian Republic of) VE VEN 2009
## 14273 Venezuela (Bolivarian Republic of) VE VEN 2010
## 14274 Venezuela (Bolivarian Republic of) VE VEN 2011
## 14275 Venezuela (Bolivarian Republic of) VE VEN 2012
## 14276 Venezuela (Bolivarian Republic of) VE VEN 2013
## 14277 Viet Nam VN VNM 1980
## 14278 Viet Nam VN VNM 1981
## 14279 Viet Nam VN VNM 1982
## 14280 Viet Nam VN VNM 1983
## 14281 Viet Nam VN VNM 1984
## 14282 Viet Nam VN VNM 1985
## 14283 Viet Nam VN VNM 1986
## 14284 Viet Nam VN VNM 1987
## 14285 Viet Nam VN VNM 1988
## 14286 Viet Nam VN VNM 1989
## 14287 Viet Nam VN VNM 1990
## 14288 Viet Nam VN VNM 1991
## 14289 Viet Nam VN VNM 1992
## 14290 Viet Nam VN VNM 1993
## 14291 Viet Nam VN VNM 1994
## 14292 Viet Nam VN VNM 1995
## 14293 Viet Nam VN VNM 1996
## 14294 Viet Nam VN VNM 1997
## 14295 Viet Nam VN VNM 1998
## 14296 Viet Nam VN VNM 1999
## 14297 Viet Nam VN VNM 2000
## 14298 Viet Nam VN VNM 2001
## 14299 Viet Nam VN VNM 2002
## 14300 Viet Nam VN VNM 2003
## 14301 Viet Nam VN VNM 2004
## 14302 Viet Nam VN VNM 2005
## 14303 Viet Nam VN VNM 2006
## 14304 Viet Nam VN VNM 2007
## 14305 Viet Nam VN VNM 2008
## 14306 Viet Nam VN VNM 2009
## 14307 Viet Nam VN VNM 2010
## 14308 Viet Nam VN VNM 2011
## 14309 Viet Nam VN VNM 2012
## 14310 Viet Nam VN VNM 2013
## 14311 Wallis and Futuna Islands WF WLF 1980
## 14312 Wallis and Futuna Islands WF WLF 1981
## 14313 Wallis and Futuna Islands WF WLF 1982
## 14314 Wallis and Futuna Islands WF WLF 1983
## 14315 Wallis and Futuna Islands WF WLF 1984
## 14316 Wallis and Futuna Islands WF WLF 1985
## 14317 Wallis and Futuna Islands WF WLF 1986
## 14318 Wallis and Futuna Islands WF WLF 1987
## 14319 Wallis and Futuna Islands WF WLF 1988
## 14320 Wallis and Futuna Islands WF WLF 1989
## 14321 Wallis and Futuna Islands WF WLF 1990
## 14322 Wallis and Futuna Islands WF WLF 1991
## 14323 Wallis and Futuna Islands WF WLF 1992
## 14324 Wallis and Futuna Islands WF WLF 1993
## 14325 Wallis and Futuna Islands WF WLF 1994
## 14326 Wallis and Futuna Islands WF WLF 1995
## 14327 Wallis and Futuna Islands WF WLF 1996
## 14328 Wallis and Futuna Islands WF WLF 1997
## 14329 Wallis and Futuna Islands WF WLF 1998
## 14330 Wallis and Futuna Islands WF WLF 1999
## 14331 Wallis and Futuna Islands WF WLF 2000
## 14332 Wallis and Futuna Islands WF WLF 2001
## 14333 Wallis and Futuna Islands WF WLF 2002
## 14334 Wallis and Futuna Islands WF WLF 2003
## 14335 Wallis and Futuna Islands WF WLF 2004
## 14336 Wallis and Futuna Islands WF WLF 2005
## 14337 Wallis and Futuna Islands WF WLF 2006
## 14338 Wallis and Futuna Islands WF WLF 2007
## 14339 Wallis and Futuna Islands WF WLF 2008
## 14340 Wallis and Futuna Islands WF WLF 2009
## 14341 Wallis and Futuna Islands WF WLF 2010
## 14342 Wallis and Futuna Islands WF WLF 2011
## 14343 Wallis and Futuna Islands WF WLF 2012
## 14344 Wallis and Futuna Islands WF WLF 2013
## 14345 West Bank and Gaza Strip PS PSE 1980
## 14346 West Bank and Gaza Strip PS PSE 1981
## 14347 West Bank and Gaza Strip PS PSE 1982
## 14348 West Bank and Gaza Strip PS PSE 1983
## 14349 West Bank and Gaza Strip PS PSE 1984
## 14350 West Bank and Gaza Strip PS PSE 1985
## 14351 West Bank and Gaza Strip PS PSE 1986
## 14352 West Bank and Gaza Strip PS PSE 1987
## 14353 West Bank and Gaza Strip PS PSE 1988
## 14354 West Bank and Gaza Strip PS PSE 1989
## 14355 West Bank and Gaza Strip PS PSE 1990
## 14356 West Bank and Gaza Strip PS PSE 1991
## 14357 West Bank and Gaza Strip PS PSE 1992
## 14358 West Bank and Gaza Strip PS PSE 1993
## 14359 West Bank and Gaza Strip PS PSE 1994
## 14360 West Bank and Gaza Strip PS PSE 1995
## 14361 West Bank and Gaza Strip PS PSE 1996
## 14362 West Bank and Gaza Strip PS PSE 1997
## 14363 West Bank and Gaza Strip PS PSE 1998
## 14364 West Bank and Gaza Strip PS PSE 1999
## 14365 West Bank and Gaza Strip PS PSE 2000
## 14366 West Bank and Gaza Strip PS PSE 2001
## 14367 West Bank and Gaza Strip PS PSE 2002
## 14368 West Bank and Gaza Strip PS PSE 2003
## 14369 West Bank and Gaza Strip PS PSE 2004
## 14370 West Bank and Gaza Strip PS PSE 2005
## 14371 West Bank and Gaza Strip PS PSE 2006
## 14372 West Bank and Gaza Strip PS PSE 2007
## 14373 West Bank and Gaza Strip PS PSE 2008
## 14374 West Bank and Gaza Strip PS PSE 2009
## 14375 West Bank and Gaza Strip PS PSE 2010
## 14376 West Bank and Gaza Strip PS PSE 2011
## 14377 West Bank and Gaza Strip PS PSE 2012
## 14378 West Bank and Gaza Strip PS PSE 2013
## 14379 Yemen YE YEM 1980
## 14380 Yemen YE YEM 1981
## 14381 Yemen YE YEM 1982
## 14382 Yemen YE YEM 1983
## 14383 Yemen YE YEM 1984
## 14384 Yemen YE YEM 1985
## 14385 Yemen YE YEM 1986
## 14386 Yemen YE YEM 1987
## 14387 Yemen YE YEM 1988
## 14388 Yemen YE YEM 1989
## 14389 Yemen YE YEM 1990
## 14390 Yemen YE YEM 1991
## 14391 Yemen YE YEM 1992
## 14392 Yemen YE YEM 1993
## 14393 Yemen YE YEM 1994
## 14394 Yemen YE YEM 1995
## 14395 Yemen YE YEM 1996
## 14396 Yemen YE YEM 1997
## 14397 Yemen YE YEM 1998
## 14398 Yemen YE YEM 1999
## 14399 Yemen YE YEM 2000
## 14400 Yemen YE YEM 2001
## 14401 Yemen YE YEM 2002
## 14402 Yemen YE YEM 2003
## 14403 Yemen YE YEM 2004
## 14404 Yemen YE YEM 2005
## 14405 Yemen YE YEM 2006
## 14406 Yemen YE YEM 2007
## 14407 Yemen YE YEM 2008
## 14408 Yemen YE YEM 2009
## 14409 Yemen YE YEM 2010
## 14410 Yemen YE YEM 2011
## 14411 Yemen YE YEM 2012
## 14412 Yemen YE YEM 2013
## 14413 Zambia ZM ZMB 1980
## 14414 Zambia ZM ZMB 1981
## 14415 Zambia ZM ZMB 1982
## 14416 Zambia ZM ZMB 1983
## 14417 Zambia ZM ZMB 1984
## 14418 Zambia ZM ZMB 1985
## 14419 Zambia ZM ZMB 1986
## 14420 Zambia ZM ZMB 1987
## 14421 Zambia ZM ZMB 1988
## 14422 Zambia ZM ZMB 1989
## 14423 Zambia ZM ZMB 1990
## 14424 Zambia ZM ZMB 1991
## 14425 Zambia ZM ZMB 1992
## 14426 Zambia ZM ZMB 1993
## 14427 Zambia ZM ZMB 1994
## 14428 Zambia ZM ZMB 1995
## 14429 Zambia ZM ZMB 1996
## 14430 Zambia ZM ZMB 1997
## 14431 Zambia ZM ZMB 1998
## 14432 Zambia ZM ZMB 1999
## 14433 Zambia ZM ZMB 2000
## 14434 Zambia ZM ZMB 2001
## 14435 Zambia ZM ZMB 2002
## 14436 Zambia ZM ZMB 2003
## 14437 Zambia ZM ZMB 2004
## 14438 Zambia ZM ZMB 2005
## 14439 Zambia ZM ZMB 2006
## 14440 Zambia ZM ZMB 2007
## 14441 Zambia ZM ZMB 2008
## 14442 Zambia ZM ZMB 2009
## 14443 Zambia ZM ZMB 2010
## 14444 Zambia ZM ZMB 2011
## 14445 Zambia ZM ZMB 2012
## 14446 Zambia ZM ZMB 2013
## 14447 Zimbabwe ZW ZWE 1980
## 14448 Zimbabwe ZW ZWE 1981
## 14449 Zimbabwe ZW ZWE 1982
## 14450 Zimbabwe ZW ZWE 1983
## 14451 Zimbabwe ZW ZWE 1984
## 14452 Zimbabwe ZW ZWE 1985
## 14453 Zimbabwe ZW ZWE 1986
## 14454 Zimbabwe ZW ZWE 1987
## 14455 Zimbabwe ZW ZWE 1988
## 14456 Zimbabwe ZW ZWE 1989
## 14457 Zimbabwe ZW ZWE 1990
## 14458 Zimbabwe ZW ZWE 1991
## 14459 Zimbabwe ZW ZWE 1992
## 14460 Zimbabwe ZW ZWE 1993
## 14461 Zimbabwe ZW ZWE 1994
## 14462 Zimbabwe ZW ZWE 1995
## 14463 Zimbabwe ZW ZWE 1996
## 14464 Zimbabwe ZW ZWE 1997
## 14465 Zimbabwe ZW ZWE 1998
## 14466 Zimbabwe ZW ZWE 1999
## 14467 Zimbabwe ZW ZWE 2000
## 14468 Zimbabwe ZW ZWE 2001
## 14469 Zimbabwe ZW ZWE 2002
## 14470 Zimbabwe ZW ZWE 2003
## 14471 Zimbabwe ZW ZWE 2004
## 14472 Zimbabwe ZW ZWE 2005
## 14473 Zimbabwe ZW ZWE 2006
## 14474 Zimbabwe ZW ZWE 2007
## 14475 Zimbabwe ZW ZWE 2008
## 14476 Zimbabwe ZW ZWE 2009
## 14477 Zimbabwe ZW ZWE 2010
## 14478 Zimbabwe ZW ZWE 2011
## 14479 Zimbabwe ZW ZWE 2012
## 14480 Zimbabwe ZW ZWE 2013
## 14481 Afghanistan AF AFG 1980
## 14482 Afghanistan AF AFG 1981
## 14483 Afghanistan AF AFG 1982
## 14484 Afghanistan AF AFG 1983
## 14485 Afghanistan AF AFG 1984
## 14486 Afghanistan AF AFG 1985
## 14487 Afghanistan AF AFG 1986
## 14488 Afghanistan AF AFG 1987
## 14489 Afghanistan AF AFG 1988
## 14490 Afghanistan AF AFG 1989
## 14491 Afghanistan AF AFG 1990
## 14492 Afghanistan AF AFG 1991
## 14493 Afghanistan AF AFG 1992
## 14494 Afghanistan AF AFG 1993
## 14495 Afghanistan AF AFG 1994
## 14496 Afghanistan AF AFG 1995
## 14497 Afghanistan AF AFG 1996
## 14498 Afghanistan AF AFG 1997
## 14499 Afghanistan AF AFG 1998
## 14500 Afghanistan AF AFG 1999
## 14501 Afghanistan AF AFG 2000
## 14502 Afghanistan AF AFG 2001
## 14503 Afghanistan AF AFG 2002
## 14504 Afghanistan AF AFG 2003
## 14505 Afghanistan AF AFG 2004
## 14506 Afghanistan AF AFG 2005
## 14507 Afghanistan AF AFG 2006
## 14508 Afghanistan AF AFG 2007
## 14509 Afghanistan AF AFG 2008
## 14510 Afghanistan AF AFG 2009
## 14511 Afghanistan AF AFG 2010
## 14512 Afghanistan AF AFG 2011
## 14513 Afghanistan AF AFG 2012
## 14514 Afghanistan AF AFG 2013
## 14515 Albania AL ALB 1980
## 14516 Albania AL ALB 1981
## 14517 Albania AL ALB 1982
## 14518 Albania AL ALB 1983
## 14519 Albania AL ALB 1984
## 14520 Albania AL ALB 1985
## 14521 Albania AL ALB 1986
## 14522 Albania AL ALB 1987
## 14523 Albania AL ALB 1988
## 14524 Albania AL ALB 1989
## 14525 Albania AL ALB 1990
## 14526 Albania AL ALB 1991
## 14527 Albania AL ALB 1992
## 14528 Albania AL ALB 1993
## 14529 Albania AL ALB 1994
## 14530 Albania AL ALB 1995
## 14531 Albania AL ALB 1996
## 14532 Albania AL ALB 1997
## 14533 Albania AL ALB 1998
## 14534 Albania AL ALB 1999
## 14535 Albania AL ALB 2000
## 14536 Albania AL ALB 2001
## 14537 Albania AL ALB 2002
## 14538 Albania AL ALB 2003
## 14539 Albania AL ALB 2004
## 14540 Albania AL ALB 2005
## 14541 Albania AL ALB 2006
## 14542 Albania AL ALB 2007
## 14543 Albania AL ALB 2008
## 14544 Albania AL ALB 2009
## 14545 Albania AL ALB 2010
## 14546 Albania AL ALB 2011
## 14547 Albania AL ALB 2012
## 14548 Albania AL ALB 2013
## 14549 Algeria DZ DZA 1980
## 14550 Algeria DZ DZA 1981
## 14551 Algeria DZ DZA 1982
## 14552 Algeria DZ DZA 1983
## 14553 Algeria DZ DZA 1984
## 14554 Algeria DZ DZA 1985
## 14555 Algeria DZ DZA 1986
## 14556 Algeria DZ DZA 1987
## 14557 Algeria DZ DZA 1988
## 14558 Algeria DZ DZA 1989
## 14559 Algeria DZ DZA 1990
## 14560 Algeria DZ DZA 1991
## 14561 Algeria DZ DZA 1992
## 14562 Algeria DZ DZA 1993
## 14563 Algeria DZ DZA 1994
## 14564 Algeria DZ DZA 1995
## 14565 Algeria DZ DZA 1996
## 14566 Algeria DZ DZA 1997
## 14567 Algeria DZ DZA 1998
## 14568 Algeria DZ DZA 1999
## 14569 Algeria DZ DZA 2000
## 14570 Algeria DZ DZA 2001
## 14571 Algeria DZ DZA 2002
## 14572 Algeria DZ DZA 2003
## 14573 Algeria DZ DZA 2004
## 14574 Algeria DZ DZA 2005
## 14575 Algeria DZ DZA 2006
## 14576 Algeria DZ DZA 2007
## 14577 Algeria DZ DZA 2008
## 14578 Algeria DZ DZA 2009
## 14579 Algeria DZ DZA 2010
## 14580 Algeria DZ DZA 2011
## 14581 Algeria DZ DZA 2012
## 14582 Algeria DZ DZA 2013
## 14583 American Samoa AS ASM 1980
## 14584 American Samoa AS ASM 1981
## 14585 American Samoa AS ASM 1982
## 14586 American Samoa AS ASM 1983
## 14587 American Samoa AS ASM 1984
## 14588 American Samoa AS ASM 1985
## 14589 American Samoa AS ASM 1986
## 14590 American Samoa AS ASM 1987
## 14591 American Samoa AS ASM 1988
## 14592 American Samoa AS ASM 1989
## 14593 American Samoa AS ASM 1990
## 14594 American Samoa AS ASM 1991
## 14595 American Samoa AS ASM 1992
## 14596 American Samoa AS ASM 1993
## 14597 American Samoa AS ASM 1994
## 14598 American Samoa AS ASM 1995
## 14599 American Samoa AS ASM 1996
## 14600 American Samoa AS ASM 1997
## 14601 American Samoa AS ASM 1998
## 14602 American Samoa AS ASM 1999
## 14603 American Samoa AS ASM 2000
## 14604 American Samoa AS ASM 2001
## 14605 American Samoa AS ASM 2002
## 14606 American Samoa AS ASM 2003
## 14607 American Samoa AS ASM 2004
## 14608 American Samoa AS ASM 2005
## 14609 American Samoa AS ASM 2006
## 14610 American Samoa AS ASM 2007
## 14611 American Samoa AS ASM 2008
## 14612 American Samoa AS ASM 2009
## 14613 American Samoa AS ASM 2010
## 14614 American Samoa AS ASM 2011
## 14615 American Samoa AS ASM 2012
## 14616 American Samoa AS ASM 2013
## 14617 Andorra AD AND 1980
## 14618 Andorra AD AND 1981
## 14619 Andorra AD AND 1982
## 14620 Andorra AD AND 1983
## 14621 Andorra AD AND 1984
## 14622 Andorra AD AND 1985
## 14623 Andorra AD AND 1986
## 14624 Andorra AD AND 1987
## 14625 Andorra AD AND 1988
## 14626 Andorra AD AND 1989
## 14627 Andorra AD AND 1990
## 14628 Andorra AD AND 1991
## 14629 Andorra AD AND 1992
## 14630 Andorra AD AND 1993
## 14631 Andorra AD AND 1994
## 14632 Andorra AD AND 1995
## 14633 Andorra AD AND 1996
## 14634 Andorra AD AND 1997
## 14635 Andorra AD AND 1998
## 14636 Andorra AD AND 1999
## 14637 Andorra AD AND 2000
## 14638 Andorra AD AND 2001
## 14639 Andorra AD AND 2002
## 14640 Andorra AD AND 2003
## 14641 Andorra AD AND 2004
## 14642 Andorra AD AND 2005
## 14643 Andorra AD AND 2006
## 14644 Andorra AD AND 2007
## 14645 Andorra AD AND 2008
## 14646 Andorra AD AND 2009
## 14647 Andorra AD AND 2010
## 14648 Andorra AD AND 2011
## 14649 Andorra AD AND 2012
## 14650 Andorra AD AND 2013
## 14651 Angola AO AGO 1980
## 14652 Angola AO AGO 1981
## 14653 Angola AO AGO 1982
## 14654 Angola AO AGO 1983
## 14655 Angola AO AGO 1984
## 14656 Angola AO AGO 1985
## 14657 Angola AO AGO 1986
## 14658 Angola AO AGO 1987
## 14659 Angola AO AGO 1988
## 14660 Angola AO AGO 1989
## 14661 Angola AO AGO 1990
## 14662 Angola AO AGO 1991
## 14663 Angola AO AGO 1992
## 14664 Angola AO AGO 1993
## 14665 Angola AO AGO 1994
## 14666 Angola AO AGO 1995
## 14667 Angola AO AGO 1996
## 14668 Angola AO AGO 1997
## 14669 Angola AO AGO 1998
## 14670 Angola AO AGO 1999
## 14671 Angola AO AGO 2000
## 14672 Angola AO AGO 2001
## 14673 Angola AO AGO 2002
## 14674 Angola AO AGO 2003
## 14675 Angola AO AGO 2004
## 14676 Angola AO AGO 2005
## 14677 Angola AO AGO 2006
## 14678 Angola AO AGO 2007
## 14679 Angola AO AGO 2008
## 14680 Angola AO AGO 2009
## 14681 Angola AO AGO 2010
## 14682 Angola AO AGO 2011
## 14683 Angola AO AGO 2012
## 14684 Angola AO AGO 2013
## 14685 Anguilla AI AIA 1980
## 14686 Anguilla AI AIA 1981
## 14687 Anguilla AI AIA 1982
## 14688 Anguilla AI AIA 1983
## 14689 Anguilla AI AIA 1984
## 14690 Anguilla AI AIA 1985
## 14691 Anguilla AI AIA 1986
## 14692 Anguilla AI AIA 1987
## 14693 Anguilla AI AIA 1988
## 14694 Anguilla AI AIA 1989
## 14695 Anguilla AI AIA 1990
## 14696 Anguilla AI AIA 1991
## 14697 Anguilla AI AIA 1992
## 14698 Anguilla AI AIA 1993
## 14699 Anguilla AI AIA 1994
## 14700 Anguilla AI AIA 1995
## 14701 Anguilla AI AIA 1996
## 14702 Anguilla AI AIA 1997
## 14703 Anguilla AI AIA 1998
## 14704 Anguilla AI AIA 1999
## 14705 Anguilla AI AIA 2000
## 14706 Anguilla AI AIA 2001
## 14707 Anguilla AI AIA 2002
## 14708 Anguilla AI AIA 2003
## 14709 Anguilla AI AIA 2004
## 14710 Anguilla AI AIA 2005
## 14711 Anguilla AI AIA 2006
## 14712 Anguilla AI AIA 2007
## 14713 Anguilla AI AIA 2008
## 14714 Anguilla AI AIA 2009
## 14715 Anguilla AI AIA 2010
## 14716 Anguilla AI AIA 2011
## 14717 Anguilla AI AIA 2012
## 14718 Anguilla AI AIA 2013
## 14719 Antigua and Barbuda AG ATG 1980
## 14720 Antigua and Barbuda AG ATG 1981
## 14721 Antigua and Barbuda AG ATG 1982
## 14722 Antigua and Barbuda AG ATG 1983
## 14723 Antigua and Barbuda AG ATG 1984
## 14724 Antigua and Barbuda AG ATG 1985
## 14725 Antigua and Barbuda AG ATG 1986
## 14726 Antigua and Barbuda AG ATG 1987
## 14727 Antigua and Barbuda AG ATG 1988
## 14728 Antigua and Barbuda AG ATG 1989
## 14729 Antigua and Barbuda AG ATG 1990
## 14730 Antigua and Barbuda AG ATG 1991
## 14731 Antigua and Barbuda AG ATG 1992
## 14732 Antigua and Barbuda AG ATG 1993
## 14733 Antigua and Barbuda AG ATG 1994
## 14734 Antigua and Barbuda AG ATG 1995
## 14735 Antigua and Barbuda AG ATG 1996
## 14736 Antigua and Barbuda AG ATG 1997
## 14737 Antigua and Barbuda AG ATG 1998
## 14738 Antigua and Barbuda AG ATG 1999
## 14739 Antigua and Barbuda AG ATG 2000
## 14740 Antigua and Barbuda AG ATG 2001
## 14741 Antigua and Barbuda AG ATG 2002
## 14742 Antigua and Barbuda AG ATG 2003
## 14743 Antigua and Barbuda AG ATG 2004
## 14744 Antigua and Barbuda AG ATG 2005
## 14745 Antigua and Barbuda AG ATG 2006
## 14746 Antigua and Barbuda AG ATG 2007
## 14747 Antigua and Barbuda AG ATG 2008
## 14748 Antigua and Barbuda AG ATG 2009
## 14749 Antigua and Barbuda AG ATG 2010
## 14750 Antigua and Barbuda AG ATG 2011
## 14751 Antigua and Barbuda AG ATG 2012
## 14752 Antigua and Barbuda AG ATG 2013
## 14753 Argentina AR ARG 1980
## 14754 Argentina AR ARG 1981
## 14755 Argentina AR ARG 1982
## 14756 Argentina AR ARG 1983
## 14757 Argentina AR ARG 1984
## 14758 Argentina AR ARG 1985
## 14759 Argentina AR ARG 1986
## 14760 Argentina AR ARG 1987
## 14761 Argentina AR ARG 1988
## 14762 Argentina AR ARG 1989
## 14763 Argentina AR ARG 1990
## 14764 Argentina AR ARG 1991
## 14765 Argentina AR ARG 1992
## 14766 Argentina AR ARG 1993
## 14767 Argentina AR ARG 1994
## 14768 Argentina AR ARG 1995
## 14769 Argentina AR ARG 1996
## 14770 Argentina AR ARG 1997
## 14771 Argentina AR ARG 1998
## 14772 Argentina AR ARG 1999
## 14773 Argentina AR ARG 2000
## 14774 Argentina AR ARG 2001
## 14775 Argentina AR ARG 2002
## 14776 Argentina AR ARG 2003
## 14777 Argentina AR ARG 2004
## 14778 Argentina AR ARG 2005
## 14779 Argentina AR ARG 2006
## 14780 Argentina AR ARG 2007
## 14781 Argentina AR ARG 2008
## 14782 Argentina AR ARG 2009
## 14783 Argentina AR ARG 2010
## 14784 Argentina AR ARG 2011
## 14785 Argentina AR ARG 2012
## 14786 Argentina AR ARG 2013
## 14787 Armenia AM ARM 1980
## 14788 Armenia AM ARM 1981
## 14789 Armenia AM ARM 1982
## 14790 Armenia AM ARM 1983
## 14791 Armenia AM ARM 1984
## 14792 Armenia AM ARM 1985
## 14793 Armenia AM ARM 1986
## 14794 Armenia AM ARM 1987
## 14795 Armenia AM ARM 1988
## 14796 Armenia AM ARM 1989
## 14797 Armenia AM ARM 1990
## 14798 Armenia AM ARM 1991
## 14799 Armenia AM ARM 1992
## 14800 Armenia AM ARM 1993
## 14801 Armenia AM ARM 1994
## 14802 Armenia AM ARM 1995
## 14803 Armenia AM ARM 1996
## 14804 Armenia AM ARM 1997
## 14805 Armenia AM ARM 1998
## 14806 Armenia AM ARM 1999
## 14807 Armenia AM ARM 2000
## 14808 Armenia AM ARM 2001
## 14809 Armenia AM ARM 2002
## 14810 Armenia AM ARM 2003
## 14811 Armenia AM ARM 2004
## 14812 Armenia AM ARM 2005
## 14813 Armenia AM ARM 2006
## 14814 Armenia AM ARM 2007
## 14815 Armenia AM ARM 2008
## 14816 Armenia AM ARM 2009
## 14817 Armenia AM ARM 2010
## 14818 Armenia AM ARM 2011
## 14819 Armenia AM ARM 2012
## 14820 Armenia AM ARM 2013
## 14821 Aruba AW ABW 1980
## 14822 Aruba AW ABW 1981
## 14823 Aruba AW ABW 1982
## 14824 Aruba AW ABW 1983
## 14825 Aruba AW ABW 1984
## 14826 Aruba AW ABW 1985
## 14827 Aruba AW ABW 1986
## 14828 Aruba AW ABW 1987
## 14829 Aruba AW ABW 1988
## 14830 Aruba AW ABW 1989
## 14831 Aruba AW ABW 1990
## 14832 Aruba AW ABW 1991
## 14833 Aruba AW ABW 1992
## 14834 Aruba AW ABW 1993
## 14835 Aruba AW ABW 1994
## 14836 Aruba AW ABW 1995
## 14837 Aruba AW ABW 1996
## 14838 Aruba AW ABW 1997
## 14839 Aruba AW ABW 1998
## 14840 Aruba AW ABW 1999
## 14841 Aruba AW ABW 2000
## 14842 Aruba AW ABW 2001
## 14843 Aruba AW ABW 2002
## 14844 Aruba AW ABW 2003
## 14845 Aruba AW ABW 2004
## 14846 Aruba AW ABW 2005
## 14847 Aruba AW ABW 2006
## 14848 Aruba AW ABW 2007
## 14849 Aruba AW ABW 2008
## 14850 Aruba AW ABW 2009
## 14851 Aruba AW ABW 2010
## 14852 Aruba AW ABW 2011
## 14853 Aruba AW ABW 2012
## 14854 Aruba AW ABW 2013
## 14855 Australia AU AUS 1980
## 14856 Australia AU AUS 1981
## 14857 Australia AU AUS 1982
## 14858 Australia AU AUS 1983
## 14859 Australia AU AUS 1984
## 14860 Australia AU AUS 1985
## 14861 Australia AU AUS 1986
## 14862 Australia AU AUS 1987
## 14863 Australia AU AUS 1988
## 14864 Australia AU AUS 1989
## 14865 Australia AU AUS 1990
## 14866 Australia AU AUS 1991
## 14867 Australia AU AUS 1992
## 14868 Australia AU AUS 1993
## 14869 Australia AU AUS 1994
## 14870 Australia AU AUS 1995
## 14871 Australia AU AUS 1996
## 14872 Australia AU AUS 1997
## 14873 Australia AU AUS 1998
## 14874 Australia AU AUS 1999
## 14875 Australia AU AUS 2000
## 14876 Australia AU AUS 2001
## 14877 Australia AU AUS 2002
## 14878 Australia AU AUS 2003
## 14879 Australia AU AUS 2004
## 14880 Australia AU AUS 2005
## 14881 Australia AU AUS 2006
## 14882 Australia AU AUS 2007
## 14883 Australia AU AUS 2008
## 14884 Australia AU AUS 2009
## 14885 Australia AU AUS 2010
## 14886 Australia AU AUS 2011
## 14887 Australia AU AUS 2012
## 14888 Australia AU AUS 2013
## 14889 Austria AT AUT 1980
## 14890 Austria AT AUT 1981
## 14891 Austria AT AUT 1982
## 14892 Austria AT AUT 1983
## 14893 Austria AT AUT 1984
## 14894 Austria AT AUT 1985
## 14895 Austria AT AUT 1986
## 14896 Austria AT AUT 1987
## 14897 Austria AT AUT 1988
## 14898 Austria AT AUT 1989
## 14899 Austria AT AUT 1990
## 14900 Austria AT AUT 1991
## 14901 Austria AT AUT 1992
## 14902 Austria AT AUT 1993
## 14903 Austria AT AUT 1994
## 14904 Austria AT AUT 1995
## 14905 Austria AT AUT 1996
## 14906 Austria AT AUT 1997
## 14907 Austria AT AUT 1998
## 14908 Austria AT AUT 1999
## 14909 Austria AT AUT 2000
## 14910 Austria AT AUT 2001
## 14911 Austria AT AUT 2002
## 14912 Austria AT AUT 2003
## 14913 Austria AT AUT 2004
## 14914 Austria AT AUT 2005
## 14915 Austria AT AUT 2006
## 14916 Austria AT AUT 2007
## 14917 Austria AT AUT 2008
## 14918 Austria AT AUT 2009
## 14919 Austria AT AUT 2010
## 14920 Austria AT AUT 2011
## 14921 Austria AT AUT 2012
## 14922 Austria AT AUT 2013
## 14923 Azerbaijan AZ AZE 1980
## 14924 Azerbaijan AZ AZE 1981
## 14925 Azerbaijan AZ AZE 1982
## 14926 Azerbaijan AZ AZE 1983
## 14927 Azerbaijan AZ AZE 1984
## 14928 Azerbaijan AZ AZE 1985
## 14929 Azerbaijan AZ AZE 1986
## 14930 Azerbaijan AZ AZE 1987
## 14931 Azerbaijan AZ AZE 1988
## 14932 Azerbaijan AZ AZE 1989
## 14933 Azerbaijan AZ AZE 1990
## 14934 Azerbaijan AZ AZE 1991
## 14935 Azerbaijan AZ AZE 1992
## 14936 Azerbaijan AZ AZE 1993
## 14937 Azerbaijan AZ AZE 1994
## 14938 Azerbaijan AZ AZE 1995
## 14939 Azerbaijan AZ AZE 1996
## 14940 Azerbaijan AZ AZE 1997
## 14941 Azerbaijan AZ AZE 1998
## 14942 Azerbaijan AZ AZE 1999
## 14943 Azerbaijan AZ AZE 2000
## 14944 Azerbaijan AZ AZE 2001
## 14945 Azerbaijan AZ AZE 2002
## 14946 Azerbaijan AZ AZE 2003
## 14947 Azerbaijan AZ AZE 2004
## 14948 Azerbaijan AZ AZE 2005
## 14949 Azerbaijan AZ AZE 2006
## 14950 Azerbaijan AZ AZE 2007
## 14951 Azerbaijan AZ AZE 2008
## 14952 Azerbaijan AZ AZE 2009
## 14953 Azerbaijan AZ AZE 2010
## 14954 Azerbaijan AZ AZE 2011
## 14955 Azerbaijan AZ AZE 2012
## 14956 Azerbaijan AZ AZE 2013
## 14957 Bahamas BS BHS 1980
## 14958 Bahamas BS BHS 1981
## 14959 Bahamas BS BHS 1982
## 14960 Bahamas BS BHS 1983
## 14961 Bahamas BS BHS 1984
## 14962 Bahamas BS BHS 1985
## 14963 Bahamas BS BHS 1986
## 14964 Bahamas BS BHS 1987
## 14965 Bahamas BS BHS 1988
## 14966 Bahamas BS BHS 1989
## 14967 Bahamas BS BHS 1990
## 14968 Bahamas BS BHS 1991
## 14969 Bahamas BS BHS 1992
## 14970 Bahamas BS BHS 1993
## 14971 Bahamas BS BHS 1994
## 14972 Bahamas BS BHS 1995
## 14973 Bahamas BS BHS 1996
## 14974 Bahamas BS BHS 1997
## 14975 Bahamas BS BHS 1998
## 14976 Bahamas BS BHS 1999
## 14977 Bahamas BS BHS 2000
## 14978 Bahamas BS BHS 2001
## 14979 Bahamas BS BHS 2002
## 14980 Bahamas BS BHS 2003
## 14981 Bahamas BS BHS 2004
## 14982 Bahamas BS BHS 2005
## 14983 Bahamas BS BHS 2006
## 14984 Bahamas BS BHS 2007
## 14985 Bahamas BS BHS 2008
## 14986 Bahamas BS BHS 2009
## 14987 Bahamas BS BHS 2010
## 14988 Bahamas BS BHS 2011
## 14989 Bahamas BS BHS 2012
## 14990 Bahamas BS BHS 2013
## 14991 Bahrain BH BHR 1980
## 14992 Bahrain BH BHR 1981
## 14993 Bahrain BH BHR 1982
## 14994 Bahrain BH BHR 1983
## 14995 Bahrain BH BHR 1984
## 14996 Bahrain BH BHR 1985
## 14997 Bahrain BH BHR 1986
## 14998 Bahrain BH BHR 1987
## 14999 Bahrain BH BHR 1988
## 15000 Bahrain BH BHR 1989
## 15001 Bahrain BH BHR 1990
## 15002 Bahrain BH BHR 1991
## 15003 Bahrain BH BHR 1992
## 15004 Bahrain BH BHR 1993
## 15005 Bahrain BH BHR 1994
## 15006 Bahrain BH BHR 1995
## 15007 Bahrain BH BHR 1996
## 15008 Bahrain BH BHR 1997
## 15009 Bahrain BH BHR 1998
## 15010 Bahrain BH BHR 1999
## 15011 Bahrain BH BHR 2000
## 15012 Bahrain BH BHR 2001
## 15013 Bahrain BH BHR 2002
## 15014 Bahrain BH BHR 2003
## 15015 Bahrain BH BHR 2004
## 15016 Bahrain BH BHR 2005
## 15017 Bahrain BH BHR 2006
## 15018 Bahrain BH BHR 2007
## 15019 Bahrain BH BHR 2008
## 15020 Bahrain BH BHR 2009
## 15021 Bahrain BH BHR 2010
## 15022 Bahrain BH BHR 2011
## 15023 Bahrain BH BHR 2012
## 15024 Bahrain BH BHR 2013
## 15025 Bangladesh BD BGD 1980
## 15026 Bangladesh BD BGD 1981
## 15027 Bangladesh BD BGD 1982
## 15028 Bangladesh BD BGD 1983
## 15029 Bangladesh BD BGD 1984
## 15030 Bangladesh BD BGD 1985
## 15031 Bangladesh BD BGD 1986
## 15032 Bangladesh BD BGD 1987
## 15033 Bangladesh BD BGD 1988
## 15034 Bangladesh BD BGD 1989
## 15035 Bangladesh BD BGD 1990
## 15036 Bangladesh BD BGD 1991
## 15037 Bangladesh BD BGD 1992
## 15038 Bangladesh BD BGD 1993
## 15039 Bangladesh BD BGD 1994
## 15040 Bangladesh BD BGD 1995
## 15041 Bangladesh BD BGD 1996
## 15042 Bangladesh BD BGD 1997
## 15043 Bangladesh BD BGD 1998
## 15044 Bangladesh BD BGD 1999
## 15045 Bangladesh BD BGD 2000
## 15046 Bangladesh BD BGD 2001
## 15047 Bangladesh BD BGD 2002
## 15048 Bangladesh BD BGD 2003
## 15049 Bangladesh BD BGD 2004
## 15050 Bangladesh BD BGD 2005
## 15051 Bangladesh BD BGD 2006
## 15052 Bangladesh BD BGD 2007
## 15053 Bangladesh BD BGD 2008
## 15054 Bangladesh BD BGD 2009
## 15055 Bangladesh BD BGD 2010
## 15056 Bangladesh BD BGD 2011
## 15057 Bangladesh BD BGD 2012
## 15058 Bangladesh BD BGD 2013
## 15059 Barbados BB BRB 1980
## 15060 Barbados BB BRB 1981
## 15061 Barbados BB BRB 1982
## 15062 Barbados BB BRB 1983
## 15063 Barbados BB BRB 1984
## 15064 Barbados BB BRB 1985
## 15065 Barbados BB BRB 1986
## 15066 Barbados BB BRB 1987
## 15067 Barbados BB BRB 1988
## 15068 Barbados BB BRB 1989
## 15069 Barbados BB BRB 1990
## 15070 Barbados BB BRB 1991
## 15071 Barbados BB BRB 1992
## 15072 Barbados BB BRB 1993
## 15073 Barbados BB BRB 1994
## 15074 Barbados BB BRB 1995
## 15075 Barbados BB BRB 1996
## 15076 Barbados BB BRB 1997
## 15077 Barbados BB BRB 1998
## 15078 Barbados BB BRB 1999
## 15079 Barbados BB BRB 2000
## 15080 Barbados BB BRB 2001
## 15081 Barbados BB BRB 2002
## 15082 Barbados BB BRB 2003
## 15083 Barbados BB BRB 2004
## 15084 Barbados BB BRB 2005
## 15085 Barbados BB BRB 2006
## 15086 Barbados BB BRB 2007
## 15087 Barbados BB BRB 2008
## 15088 Barbados BB BRB 2009
## 15089 Barbados BB BRB 2010
## 15090 Barbados BB BRB 2011
## 15091 Barbados BB BRB 2012
## 15092 Barbados BB BRB 2013
## 15093 Belarus BY BLR 1980
## 15094 Belarus BY BLR 1981
## 15095 Belarus BY BLR 1982
## 15096 Belarus BY BLR 1983
## 15097 Belarus BY BLR 1984
## 15098 Belarus BY BLR 1985
## 15099 Belarus BY BLR 1986
## 15100 Belarus BY BLR 1987
## 15101 Belarus BY BLR 1988
## 15102 Belarus BY BLR 1989
## 15103 Belarus BY BLR 1990
## 15104 Belarus BY BLR 1991
## 15105 Belarus BY BLR 1992
## 15106 Belarus BY BLR 1993
## 15107 Belarus BY BLR 1994
## 15108 Belarus BY BLR 1995
## 15109 Belarus BY BLR 1996
## 15110 Belarus BY BLR 1997
## 15111 Belarus BY BLR 1998
## 15112 Belarus BY BLR 1999
## 15113 Belarus BY BLR 2000
## 15114 Belarus BY BLR 2001
## 15115 Belarus BY BLR 2002
## 15116 Belarus BY BLR 2003
## 15117 Belarus BY BLR 2004
## 15118 Belarus BY BLR 2005
## 15119 Belarus BY BLR 2006
## 15120 Belarus BY BLR 2007
## 15121 Belarus BY BLR 2008
## 15122 Belarus BY BLR 2009
## 15123 Belarus BY BLR 2010
## 15124 Belarus BY BLR 2011
## 15125 Belarus BY BLR 2012
## 15126 Belarus BY BLR 2013
## 15127 Belgium BE BEL 1980
## 15128 Belgium BE BEL 1981
## 15129 Belgium BE BEL 1982
## 15130 Belgium BE BEL 1983
## 15131 Belgium BE BEL 1984
## 15132 Belgium BE BEL 1985
## 15133 Belgium BE BEL 1986
## 15134 Belgium BE BEL 1987
## 15135 Belgium BE BEL 1988
## 15136 Belgium BE BEL 1989
## 15137 Belgium BE BEL 1990
## 15138 Belgium BE BEL 1991
## 15139 Belgium BE BEL 1992
## 15140 Belgium BE BEL 1993
## 15141 Belgium BE BEL 1994
## 15142 Belgium BE BEL 1995
## 15143 Belgium BE BEL 1996
## 15144 Belgium BE BEL 1997
## 15145 Belgium BE BEL 1998
## 15146 Belgium BE BEL 1999
## 15147 Belgium BE BEL 2000
## 15148 Belgium BE BEL 2001
## 15149 Belgium BE BEL 2002
## 15150 Belgium BE BEL 2003
## 15151 Belgium BE BEL 2004
## 15152 Belgium BE BEL 2005
## 15153 Belgium BE BEL 2006
## 15154 Belgium BE BEL 2007
## 15155 Belgium BE BEL 2008
## 15156 Belgium BE BEL 2009
## 15157 Belgium BE BEL 2010
## 15158 Belgium BE BEL 2011
## 15159 Belgium BE BEL 2012
## 15160 Belgium BE BEL 2013
## 15161 Belize BZ BLZ 1980
## 15162 Belize BZ BLZ 1981
## 15163 Belize BZ BLZ 1982
## 15164 Belize BZ BLZ 1983
## 15165 Belize BZ BLZ 1984
## 15166 Belize BZ BLZ 1985
## 15167 Belize BZ BLZ 1986
## 15168 Belize BZ BLZ 1987
## 15169 Belize BZ BLZ 1988
## 15170 Belize BZ BLZ 1989
## 15171 Belize BZ BLZ 1990
## 15172 Belize BZ BLZ 1991
## 15173 Belize BZ BLZ 1992
## 15174 Belize BZ BLZ 1993
## 15175 Belize BZ BLZ 1994
## 15176 Belize BZ BLZ 1995
## 15177 Belize BZ BLZ 1996
## 15178 Belize BZ BLZ 1997
## 15179 Belize BZ BLZ 1998
## 15180 Belize BZ BLZ 1999
## 15181 Belize BZ BLZ 2000
## 15182 Belize BZ BLZ 2001
## 15183 Belize BZ BLZ 2002
## 15184 Belize BZ BLZ 2003
## 15185 Belize BZ BLZ 2004
## 15186 Belize BZ BLZ 2005
## 15187 Belize BZ BLZ 2006
## 15188 Belize BZ BLZ 2007
## 15189 Belize BZ BLZ 2008
## 15190 Belize BZ BLZ 2009
## 15191 Belize BZ BLZ 2010
## 15192 Belize BZ BLZ 2011
## 15193 Belize BZ BLZ 2012
## 15194 Belize BZ BLZ 2013
## 15195 Benin BJ BEN 1980
## 15196 Benin BJ BEN 1981
## 15197 Benin BJ BEN 1982
## 15198 Benin BJ BEN 1983
## 15199 Benin BJ BEN 1984
## 15200 Benin BJ BEN 1985
## 15201 Benin BJ BEN 1986
## 15202 Benin BJ BEN 1987
## 15203 Benin BJ BEN 1988
## 15204 Benin BJ BEN 1989
## 15205 Benin BJ BEN 1990
## 15206 Benin BJ BEN 1991
## 15207 Benin BJ BEN 1992
## 15208 Benin BJ BEN 1993
## 15209 Benin BJ BEN 1994
## 15210 Benin BJ BEN 1995
## 15211 Benin BJ BEN 1996
## 15212 Benin BJ BEN 1997
## 15213 Benin BJ BEN 1998
## 15214 Benin BJ BEN 1999
## 15215 Benin BJ BEN 2000
## 15216 Benin BJ BEN 2001
## 15217 Benin BJ BEN 2002
## 15218 Benin BJ BEN 2003
## 15219 Benin BJ BEN 2004
## 15220 Benin BJ BEN 2005
## 15221 Benin BJ BEN 2006
## 15222 Benin BJ BEN 2007
## 15223 Benin BJ BEN 2008
## 15224 Benin BJ BEN 2009
## 15225 Benin BJ BEN 2010
## 15226 Benin BJ BEN 2011
## 15227 Benin BJ BEN 2012
## 15228 Benin BJ BEN 2013
## 15229 Bermuda BM BMU 1980
## 15230 Bermuda BM BMU 1981
## 15231 Bermuda BM BMU 1982
## 15232 Bermuda BM BMU 1983
## 15233 Bermuda BM BMU 1984
## 15234 Bermuda BM BMU 1985
## 15235 Bermuda BM BMU 1986
## 15236 Bermuda BM BMU 1987
## 15237 Bermuda BM BMU 1988
## 15238 Bermuda BM BMU 1989
## 15239 Bermuda BM BMU 1990
## 15240 Bermuda BM BMU 1991
## 15241 Bermuda BM BMU 1992
## 15242 Bermuda BM BMU 1993
## 15243 Bermuda BM BMU 1994
## 15244 Bermuda BM BMU 1995
## 15245 Bermuda BM BMU 1996
## 15246 Bermuda BM BMU 1997
## 15247 Bermuda BM BMU 1998
## 15248 Bermuda BM BMU 1999
## 15249 Bermuda BM BMU 2000
## 15250 Bermuda BM BMU 2001
## 15251 Bermuda BM BMU 2002
## 15252 Bermuda BM BMU 2003
## 15253 Bermuda BM BMU 2004
## 15254 Bermuda BM BMU 2005
## 15255 Bermuda BM BMU 2006
## 15256 Bermuda BM BMU 2007
## 15257 Bermuda BM BMU 2008
## 15258 Bermuda BM BMU 2009
## 15259 Bermuda BM BMU 2010
## 15260 Bermuda BM BMU 2011
## 15261 Bermuda BM BMU 2012
## 15262 Bermuda BM BMU 2013
## 15263 Bhutan BT BTN 1980
## 15264 Bhutan BT BTN 1981
## 15265 Bhutan BT BTN 1982
## 15266 Bhutan BT BTN 1983
## 15267 Bhutan BT BTN 1984
## 15268 Bhutan BT BTN 1985
## 15269 Bhutan BT BTN 1986
## 15270 Bhutan BT BTN 1987
## 15271 Bhutan BT BTN 1988
## 15272 Bhutan BT BTN 1989
## 15273 Bhutan BT BTN 1990
## 15274 Bhutan BT BTN 1991
## 15275 Bhutan BT BTN 1992
## 15276 Bhutan BT BTN 1993
## 15277 Bhutan BT BTN 1994
## 15278 Bhutan BT BTN 1995
## 15279 Bhutan BT BTN 1996
## 15280 Bhutan BT BTN 1997
## 15281 Bhutan BT BTN 1998
## 15282 Bhutan BT BTN 1999
## 15283 Bhutan BT BTN 2000
## 15284 Bhutan BT BTN 2001
## 15285 Bhutan BT BTN 2002
## 15286 Bhutan BT BTN 2003
## 15287 Bhutan BT BTN 2004
## 15288 Bhutan BT BTN 2005
## 15289 Bhutan BT BTN 2006
## 15290 Bhutan BT BTN 2007
## 15291 Bhutan BT BTN 2008
## 15292 Bhutan BT BTN 2009
## 15293 Bhutan BT BTN 2010
## 15294 Bhutan BT BTN 2011
## 15295 Bhutan BT BTN 2012
## 15296 Bhutan BT BTN 2013
## 15297 Bolivia (Plurinational State of) BO BOL 1980
## 15298 Bolivia (Plurinational State of) BO BOL 1981
## 15299 Bolivia (Plurinational State of) BO BOL 1982
## 15300 Bolivia (Plurinational State of) BO BOL 1983
## 15301 Bolivia (Plurinational State of) BO BOL 1984
## 15302 Bolivia (Plurinational State of) BO BOL 1985
## 15303 Bolivia (Plurinational State of) BO BOL 1986
## 15304 Bolivia (Plurinational State of) BO BOL 1987
## 15305 Bolivia (Plurinational State of) BO BOL 1988
## 15306 Bolivia (Plurinational State of) BO BOL 1989
## 15307 Bolivia (Plurinational State of) BO BOL 1990
## 15308 Bolivia (Plurinational State of) BO BOL 1991
## 15309 Bolivia (Plurinational State of) BO BOL 1992
## 15310 Bolivia (Plurinational State of) BO BOL 1993
## 15311 Bolivia (Plurinational State of) BO BOL 1994
## 15312 Bolivia (Plurinational State of) BO BOL 1995
## 15313 Bolivia (Plurinational State of) BO BOL 1996
## 15314 Bolivia (Plurinational State of) BO BOL 1997
## 15315 Bolivia (Plurinational State of) BO BOL 1998
## 15316 Bolivia (Plurinational State of) BO BOL 1999
## 15317 Bolivia (Plurinational State of) BO BOL 2000
## 15318 Bolivia (Plurinational State of) BO BOL 2001
## 15319 Bolivia (Plurinational State of) BO BOL 2002
## 15320 Bolivia (Plurinational State of) BO BOL 2003
## 15321 Bolivia (Plurinational State of) BO BOL 2004
## 15322 Bolivia (Plurinational State of) BO BOL 2005
## 15323 Bolivia (Plurinational State of) BO BOL 2006
## 15324 Bolivia (Plurinational State of) BO BOL 2007
## 15325 Bolivia (Plurinational State of) BO BOL 2008
## 15326 Bolivia (Plurinational State of) BO BOL 2009
## 15327 Bolivia (Plurinational State of) BO BOL 2010
## 15328 Bolivia (Plurinational State of) BO BOL 2011
## 15329 Bolivia (Plurinational State of) BO BOL 2012
## 15330 Bolivia (Plurinational State of) BO BOL 2013
## 15331 Bonaire, Saint Eustatius and Saba BQ BES 2010
## 15332 Bonaire, Saint Eustatius and Saba BQ BES 2011
## 15333 Bonaire, Saint Eustatius and Saba BQ BES 2012
## 15334 Bonaire, Saint Eustatius and Saba BQ BES 2013
## 15335 Bosnia and Herzegovina BA BIH 1980
## 15336 Bosnia and Herzegovina BA BIH 1981
## 15337 Bosnia and Herzegovina BA BIH 1982
## 15338 Bosnia and Herzegovina BA BIH 1983
## 15339 Bosnia and Herzegovina BA BIH 1984
## 15340 Bosnia and Herzegovina BA BIH 1985
## 15341 Bosnia and Herzegovina BA BIH 1986
## 15342 Bosnia and Herzegovina BA BIH 1987
## 15343 Bosnia and Herzegovina BA BIH 1988
## 15344 Bosnia and Herzegovina BA BIH 1989
## 15345 Bosnia and Herzegovina BA BIH 1990
## 15346 Bosnia and Herzegovina BA BIH 1991
## 15347 Bosnia and Herzegovina BA BIH 1992
## 15348 Bosnia and Herzegovina BA BIH 1993
## 15349 Bosnia and Herzegovina BA BIH 1994
## 15350 Bosnia and Herzegovina BA BIH 1995
## 15351 Bosnia and Herzegovina BA BIH 1996
## 15352 Bosnia and Herzegovina BA BIH 1997
## 15353 Bosnia and Herzegovina BA BIH 1998
## 15354 Bosnia and Herzegovina BA BIH 1999
## 15355 Bosnia and Herzegovina BA BIH 2000
## 15356 Bosnia and Herzegovina BA BIH 2001
## 15357 Bosnia and Herzegovina BA BIH 2002
## 15358 Bosnia and Herzegovina BA BIH 2003
## 15359 Bosnia and Herzegovina BA BIH 2004
## 15360 Bosnia and Herzegovina BA BIH 2005
## 15361 Bosnia and Herzegovina BA BIH 2006
## 15362 Bosnia and Herzegovina BA BIH 2007
## 15363 Bosnia and Herzegovina BA BIH 2008
## 15364 Bosnia and Herzegovina BA BIH 2009
## 15365 Bosnia and Herzegovina BA BIH 2010
## 15366 Bosnia and Herzegovina BA BIH 2011
## 15367 Bosnia and Herzegovina BA BIH 2012
## 15368 Bosnia and Herzegovina BA BIH 2013
## 15369 Botswana BW BWA 1980
## 15370 Botswana BW BWA 1981
## 15371 Botswana BW BWA 1982
## 15372 Botswana BW BWA 1983
## 15373 Botswana BW BWA 1984
## 15374 Botswana BW BWA 1985
## 15375 Botswana BW BWA 1986
## 15376 Botswana BW BWA 1987
## 15377 Botswana BW BWA 1988
## 15378 Botswana BW BWA 1989
## 15379 Botswana BW BWA 1990
## 15380 Botswana BW BWA 1991
## 15381 Botswana BW BWA 1992
## 15382 Botswana BW BWA 1993
## 15383 Botswana BW BWA 1994
## 15384 Botswana BW BWA 1995
## 15385 Botswana BW BWA 1996
## 15386 Botswana BW BWA 1997
## 15387 Botswana BW BWA 1998
## 15388 Botswana BW BWA 1999
## 15389 Botswana BW BWA 2000
## 15390 Botswana BW BWA 2001
## 15391 Botswana BW BWA 2002
## 15392 Botswana BW BWA 2003
## 15393 Botswana BW BWA 2004
## 15394 Botswana BW BWA 2005
## 15395 Botswana BW BWA 2006
## 15396 Botswana BW BWA 2007
## 15397 Botswana BW BWA 2008
## 15398 Botswana BW BWA 2009
## 15399 Botswana BW BWA 2010
## 15400 Botswana BW BWA 2011
## 15401 Botswana BW BWA 2012
## 15402 Botswana BW BWA 2013
## 15403 Brazil BR BRA 1980
## 15404 Brazil BR BRA 1981
## 15405 Brazil BR BRA 1982
## 15406 Brazil BR BRA 1983
## 15407 Brazil BR BRA 1984
## 15408 Brazil BR BRA 1985
## 15409 Brazil BR BRA 1986
## 15410 Brazil BR BRA 1987
## 15411 Brazil BR BRA 1988
## 15412 Brazil BR BRA 1989
## 15413 Brazil BR BRA 1990
## 15414 Brazil BR BRA 1991
## 15415 Brazil BR BRA 1992
## 15416 Brazil BR BRA 1993
## 15417 Brazil BR BRA 1994
## 15418 Brazil BR BRA 1995
## 15419 Brazil BR BRA 1996
## 15420 Brazil BR BRA 1997
## 15421 Brazil BR BRA 1998
## 15422 Brazil BR BRA 1999
## 15423 Brazil BR BRA 2000
## 15424 Brazil BR BRA 2001
## 15425 Brazil BR BRA 2002
## 15426 Brazil BR BRA 2003
## 15427 Brazil BR BRA 2004
## 15428 Brazil BR BRA 2005
## 15429 Brazil BR BRA 2006
## 15430 Brazil BR BRA 2007
## 15431 Brazil BR BRA 2008
## 15432 Brazil BR BRA 2009
## 15433 Brazil BR BRA 2010
## 15434 Brazil BR BRA 2011
## 15435 Brazil BR BRA 2012
## 15436 Brazil BR BRA 2013
## 15437 British Virgin Islands VG VGB 1980
## 15438 British Virgin Islands VG VGB 1981
## 15439 British Virgin Islands VG VGB 1982
## 15440 British Virgin Islands VG VGB 1983
## 15441 British Virgin Islands VG VGB 1984
## 15442 British Virgin Islands VG VGB 1985
## 15443 British Virgin Islands VG VGB 1986
## 15444 British Virgin Islands VG VGB 1987
## 15445 British Virgin Islands VG VGB 1988
## 15446 British Virgin Islands VG VGB 1989
## 15447 British Virgin Islands VG VGB 1990
## 15448 British Virgin Islands VG VGB 1991
## 15449 British Virgin Islands VG VGB 1992
## 15450 British Virgin Islands VG VGB 1993
## 15451 British Virgin Islands VG VGB 1994
## 15452 British Virgin Islands VG VGB 1995
## 15453 British Virgin Islands VG VGB 1996
## 15454 British Virgin Islands VG VGB 1997
## 15455 British Virgin Islands VG VGB 1998
## 15456 British Virgin Islands VG VGB 1999
## 15457 British Virgin Islands VG VGB 2000
## 15458 British Virgin Islands VG VGB 2001
## 15459 British Virgin Islands VG VGB 2002
## 15460 British Virgin Islands VG VGB 2003
## 15461 British Virgin Islands VG VGB 2004
## 15462 British Virgin Islands VG VGB 2005
## 15463 British Virgin Islands VG VGB 2006
## 15464 British Virgin Islands VG VGB 2007
## 15465 British Virgin Islands VG VGB 2008
## 15466 British Virgin Islands VG VGB 2009
## 15467 British Virgin Islands VG VGB 2010
## 15468 British Virgin Islands VG VGB 2011
## 15469 British Virgin Islands VG VGB 2012
## 15470 British Virgin Islands VG VGB 2013
## 15471 Brunei Darussalam BN BRN 1980
## 15472 Brunei Darussalam BN BRN 1981
## 15473 Brunei Darussalam BN BRN 1982
## 15474 Brunei Darussalam BN BRN 1983
## 15475 Brunei Darussalam BN BRN 1984
## 15476 Brunei Darussalam BN BRN 1985
## 15477 Brunei Darussalam BN BRN 1986
## 15478 Brunei Darussalam BN BRN 1987
## 15479 Brunei Darussalam BN BRN 1988
## 15480 Brunei Darussalam BN BRN 1989
## 15481 Brunei Darussalam BN BRN 1990
## 15482 Brunei Darussalam BN BRN 1991
## 15483 Brunei Darussalam BN BRN 1992
## 15484 Brunei Darussalam BN BRN 1993
## 15485 Brunei Darussalam BN BRN 1994
## 15486 Brunei Darussalam BN BRN 1995
## 15487 Brunei Darussalam BN BRN 1996
## 15488 Brunei Darussalam BN BRN 1997
## 15489 Brunei Darussalam BN BRN 1998
## 15490 Brunei Darussalam BN BRN 1999
## 15491 Brunei Darussalam BN BRN 2000
## 15492 Brunei Darussalam BN BRN 2001
## 15493 Brunei Darussalam BN BRN 2002
## 15494 Brunei Darussalam BN BRN 2003
## 15495 Brunei Darussalam BN BRN 2004
## 15496 Brunei Darussalam BN BRN 2005
## 15497 Brunei Darussalam BN BRN 2006
## 15498 Brunei Darussalam BN BRN 2007
## 15499 Brunei Darussalam BN BRN 2008
## 15500 Brunei Darussalam BN BRN 2009
## 15501 Brunei Darussalam BN BRN 2010
## 15502 Brunei Darussalam BN BRN 2011
## 15503 Brunei Darussalam BN BRN 2012
## 15504 Brunei Darussalam BN BRN 2013
## 15505 Bulgaria BG BGR 1980
## 15506 Bulgaria BG BGR 1981
## 15507 Bulgaria BG BGR 1982
## 15508 Bulgaria BG BGR 1983
## 15509 Bulgaria BG BGR 1984
## 15510 Bulgaria BG BGR 1985
## 15511 Bulgaria BG BGR 1986
## 15512 Bulgaria BG BGR 1987
## 15513 Bulgaria BG BGR 1988
## 15514 Bulgaria BG BGR 1989
## 15515 Bulgaria BG BGR 1990
## 15516 Bulgaria BG BGR 1991
## 15517 Bulgaria BG BGR 1992
## 15518 Bulgaria BG BGR 1993
## 15519 Bulgaria BG BGR 1994
## 15520 Bulgaria BG BGR 1995
## 15521 Bulgaria BG BGR 1996
## 15522 Bulgaria BG BGR 1997
## 15523 Bulgaria BG BGR 1998
## 15524 Bulgaria BG BGR 1999
## 15525 Bulgaria BG BGR 2000
## 15526 Bulgaria BG BGR 2001
## 15527 Bulgaria BG BGR 2002
## 15528 Bulgaria BG BGR 2003
## 15529 Bulgaria BG BGR 2004
## 15530 Bulgaria BG BGR 2005
## 15531 Bulgaria BG BGR 2006
## 15532 Bulgaria BG BGR 2007
## 15533 Bulgaria BG BGR 2008
## 15534 Bulgaria BG BGR 2009
## 15535 Bulgaria BG BGR 2010
## 15536 Bulgaria BG BGR 2011
## 15537 Bulgaria BG BGR 2012
## 15538 Bulgaria BG BGR 2013
## 15539 Burkina Faso BF BFA 1980
## 15540 Burkina Faso BF BFA 1981
## 15541 Burkina Faso BF BFA 1982
## 15542 Burkina Faso BF BFA 1983
## 15543 Burkina Faso BF BFA 1984
## 15544 Burkina Faso BF BFA 1985
## 15545 Burkina Faso BF BFA 1986
## 15546 Burkina Faso BF BFA 1987
## 15547 Burkina Faso BF BFA 1988
## 15548 Burkina Faso BF BFA 1989
## 15549 Burkina Faso BF BFA 1990
## 15550 Burkina Faso BF BFA 1991
## 15551 Burkina Faso BF BFA 1992
## 15552 Burkina Faso BF BFA 1993
## 15553 Burkina Faso BF BFA 1994
## 15554 Burkina Faso BF BFA 1995
## 15555 Burkina Faso BF BFA 1996
## 15556 Burkina Faso BF BFA 1997
## 15557 Burkina Faso BF BFA 1998
## 15558 Burkina Faso BF BFA 1999
## 15559 Burkina Faso BF BFA 2000
## 15560 Burkina Faso BF BFA 2001
## 15561 Burkina Faso BF BFA 2002
## 15562 Burkina Faso BF BFA 2003
## 15563 Burkina Faso BF BFA 2004
## 15564 Burkina Faso BF BFA 2005
## 15565 Burkina Faso BF BFA 2006
## 15566 Burkina Faso BF BFA 2007
## 15567 Burkina Faso BF BFA 2008
## 15568 Burkina Faso BF BFA 2009
## 15569 Burkina Faso BF BFA 2010
## 15570 Burkina Faso BF BFA 2011
## 15571 Burkina Faso BF BFA 2012
## 15572 Burkina Faso BF BFA 2013
## 15573 Burundi BI BDI 1980
## 15574 Burundi BI BDI 1981
## 15575 Burundi BI BDI 1982
## 15576 Burundi BI BDI 1983
## 15577 Burundi BI BDI 1984
## 15578 Burundi BI BDI 1985
## 15579 Burundi BI BDI 1986
## 15580 Burundi BI BDI 1987
## 15581 Burundi BI BDI 1988
## 15582 Burundi BI BDI 1989
## 15583 Burundi BI BDI 1990
## 15584 Burundi BI BDI 1991
## 15585 Burundi BI BDI 1992
## 15586 Burundi BI BDI 1993
## 15587 Burundi BI BDI 1994
## 15588 Burundi BI BDI 1995
## 15589 Burundi BI BDI 1996
## 15590 Burundi BI BDI 1997
## 15591 Burundi BI BDI 1998
## 15592 Burundi BI BDI 1999
## 15593 Burundi BI BDI 2000
## 15594 Burundi BI BDI 2001
## 15595 Burundi BI BDI 2002
## 15596 Burundi BI BDI 2003
## 15597 Burundi BI BDI 2004
## 15598 Burundi BI BDI 2005
## 15599 Burundi BI BDI 2006
## 15600 Burundi BI BDI 2007
## 15601 Burundi BI BDI 2008
## 15602 Burundi BI BDI 2009
## 15603 Burundi BI BDI 2010
## 15604 Burundi BI BDI 2011
## 15605 Burundi BI BDI 2012
## 15606 Burundi BI BDI 2013
## 15607 Cabo Verde CV CPV 1980
## 15608 Cabo Verde CV CPV 1981
## 15609 Cabo Verde CV CPV 1982
## 15610 Cabo Verde CV CPV 1983
## 15611 Cabo Verde CV CPV 1984
## 15612 Cabo Verde CV CPV 1985
## 15613 Cabo Verde CV CPV 1986
## 15614 Cabo Verde CV CPV 1987
## 15615 Cabo Verde CV CPV 1988
## 15616 Cabo Verde CV CPV 1989
## 15617 Cabo Verde CV CPV 1990
## 15618 Cabo Verde CV CPV 1991
## 15619 Cabo Verde CV CPV 1992
## 15620 Cabo Verde CV CPV 1993
## 15621 Cabo Verde CV CPV 1994
## 15622 Cabo Verde CV CPV 1995
## 15623 Cabo Verde CV CPV 1996
## 15624 Cabo Verde CV CPV 1997
## 15625 Cabo Verde CV CPV 1998
## 15626 Cabo Verde CV CPV 1999
## 15627 Cabo Verde CV CPV 2000
## 15628 Cabo Verde CV CPV 2001
## 15629 Cabo Verde CV CPV 2002
## 15630 Cabo Verde CV CPV 2003
## 15631 Cabo Verde CV CPV 2004
## 15632 Cabo Verde CV CPV 2005
## 15633 Cabo Verde CV CPV 2006
## 15634 Cabo Verde CV CPV 2007
## 15635 Cabo Verde CV CPV 2008
## 15636 Cabo Verde CV CPV 2009
## 15637 Cabo Verde CV CPV 2010
## 15638 Cabo Verde CV CPV 2011
## 15639 Cabo Verde CV CPV 2012
## 15640 Cabo Verde CV CPV 2013
## 15641 Cambodia KH KHM 1980
## 15642 Cambodia KH KHM 1981
## 15643 Cambodia KH KHM 1982
## 15644 Cambodia KH KHM 1983
## 15645 Cambodia KH KHM 1984
## 15646 Cambodia KH KHM 1985
## 15647 Cambodia KH KHM 1986
## 15648 Cambodia KH KHM 1987
## 15649 Cambodia KH KHM 1988
## 15650 Cambodia KH KHM 1989
## 15651 Cambodia KH KHM 1990
## 15652 Cambodia KH KHM 1991
## 15653 Cambodia KH KHM 1992
## 15654 Cambodia KH KHM 1993
## 15655 Cambodia KH KHM 1994
## 15656 Cambodia KH KHM 1995
## 15657 Cambodia KH KHM 1996
## 15658 Cambodia KH KHM 1997
## 15659 Cambodia KH KHM 1998
## 15660 Cambodia KH KHM 1999
## 15661 Cambodia KH KHM 2000
## 15662 Cambodia KH KHM 2001
## 15663 Cambodia KH KHM 2002
## 15664 Cambodia KH KHM 2003
## 15665 Cambodia KH KHM 2004
## 15666 Cambodia KH KHM 2005
## 15667 Cambodia KH KHM 2006
## 15668 Cambodia KH KHM 2007
## 15669 Cambodia KH KHM 2008
## 15670 Cambodia KH KHM 2009
## 15671 Cambodia KH KHM 2010
## 15672 Cambodia KH KHM 2011
## 15673 Cambodia KH KHM 2012
## 15674 Cambodia KH KHM 2013
## 15675 Cameroon CM CMR 1980
## 15676 Cameroon CM CMR 1981
## 15677 Cameroon CM CMR 1982
## 15678 Cameroon CM CMR 1983
## 15679 Cameroon CM CMR 1984
## 15680 Cameroon CM CMR 1985
## 15681 Cameroon CM CMR 1986
## 15682 Cameroon CM CMR 1987
## 15683 Cameroon CM CMR 1988
## 15684 Cameroon CM CMR 1989
## 15685 Cameroon CM CMR 1990
## 15686 Cameroon CM CMR 1991
## 15687 Cameroon CM CMR 1992
## 15688 Cameroon CM CMR 1993
## 15689 Cameroon CM CMR 1994
## 15690 Cameroon CM CMR 1995
## 15691 Cameroon CM CMR 1996
## 15692 Cameroon CM CMR 1997
## 15693 Cameroon CM CMR 1998
## 15694 Cameroon CM CMR 1999
## 15695 Cameroon CM CMR 2000
## 15696 Cameroon CM CMR 2001
## 15697 Cameroon CM CMR 2002
## 15698 Cameroon CM CMR 2003
## 15699 Cameroon CM CMR 2004
## 15700 Cameroon CM CMR 2005
## 15701 Cameroon CM CMR 2006
## 15702 Cameroon CM CMR 2007
## 15703 Cameroon CM CMR 2008
## 15704 Cameroon CM CMR 2009
## 15705 Cameroon CM CMR 2010
## 15706 Cameroon CM CMR 2011
## 15707 Cameroon CM CMR 2012
## 15708 Cameroon CM CMR 2013
## 15709 Canada CA CAN 1980
## 15710 Canada CA CAN 1981
## 15711 Canada CA CAN 1982
## 15712 Canada CA CAN 1983
## 15713 Canada CA CAN 1984
## 15714 Canada CA CAN 1985
## 15715 Canada CA CAN 1986
## 15716 Canada CA CAN 1987
## 15717 Canada CA CAN 1988
## 15718 Canada CA CAN 1989
## 15719 Canada CA CAN 1990
## 15720 Canada CA CAN 1991
## 15721 Canada CA CAN 1992
## 15722 Canada CA CAN 1993
## 15723 Canada CA CAN 1994
## 15724 Canada CA CAN 1995
## 15725 Canada CA CAN 1996
## 15726 Canada CA CAN 1997
## 15727 Canada CA CAN 1998
## 15728 Canada CA CAN 1999
## 15729 Canada CA CAN 2000
## 15730 Canada CA CAN 2001
## 15731 Canada CA CAN 2002
## 15732 Canada CA CAN 2003
## 15733 Canada CA CAN 2004
## 15734 Canada CA CAN 2005
## 15735 Canada CA CAN 2006
## 15736 Canada CA CAN 2007
## 15737 Canada CA CAN 2008
## 15738 Canada CA CAN 2009
## 15739 Canada CA CAN 2010
## 15740 Canada CA CAN 2011
## 15741 Canada CA CAN 2012
## 15742 Canada CA CAN 2013
## 15743 Cayman Islands KY CYM 1980
## 15744 Cayman Islands KY CYM 1981
## 15745 Cayman Islands KY CYM 1982
## 15746 Cayman Islands KY CYM 1983
## 15747 Cayman Islands KY CYM 1984
## 15748 Cayman Islands KY CYM 1985
## 15749 Cayman Islands KY CYM 1986
## 15750 Cayman Islands KY CYM 1987
## 15751 Cayman Islands KY CYM 1988
## 15752 Cayman Islands KY CYM 1989
## 15753 Cayman Islands KY CYM 1990
## 15754 Cayman Islands KY CYM 1991
## 15755 Cayman Islands KY CYM 1992
## 15756 Cayman Islands KY CYM 1993
## 15757 Cayman Islands KY CYM 1994
## 15758 Cayman Islands KY CYM 1995
## 15759 Cayman Islands KY CYM 1996
## 15760 Cayman Islands KY CYM 1997
## 15761 Cayman Islands KY CYM 1998
## 15762 Cayman Islands KY CYM 1999
## 15763 Cayman Islands KY CYM 2000
## 15764 Cayman Islands KY CYM 2001
## 15765 Cayman Islands KY CYM 2002
## 15766 Cayman Islands KY CYM 2003
## 15767 Cayman Islands KY CYM 2004
## 15768 Cayman Islands KY CYM 2005
## 15769 Cayman Islands KY CYM 2006
## 15770 Cayman Islands KY CYM 2007
## 15771 Cayman Islands KY CYM 2008
## 15772 Cayman Islands KY CYM 2009
## 15773 Cayman Islands KY CYM 2010
## 15774 Cayman Islands KY CYM 2011
## 15775 Cayman Islands KY CYM 2012
## 15776 Cayman Islands KY CYM 2013
## 15777 Central African Republic CF CAF 1980
## 15778 Central African Republic CF CAF 1981
## 15779 Central African Republic CF CAF 1982
## 15780 Central African Republic CF CAF 1983
## 15781 Central African Republic CF CAF 1984
## 15782 Central African Republic CF CAF 1985
## 15783 Central African Republic CF CAF 1986
## 15784 Central African Republic CF CAF 1987
## 15785 Central African Republic CF CAF 1988
## 15786 Central African Republic CF CAF 1989
## 15787 Central African Republic CF CAF 1990
## 15788 Central African Republic CF CAF 1991
## 15789 Central African Republic CF CAF 1992
## 15790 Central African Republic CF CAF 1993
## 15791 Central African Republic CF CAF 1994
## 15792 Central African Republic CF CAF 1995
## 15793 Central African Republic CF CAF 1996
## 15794 Central African Republic CF CAF 1997
## 15795 Central African Republic CF CAF 1998
## 15796 Central African Republic CF CAF 1999
## 15797 Central African Republic CF CAF 2000
## 15798 Central African Republic CF CAF 2001
## 15799 Central African Republic CF CAF 2002
## 15800 Central African Republic CF CAF 2003
## 15801 Central African Republic CF CAF 2004
## 15802 Central African Republic CF CAF 2005
## 15803 Central African Republic CF CAF 2006
## 15804 Central African Republic CF CAF 2007
## 15805 Central African Republic CF CAF 2008
## 15806 Central African Republic CF CAF 2009
## 15807 Central African Republic CF CAF 2010
## 15808 Central African Republic CF CAF 2011
## 15809 Central African Republic CF CAF 2012
## 15810 Central African Republic CF CAF 2013
## 15811 Chad TD TCD 1980
## 15812 Chad TD TCD 1981
## 15813 Chad TD TCD 1982
## 15814 Chad TD TCD 1983
## 15815 Chad TD TCD 1984
## 15816 Chad TD TCD 1985
## 15817 Chad TD TCD 1986
## 15818 Chad TD TCD 1987
## 15819 Chad TD TCD 1988
## 15820 Chad TD TCD 1989
## 15821 Chad TD TCD 1990
## 15822 Chad TD TCD 1991
## 15823 Chad TD TCD 1992
## 15824 Chad TD TCD 1993
## 15825 Chad TD TCD 1994
## 15826 Chad TD TCD 1995
## 15827 Chad TD TCD 1996
## 15828 Chad TD TCD 1997
## 15829 Chad TD TCD 1998
## 15830 Chad TD TCD 1999
## 15831 Chad TD TCD 2000
## 15832 Chad TD TCD 2001
## 15833 Chad TD TCD 2002
## 15834 Chad TD TCD 2003
## 15835 Chad TD TCD 2004
## 15836 Chad TD TCD 2005
## 15837 Chad TD TCD 2006
## 15838 Chad TD TCD 2007
## 15839 Chad TD TCD 2008
## 15840 Chad TD TCD 2009
## 15841 Chad TD TCD 2010
## 15842 Chad TD TCD 2011
## 15843 Chad TD TCD 2012
## 15844 Chad TD TCD 2013
## 15845 Chile CL CHL 1980
## 15846 Chile CL CHL 1981
## 15847 Chile CL CHL 1982
## 15848 Chile CL CHL 1983
## 15849 Chile CL CHL 1984
## 15850 Chile CL CHL 1985
## 15851 Chile CL CHL 1986
## 15852 Chile CL CHL 1987
## 15853 Chile CL CHL 1988
## 15854 Chile CL CHL 1989
## 15855 Chile CL CHL 1990
## 15856 Chile CL CHL 1991
## 15857 Chile CL CHL 1992
## 15858 Chile CL CHL 1993
## 15859 Chile CL CHL 1994
## 15860 Chile CL CHL 1995
## 15861 Chile CL CHL 1996
## 15862 Chile CL CHL 1997
## 15863 Chile CL CHL 1998
## 15864 Chile CL CHL 1999
## 15865 Chile CL CHL 2000
## 15866 Chile CL CHL 2001
## 15867 Chile CL CHL 2002
## 15868 Chile CL CHL 2003
## 15869 Chile CL CHL 2004
## 15870 Chile CL CHL 2005
## 15871 Chile CL CHL 2006
## 15872 Chile CL CHL 2007
## 15873 Chile CL CHL 2008
## 15874 Chile CL CHL 2009
## 15875 Chile CL CHL 2010
## 15876 Chile CL CHL 2011
## 15877 Chile CL CHL 2012
## 15878 Chile CL CHL 2013
## 15879 China CN CHN 1980
## 15880 China CN CHN 1981
## 15881 China CN CHN 1982
## 15882 China CN CHN 1983
## 15883 China CN CHN 1984
## 15884 China CN CHN 1985
## 15885 China CN CHN 1986
## 15886 China CN CHN 1987
## 15887 China CN CHN 1988
## 15888 China CN CHN 1989
## 15889 China CN CHN 1990
## 15890 China CN CHN 1991
## 15891 China CN CHN 1992
## 15892 China CN CHN 1993
## 15893 China CN CHN 1994
## 15894 China CN CHN 1995
## 15895 China CN CHN 1996
## 15896 China CN CHN 1997
## 15897 China CN CHN 1998
## 15898 China CN CHN 1999
## 15899 China CN CHN 2000
## 15900 China CN CHN 2001
## 15901 China CN CHN 2002
## 15902 China CN CHN 2003
## 15903 China CN CHN 2004
## 15904 China CN CHN 2005
## 15905 China CN CHN 2006
## 15906 China CN CHN 2007
## 15907 China CN CHN 2008
## 15908 China CN CHN 2009
## 15909 China CN CHN 2010
## 15910 China CN CHN 2011
## 15911 China CN CHN 2012
## 15912 China CN CHN 2013
## 15913 China, Hong Kong SAR HK HKG 1980
## 15914 China, Hong Kong SAR HK HKG 1981
## 15915 China, Hong Kong SAR HK HKG 1982
## 15916 China, Hong Kong SAR HK HKG 1983
## 15917 China, Hong Kong SAR HK HKG 1984
## 15918 China, Hong Kong SAR HK HKG 1985
## 15919 China, Hong Kong SAR HK HKG 1986
## 15920 China, Hong Kong SAR HK HKG 1987
## 15921 China, Hong Kong SAR HK HKG 1988
## 15922 China, Hong Kong SAR HK HKG 1989
## 15923 China, Hong Kong SAR HK HKG 1990
## 15924 China, Hong Kong SAR HK HKG 1991
## 15925 China, Hong Kong SAR HK HKG 1992
## 15926 China, Hong Kong SAR HK HKG 1993
## 15927 China, Hong Kong SAR HK HKG 1994
## 15928 China, Hong Kong SAR HK HKG 1995
## 15929 China, Hong Kong SAR HK HKG 1996
## 15930 China, Hong Kong SAR HK HKG 1997
## 15931 China, Hong Kong SAR HK HKG 1998
## 15932 China, Hong Kong SAR HK HKG 1999
## 15933 China, Hong Kong SAR HK HKG 2000
## 15934 China, Hong Kong SAR HK HKG 2001
## 15935 China, Hong Kong SAR HK HKG 2002
## 15936 China, Hong Kong SAR HK HKG 2003
## 15937 China, Hong Kong SAR HK HKG 2004
## 15938 China, Hong Kong SAR HK HKG 2005
## 15939 China, Hong Kong SAR HK HKG 2006
## 15940 China, Hong Kong SAR HK HKG 2007
## 15941 China, Hong Kong SAR HK HKG 2008
## 15942 China, Hong Kong SAR HK HKG 2009
## 15943 China, Hong Kong SAR HK HKG 2010
## 15944 China, Hong Kong SAR HK HKG 2011
## 15945 China, Hong Kong SAR HK HKG 2012
## 15946 China, Hong Kong SAR HK HKG 2013
## 15947 China, Macao SAR MO MAC 1980
## 15948 China, Macao SAR MO MAC 1981
## 15949 China, Macao SAR MO MAC 1982
## 15950 China, Macao SAR MO MAC 1983
## 15951 China, Macao SAR MO MAC 1984
## 15952 China, Macao SAR MO MAC 1985
## 15953 China, Macao SAR MO MAC 1986
## 15954 China, Macao SAR MO MAC 1987
## 15955 China, Macao SAR MO MAC 1988
## 15956 China, Macao SAR MO MAC 1989
## 15957 China, Macao SAR MO MAC 1990
## 15958 China, Macao SAR MO MAC 1991
## 15959 China, Macao SAR MO MAC 1992
## 15960 China, Macao SAR MO MAC 1993
## 15961 China, Macao SAR MO MAC 1994
## 15962 China, Macao SAR MO MAC 1995
## 15963 China, Macao SAR MO MAC 1996
## 15964 China, Macao SAR MO MAC 1997
## 15965 China, Macao SAR MO MAC 1998
## 15966 China, Macao SAR MO MAC 1999
## 15967 China, Macao SAR MO MAC 2000
## 15968 China, Macao SAR MO MAC 2001
## 15969 China, Macao SAR MO MAC 2002
## 15970 China, Macao SAR MO MAC 2003
## 15971 China, Macao SAR MO MAC 2004
## 15972 China, Macao SAR MO MAC 2005
## 15973 China, Macao SAR MO MAC 2006
## 15974 China, Macao SAR MO MAC 2007
## 15975 China, Macao SAR MO MAC 2008
## 15976 China, Macao SAR MO MAC 2009
## 15977 China, Macao SAR MO MAC 2010
## 15978 China, Macao SAR MO MAC 2011
## 15979 China, Macao SAR MO MAC 2012
## 15980 China, Macao SAR MO MAC 2013
## 15981 Colombia CO COL 1980
## 15982 Colombia CO COL 1981
## 15983 Colombia CO COL 1982
## 15984 Colombia CO COL 1983
## 15985 Colombia CO COL 1984
## 15986 Colombia CO COL 1985
## 15987 Colombia CO COL 1986
## 15988 Colombia CO COL 1987
## 15989 Colombia CO COL 1988
## 15990 Colombia CO COL 1989
## 15991 Colombia CO COL 1990
## 15992 Colombia CO COL 1991
## 15993 Colombia CO COL 1992
## 15994 Colombia CO COL 1993
## 15995 Colombia CO COL 1994
## 15996 Colombia CO COL 1995
## 15997 Colombia CO COL 1996
## 15998 Colombia CO COL 1997
## 15999 Colombia CO COL 1998
## 16000 Colombia CO COL 1999
## 16001 Colombia CO COL 2000
## 16002 Colombia CO COL 2001
## 16003 Colombia CO COL 2002
## 16004 Colombia CO COL 2003
## 16005 Colombia CO COL 2004
## 16006 Colombia CO COL 2005
## 16007 Colombia CO COL 2006
## 16008 Colombia CO COL 2007
## 16009 Colombia CO COL 2008
## 16010 Colombia CO COL 2009
## 16011 Colombia CO COL 2010
## 16012 Colombia CO COL 2011
## 16013 Colombia CO COL 2012
## 16014 Colombia CO COL 2013
## 16015 Comoros KM COM 1980
## 16016 Comoros KM COM 1981
## 16017 Comoros KM COM 1982
## 16018 Comoros KM COM 1983
## 16019 Comoros KM COM 1984
## 16020 Comoros KM COM 1985
## 16021 Comoros KM COM 1986
## 16022 Comoros KM COM 1987
## 16023 Comoros KM COM 1988
## 16024 Comoros KM COM 1989
## 16025 Comoros KM COM 1990
## 16026 Comoros KM COM 1991
## 16027 Comoros KM COM 1992
## 16028 Comoros KM COM 1993
## 16029 Comoros KM COM 1994
## 16030 Comoros KM COM 1995
## 16031 Comoros KM COM 1996
## 16032 Comoros KM COM 1997
## 16033 Comoros KM COM 1998
## 16034 Comoros KM COM 1999
## 16035 Comoros KM COM 2000
## 16036 Comoros KM COM 2001
## 16037 Comoros KM COM 2002
## 16038 Comoros KM COM 2003
## 16039 Comoros KM COM 2004
## 16040 Comoros KM COM 2005
## 16041 Comoros KM COM 2006
## 16042 Comoros KM COM 2007
## 16043 Comoros KM COM 2008
## 16044 Comoros KM COM 2009
## 16045 Comoros KM COM 2010
## 16046 Comoros KM COM 2011
## 16047 Comoros KM COM 2012
## 16048 Comoros KM COM 2013
## 16049 Congo CG COG 1980
## 16050 Congo CG COG 1981
## 16051 Congo CG COG 1982
## 16052 Congo CG COG 1983
## 16053 Congo CG COG 1984
## 16054 Congo CG COG 1985
## 16055 Congo CG COG 1986
## 16056 Congo CG COG 1987
## 16057 Congo CG COG 1988
## 16058 Congo CG COG 1989
## 16059 Congo CG COG 1990
## 16060 Congo CG COG 1991
## 16061 Congo CG COG 1992
## 16062 Congo CG COG 1993
## 16063 Congo CG COG 1994
## 16064 Congo CG COG 1995
## 16065 Congo CG COG 1996
## 16066 Congo CG COG 1997
## 16067 Congo CG COG 1998
## 16068 Congo CG COG 1999
## 16069 Congo CG COG 2000
## 16070 Congo CG COG 2001
## 16071 Congo CG COG 2002
## 16072 Congo CG COG 2003
## 16073 Congo CG COG 2004
## 16074 Congo CG COG 2005
## 16075 Congo CG COG 2006
## 16076 Congo CG COG 2007
## 16077 Congo CG COG 2008
## 16078 Congo CG COG 2009
## 16079 Congo CG COG 2010
## 16080 Congo CG COG 2011
## 16081 Congo CG COG 2012
## 16082 Congo CG COG 2013
## 16083 Cook Islands CK COK 1980
## 16084 Cook Islands CK COK 1981
## 16085 Cook Islands CK COK 1982
## 16086 Cook Islands CK COK 1983
## 16087 Cook Islands CK COK 1984
## 16088 Cook Islands CK COK 1985
## 16089 Cook Islands CK COK 1986
## 16090 Cook Islands CK COK 1987
## 16091 Cook Islands CK COK 1988
## 16092 Cook Islands CK COK 1989
## 16093 Cook Islands CK COK 1990
## 16094 Cook Islands CK COK 1991
## 16095 Cook Islands CK COK 1992
## 16096 Cook Islands CK COK 1993
## 16097 Cook Islands CK COK 1994
## 16098 Cook Islands CK COK 1995
## 16099 Cook Islands CK COK 1996
## 16100 Cook Islands CK COK 1997
## 16101 Cook Islands CK COK 1998
## 16102 Cook Islands CK COK 1999
## 16103 Cook Islands CK COK 2000
## 16104 Cook Islands CK COK 2001
## 16105 Cook Islands CK COK 2002
## 16106 Cook Islands CK COK 2003
## 16107 Cook Islands CK COK 2004
## 16108 Cook Islands CK COK 2005
## 16109 Cook Islands CK COK 2006
## 16110 Cook Islands CK COK 2007
## 16111 Cook Islands CK COK 2008
## 16112 Cook Islands CK COK 2009
## 16113 Cook Islands CK COK 2010
## 16114 Cook Islands CK COK 2011
## 16115 Cook Islands CK COK 2012
## 16116 Cook Islands CK COK 2013
## 16117 Costa Rica CR CRI 1980
## 16118 Costa Rica CR CRI 1981
## 16119 Costa Rica CR CRI 1982
## 16120 Costa Rica CR CRI 1983
## 16121 Costa Rica CR CRI 1984
## 16122 Costa Rica CR CRI 1985
## 16123 Costa Rica CR CRI 1986
## 16124 Costa Rica CR CRI 1987
## 16125 Costa Rica CR CRI 1988
## 16126 Costa Rica CR CRI 1989
## 16127 Costa Rica CR CRI 1990
## 16128 Costa Rica CR CRI 1991
## 16129 Costa Rica CR CRI 1992
## 16130 Costa Rica CR CRI 1993
## 16131 Costa Rica CR CRI 1994
## 16132 Costa Rica CR CRI 1995
## 16133 Costa Rica CR CRI 1996
## 16134 Costa Rica CR CRI 1997
## 16135 Costa Rica CR CRI 1998
## 16136 Costa Rica CR CRI 1999
## 16137 Costa Rica CR CRI 2000
## 16138 Costa Rica CR CRI 2001
## 16139 Costa Rica CR CRI 2002
## 16140 Costa Rica CR CRI 2003
## 16141 Costa Rica CR CRI 2004
## 16142 Costa Rica CR CRI 2005
## 16143 Costa Rica CR CRI 2006
## 16144 Costa Rica CR CRI 2007
## 16145 Costa Rica CR CRI 2008
## 16146 Costa Rica CR CRI 2009
## 16147 Costa Rica CR CRI 2010
## 16148 Costa Rica CR CRI 2011
## 16149 Costa Rica CR CRI 2012
## 16150 Costa Rica CR CRI 2013
## 16151 Cote d'Ivoire CI CIV 1980
## 16152 Cote d'Ivoire CI CIV 1981
## 16153 Cote d'Ivoire CI CIV 1982
## 16154 Cote d'Ivoire CI CIV 1983
## 16155 Cote d'Ivoire CI CIV 1984
## 16156 Cote d'Ivoire CI CIV 1985
## 16157 Cote d'Ivoire CI CIV 1986
## 16158 Cote d'Ivoire CI CIV 1987
## 16159 Cote d'Ivoire CI CIV 1988
## 16160 Cote d'Ivoire CI CIV 1989
## 16161 Cote d'Ivoire CI CIV 1990
## 16162 Cote d'Ivoire CI CIV 1991
## 16163 Cote d'Ivoire CI CIV 1992
## 16164 Cote d'Ivoire CI CIV 1993
## 16165 Cote d'Ivoire CI CIV 1994
## 16166 Cote d'Ivoire CI CIV 1995
## 16167 Cote d'Ivoire CI CIV 1996
## 16168 Cote d'Ivoire CI CIV 1997
## 16169 Cote d'Ivoire CI CIV 1998
## 16170 Cote d'Ivoire CI CIV 1999
## 16171 Cote d'Ivoire CI CIV 2000
## 16172 Cote d'Ivoire CI CIV 2001
## 16173 Cote d'Ivoire CI CIV 2002
## 16174 Cote d'Ivoire CI CIV 2003
## 16175 Cote d'Ivoire CI CIV 2004
## 16176 Cote d'Ivoire CI CIV 2005
## 16177 Cote d'Ivoire CI CIV 2006
## 16178 Cote d'Ivoire CI CIV 2007
## 16179 Cote d'Ivoire CI CIV 2008
## 16180 Cote d'Ivoire CI CIV 2009
## 16181 Cote d'Ivoire CI CIV 2010
## 16182 Cote d'Ivoire CI CIV 2011
## 16183 Cote d'Ivoire CI CIV 2012
## 16184 Cote d'Ivoire CI CIV 2013
## 16185 Croatia HR HRV 1980
## 16186 Croatia HR HRV 1981
## 16187 Croatia HR HRV 1982
## 16188 Croatia HR HRV 1983
## 16189 Croatia HR HRV 1984
## 16190 Croatia HR HRV 1985
## 16191 Croatia HR HRV 1986
## 16192 Croatia HR HRV 1987
## 16193 Croatia HR HRV 1988
## 16194 Croatia HR HRV 1989
## 16195 Croatia HR HRV 1990
## 16196 Croatia HR HRV 1991
## 16197 Croatia HR HRV 1992
## 16198 Croatia HR HRV 1993
## 16199 Croatia HR HRV 1994
## 16200 Croatia HR HRV 1995
## 16201 Croatia HR HRV 1996
## 16202 Croatia HR HRV 1997
## 16203 Croatia HR HRV 1998
## 16204 Croatia HR HRV 1999
## 16205 Croatia HR HRV 2000
## 16206 Croatia HR HRV 2001
## 16207 Croatia HR HRV 2002
## 16208 Croatia HR HRV 2003
## 16209 Croatia HR HRV 2004
## 16210 Croatia HR HRV 2005
## 16211 Croatia HR HRV 2006
## 16212 Croatia HR HRV 2007
## 16213 Croatia HR HRV 2008
## 16214 Croatia HR HRV 2009
## 16215 Croatia HR HRV 2010
## 16216 Croatia HR HRV 2011
## 16217 Croatia HR HRV 2012
## 16218 Croatia HR HRV 2013
## 16219 Cuba CU CUB 1980
## 16220 Cuba CU CUB 1981
## 16221 Cuba CU CUB 1982
## 16222 Cuba CU CUB 1983
## 16223 Cuba CU CUB 1984
## 16224 Cuba CU CUB 1985
## 16225 Cuba CU CUB 1986
## 16226 Cuba CU CUB 1987
## 16227 Cuba CU CUB 1988
## 16228 Cuba CU CUB 1989
## 16229 Cuba CU CUB 1990
## 16230 Cuba CU CUB 1991
## 16231 Cuba CU CUB 1992
## 16232 Cuba CU CUB 1993
## 16233 Cuba CU CUB 1994
## 16234 Cuba CU CUB 1995
## 16235 Cuba CU CUB 1996
## 16236 Cuba CU CUB 1997
## 16237 Cuba CU CUB 1998
## 16238 Cuba CU CUB 1999
## 16239 Cuba CU CUB 2000
## 16240 Cuba CU CUB 2001
## 16241 Cuba CU CUB 2002
## 16242 Cuba CU CUB 2003
## 16243 Cuba CU CUB 2004
## 16244 Cuba CU CUB 2005
## 16245 Cuba CU CUB 2006
## 16246 Cuba CU CUB 2007
## 16247 Cuba CU CUB 2008
## 16248 Cuba CU CUB 2009
## 16249 Cuba CU CUB 2010
## 16250 Cuba CU CUB 2011
## 16251 Cuba CU CUB 2012
## 16252 Cuba CU CUB 2013
## 16253 Curacao CW CUW 2010
## 16254 Curacao CW CUW 2011
## 16255 Curacao CW CUW 2012
## 16256 Curacao CW CUW 2013
## 16257 Cyprus CY CYP 1980
## 16258 Cyprus CY CYP 1981
## 16259 Cyprus CY CYP 1982
## 16260 Cyprus CY CYP 1983
## 16261 Cyprus CY CYP 1984
## 16262 Cyprus CY CYP 1985
## 16263 Cyprus CY CYP 1986
## 16264 Cyprus CY CYP 1987
## 16265 Cyprus CY CYP 1988
## 16266 Cyprus CY CYP 1989
## 16267 Cyprus CY CYP 1990
## 16268 Cyprus CY CYP 1991
## 16269 Cyprus CY CYP 1992
## 16270 Cyprus CY CYP 1993
## 16271 Cyprus CY CYP 1994
## 16272 Cyprus CY CYP 1995
## 16273 Cyprus CY CYP 1996
## 16274 Cyprus CY CYP 1997
## 16275 Cyprus CY CYP 1998
## 16276 Cyprus CY CYP 1999
## 16277 Cyprus CY CYP 2000
## 16278 Cyprus CY CYP 2001
## 16279 Cyprus CY CYP 2002
## 16280 Cyprus CY CYP 2003
## 16281 Cyprus CY CYP 2004
## 16282 Cyprus CY CYP 2005
## 16283 Cyprus CY CYP 2006
## 16284 Cyprus CY CYP 2007
## 16285 Cyprus CY CYP 2008
## 16286 Cyprus CY CYP 2009
## 16287 Cyprus CY CYP 2010
## 16288 Cyprus CY CYP 2011
## 16289 Cyprus CY CYP 2012
## 16290 Cyprus CY CYP 2013
## 16291 Czech Republic CZ CZE 1980
## 16292 Czech Republic CZ CZE 1981
## 16293 Czech Republic CZ CZE 1982
## 16294 Czech Republic CZ CZE 1983
## 16295 Czech Republic CZ CZE 1984
## 16296 Czech Republic CZ CZE 1985
## 16297 Czech Republic CZ CZE 1986
## 16298 Czech Republic CZ CZE 1987
## 16299 Czech Republic CZ CZE 1988
## 16300 Czech Republic CZ CZE 1989
## 16301 Czech Republic CZ CZE 1990
## 16302 Czech Republic CZ CZE 1991
## 16303 Czech Republic CZ CZE 1992
## 16304 Czech Republic CZ CZE 1993
## 16305 Czech Republic CZ CZE 1994
## 16306 Czech Republic CZ CZE 1995
## 16307 Czech Republic CZ CZE 1996
## 16308 Czech Republic CZ CZE 1997
## 16309 Czech Republic CZ CZE 1998
## 16310 Czech Republic CZ CZE 1999
## 16311 Czech Republic CZ CZE 2000
## 16312 Czech Republic CZ CZE 2001
## 16313 Czech Republic CZ CZE 2002
## 16314 Czech Republic CZ CZE 2003
## 16315 Czech Republic CZ CZE 2004
## 16316 Czech Republic CZ CZE 2005
## 16317 Czech Republic CZ CZE 2006
## 16318 Czech Republic CZ CZE 2007
## 16319 Czech Republic CZ CZE 2008
## 16320 Czech Republic CZ CZE 2009
## 16321 Czech Republic CZ CZE 2010
## 16322 Czech Republic CZ CZE 2011
## 16323 Czech Republic CZ CZE 2012
## 16324 Czech Republic CZ CZE 2013
## 16325 Democratic People's Republic of Korea KP PRK 1980
## 16326 Democratic People's Republic of Korea KP PRK 1981
## 16327 Democratic People's Republic of Korea KP PRK 1982
## 16328 Democratic People's Republic of Korea KP PRK 1983
## 16329 Democratic People's Republic of Korea KP PRK 1984
## 16330 Democratic People's Republic of Korea KP PRK 1985
## 16331 Democratic People's Republic of Korea KP PRK 1986
## 16332 Democratic People's Republic of Korea KP PRK 1987
## 16333 Democratic People's Republic of Korea KP PRK 1988
## 16334 Democratic People's Republic of Korea KP PRK 1989
## 16335 Democratic People's Republic of Korea KP PRK 1990
## 16336 Democratic People's Republic of Korea KP PRK 1991
## 16337 Democratic People's Republic of Korea KP PRK 1992
## 16338 Democratic People's Republic of Korea KP PRK 1993
## 16339 Democratic People's Republic of Korea KP PRK 1994
## 16340 Democratic People's Republic of Korea KP PRK 1995
## 16341 Democratic People's Republic of Korea KP PRK 1996
## 16342 Democratic People's Republic of Korea KP PRK 1997
## 16343 Democratic People's Republic of Korea KP PRK 1998
## 16344 Democratic People's Republic of Korea KP PRK 1999
## 16345 Democratic People's Republic of Korea KP PRK 2000
## 16346 Democratic People's Republic of Korea KP PRK 2001
## 16347 Democratic People's Republic of Korea KP PRK 2002
## 16348 Democratic People's Republic of Korea KP PRK 2003
## 16349 Democratic People's Republic of Korea KP PRK 2004
## 16350 Democratic People's Republic of Korea KP PRK 2005
## 16351 Democratic People's Republic of Korea KP PRK 2006
## 16352 Democratic People's Republic of Korea KP PRK 2007
## 16353 Democratic People's Republic of Korea KP PRK 2008
## 16354 Democratic People's Republic of Korea KP PRK 2009
## 16355 Democratic People's Republic of Korea KP PRK 2010
## 16356 Democratic People's Republic of Korea KP PRK 2011
## 16357 Democratic People's Republic of Korea KP PRK 2012
## 16358 Democratic People's Republic of Korea KP PRK 2013
## 16359 Democratic Republic of the Congo CD COD 1980
## 16360 Democratic Republic of the Congo CD COD 1981
## 16361 Democratic Republic of the Congo CD COD 1982
## 16362 Democratic Republic of the Congo CD COD 1983
## 16363 Democratic Republic of the Congo CD COD 1984
## 16364 Democratic Republic of the Congo CD COD 1985
## 16365 Democratic Republic of the Congo CD COD 1986
## 16366 Democratic Republic of the Congo CD COD 1987
## 16367 Democratic Republic of the Congo CD COD 1988
## 16368 Democratic Republic of the Congo CD COD 1989
## 16369 Democratic Republic of the Congo CD COD 1990
## 16370 Democratic Republic of the Congo CD COD 1991
## 16371 Democratic Republic of the Congo CD COD 1992
## 16372 Democratic Republic of the Congo CD COD 1993
## 16373 Democratic Republic of the Congo CD COD 1994
## 16374 Democratic Republic of the Congo CD COD 1995
## 16375 Democratic Republic of the Congo CD COD 1996
## 16376 Democratic Republic of the Congo CD COD 1997
## 16377 Democratic Republic of the Congo CD COD 1998
## 16378 Democratic Republic of the Congo CD COD 1999
## 16379 Democratic Republic of the Congo CD COD 2000
## 16380 Democratic Republic of the Congo CD COD 2001
## 16381 Democratic Republic of the Congo CD COD 2002
## 16382 Democratic Republic of the Congo CD COD 2003
## 16383 Democratic Republic of the Congo CD COD 2004
## 16384 Democratic Republic of the Congo CD COD 2005
## 16385 Democratic Republic of the Congo CD COD 2006
## 16386 Democratic Republic of the Congo CD COD 2007
## 16387 Democratic Republic of the Congo CD COD 2008
## 16388 Democratic Republic of the Congo CD COD 2009
## 16389 Democratic Republic of the Congo CD COD 2010
## 16390 Democratic Republic of the Congo CD COD 2011
## 16391 Democratic Republic of the Congo CD COD 2012
## 16392 Democratic Republic of the Congo CD COD 2013
## 16393 Denmark DK DNK 1980
## 16394 Denmark DK DNK 1981
## 16395 Denmark DK DNK 1982
## 16396 Denmark DK DNK 1983
## 16397 Denmark DK DNK 1984
## 16398 Denmark DK DNK 1985
## 16399 Denmark DK DNK 1986
## 16400 Denmark DK DNK 1987
## 16401 Denmark DK DNK 1988
## 16402 Denmark DK DNK 1989
## 16403 Denmark DK DNK 1990
## 16404 Denmark DK DNK 1991
## 16405 Denmark DK DNK 1992
## 16406 Denmark DK DNK 1993
## 16407 Denmark DK DNK 1994
## 16408 Denmark DK DNK 1995
## 16409 Denmark DK DNK 1996
## 16410 Denmark DK DNK 1997
## 16411 Denmark DK DNK 1998
## 16412 Denmark DK DNK 1999
## 16413 Denmark DK DNK 2000
## 16414 Denmark DK DNK 2001
## 16415 Denmark DK DNK 2002
## 16416 Denmark DK DNK 2003
## 16417 Denmark DK DNK 2004
## 16418 Denmark DK DNK 2005
## 16419 Denmark DK DNK 2006
## 16420 Denmark DK DNK 2007
## 16421 Denmark DK DNK 2008
## 16422 Denmark DK DNK 2009
## 16423 Denmark DK DNK 2010
## 16424 Denmark DK DNK 2011
## 16425 Denmark DK DNK 2012
## 16426 Denmark DK DNK 2013
## 16427 Djibouti DJ DJI 1980
## 16428 Djibouti DJ DJI 1981
## 16429 Djibouti DJ DJI 1982
## 16430 Djibouti DJ DJI 1983
## 16431 Djibouti DJ DJI 1984
## 16432 Djibouti DJ DJI 1985
## 16433 Djibouti DJ DJI 1986
## 16434 Djibouti DJ DJI 1987
## 16435 Djibouti DJ DJI 1988
## 16436 Djibouti DJ DJI 1989
## 16437 Djibouti DJ DJI 1990
## 16438 Djibouti DJ DJI 1991
## 16439 Djibouti DJ DJI 1992
## 16440 Djibouti DJ DJI 1993
## 16441 Djibouti DJ DJI 1994
## 16442 Djibouti DJ DJI 1995
## 16443 Djibouti DJ DJI 1996
## 16444 Djibouti DJ DJI 1997
## 16445 Djibouti DJ DJI 1998
## 16446 Djibouti DJ DJI 1999
## 16447 Djibouti DJ DJI 2000
## 16448 Djibouti DJ DJI 2001
## 16449 Djibouti DJ DJI 2002
## 16450 Djibouti DJ DJI 2003
## 16451 Djibouti DJ DJI 2004
## 16452 Djibouti DJ DJI 2005
## 16453 Djibouti DJ DJI 2006
## 16454 Djibouti DJ DJI 2007
## 16455 Djibouti DJ DJI 2008
## 16456 Djibouti DJ DJI 2009
## 16457 Djibouti DJ DJI 2010
## 16458 Djibouti DJ DJI 2011
## 16459 Djibouti DJ DJI 2012
## 16460 Djibouti DJ DJI 2013
## 16461 Dominica DM DMA 1980
## 16462 Dominica DM DMA 1981
## 16463 Dominica DM DMA 1982
## 16464 Dominica DM DMA 1983
## 16465 Dominica DM DMA 1984
## 16466 Dominica DM DMA 1985
## 16467 Dominica DM DMA 1986
## 16468 Dominica DM DMA 1987
## 16469 Dominica DM DMA 1988
## 16470 Dominica DM DMA 1989
## 16471 Dominica DM DMA 1990
## 16472 Dominica DM DMA 1991
## 16473 Dominica DM DMA 1992
## 16474 Dominica DM DMA 1993
## 16475 Dominica DM DMA 1994
## 16476 Dominica DM DMA 1995
## 16477 Dominica DM DMA 1996
## 16478 Dominica DM DMA 1997
## 16479 Dominica DM DMA 1998
## 16480 Dominica DM DMA 1999
## 16481 Dominica DM DMA 2000
## 16482 Dominica DM DMA 2001
## 16483 Dominica DM DMA 2002
## 16484 Dominica DM DMA 2003
## 16485 Dominica DM DMA 2004
## 16486 Dominica DM DMA 2005
## 16487 Dominica DM DMA 2006
## 16488 Dominica DM DMA 2007
## 16489 Dominica DM DMA 2008
## 16490 Dominica DM DMA 2009
## 16491 Dominica DM DMA 2010
## 16492 Dominica DM DMA 2011
## 16493 Dominica DM DMA 2012
## 16494 Dominica DM DMA 2013
## 16495 Dominican Republic DO DOM 1980
## 16496 Dominican Republic DO DOM 1981
## 16497 Dominican Republic DO DOM 1982
## 16498 Dominican Republic DO DOM 1983
## 16499 Dominican Republic DO DOM 1984
## 16500 Dominican Republic DO DOM 1985
## 16501 Dominican Republic DO DOM 1986
## 16502 Dominican Republic DO DOM 1987
## 16503 Dominican Republic DO DOM 1988
## 16504 Dominican Republic DO DOM 1989
## 16505 Dominican Republic DO DOM 1990
## 16506 Dominican Republic DO DOM 1991
## 16507 Dominican Republic DO DOM 1992
## 16508 Dominican Republic DO DOM 1993
## 16509 Dominican Republic DO DOM 1994
## 16510 Dominican Republic DO DOM 1995
## 16511 Dominican Republic DO DOM 1996
## 16512 Dominican Republic DO DOM 1997
## 16513 Dominican Republic DO DOM 1998
## 16514 Dominican Republic DO DOM 1999
## 16515 Dominican Republic DO DOM 2000
## 16516 Dominican Republic DO DOM 2001
## 16517 Dominican Republic DO DOM 2002
## 16518 Dominican Republic DO DOM 2003
## 16519 Dominican Republic DO DOM 2004
## 16520 Dominican Republic DO DOM 2005
## 16521 Dominican Republic DO DOM 2006
## 16522 Dominican Republic DO DOM 2007
## 16523 Dominican Republic DO DOM 2008
## 16524 Dominican Republic DO DOM 2009
## 16525 Dominican Republic DO DOM 2010
## 16526 Dominican Republic DO DOM 2011
## 16527 Dominican Republic DO DOM 2012
## 16528 Dominican Republic DO DOM 2013
## 16529 Ecuador EC ECU 1980
## 16530 Ecuador EC ECU 1981
## 16531 Ecuador EC ECU 1982
## 16532 Ecuador EC ECU 1983
## 16533 Ecuador EC ECU 1984
## 16534 Ecuador EC ECU 1985
## 16535 Ecuador EC ECU 1986
## 16536 Ecuador EC ECU 1987
## 16537 Ecuador EC ECU 1988
## 16538 Ecuador EC ECU 1989
## 16539 Ecuador EC ECU 1990
## 16540 Ecuador EC ECU 1991
## 16541 Ecuador EC ECU 1992
## 16542 Ecuador EC ECU 1993
## 16543 Ecuador EC ECU 1994
## 16544 Ecuador EC ECU 1995
## 16545 Ecuador EC ECU 1996
## 16546 Ecuador EC ECU 1997
## 16547 Ecuador EC ECU 1998
## 16548 Ecuador EC ECU 1999
## 16549 Ecuador EC ECU 2000
## 16550 Ecuador EC ECU 2001
## 16551 Ecuador EC ECU 2002
## 16552 Ecuador EC ECU 2003
## 16553 Ecuador EC ECU 2004
## 16554 Ecuador EC ECU 2005
## 16555 Ecuador EC ECU 2006
## 16556 Ecuador EC ECU 2007
## 16557 Ecuador EC ECU 2008
## 16558 Ecuador EC ECU 2009
## 16559 Ecuador EC ECU 2010
## 16560 Ecuador EC ECU 2011
## 16561 Ecuador EC ECU 2012
## 16562 Ecuador EC ECU 2013
## 16563 Egypt EG EGY 1980
## 16564 Egypt EG EGY 1981
## 16565 Egypt EG EGY 1982
## 16566 Egypt EG EGY 1983
## 16567 Egypt EG EGY 1984
## 16568 Egypt EG EGY 1985
## 16569 Egypt EG EGY 1986
## 16570 Egypt EG EGY 1987
## 16571 Egypt EG EGY 1988
## 16572 Egypt EG EGY 1989
## 16573 Egypt EG EGY 1990
## 16574 Egypt EG EGY 1991
## 16575 Egypt EG EGY 1992
## 16576 Egypt EG EGY 1993
## 16577 Egypt EG EGY 1994
## 16578 Egypt EG EGY 1995
## 16579 Egypt EG EGY 1996
## 16580 Egypt EG EGY 1997
## 16581 Egypt EG EGY 1998
## 16582 Egypt EG EGY 1999
## 16583 Egypt EG EGY 2000
## 16584 Egypt EG EGY 2001
## 16585 Egypt EG EGY 2002
## 16586 Egypt EG EGY 2003
## 16587 Egypt EG EGY 2004
## 16588 Egypt EG EGY 2005
## 16589 Egypt EG EGY 2006
## 16590 Egypt EG EGY 2007
## 16591 Egypt EG EGY 2008
## 16592 Egypt EG EGY 2009
## 16593 Egypt EG EGY 2010
## 16594 Egypt EG EGY 2011
## 16595 Egypt EG EGY 2012
## 16596 Egypt EG EGY 2013
## 16597 El Salvador SV SLV 1980
## 16598 El Salvador SV SLV 1981
## 16599 El Salvador SV SLV 1982
## 16600 El Salvador SV SLV 1983
## 16601 El Salvador SV SLV 1984
## 16602 El Salvador SV SLV 1985
## 16603 El Salvador SV SLV 1986
## 16604 El Salvador SV SLV 1987
## 16605 El Salvador SV SLV 1988
## 16606 El Salvador SV SLV 1989
## 16607 El Salvador SV SLV 1990
## 16608 El Salvador SV SLV 1991
## 16609 El Salvador SV SLV 1992
## 16610 El Salvador SV SLV 1993
## 16611 El Salvador SV SLV 1994
## 16612 El Salvador SV SLV 1995
## 16613 El Salvador SV SLV 1996
## 16614 El Salvador SV SLV 1997
## 16615 El Salvador SV SLV 1998
## 16616 El Salvador SV SLV 1999
## 16617 El Salvador SV SLV 2000
## 16618 El Salvador SV SLV 2001
## 16619 El Salvador SV SLV 2002
## 16620 El Salvador SV SLV 2003
## 16621 El Salvador SV SLV 2004
## 16622 El Salvador SV SLV 2005
## 16623 El Salvador SV SLV 2006
## 16624 El Salvador SV SLV 2007
## 16625 El Salvador SV SLV 2008
## 16626 El Salvador SV SLV 2009
## 16627 El Salvador SV SLV 2010
## 16628 El Salvador SV SLV 2011
## 16629 El Salvador SV SLV 2012
## 16630 El Salvador SV SLV 2013
## 16631 Equatorial Guinea GQ GNQ 1980
## 16632 Equatorial Guinea GQ GNQ 1981
## 16633 Equatorial Guinea GQ GNQ 1982
## 16634 Equatorial Guinea GQ GNQ 1983
## 16635 Equatorial Guinea GQ GNQ 1984
## 16636 Equatorial Guinea GQ GNQ 1985
## 16637 Equatorial Guinea GQ GNQ 1986
## 16638 Equatorial Guinea GQ GNQ 1987
## 16639 Equatorial Guinea GQ GNQ 1988
## 16640 Equatorial Guinea GQ GNQ 1989
## 16641 Equatorial Guinea GQ GNQ 1990
## 16642 Equatorial Guinea GQ GNQ 1991
## 16643 Equatorial Guinea GQ GNQ 1992
## 16644 Equatorial Guinea GQ GNQ 1993
## 16645 Equatorial Guinea GQ GNQ 1994
## 16646 Equatorial Guinea GQ GNQ 1995
## 16647 Equatorial Guinea GQ GNQ 1996
## 16648 Equatorial Guinea GQ GNQ 1997
## 16649 Equatorial Guinea GQ GNQ 1998
## 16650 Equatorial Guinea GQ GNQ 1999
## 16651 Equatorial Guinea GQ GNQ 2000
## 16652 Equatorial Guinea GQ GNQ 2001
## 16653 Equatorial Guinea GQ GNQ 2002
## 16654 Equatorial Guinea GQ GNQ 2003
## 16655 Equatorial Guinea GQ GNQ 2004
## 16656 Equatorial Guinea GQ GNQ 2005
## 16657 Equatorial Guinea GQ GNQ 2006
## 16658 Equatorial Guinea GQ GNQ 2007
## 16659 Equatorial Guinea GQ GNQ 2008
## 16660 Equatorial Guinea GQ GNQ 2009
## 16661 Equatorial Guinea GQ GNQ 2010
## 16662 Equatorial Guinea GQ GNQ 2011
## 16663 Equatorial Guinea GQ GNQ 2012
## 16664 Equatorial Guinea GQ GNQ 2013
## 16665 Eritrea ER ERI 1980
## 16666 Eritrea ER ERI 1981
## variable value
## 1 new_sp_m014 NA
## 2 new_sp_m014 NA
## 3 new_sp_m014 NA
## 4 new_sp_m014 NA
## 5 new_sp_m014 NA
## 6 new_sp_m014 NA
## 7 new_sp_m014 NA
## 8 new_sp_m014 NA
## 9 new_sp_m014 NA
## 10 new_sp_m014 NA
## 11 new_sp_m014 NA
## 12 new_sp_m014 NA
## 13 new_sp_m014 NA
## 14 new_sp_m014 NA
## 15 new_sp_m014 NA
## 16 new_sp_m014 NA
## 17 new_sp_m014 NA
## 18 new_sp_m014 0
## 19 new_sp_m014 30
## 20 new_sp_m014 8
## 21 new_sp_m014 52
## 22 new_sp_m014 129
## 23 new_sp_m014 90
## 24 new_sp_m014 127
## 25 new_sp_m014 139
## 26 new_sp_m014 151
## 27 new_sp_m014 193
## 28 new_sp_m014 186
## 29 new_sp_m014 187
## 30 new_sp_m014 200
## 31 new_sp_m014 197
## 32 new_sp_m014 204
## 33 new_sp_m014 188
## 34 new_sp_m014 NA
## 35 new_sp_m014 NA
## 36 new_sp_m014 NA
## 37 new_sp_m014 NA
## 38 new_sp_m014 NA
## 39 new_sp_m014 NA
## 40 new_sp_m014 NA
## 41 new_sp_m014 NA
## 42 new_sp_m014 NA
## 43 new_sp_m014 NA
## 44 new_sp_m014 NA
## 45 new_sp_m014 NA
## 46 new_sp_m014 NA
## 47 new_sp_m014 NA
## 48 new_sp_m014 NA
## 49 new_sp_m014 NA
## 50 new_sp_m014 0
## 51 new_sp_m014 NA
## 52 new_sp_m014 0
## 53 new_sp_m014 1
## 54 new_sp_m014 0
## 55 new_sp_m014 2
## 56 new_sp_m014 3
## 57 new_sp_m014 0
## 58 new_sp_m014 0
## 59 new_sp_m014 5
## 60 new_sp_m014 0
## 61 new_sp_m014 5
## 62 new_sp_m014 0
## 63 new_sp_m014 1
## 64 new_sp_m014 0
## 65 new_sp_m014 0
## 66 new_sp_m014 0
## 67 new_sp_m014 0
## 68 new_sp_m014 NA
## 69 new_sp_m014 NA
## 70 new_sp_m014 NA
## 71 new_sp_m014 NA
## 72 new_sp_m014 NA
## 73 new_sp_m014 NA
## 74 new_sp_m014 NA
## 75 new_sp_m014 NA
## 76 new_sp_m014 NA
## 77 new_sp_m014 NA
## 78 new_sp_m014 NA
## 79 new_sp_m014 NA
## 80 new_sp_m014 NA
## 81 new_sp_m014 NA
## 82 new_sp_m014 NA
## 83 new_sp_m014 NA
## 84 new_sp_m014 NA
## 85 new_sp_m014 NA
## 86 new_sp_m014 659
## 87 new_sp_m014 NA
## 88 new_sp_m014 40
## 89 new_sp_m014 59
## 90 new_sp_m014 41
## 91 new_sp_m014 39
## 92 new_sp_m014 40
## 93 new_sp_m014 63
## 94 new_sp_m014 53
## 95 new_sp_m014 41
## 96 new_sp_m014 95
## 97 new_sp_m014 99
## 98 new_sp_m014 43
## 99 new_sp_m014 52
## 100 new_sp_m014 42
## 101 new_sp_m014 29
## 102 new_sp_m014 NA
## 103 new_sp_m014 NA
## 104 new_sp_m014 NA
## 105 new_sp_m014 NA
## 106 new_sp_m014 NA
## 107 new_sp_m014 NA
## 108 new_sp_m014 NA
## 109 new_sp_m014 NA
## 110 new_sp_m014 NA
## 111 new_sp_m014 NA
## 112 new_sp_m014 NA
## 113 new_sp_m014 NA
## 114 new_sp_m014 NA
## 115 new_sp_m014 NA
## 116 new_sp_m014 NA
## 117 new_sp_m014 NA
## 118 new_sp_m014 NA
## 119 new_sp_m014 NA
## 120 new_sp_m014 1
## 121 new_sp_m014 NA
## 122 new_sp_m014 NA
## 123 new_sp_m014 NA
## 124 new_sp_m014 NA
## 125 new_sp_m014 NA
## 126 new_sp_m014 NA
## 127 new_sp_m014 NA
## 128 new_sp_m014 NA
## 129 new_sp_m014 NA
## 130 new_sp_m014 NA
## 131 new_sp_m014 0
## 132 new_sp_m014 0
## 133 new_sp_m014 0
## 134 new_sp_m014 NA
## 135 new_sp_m014 NA
## 136 new_sp_m014 NA
## 137 new_sp_m014 NA
## 138 new_sp_m014 NA
## 139 new_sp_m014 NA
## 140 new_sp_m014 NA
## 141 new_sp_m014 NA
## 142 new_sp_m014 NA
## 143 new_sp_m014 NA
## 144 new_sp_m014 NA
## 145 new_sp_m014 NA
## 146 new_sp_m014 NA
## 147 new_sp_m014 NA
## 148 new_sp_m014 NA
## 149 new_sp_m014 NA
## 150 new_sp_m014 NA
## 151 new_sp_m014 NA
## 152 new_sp_m014 NA
## 153 new_sp_m014 0
## 154 new_sp_m014 0
## 155 new_sp_m014 0
## 156 new_sp_m014 0
## 157 new_sp_m014 0
## 158 new_sp_m014 0
## 159 new_sp_m014 0
## 160 new_sp_m014 0
## 161 new_sp_m014 0
## 162 new_sp_m014 0
## 163 new_sp_m014 0
## 164 new_sp_m014 NA
## 165 new_sp_m014 0
## 166 new_sp_m014 0
## 167 new_sp_m014 0
## 168 new_sp_m014 0
## 169 new_sp_m014 0
## 170 new_sp_m014 NA
## 171 new_sp_m014 NA
## 172 new_sp_m014 NA
## 173 new_sp_m014 NA
## 174 new_sp_m014 NA
## 175 new_sp_m014 NA
## 176 new_sp_m014 NA
## 177 new_sp_m014 NA
## 178 new_sp_m014 NA
## 179 new_sp_m014 NA
## 180 new_sp_m014 NA
## 181 new_sp_m014 NA
## 182 new_sp_m014 NA
## 183 new_sp_m014 NA
## 184 new_sp_m014 NA
## 185 new_sp_m014 NA
## 186 new_sp_m014 386
## 187 new_sp_m014 360
## 188 new_sp_m014 419
## 189 new_sp_m014 240
## 190 new_sp_m014 391
## 191 new_sp_m014 186
## 192 new_sp_m014 230
## 193 new_sp_m014 435
## 194 new_sp_m014 409
## 195 new_sp_m014 554
## 196 new_sp_m014 520
## 197 new_sp_m014 540
## 198 new_sp_m014 484
## 199 new_sp_m014 367
## 200 new_sp_m014 392
## 201 new_sp_m014 448
## 202 new_sp_m014 501
## 203 new_sp_m014 390
## 204 new_sp_m014 NA
## 205 new_sp_m014 NA
## 206 new_sp_m014 NA
## 207 new_sp_m014 NA
## 208 new_sp_m014 NA
## 209 new_sp_m014 NA
## 210 new_sp_m014 NA
## 211 new_sp_m014 NA
## 212 new_sp_m014 NA
## 213 new_sp_m014 NA
## 214 new_sp_m014 NA
## 215 new_sp_m014 NA
## 216 new_sp_m014 NA
## 217 new_sp_m014 NA
## 218 new_sp_m014 NA
## 219 new_sp_m014 NA
## 220 new_sp_m014 NA
## 221 new_sp_m014 NA
## 222 new_sp_m014 NA
## 223 new_sp_m014 NA
## 224 new_sp_m014 NA
## 225 new_sp_m014 NA
## 226 new_sp_m014 NA
## 227 new_sp_m014 NA
## 228 new_sp_m014 NA
## 229 new_sp_m014 0
## 230 new_sp_m014 NA
## 231 new_sp_m014 NA
## 232 new_sp_m014 NA
## 233 new_sp_m014 NA
## 234 new_sp_m014 NA
## 235 new_sp_m014 0
## 236 new_sp_m014 0
## 237 new_sp_m014 0
## 238 new_sp_m014 NA
## 239 new_sp_m014 NA
## 240 new_sp_m014 NA
## 241 new_sp_m014 NA
## 242 new_sp_m014 NA
## 243 new_sp_m014 NA
## 244 new_sp_m014 NA
## 245 new_sp_m014 NA
## 246 new_sp_m014 NA
## 247 new_sp_m014 NA
## 248 new_sp_m014 NA
## 249 new_sp_m014 NA
## 250 new_sp_m014 NA
## 251 new_sp_m014 NA
## 252 new_sp_m014 NA
## 253 new_sp_m014 NA
## 254 new_sp_m014 NA
## 255 new_sp_m014 0
## 256 new_sp_m014 NA
## 257 new_sp_m014 NA
## 258 new_sp_m014 NA
## 259 new_sp_m014 0
## 260 new_sp_m014 NA
## 261 new_sp_m014 0
## 262 new_sp_m014 0
## 263 new_sp_m014 NA
## 264 new_sp_m014 NA
## 265 new_sp_m014 NA
## 266 new_sp_m014 0
## 267 new_sp_m014 0
## 268 new_sp_m014 0
## 269 new_sp_m014 0
## 270 new_sp_m014 0
## 271 new_sp_m014 0
## 272 new_sp_m014 NA
## 273 new_sp_m014 NA
## 274 new_sp_m014 NA
## 275 new_sp_m014 NA
## 276 new_sp_m014 NA
## 277 new_sp_m014 NA
## 278 new_sp_m014 NA
## 279 new_sp_m014 NA
## 280 new_sp_m014 NA
## 281 new_sp_m014 NA
## 282 new_sp_m014 NA
## 283 new_sp_m014 NA
## 284 new_sp_m014 NA
## 285 new_sp_m014 NA
## 286 new_sp_m014 NA
## 287 new_sp_m014 NA
## 288 new_sp_m014 NA
## 289 new_sp_m014 113
## 290 new_sp_m014 96
## 291 new_sp_m014 84
## 292 new_sp_m014 90
## 293 new_sp_m014 97
## 294 new_sp_m014 78
## 295 new_sp_m014 70
## 296 new_sp_m014 89
## 297 new_sp_m014 64
## 298 new_sp_m014 64
## 299 new_sp_m014 67
## 300 new_sp_m014 77
## 301 new_sp_m014 69
## 302 new_sp_m014 44
## 303 new_sp_m014 56
## 304 new_sp_m014 143
## 305 new_sp_m014 59
## 306 new_sp_m014 NA
## 307 new_sp_m014 NA
## 308 new_sp_m014 NA
## 309 new_sp_m014 NA
## 310 new_sp_m014 NA
## 311 new_sp_m014 NA
## 312 new_sp_m014 NA
## 313 new_sp_m014 NA
## 314 new_sp_m014 NA
## 315 new_sp_m014 NA
## 316 new_sp_m014 NA
## 317 new_sp_m014 NA
## 318 new_sp_m014 NA
## 319 new_sp_m014 NA
## 320 new_sp_m014 NA
## 321 new_sp_m014 NA
## 322 new_sp_m014 1
## 323 new_sp_m014 2
## 324 new_sp_m014 2
## 325 new_sp_m014 2
## 326 new_sp_m014 4
## 327 new_sp_m014 2
## 328 new_sp_m014 2
## 329 new_sp_m014 1
## 330 new_sp_m014 12
## 331 new_sp_m014 2
## 332 new_sp_m014 3
## 333 new_sp_m014 0
## 334 new_sp_m014 1
## 335 new_sp_m014 0
## 336 new_sp_m014 1
## 337 new_sp_m014 0
## 338 new_sp_m014 0
## 339 new_sp_m014 1
## 340 new_sp_m014 NA
## 341 new_sp_m014 NA
## 342 new_sp_m014 NA
## 343 new_sp_m014 NA
## 344 new_sp_m014 NA
## 345 new_sp_m014 NA
## 346 new_sp_m014 NA
## 347 new_sp_m014 NA
## 348 new_sp_m014 NA
## 349 new_sp_m014 NA
## 350 new_sp_m014 NA
## 351 new_sp_m014 NA
## 352 new_sp_m014 NA
## 353 new_sp_m014 NA
## 354 new_sp_m014 NA
## 355 new_sp_m014 NA
## 356 new_sp_m014 NA
## 357 new_sp_m014 NA
## 358 new_sp_m014 NA
## 359 new_sp_m014 NA
## 360 new_sp_m014 NA
## 361 new_sp_m014 NA
## 362 new_sp_m014 NA
## 363 new_sp_m014 NA
## 364 new_sp_m014 NA
## 365 new_sp_m014 NA
## 366 new_sp_m014 NA
## 367 new_sp_m014 NA
## 368 new_sp_m014 NA
## 369 new_sp_m014 NA
## 370 new_sp_m014 NA
## 371 new_sp_m014 NA
## 372 new_sp_m014 NA
## 373 new_sp_m014 NA
## 374 new_sp_m014 NA
## 375 new_sp_m014 NA
## 376 new_sp_m014 NA
## 377 new_sp_m014 NA
## 378 new_sp_m014 NA
## 379 new_sp_m014 NA
## 380 new_sp_m014 NA
## 381 new_sp_m014 NA
## 382 new_sp_m014 NA
## 383 new_sp_m014 NA
## 384 new_sp_m014 NA
## 385 new_sp_m014 NA
## 386 new_sp_m014 NA
## 387 new_sp_m014 NA
## 388 new_sp_m014 NA
## 389 new_sp_m014 NA
## 390 new_sp_m014 NA
## 391 new_sp_m014 NA
## 392 new_sp_m014 1
## 393 new_sp_m014 0
## 394 new_sp_m014 0
## 395 new_sp_m014 3
## 396 new_sp_m014 1
## 397 new_sp_m014 1
## 398 new_sp_m014 0
## 399 new_sp_m014 0
## 400 new_sp_m014 0
## 401 new_sp_m014 1
## 402 new_sp_m014 3
## 403 new_sp_m014 2
## 404 new_sp_m014 3
## 405 new_sp_m014 2
## 406 new_sp_m014 2
## 407 new_sp_m014 3
## 408 new_sp_m014 NA
## 409 new_sp_m014 NA
## 410 new_sp_m014 NA
## 411 new_sp_m014 NA
## 412 new_sp_m014 NA
## 413 new_sp_m014 NA
## 414 new_sp_m014 NA
## 415 new_sp_m014 NA
## 416 new_sp_m014 NA
## 417 new_sp_m014 NA
## 418 new_sp_m014 NA
## 419 new_sp_m014 NA
## 420 new_sp_m014 NA
## 421 new_sp_m014 NA
## 422 new_sp_m014 NA
## 423 new_sp_m014 NA
## 424 new_sp_m014 4
## 425 new_sp_m014 NA
## 426 new_sp_m014 24
## 427 new_sp_m014 NA
## 428 new_sp_m014 0
## 429 new_sp_m014 1
## 430 new_sp_m014 1
## 431 new_sp_m014 1
## 432 new_sp_m014 0
## 433 new_sp_m014 1
## 434 new_sp_m014 1
## 435 new_sp_m014 1
## 436 new_sp_m014 1
## 437 new_sp_m014 NA
## 438 new_sp_m014 0
## 439 new_sp_m014 0
## 440 new_sp_m014 0
## 441 new_sp_m014 1
## 442 new_sp_m014 NA
## 443 new_sp_m014 NA
## 444 new_sp_m014 NA
## 445 new_sp_m014 NA
## 446 new_sp_m014 NA
## 447 new_sp_m014 NA
## 448 new_sp_m014 NA
## 449 new_sp_m014 NA
## 450 new_sp_m014 NA
## 451 new_sp_m014 NA
## 452 new_sp_m014 NA
## 453 new_sp_m014 NA
## 454 new_sp_m014 NA
## 455 new_sp_m014 NA
## 456 new_sp_m014 NA
## 457 new_sp_m014 NA
## 458 new_sp_m014 0
## 459 new_sp_m014 0
## 460 new_sp_m014 0
## 461 new_sp_m014 0
## 462 new_sp_m014 0
## 463 new_sp_m014 0
## 464 new_sp_m014 3
## 465 new_sp_m014 6
## 466 new_sp_m014 3
## 467 new_sp_m014 8
## 468 new_sp_m014 77
## 469 new_sp_m014 6
## 470 new_sp_m014 NA
## 471 new_sp_m014 NA
## 472 new_sp_m014 5
## 473 new_sp_m014 0
## 474 new_sp_m014 NA
## 475 new_sp_m014 4
## 476 new_sp_m014 NA
## 477 new_sp_m014 NA
## 478 new_sp_m014 NA
## 479 new_sp_m014 NA
## 480 new_sp_m014 NA
## 481 new_sp_m014 NA
## 482 new_sp_m014 NA
## 483 new_sp_m014 NA
## 484 new_sp_m014 NA
## 485 new_sp_m014 NA
## 486 new_sp_m014 NA
## 487 new_sp_m014 NA
## 488 new_sp_m014 NA
## 489 new_sp_m014 NA
## 490 new_sp_m014 NA
## 491 new_sp_m014 NA
## 492 new_sp_m014 3
## 493 new_sp_m014 0
## 494 new_sp_m014 0
## 495 new_sp_m014 0
## 496 new_sp_m014 1
## 497 new_sp_m014 1
## 498 new_sp_m014 NA
## 499 new_sp_m014 2
## 500 new_sp_m014 0
## 501 new_sp_m014 3
## 502 new_sp_m014 NA
## 503 new_sp_m014 NA
## 504 new_sp_m014 0
## 505 new_sp_m014 0
## 506 new_sp_m014 1
## 507 new_sp_m014 0
## 508 new_sp_m014 0
## 509 new_sp_m014 0
## 510 new_sp_m014 NA
## 511 new_sp_m014 NA
## 512 new_sp_m014 NA
## 513 new_sp_m014 NA
## 514 new_sp_m014 NA
## 515 new_sp_m014 NA
## 516 new_sp_m014 NA
## 517 new_sp_m014 NA
## 518 new_sp_m014 NA
## 519 new_sp_m014 NA
## 520 new_sp_m014 NA
## 521 new_sp_m014 NA
## 522 new_sp_m014 NA
## 523 new_sp_m014 NA
## 524 new_sp_m014 NA
## 525 new_sp_m014 NA
## 526 new_sp_m014 0
## 527 new_sp_m014 0
## 528 new_sp_m014 1
## 529 new_sp_m014 0
## 530 new_sp_m014 0
## 531 new_sp_m014 0
## 532 new_sp_m014 0
## 533 new_sp_m014 0
## 534 new_sp_m014 0
## 535 new_sp_m014 0
## 536 new_sp_m014 0
## 537 new_sp_m014 0
## 538 new_sp_m014 0
## 539 new_sp_m014 0
## 540 new_sp_m014 0
## 541 new_sp_m014 0
## 542 new_sp_m014 1
## 543 new_sp_m014 0
## 544 new_sp_m014 NA
## 545 new_sp_m014 NA
## 546 new_sp_m014 NA
## 547 new_sp_m014 NA
## 548 new_sp_m014 NA
## 549 new_sp_m014 NA
## 550 new_sp_m014 NA
## 551 new_sp_m014 NA
## 552 new_sp_m014 NA
## 553 new_sp_m014 NA
## 554 new_sp_m014 NA
## 555 new_sp_m014 NA
## 556 new_sp_m014 NA
## 557 new_sp_m014 NA
## 558 new_sp_m014 NA
## 559 new_sp_m014 NA
## 560 new_sp_m014 29
## 561 new_sp_m014 45
## 562 new_sp_m014 201
## 563 new_sp_m014 254
## 564 new_sp_m014 259
## 565 new_sp_m014 256
## 566 new_sp_m014 283
## 567 new_sp_m014 449
## 568 new_sp_m014 320
## 569 new_sp_m014 420
## 570 new_sp_m014 524
## 571 new_sp_m014 607
## 572 new_sp_m014 523
## 573 new_sp_m014 422
## 574 new_sp_m014 NA
## 575 new_sp_m014 365
## 576 new_sp_m014 309
## 577 new_sp_m014 316
## 578 new_sp_m014 NA
## 579 new_sp_m014 NA
## 580 new_sp_m014 NA
## 581 new_sp_m014 NA
## 582 new_sp_m014 NA
## 583 new_sp_m014 NA
## 584 new_sp_m014 NA
## 585 new_sp_m014 NA
## 586 new_sp_m014 NA
## 587 new_sp_m014 NA
## 588 new_sp_m014 NA
## 589 new_sp_m014 NA
## 590 new_sp_m014 NA
## 591 new_sp_m014 NA
## 592 new_sp_m014 NA
## 593 new_sp_m014 NA
## 594 new_sp_m014 NA
## 595 new_sp_m014 0
## 596 new_sp_m014 NA
## 597 new_sp_m014 NA
## 598 new_sp_m014 NA
## 599 new_sp_m014 0
## 600 new_sp_m014 0
## 601 new_sp_m014 NA
## 602 new_sp_m014 NA
## 603 new_sp_m014 NA
## 604 new_sp_m014 NA
## 605 new_sp_m014 NA
## 606 new_sp_m014 0
## 607 new_sp_m014 0
## 608 new_sp_m014 0
## 609 new_sp_m014 0
## 610 new_sp_m014 0
## 611 new_sp_m014 0
## 612 new_sp_m014 NA
## 613 new_sp_m014 NA
## 614 new_sp_m014 NA
## 615 new_sp_m014 NA
## 616 new_sp_m014 NA
## 617 new_sp_m014 NA
## 618 new_sp_m014 NA
## 619 new_sp_m014 NA
## 620 new_sp_m014 NA
## 621 new_sp_m014 NA
## 622 new_sp_m014 NA
## 623 new_sp_m014 NA
## 624 new_sp_m014 NA
## 625 new_sp_m014 NA
## 626 new_sp_m014 NA
## 627 new_sp_m014 NA
## 628 new_sp_m014 NA
## 629 new_sp_m014 NA
## 630 new_sp_m014 NA
## 631 new_sp_m014 NA
## 632 new_sp_m014 NA
## 633 new_sp_m014 NA
## 634 new_sp_m014 2
## 635 new_sp_m014 0
## 636 new_sp_m014 0
## 637 new_sp_m014 NA
## 638 new_sp_m014 NA
## 639 new_sp_m014 NA
## 640 new_sp_m014 NA
## 641 new_sp_m014 NA
## 642 new_sp_m014 0
## 643 new_sp_m014 0
## 644 new_sp_m014 1
## 645 new_sp_m014 0
## 646 new_sp_m014 NA
## 647 new_sp_m014 NA
## 648 new_sp_m014 NA
## 649 new_sp_m014 NA
## 650 new_sp_m014 NA
## 651 new_sp_m014 NA
## 652 new_sp_m014 NA
## 653 new_sp_m014 NA
## 654 new_sp_m014 NA
## 655 new_sp_m014 NA
## 656 new_sp_m014 NA
## 657 new_sp_m014 NA
## 658 new_sp_m014 NA
## 659 new_sp_m014 NA
## 660 new_sp_m014 NA
## 661 new_sp_m014 NA
## 662 new_sp_m014 3
## 663 new_sp_m014 1
## 664 new_sp_m014 3
## 665 new_sp_m014 3
## 666 new_sp_m014 2
## 667 new_sp_m014 3
## 668 new_sp_m014 8
## 669 new_sp_m014 1
## 670 new_sp_m014 6
## 671 new_sp_m014 1
## 672 new_sp_m014 1
## 673 new_sp_m014 4
## 674 new_sp_m014 2
## 675 new_sp_m014 3
## 676 new_sp_m014 1
## 677 new_sp_m014 4
## 678 new_sp_m014 8
## 679 new_sp_m014 3
## 680 new_sp_m014 NA
## 681 new_sp_m014 NA
## 682 new_sp_m014 NA
## 683 new_sp_m014 NA
## 684 new_sp_m014 NA
## 685 new_sp_m014 NA
## 686 new_sp_m014 NA
## 687 new_sp_m014 NA
## 688 new_sp_m014 NA
## 689 new_sp_m014 NA
## 690 new_sp_m014 NA
## 691 new_sp_m014 NA
## 692 new_sp_m014 NA
## 693 new_sp_m014 NA
## 694 new_sp_m014 NA
## 695 new_sp_m014 NA
## 696 new_sp_m014 1
## 697 new_sp_m014 1
## 698 new_sp_m014 2
## 699 new_sp_m014 NA
## 700 new_sp_m014 NA
## 701 new_sp_m014 2
## 702 new_sp_m014 0
## 703 new_sp_m014 4
## 704 new_sp_m014 1
## 705 new_sp_m014 0
## 706 new_sp_m014 0
## 707 new_sp_m014 3
## 708 new_sp_m014 1
## 709 new_sp_m014 1
## 710 new_sp_m014 2
## 711 new_sp_m014 2
## 712 new_sp_m014 0
## 713 new_sp_m014 1
## 714 new_sp_m014 NA
## 715 new_sp_m014 NA
## 716 new_sp_m014 NA
## 717 new_sp_m014 NA
## 718 new_sp_m014 NA
## 719 new_sp_m014 NA
## 720 new_sp_m014 NA
## 721 new_sp_m014 NA
## 722 new_sp_m014 NA
## 723 new_sp_m014 NA
## 724 new_sp_m014 NA
## 725 new_sp_m014 NA
## 726 new_sp_m014 NA
## 727 new_sp_m014 NA
## 728 new_sp_m014 NA
## 729 new_sp_m014 NA
## 730 new_sp_m014 14
## 731 new_sp_m014 17
## 732 new_sp_m014 20
## 733 new_sp_m014 20
## 734 new_sp_m014 14
## 735 new_sp_m014 19
## 736 new_sp_m014 18
## 737 new_sp_m014 16
## 738 new_sp_m014 20
## 739 new_sp_m014 16
## 740 new_sp_m014 21
## 741 new_sp_m014 18
## 742 new_sp_m014 22
## 743 new_sp_m014 20
## 744 new_sp_m014 32
## 745 new_sp_m014 18
## 746 new_sp_m014 21
## 747 new_sp_m014 23
## 748 new_sp_m014 NA
## 749 new_sp_m014 NA
## 750 new_sp_m014 NA
## 751 new_sp_m014 NA
## 752 new_sp_m014 NA
## 753 new_sp_m014 NA
## 754 new_sp_m014 NA
## 755 new_sp_m014 NA
## 756 new_sp_m014 NA
## 757 new_sp_m014 NA
## 758 new_sp_m014 NA
## 759 new_sp_m014 NA
## 760 new_sp_m014 NA
## 761 new_sp_m014 NA
## 762 new_sp_m014 NA
## 763 new_sp_m014 NA
## 764 new_sp_m014 NA
## 765 new_sp_m014 NA
## 766 new_sp_m014 NA
## 767 new_sp_m014 NA
## 768 new_sp_m014 NA
## 769 new_sp_m014 NA
## 770 new_sp_m014 NA
## 771 new_sp_m014 NA
## 772 new_sp_m014 NA
## 773 new_sp_m014 0
## 774 new_sp_m014 NA
## 775 new_sp_m014 NA
## 776 new_sp_m014 NA
## 777 new_sp_m014 NA
## 778 new_sp_m014 NA
## 779 new_sp_m014 0
## 780 new_sp_m014 0
## 781 new_sp_m014 0
## 782 new_sp_m014 NA
## 783 new_sp_m014 NA
## 784 new_sp_m014 NA
## 785 new_sp_m014 NA
## 786 new_sp_m014 NA
## 787 new_sp_m014 NA
## 788 new_sp_m014 NA
## 789 new_sp_m014 NA
## 790 new_sp_m014 NA
## 791 new_sp_m014 NA
## 792 new_sp_m014 NA
## 793 new_sp_m014 NA
## 794 new_sp_m014 NA
## 795 new_sp_m014 NA
## 796 new_sp_m014 NA
## 797 new_sp_m014 NA
## 798 new_sp_m014 2
## 799 new_sp_m014 4
## 800 new_sp_m014 4
## 801 new_sp_m014 3
## 802 new_sp_m014 10
## 803 new_sp_m014 6
## 804 new_sp_m014 3
## 805 new_sp_m014 5
## 806 new_sp_m014 9
## 807 new_sp_m014 1
## 808 new_sp_m014 1
## 809 new_sp_m014 0
## 810 new_sp_m014 2
## 811 new_sp_m014 3
## 812 new_sp_m014 10
## 813 new_sp_m014 NA
## 814 new_sp_m014 2
## 815 new_sp_m014 6
## 816 new_sp_m014 NA
## 817 new_sp_m014 NA
## 818 new_sp_m014 NA
## 819 new_sp_m014 NA
## 820 new_sp_m014 NA
## 821 new_sp_m014 NA
## 822 new_sp_m014 NA
## 823 new_sp_m014 NA
## 824 new_sp_m014 NA
## 825 new_sp_m014 NA
## 826 new_sp_m014 NA
## 827 new_sp_m014 NA
## 828 new_sp_m014 NA
## 829 new_sp_m014 NA
## 830 new_sp_m014 NA
## 831 new_sp_m014 NA
## 832 new_sp_m014 NA
## 833 new_sp_m014 178
## 834 new_sp_m014 150
## 835 new_sp_m014 167
## 836 new_sp_m014 222
## 837 new_sp_m014 166
## 838 new_sp_m014 165
## 839 new_sp_m014 231
## 840 new_sp_m014 156
## 841 new_sp_m014 161
## 842 new_sp_m014 157
## 843 new_sp_m014 127
## 844 new_sp_m014 116
## 845 new_sp_m014 128
## 846 new_sp_m014 106
## 847 new_sp_m014 95
## 848 new_sp_m014 100
## 849 new_sp_m014 99
## 850 new_sp_m014 NA
## 851 new_sp_m014 0
## 852 new_sp_m014 0
## 853 new_sp_m014 0
## 854 new_sp_m014 NA
## 855 new_sp_m014 NA
## 856 new_sp_m014 NA
## 857 new_sp_m014 NA
## 858 new_sp_m014 NA
## 859 new_sp_m014 NA
## 860 new_sp_m014 NA
## 861 new_sp_m014 NA
## 862 new_sp_m014 NA
## 863 new_sp_m014 NA
## 864 new_sp_m014 NA
## 865 new_sp_m014 NA
## 866 new_sp_m014 NA
## 867 new_sp_m014 NA
## 868 new_sp_m014 NA
## 869 new_sp_m014 NA
## 870 new_sp_m014 0
## 871 new_sp_m014 5
## 872 new_sp_m014 5
## 873 new_sp_m014 1
## 874 new_sp_m014 2
## 875 new_sp_m014 4
## 876 new_sp_m014 6
## 877 new_sp_m014 1
## 878 new_sp_m014 4
## 879 new_sp_m014 3
## 880 new_sp_m014 1
## 881 new_sp_m014 0
## 882 new_sp_m014 0
## 883 new_sp_m014 0
## 884 new_sp_m014 2
## 885 new_sp_m014 1
## 886 new_sp_m014 2
## 887 new_sp_m014 1
## 888 new_sp_m014 NA
## 889 new_sp_m014 NA
## 890 new_sp_m014 NA
## 891 new_sp_m014 NA
## 892 new_sp_m014 NA
## 893 new_sp_m014 NA
## 894 new_sp_m014 NA
## 895 new_sp_m014 NA
## 896 new_sp_m014 NA
## 897 new_sp_m014 NA
## 898 new_sp_m014 NA
## 899 new_sp_m014 NA
## 900 new_sp_m014 NA
## 901 new_sp_m014 NA
## 902 new_sp_m014 NA
## 903 new_sp_m014 NA
## 904 new_sp_m014 NA
## 905 new_sp_m014 NA
## 906 new_sp_m014 29
## 907 new_sp_m014 NA
## 908 new_sp_m014 18
## 909 new_sp_m014 25
## 910 new_sp_m014 15
## 911 new_sp_m014 17
## 912 new_sp_m014 22
## 913 new_sp_m014 29
## 914 new_sp_m014 27
## 915 new_sp_m014 36
## 916 new_sp_m014 25
## 917 new_sp_m014 27
## 918 new_sp_m014 40
## 919 new_sp_m014 45
## 920 new_sp_m014 36
## 921 new_sp_m014 40
## 922 new_sp_m014 NA
## 923 new_sp_m014 NA
## 924 new_sp_m014 NA
## 925 new_sp_m014 NA
## 926 new_sp_m014 NA
## 927 new_sp_m014 NA
## 928 new_sp_m014 NA
## 929 new_sp_m014 NA
## 930 new_sp_m014 NA
## 931 new_sp_m014 NA
## 932 new_sp_m014 NA
## 933 new_sp_m014 NA
## 934 new_sp_m014 NA
## 935 new_sp_m014 NA
## 936 new_sp_m014 NA
## 937 new_sp_m014 NA
## 938 new_sp_m014 NA
## 939 new_sp_m014 NA
## 940 new_sp_m014 NA
## 941 new_sp_m014 NA
## 942 new_sp_m014 301
## 943 new_sp_m014 1894
## 944 new_sp_m014 468
## 945 new_sp_m014 344
## 946 new_sp_m014 382
## 947 new_sp_m014 337
## 948 new_sp_m014 317
## 949 new_sp_m014 343
## 950 new_sp_m014 371
## 951 new_sp_m014 298
## 952 new_sp_m014 328
## 953 new_sp_m014 298
## 954 new_sp_m014 336
## 955 new_sp_m014 277
## 956 new_sp_m014 NA
## 957 new_sp_m014 NA
## 958 new_sp_m014 NA
## 959 new_sp_m014 NA
## 960 new_sp_m014 NA
## 961 new_sp_m014 NA
## 962 new_sp_m014 NA
## 963 new_sp_m014 NA
## 964 new_sp_m014 NA
## 965 new_sp_m014 NA
## 966 new_sp_m014 NA
## 967 new_sp_m014 NA
## 968 new_sp_m014 NA
## 969 new_sp_m014 NA
## 970 new_sp_m014 NA
## 971 new_sp_m014 NA
## 972 new_sp_m014 NA
## 973 new_sp_m014 NA
## 974 new_sp_m014 NA
## 975 new_sp_m014 NA
## 976 new_sp_m014 NA
## 977 new_sp_m014 NA
## 978 new_sp_m014 NA
## 979 new_sp_m014 NA
## 980 new_sp_m014 NA
## 981 new_sp_m014 NA
## 982 new_sp_m014 NA
## 983 new_sp_m014 NA
## 984 new_sp_m014 NA
## 985 new_sp_m014 NA
## 986 new_sp_m014 NA
## 987 new_sp_m014 0
## 988 new_sp_m014 0
## 989 new_sp_m014 0
## 990 new_sp_m014 NA
## 991 new_sp_m014 NA
## 992 new_sp_m014 NA
## 993 new_sp_m014 NA
## 994 new_sp_m014 NA
## 995 new_sp_m014 NA
## 996 new_sp_m014 NA
## 997 new_sp_m014 NA
## 998 new_sp_m014 NA
## 999 new_sp_m014 NA
## 1000 new_sp_m014 NA
## 1001 new_sp_m014 NA
## 1002 new_sp_m014 NA
## 1003 new_sp_m014 NA
## 1004 new_sp_m014 NA
## 1005 new_sp_m014 NA
## 1006 new_sp_m014 NA
## 1007 new_sp_m014 NA
## 1008 new_sp_m014 NA
## 1009 new_sp_m014 NA
## 1010 new_sp_m014 0
## 1011 new_sp_m014 0
## 1012 new_sp_m014 NA
## 1013 new_sp_m014 2
## 1014 new_sp_m014 0
## 1015 new_sp_m014 0
## 1016 new_sp_m014 0
## 1017 new_sp_m014 2
## 1018 new_sp_m014 0
## 1019 new_sp_m014 0
## 1020 new_sp_m014 1
## 1021 new_sp_m014 0
## 1022 new_sp_m014 0
## 1023 new_sp_m014 0
## 1024 new_sp_m014 NA
## 1025 new_sp_m014 NA
## 1026 new_sp_m014 NA
## 1027 new_sp_m014 NA
## 1028 new_sp_m014 NA
## 1029 new_sp_m014 NA
## 1030 new_sp_m014 NA
## 1031 new_sp_m014 NA
## 1032 new_sp_m014 NA
## 1033 new_sp_m014 NA
## 1034 new_sp_m014 NA
## 1035 new_sp_m014 NA
## 1036 new_sp_m014 NA
## 1037 new_sp_m014 NA
## 1038 new_sp_m014 NA
## 1039 new_sp_m014 NA
## 1040 new_sp_m014 NA
## 1041 new_sp_m014 NA
## 1042 new_sp_m014 NA
## 1043 new_sp_m014 NA
## 1044 new_sp_m014 NA
## 1045 new_sp_m014 0
## 1046 new_sp_m014 1
## 1047 new_sp_m014 2
## 1048 new_sp_m014 3
## 1049 new_sp_m014 10
## 1050 new_sp_m014 9
## 1051 new_sp_m014 6
## 1052 new_sp_m014 7
## 1053 new_sp_m014 2
## 1054 new_sp_m014 7
## 1055 new_sp_m014 1
## 1056 new_sp_m014 2
## 1057 new_sp_m014 0
## 1058 new_sp_m014 NA
## 1059 new_sp_m014 NA
## 1060 new_sp_m014 NA
## 1061 new_sp_m014 NA
## 1062 new_sp_m014 NA
## 1063 new_sp_m014 NA
## 1064 new_sp_m014 NA
## 1065 new_sp_m014 NA
## 1066 new_sp_m014 NA
## 1067 new_sp_m014 NA
## 1068 new_sp_m014 NA
## 1069 new_sp_m014 NA
## 1070 new_sp_m014 NA
## 1071 new_sp_m014 NA
## 1072 new_sp_m014 NA
## 1073 new_sp_m014 NA
## 1074 new_sp_m014 4
## 1075 new_sp_m014 3
## 1076 new_sp_m014 3
## 1077 new_sp_m014 4
## 1078 new_sp_m014 13
## 1079 new_sp_m014 12
## 1080 new_sp_m014 7
## 1081 new_sp_m014 6
## 1082 new_sp_m014 14
## 1083 new_sp_m014 10
## 1084 new_sp_m014 18
## 1085 new_sp_m014 13
## 1086 new_sp_m014 8
## 1087 new_sp_m014 8
## 1088 new_sp_m014 27
## 1089 new_sp_m014 20
## 1090 new_sp_m014 22
## 1091 new_sp_m014 25
## 1092 new_sp_m014 NA
## 1093 new_sp_m014 NA
## 1094 new_sp_m014 NA
## 1095 new_sp_m014 NA
## 1096 new_sp_m014 NA
## 1097 new_sp_m014 NA
## 1098 new_sp_m014 NA
## 1099 new_sp_m014 NA
## 1100 new_sp_m014 NA
## 1101 new_sp_m014 NA
## 1102 new_sp_m014 NA
## 1103 new_sp_m014 NA
## 1104 new_sp_m014 NA
## 1105 new_sp_m014 NA
## 1106 new_sp_m014 NA
## 1107 new_sp_m014 NA
## 1108 new_sp_m014 5
## 1109 new_sp_m014 16
## 1110 new_sp_m014 21
## 1111 new_sp_m014 45
## 1112 new_sp_m014 64
## 1113 new_sp_m014 NA
## 1114 new_sp_m014 34
## 1115 new_sp_m014 16
## 1116 new_sp_m014 32
## 1117 new_sp_m014 24
## 1118 new_sp_m014 34
## 1119 new_sp_m014 30
## 1120 new_sp_m014 26
## 1121 new_sp_m014 30
## 1122 new_sp_m014 34
## 1123 new_sp_m014 56
## 1124 new_sp_m014 37
## 1125 new_sp_m014 45
## 1126 new_sp_m014 NA
## 1127 new_sp_m014 NA
## 1128 new_sp_m014 NA
## 1129 new_sp_m014 NA
## 1130 new_sp_m014 NA
## 1131 new_sp_m014 NA
## 1132 new_sp_m014 NA
## 1133 new_sp_m014 NA
## 1134 new_sp_m014 NA
## 1135 new_sp_m014 NA
## 1136 new_sp_m014 NA
## 1137 new_sp_m014 NA
## 1138 new_sp_m014 NA
## 1139 new_sp_m014 NA
## 1140 new_sp_m014 NA
## 1141 new_sp_m014 NA
## 1142 new_sp_m014 NA
## 1143 new_sp_m014 NA
## 1144 new_sp_m014 0
## 1145 new_sp_m014 2
## 1146 new_sp_m014 NA
## 1147 new_sp_m014 NA
## 1148 new_sp_m014 0
## 1149 new_sp_m014 3
## 1150 new_sp_m014 3
## 1151 new_sp_m014 1
## 1152 new_sp_m014 0
## 1153 new_sp_m014 2
## 1154 new_sp_m014 0
## 1155 new_sp_m014 0
## 1156 new_sp_m014 1
## 1157 new_sp_m014 NA
## 1158 new_sp_m014 0
## 1159 new_sp_m014 0
## 1160 new_sp_m014 NA
## 1161 new_sp_m014 NA
## 1162 new_sp_m014 NA
## 1163 new_sp_m014 NA
## 1164 new_sp_m014 NA
## 1165 new_sp_m014 NA
## 1166 new_sp_m014 NA
## 1167 new_sp_m014 NA
## 1168 new_sp_m014 NA
## 1169 new_sp_m014 NA
## 1170 new_sp_m014 NA
## 1171 new_sp_m014 NA
## 1172 new_sp_m014 NA
## 1173 new_sp_m014 NA
## 1174 new_sp_m014 NA
## 1175 new_sp_m014 NA
## 1176 new_sp_m014 161
## 1177 new_sp_m014 148
## 1178 new_sp_m014 NA
## 1179 new_sp_m014 36
## 1180 new_sp_m014 41
## 1181 new_sp_m014 26
## 1182 new_sp_m014 29
## 1183 new_sp_m014 54
## 1184 new_sp_m014 37
## 1185 new_sp_m014 36
## 1186 new_sp_m014 49
## 1187 new_sp_m014 50
## 1188 new_sp_m014 50
## 1189 new_sp_m014 49
## 1190 new_sp_m014 37
## 1191 new_sp_m014 39
## 1192 new_sp_m014 34
## 1193 new_sp_m014 31
## 1194 new_sp_m014 NA
## 1195 new_sp_m014 NA
## 1196 new_sp_m014 NA
## 1197 new_sp_m014 NA
## 1198 new_sp_m014 NA
## 1199 new_sp_m014 NA
## 1200 new_sp_m014 NA
## 1201 new_sp_m014 NA
## 1202 new_sp_m014 NA
## 1203 new_sp_m014 NA
## 1204 new_sp_m014 NA
## 1205 new_sp_m014 NA
## 1206 new_sp_m014 NA
## 1207 new_sp_m014 NA
## 1208 new_sp_m014 NA
## 1209 new_sp_m014 NA
## 1210 new_sp_m014 20
## 1211 new_sp_m014 34
## 1212 new_sp_m014 36
## 1213 new_sp_m014 15
## 1214 new_sp_m014 49
## 1215 new_sp_m014 41
## 1216 new_sp_m014 24
## 1217 new_sp_m014 66
## 1218 new_sp_m014 100
## 1219 new_sp_m014 127
## 1220 new_sp_m014 134
## 1221 new_sp_m014 112
## 1222 new_sp_m014 121
## 1223 new_sp_m014 108
## 1224 new_sp_m014 107
## 1225 new_sp_m014 106
## 1226 new_sp_m014 114
## 1227 new_sp_m014 108
## 1228 new_sp_m014 NA
## 1229 new_sp_m014 12
## 1230 new_sp_m014 8
## 1231 new_sp_m014 6
## 1232 new_sp_m014 9
## 1233 new_sp_m014 3
## 1234 new_sp_m014 11
## 1235 new_sp_m014 9
## 1236 new_sp_m014 9
## 1237 new_sp_m014 4
## 1238 new_sp_m014 10
## 1239 new_sp_m014 3
## 1240 new_sp_m014 7
## 1241 new_sp_m014 6
## 1242 new_sp_m014 8
## 1243 new_sp_m014 2
## 1244 new_sp_m014 1
## 1245 new_sp_m014 3
## 1246 new_sp_m014 0
## 1247 new_sp_m014 4
## 1248 new_sp_m014 0
## 1249 new_sp_m014 5
## 1250 new_sp_m014 6
## 1251 new_sp_m014 0
## 1252 new_sp_m014 1
## 1253 new_sp_m014 2
## 1254 new_sp_m014 3
## 1255 new_sp_m014 2
## 1256 new_sp_m014 5
## 1257 new_sp_m014 2
## 1258 new_sp_m014 2
## 1259 new_sp_m014 3
## 1260 new_sp_m014 2
## 1261 new_sp_m014 1
## 1262 new_sp_m014 NA
## 1263 new_sp_m014 NA
## 1264 new_sp_m014 NA
## 1265 new_sp_m014 NA
## 1266 new_sp_m014 NA
## 1267 new_sp_m014 NA
## 1268 new_sp_m014 NA
## 1269 new_sp_m014 NA
## 1270 new_sp_m014 NA
## 1271 new_sp_m014 NA
## 1272 new_sp_m014 NA
## 1273 new_sp_m014 NA
## 1274 new_sp_m014 NA
## 1275 new_sp_m014 NA
## 1276 new_sp_m014 NA
## 1277 new_sp_m014 NA
## 1278 new_sp_m014 NA
## 1279 new_sp_m014 NA
## 1280 new_sp_m014 NA
## 1281 new_sp_m014 0
## 1282 new_sp_m014 0
## 1283 new_sp_m014 0
## 1284 new_sp_m014 0
## 1285 new_sp_m014 NA
## 1286 new_sp_m014 0
## 1287 new_sp_m014 0
## 1288 new_sp_m014 NA
## 1289 new_sp_m014 0
## 1290 new_sp_m014 0
## 1291 new_sp_m014 NA
## 1292 new_sp_m014 NA
## 1293 new_sp_m014 0
## 1294 new_sp_m014 0
## 1295 new_sp_m014 0
## 1296 new_sp_m014 NA
## 1297 new_sp_m014 NA
## 1298 new_sp_m014 NA
## 1299 new_sp_m014 NA
## 1300 new_sp_m014 NA
## 1301 new_sp_m014 NA
## 1302 new_sp_m014 NA
## 1303 new_sp_m014 NA
## 1304 new_sp_m014 NA
## 1305 new_sp_m014 NA
## 1306 new_sp_m014 NA
## 1307 new_sp_m014 NA
## 1308 new_sp_m014 NA
## 1309 new_sp_m014 NA
## 1310 new_sp_m014 NA
## 1311 new_sp_m014 NA
## 1312 new_sp_m014 38
## 1313 new_sp_m014 46
## 1314 new_sp_m014 54
## 1315 new_sp_m014 28
## 1316 new_sp_m014 28
## 1317 new_sp_m014 NA
## 1318 new_sp_m014 15
## 1319 new_sp_m014 76
## 1320 new_sp_m014 NA
## 1321 new_sp_m014 12
## 1322 new_sp_m014 29
## 1323 new_sp_m014 48
## 1324 new_sp_m014 NA
## 1325 new_sp_m014 68
## 1326 new_sp_m014 124
## 1327 new_sp_m014 78
## 1328 new_sp_m014 70
## 1329 new_sp_m014 73
## 1330 new_sp_m014 NA
## 1331 new_sp_m014 NA
## 1332 new_sp_m014 NA
## 1333 new_sp_m014 NA
## 1334 new_sp_m014 NA
## 1335 new_sp_m014 NA
## 1336 new_sp_m014 NA
## 1337 new_sp_m014 NA
## 1338 new_sp_m014 NA
## 1339 new_sp_m014 NA
## 1340 new_sp_m014 NA
## 1341 new_sp_m014 NA
## 1342 new_sp_m014 NA
## 1343 new_sp_m014 NA
## 1344 new_sp_m014 NA
## 1345 new_sp_m014 NA
## 1346 new_sp_m014 NA
## 1347 new_sp_m014 NA
## 1348 new_sp_m014 NA
## 1349 new_sp_m014 NA
## 1350 new_sp_m014 20
## 1351 new_sp_m014 NA
## 1352 new_sp_m014 NA
## 1353 new_sp_m014 24
## 1354 new_sp_m014 155
## 1355 new_sp_m014 72
## 1356 new_sp_m014 25
## 1357 new_sp_m014 NA
## 1358 new_sp_m014 NA
## 1359 new_sp_m014 63
## 1360 new_sp_m014 48
## 1361 new_sp_m014 76
## 1362 new_sp_m014 92
## 1363 new_sp_m014 68
## 1364 new_sp_m014 NA
## 1365 new_sp_m014 NA
## 1366 new_sp_m014 NA
## 1367 new_sp_m014 NA
## 1368 new_sp_m014 NA
## 1369 new_sp_m014 NA
## 1370 new_sp_m014 NA
## 1371 new_sp_m014 NA
## 1372 new_sp_m014 NA
## 1373 new_sp_m014 NA
## 1374 new_sp_m014 NA
## 1375 new_sp_m014 NA
## 1376 new_sp_m014 NA
## 1377 new_sp_m014 NA
## 1378 new_sp_m014 NA
## 1379 new_sp_m014 NA
## 1380 new_sp_m014 24
## 1381 new_sp_m014 8
## 1382 new_sp_m014 11
## 1383 new_sp_m014 NA
## 1384 new_sp_m014 4
## 1385 new_sp_m014 6
## 1386 new_sp_m014 2
## 1387 new_sp_m014 6
## 1388 new_sp_m014 1
## 1389 new_sp_m014 3
## 1390 new_sp_m014 3
## 1391 new_sp_m014 12
## 1392 new_sp_m014 3
## 1393 new_sp_m014 7
## 1394 new_sp_m014 7
## 1395 new_sp_m014 2
## 1396 new_sp_m014 4
## 1397 new_sp_m014 4
## 1398 new_sp_m014 NA
## 1399 new_sp_m014 NA
## 1400 new_sp_m014 NA
## 1401 new_sp_m014 NA
## 1402 new_sp_m014 NA
## 1403 new_sp_m014 NA
## 1404 new_sp_m014 NA
## 1405 new_sp_m014 NA
## 1406 new_sp_m014 NA
## 1407 new_sp_m014 NA
## 1408 new_sp_m014 NA
## 1409 new_sp_m014 NA
## 1410 new_sp_m014 NA
## 1411 new_sp_m014 NA
## 1412 new_sp_m014 NA
## 1413 new_sp_m014 NA
## 1414 new_sp_m014 1102
## 1415 new_sp_m014 1409
## 1416 new_sp_m014 1456
## 1417 new_sp_m014 1481
## 1418 new_sp_m014 1247
## 1419 new_sp_m014 1131
## 1420 new_sp_m014 1213
## 1421 new_sp_m014 925
## 1422 new_sp_m014 1133
## 1423 new_sp_m014 1375
## 1424 new_sp_m014 1416
## 1425 new_sp_m014 1023
## 1426 new_sp_m014 878
## 1427 new_sp_m014 751
## 1428 new_sp_m014 944
## 1429 new_sp_m014 759
## 1430 new_sp_m014 645
## 1431 new_sp_m014 511
## 1432 new_sp_m014 NA
## 1433 new_sp_m014 NA
## 1434 new_sp_m014 NA
## 1435 new_sp_m014 NA
## 1436 new_sp_m014 NA
## 1437 new_sp_m014 NA
## 1438 new_sp_m014 NA
## 1439 new_sp_m014 NA
## 1440 new_sp_m014 NA
## 1441 new_sp_m014 NA
## 1442 new_sp_m014 NA
## 1443 new_sp_m014 NA
## 1444 new_sp_m014 NA
## 1445 new_sp_m014 NA
## 1446 new_sp_m014 NA
## 1447 new_sp_m014 NA
## 1448 new_sp_m014 NA
## 1449 new_sp_m014 NA
## 1450 new_sp_m014 5
## 1451 new_sp_m014 NA
## 1452 new_sp_m014 3
## 1453 new_sp_m014 4
## 1454 new_sp_m014 6
## 1455 new_sp_m014 2
## 1456 new_sp_m014 8
## 1457 new_sp_m014 3
## 1458 new_sp_m014 3
## 1459 new_sp_m014 3
## 1460 new_sp_m014 5
## 1461 new_sp_m014 0
## 1462 new_sp_m014 3
## 1463 new_sp_m014 2
## 1464 new_sp_m014 2
## 1465 new_sp_m014 4
## 1466 new_sp_m014 NA
## 1467 new_sp_m014 NA
## 1468 new_sp_m014 NA
## 1469 new_sp_m014 NA
## 1470 new_sp_m014 NA
## 1471 new_sp_m014 NA
## 1472 new_sp_m014 NA
## 1473 new_sp_m014 NA
## 1474 new_sp_m014 NA
## 1475 new_sp_m014 NA
## 1476 new_sp_m014 NA
## 1477 new_sp_m014 NA
## 1478 new_sp_m014 NA
## 1479 new_sp_m014 NA
## 1480 new_sp_m014 NA
## 1481 new_sp_m014 NA
## 1482 new_sp_m014 0
## 1483 new_sp_m014 1
## 1484 new_sp_m014 1
## 1485 new_sp_m014 0
## 1486 new_sp_m014 NA
## 1487 new_sp_m014 0
## 1488 new_sp_m014 0
## 1489 new_sp_m014 1
## 1490 new_sp_m014 0
## 1491 new_sp_m014 0
## 1492 new_sp_m014 3
## 1493 new_sp_m014 0
## 1494 new_sp_m014 0
## 1495 new_sp_m014 1
## 1496 new_sp_m014 0
## 1497 new_sp_m014 0
## 1498 new_sp_m014 0
## 1499 new_sp_m014 0
## 1500 new_sp_m014 NA
## 1501 new_sp_m014 NA
## 1502 new_sp_m014 NA
## 1503 new_sp_m014 NA
## 1504 new_sp_m014 NA
## 1505 new_sp_m014 NA
## 1506 new_sp_m014 NA
## 1507 new_sp_m014 NA
## 1508 new_sp_m014 NA
## 1509 new_sp_m014 NA
## 1510 new_sp_m014 NA
## 1511 new_sp_m014 NA
## 1512 new_sp_m014 NA
## 1513 new_sp_m014 NA
## 1514 new_sp_m014 NA
## 1515 new_sp_m014 NA
## 1516 new_sp_m014 NA
## 1517 new_sp_m014 NA
## 1518 new_sp_m014 NA
## 1519 new_sp_m014 NA
## 1520 new_sp_m014 270
## 1521 new_sp_m014 246
## 1522 new_sp_m014 223
## 1523 new_sp_m014 209
## 1524 new_sp_m014 237
## 1525 new_sp_m014 208
## 1526 new_sp_m014 178
## 1527 new_sp_m014 219
## 1528 new_sp_m014 144
## 1529 new_sp_m014 136
## 1530 new_sp_m014 124
## 1531 new_sp_m014 148
## 1532 new_sp_m014 105
## 1533 new_sp_m014 92
## 1534 new_sp_m014 NA
## 1535 new_sp_m014 NA
## 1536 new_sp_m014 NA
## 1537 new_sp_m014 NA
## 1538 new_sp_m014 NA
## 1539 new_sp_m014 NA
## 1540 new_sp_m014 NA
## 1541 new_sp_m014 NA
## 1542 new_sp_m014 NA
## 1543 new_sp_m014 NA
## 1544 new_sp_m014 NA
## 1545 new_sp_m014 NA
## 1546 new_sp_m014 NA
## 1547 new_sp_m014 NA
## 1548 new_sp_m014 NA
## 1549 new_sp_m014 NA
## 1550 new_sp_m014 0
## 1551 new_sp_m014 1
## 1552 new_sp_m014 NA
## 1553 new_sp_m014 0
## 1554 new_sp_m014 NA
## 1555 new_sp_m014 0
## 1556 new_sp_m014 0
## 1557 new_sp_m014 0
## 1558 new_sp_m014 1
## 1559 new_sp_m014 NA
## 1560 new_sp_m014 0
## 1561 new_sp_m014 0
## 1562 new_sp_m014 NA
## 1563 new_sp_m014 2
## 1564 new_sp_m014 1
## 1565 new_sp_m014 NA
## 1566 new_sp_m014 0
## 1567 new_sp_m014 NA
## 1568 new_sp_m014 NA
## 1569 new_sp_m014 NA
## 1570 new_sp_m014 NA
## 1571 new_sp_m014 NA
## 1572 new_sp_m014 NA
## 1573 new_sp_m014 NA
## 1574 new_sp_m014 NA
## 1575 new_sp_m014 NA
## 1576 new_sp_m014 NA
## 1577 new_sp_m014 NA
## 1578 new_sp_m014 NA
## 1579 new_sp_m014 NA
## 1580 new_sp_m014 NA
## 1581 new_sp_m014 NA
## 1582 new_sp_m014 NA
## 1583 new_sp_m014 NA
## 1584 new_sp_m014 16
## 1585 new_sp_m014 NA
## 1586 new_sp_m014 NA
## 1587 new_sp_m014 NA
## 1588 new_sp_m014 17
## 1589 new_sp_m014 NA
## 1590 new_sp_m014 31
## 1591 new_sp_m014 NA
## 1592 new_sp_m014 NA
## 1593 new_sp_m014 9
## 1594 new_sp_m014 NA
## 1595 new_sp_m014 32
## 1596 new_sp_m014 28
## 1597 new_sp_m014 31
## 1598 new_sp_m014 50
## 1599 new_sp_m014 41
## 1600 new_sp_m014 58
## 1601 new_sp_m014 46
## 1602 new_sp_m014 NA
## 1603 new_sp_m014 0
## 1604 new_sp_m014 0
## 1605 new_sp_m014 0
## 1606 new_sp_m014 0
## 1607 new_sp_m014 0
## 1608 new_sp_m014 1
## 1609 new_sp_m014 0
## 1610 new_sp_m014 0
## 1611 new_sp_m014 NA
## 1612 new_sp_m014 0
## 1613 new_sp_m014 NA
## 1614 new_sp_m014 0
## 1615 new_sp_m014 0
## 1616 new_sp_m014 0
## 1617 new_sp_m014 0
## 1618 new_sp_m014 0
## 1619 new_sp_m014 0
## 1620 new_sp_m014 0
## 1621 new_sp_m014 0
## 1622 new_sp_m014 NA
## 1623 new_sp_m014 0
## 1624 new_sp_m014 0
## 1625 new_sp_m014 0
## 1626 new_sp_m014 0
## 1627 new_sp_m014 0
## 1628 new_sp_m014 0
## 1629 new_sp_m014 0
## 1630 new_sp_m014 NA
## 1631 new_sp_m014 NA
## 1632 new_sp_m014 0
## 1633 new_sp_m014 0
## 1634 new_sp_m014 0
## 1635 new_sp_m014 0
## 1636 new_sp_m014 NA
## 1637 new_sp_m014 NA
## 1638 new_sp_m014 NA
## 1639 new_sp_m014 NA
## 1640 new_sp_m014 NA
## 1641 new_sp_m014 NA
## 1642 new_sp_m014 NA
## 1643 new_sp_m014 NA
## 1644 new_sp_m014 NA
## 1645 new_sp_m014 NA
## 1646 new_sp_m014 NA
## 1647 new_sp_m014 NA
## 1648 new_sp_m014 NA
## 1649 new_sp_m014 NA
## 1650 new_sp_m014 NA
## 1651 new_sp_m014 NA
## 1652 new_sp_m014 1
## 1653 new_sp_m014 0
## 1654 new_sp_m014 37
## 1655 new_sp_m014 30
## 1656 new_sp_m014 4
## 1657 new_sp_m014 14
## 1658 new_sp_m014 2
## 1659 new_sp_m014 3
## 1660 new_sp_m014 3
## 1661 new_sp_m014 1
## 1662 new_sp_m014 1
## 1663 new_sp_m014 1
## 1664 new_sp_m014 4
## 1665 new_sp_m014 3
## 1666 new_sp_m014 NA
## 1667 new_sp_m014 2
## 1668 new_sp_m014 0
## 1669 new_sp_m014 2
## 1670 new_sp_m014 NA
## 1671 new_sp_m014 NA
## 1672 new_sp_m014 NA
## 1673 new_sp_m014 NA
## 1674 new_sp_m014 NA
## 1675 new_sp_m014 NA
## 1676 new_sp_m014 NA
## 1677 new_sp_m014 NA
## 1678 new_sp_m014 NA
## 1679 new_sp_m014 NA
## 1680 new_sp_m014 NA
## 1681 new_sp_m014 NA
## 1682 new_sp_m014 NA
## 1683 new_sp_m014 NA
## 1684 new_sp_m014 NA
## 1685 new_sp_m014 NA
## 1686 new_sp_m014 41
## 1687 new_sp_m014 118
## 1688 new_sp_m014 87
## 1689 new_sp_m014 72
## 1690 new_sp_m014 98
## 1691 new_sp_m014 NA
## 1692 new_sp_m014 108
## 1693 new_sp_m014 102
## 1694 new_sp_m014 116
## 1695 new_sp_m014 114
## 1696 new_sp_m014 128
## 1697 new_sp_m014 171
## 1698 new_sp_m014 173
## 1699 new_sp_m014 261
## 1700 new_sp_m014 199
## 1701 new_sp_m014 159
## 1702 new_sp_m014 189
## 1703 new_sp_m014 163
## 1704 new_sp_m014 NA
## 1705 new_sp_m014 NA
## 1706 new_sp_m014 NA
## 1707 new_sp_m014 NA
## 1708 new_sp_m014 NA
## 1709 new_sp_m014 NA
## 1710 new_sp_m014 NA
## 1711 new_sp_m014 NA
## 1712 new_sp_m014 NA
## 1713 new_sp_m014 NA
## 1714 new_sp_m014 NA
## 1715 new_sp_m014 NA
## 1716 new_sp_m014 NA
## 1717 new_sp_m014 NA
## 1718 new_sp_m014 NA
## 1719 new_sp_m014 NA
## 1720 new_sp_m014 6
## 1721 new_sp_m014 NA
## 1722 new_sp_m014 12
## 1723 new_sp_m014 14
## 1724 new_sp_m014 1
## 1725 new_sp_m014 NA
## 1726 new_sp_m014 0
## 1727 new_sp_m014 1
## 1728 new_sp_m014 0
## 1729 new_sp_m014 1
## 1730 new_sp_m014 1
## 1731 new_sp_m014 0
## 1732 new_sp_m014 NA
## 1733 new_sp_m014 0
## 1734 new_sp_m014 0
## 1735 new_sp_m014 0
## 1736 new_sp_m014 0
## 1737 new_sp_m014 0
## 1738 new_sp_m014 NA
## 1739 new_sp_m014 NA
## 1740 new_sp_m014 NA
## 1741 new_sp_m014 NA
## 1742 new_sp_m014 NA
## 1743 new_sp_m014 NA
## 1744 new_sp_m014 NA
## 1745 new_sp_m014 NA
## 1746 new_sp_m014 NA
## 1747 new_sp_m014 NA
## 1748 new_sp_m014 NA
## 1749 new_sp_m014 NA
## 1750 new_sp_m014 NA
## 1751 new_sp_m014 NA
## 1752 new_sp_m014 NA
## 1753 new_sp_m014 NA
## 1754 new_sp_m014 2
## 1755 new_sp_m014 0
## 1756 new_sp_m014 0
## 1757 new_sp_m014 0
## 1758 new_sp_m014 1
## 1759 new_sp_m014 0
## 1760 new_sp_m014 0
## 1761 new_sp_m014 0
## 1762 new_sp_m014 2
## 1763 new_sp_m014 0
## 1764 new_sp_m014 2
## 1765 new_sp_m014 NA
## 1766 new_sp_m014 NA
## 1767 new_sp_m014 2
## 1768 new_sp_m014 NA
## 1769 new_sp_m014 3
## 1770 new_sp_m014 2
## 1771 new_sp_m014 1
## 1772 new_sp_m014 NA
## 1773 new_sp_m014 0
## 1774 new_sp_m014 0
## 1775 new_sp_m014 0
## 1776 new_sp_m014 NA
## 1777 new_sp_m014 NA
## 1778 new_sp_m014 NA
## 1779 new_sp_m014 NA
## 1780 new_sp_m014 NA
## 1781 new_sp_m014 NA
## 1782 new_sp_m014 NA
## 1783 new_sp_m014 NA
## 1784 new_sp_m014 NA
## 1785 new_sp_m014 NA
## 1786 new_sp_m014 NA
## 1787 new_sp_m014 NA
## 1788 new_sp_m014 NA
## 1789 new_sp_m014 NA
## 1790 new_sp_m014 NA
## 1791 new_sp_m014 NA
## 1792 new_sp_m014 0
## 1793 new_sp_m014 0
## 1794 new_sp_m014 NA
## 1795 new_sp_m014 0
## 1796 new_sp_m014 5
## 1797 new_sp_m014 NA
## 1798 new_sp_m014 NA
## 1799 new_sp_m014 0
## 1800 new_sp_m014 0
## 1801 new_sp_m014 0
## 1802 new_sp_m014 0
## 1803 new_sp_m014 0
## 1804 new_sp_m014 0
## 1805 new_sp_m014 0
## 1806 new_sp_m014 0
## 1807 new_sp_m014 0
## 1808 new_sp_m014 0
## 1809 new_sp_m014 0
## 1810 new_sp_m014 NA
## 1811 new_sp_m014 NA
## 1812 new_sp_m014 NA
## 1813 new_sp_m014 NA
## 1814 new_sp_m014 NA
## 1815 new_sp_m014 NA
## 1816 new_sp_m014 NA
## 1817 new_sp_m014 NA
## 1818 new_sp_m014 NA
## 1819 new_sp_m014 NA
## 1820 new_sp_m014 NA
## 1821 new_sp_m014 NA
## 1822 new_sp_m014 NA
## 1823 new_sp_m014 NA
## 1824 new_sp_m014 NA
## 1825 new_sp_m014 NA
## 1826 new_sp_m014 2
## 1827 new_sp_m014 1
## 1828 new_sp_m014 0
## 1829 new_sp_m014 0
## 1830 new_sp_m014 2
## 1831 new_sp_m014 0
## 1832 new_sp_m014 0
## 1833 new_sp_m014 0
## 1834 new_sp_m014 0
## 1835 new_sp_m014 0
## 1836 new_sp_m014 0
## 1837 new_sp_m014 0
## 1838 new_sp_m014 0
## 1839 new_sp_m014 0
## 1840 new_sp_m014 0
## 1841 new_sp_m014 0
## 1842 new_sp_m014 0
## 1843 new_sp_m014 0
## 1844 new_sp_m014 NA
## 1845 new_sp_m014 NA
## 1846 new_sp_m014 NA
## 1847 new_sp_m014 NA
## 1848 new_sp_m014 NA
## 1849 new_sp_m014 NA
## 1850 new_sp_m014 NA
## 1851 new_sp_m014 NA
## 1852 new_sp_m014 NA
## 1853 new_sp_m014 NA
## 1854 new_sp_m014 NA
## 1855 new_sp_m014 NA
## 1856 new_sp_m014 NA
## 1857 new_sp_m014 NA
## 1858 new_sp_m014 NA
## 1859 new_sp_m014 NA
## 1860 new_sp_m014 NA
## 1861 new_sp_m014 NA
## 1862 new_sp_m014 5
## 1863 new_sp_m014 0
## 1864 new_sp_m014 14
## 1865 new_sp_m014 293
## 1866 new_sp_m014 207
## 1867 new_sp_m014 199
## 1868 new_sp_m014 86
## 1869 new_sp_m014 175
## 1870 new_sp_m014 167
## 1871 new_sp_m014 157
## 1872 new_sp_m014 353
## 1873 new_sp_m014 441
## 1874 new_sp_m014 364
## 1875 new_sp_m014 447
## 1876 new_sp_m014 314
## 1877 new_sp_m014 293
## 1878 new_sp_m014 NA
## 1879 new_sp_m014 NA
## 1880 new_sp_m014 NA
## 1881 new_sp_m014 NA
## 1882 new_sp_m014 NA
## 1883 new_sp_m014 NA
## 1884 new_sp_m014 NA
## 1885 new_sp_m014 NA
## 1886 new_sp_m014 NA
## 1887 new_sp_m014 NA
## 1888 new_sp_m014 NA
## 1889 new_sp_m014 NA
## 1890 new_sp_m014 NA
## 1891 new_sp_m014 NA
## 1892 new_sp_m014 NA
## 1893 new_sp_m014 NA
## 1894 new_sp_m014 373
## 1895 new_sp_m014 228
## 1896 new_sp_m014 259
## 1897 new_sp_m014 455
## 1898 new_sp_m014 474
## 1899 new_sp_m014 485
## 1900 new_sp_m014 581
## 1901 new_sp_m014 649
## 1902 new_sp_m014 854
## 1903 new_sp_m014 1195
## 1904 new_sp_m014 1321
## 1905 new_sp_m014 1122
## 1906 new_sp_m014 1343
## 1907 new_sp_m014 1515
## 1908 new_sp_m014 1453
## 1909 new_sp_m014 1707
## 1910 new_sp_m014 1579
## 1911 new_sp_m014 1439
## 1912 new_sp_m014 NA
## 1913 new_sp_m014 NA
## 1914 new_sp_m014 NA
## 1915 new_sp_m014 NA
## 1916 new_sp_m014 NA
## 1917 new_sp_m014 NA
## 1918 new_sp_m014 NA
## 1919 new_sp_m014 NA
## 1920 new_sp_m014 NA
## 1921 new_sp_m014 NA
## 1922 new_sp_m014 NA
## 1923 new_sp_m014 NA
## 1924 new_sp_m014 NA
## 1925 new_sp_m014 NA
## 1926 new_sp_m014 NA
## 1927 new_sp_m014 NA
## 1928 new_sp_m014 0
## 1929 new_sp_m014 0
## 1930 new_sp_m014 1
## 1931 new_sp_m014 0
## 1932 new_sp_m014 4
## 1933 new_sp_m014 5
## 1934 new_sp_m014 1
## 1935 new_sp_m014 2
## 1936 new_sp_m014 3
## 1937 new_sp_m014 1
## 1938 new_sp_m014 0
## 1939 new_sp_m014 0
## 1940 new_sp_m014 0
## 1941 new_sp_m014 0
## 1942 new_sp_m014 0
## 1943 new_sp_m014 0
## 1944 new_sp_m014 0
## 1945 new_sp_m014 0
## 1946 new_sp_m014 NA
## 1947 new_sp_m014 NA
## 1948 new_sp_m014 NA
## 1949 new_sp_m014 NA
## 1950 new_sp_m014 NA
## 1951 new_sp_m014 NA
## 1952 new_sp_m014 NA
## 1953 new_sp_m014 NA
## 1954 new_sp_m014 NA
## 1955 new_sp_m014 NA
## 1956 new_sp_m014 NA
## 1957 new_sp_m014 NA
## 1958 new_sp_m014 NA
## 1959 new_sp_m014 NA
## 1960 new_sp_m014 NA
## 1961 new_sp_m014 NA
## 1962 new_sp_m014 NA
## 1963 new_sp_m014 30
## 1964 new_sp_m014 52
## 1965 new_sp_m014 23
## 1966 new_sp_m014 25
## 1967 new_sp_m014 17
## 1968 new_sp_m014 17
## 1969 new_sp_m014 20
## 1970 new_sp_m014 10
## 1971 new_sp_m014 19
## 1972 new_sp_m014 18
## 1973 new_sp_m014 14
## 1974 new_sp_m014 14
## 1975 new_sp_m014 17
## 1976 new_sp_m014 18
## 1977 new_sp_m014 28
## 1978 new_sp_m014 35
## 1979 new_sp_m014 22
## 1980 new_sp_m014 NA
## 1981 new_sp_m014 NA
## 1982 new_sp_m014 NA
## 1983 new_sp_m014 NA
## 1984 new_sp_m014 NA
## 1985 new_sp_m014 NA
## 1986 new_sp_m014 NA
## 1987 new_sp_m014 NA
## 1988 new_sp_m014 NA
## 1989 new_sp_m014 NA
## 1990 new_sp_m014 NA
## 1991 new_sp_m014 NA
## 1992 new_sp_m014 NA
## 1993 new_sp_m014 NA
## 1994 new_sp_m014 NA
## 1995 new_sp_m014 NA
## 1996 new_sp_m014 NA
## 1997 new_sp_m014 0
## 1998 new_sp_m014 0
## 1999 new_sp_m014 0
## 2000 new_sp_m014 NA
## 2001 new_sp_m014 NA
## 2002 new_sp_m014 NA
## 2003 new_sp_m014 NA
## 2004 new_sp_m014 NA
## 2005 new_sp_m014 NA
## 2006 new_sp_m014 NA
## 2007 new_sp_m014 0
## 2008 new_sp_m014 0
## 2009 new_sp_m014 0
## 2010 new_sp_m014 0
## 2011 new_sp_m014 0
## 2012 new_sp_m014 0
## 2013 new_sp_m014 0
## 2014 new_sp_m014 NA
## 2015 new_sp_m014 NA
## 2016 new_sp_m014 NA
## 2017 new_sp_m014 NA
## 2018 new_sp_m014 NA
## 2019 new_sp_m014 NA
## 2020 new_sp_m014 NA
## 2021 new_sp_m014 NA
## 2022 new_sp_m014 NA
## 2023 new_sp_m014 NA
## 2024 new_sp_m014 NA
## 2025 new_sp_m014 NA
## 2026 new_sp_m014 NA
## 2027 new_sp_m014 NA
## 2028 new_sp_m014 NA
## 2029 new_sp_m014 NA
## 2030 new_sp_m014 NA
## 2031 new_sp_m014 17
## 2032 new_sp_m014 76
## 2033 new_sp_m014 62
## 2034 new_sp_m014 90
## 2035 new_sp_m014 73
## 2036 new_sp_m014 NA
## 2037 new_sp_m014 39
## 2038 new_sp_m014 52
## 2039 new_sp_m014 45
## 2040 new_sp_m014 43
## 2041 new_sp_m014 25
## 2042 new_sp_m014 23
## 2043 new_sp_m014 16
## 2044 new_sp_m014 30
## 2045 new_sp_m014 29
## 2046 new_sp_m014 20
## 2047 new_sp_m014 15
## 2048 new_sp_m014 NA
## 2049 new_sp_m014 NA
## 2050 new_sp_m014 NA
## 2051 new_sp_m014 NA
## 2052 new_sp_m014 NA
## 2053 new_sp_m014 NA
## 2054 new_sp_m014 NA
## 2055 new_sp_m014 NA
## 2056 new_sp_m014 NA
## 2057 new_sp_m014 NA
## 2058 new_sp_m014 NA
## 2059 new_sp_m014 NA
## 2060 new_sp_m014 NA
## 2061 new_sp_m014 NA
## 2062 new_sp_m014 NA
## 2063 new_sp_m014 NA
## 2064 new_sp_m014 NA
## 2065 new_sp_m014 NA
## 2066 new_sp_m014 NA
## 2067 new_sp_m014 169
## 2068 new_sp_m014 NA
## 2069 new_sp_m014 NA
## 2070 new_sp_m014 39
## 2071 new_sp_m014 NA
## 2072 new_sp_m014 18
## 2073 new_sp_m014 84
## 2074 new_sp_m014 48
## 2075 new_sp_m014 32
## 2076 new_sp_m014 42
## 2077 new_sp_m014 32
## 2078 new_sp_m014 40
## 2079 new_sp_m014 32
## 2080 new_sp_m014 45
## 2081 new_sp_m014 37
## 2082 new_sp_m014 NA
## 2083 new_sp_m014 NA
## 2084 new_sp_m014 NA
## 2085 new_sp_m014 NA
## 2086 new_sp_m014 NA
## 2087 new_sp_m014 NA
## 2088 new_sp_m014 NA
## 2089 new_sp_m014 NA
## 2090 new_sp_m014 NA
## 2091 new_sp_m014 NA
## 2092 new_sp_m014 NA
## 2093 new_sp_m014 NA
## 2094 new_sp_m014 NA
## 2095 new_sp_m014 NA
## 2096 new_sp_m014 NA
## 2097 new_sp_m014 NA
## 2098 new_sp_m014 223
## 2099 new_sp_m014 58
## 2100 new_sp_m014 50
## 2101 new_sp_m014 45
## 2102 new_sp_m014 31
## 2103 new_sp_m014 21
## 2104 new_sp_m014 34
## 2105 new_sp_m014 39
## 2106 new_sp_m014 42
## 2107 new_sp_m014 14
## 2108 new_sp_m014 25
## 2109 new_sp_m014 54
## 2110 new_sp_m014 35
## 2111 new_sp_m014 13
## 2112 new_sp_m014 17
## 2113 new_sp_m014 9
## 2114 new_sp_m014 23
## 2115 new_sp_m014 23
## 2116 new_sp_m014 NA
## 2117 new_sp_m014 NA
## 2118 new_sp_m014 NA
## 2119 new_sp_m014 NA
## 2120 new_sp_m014 NA
## 2121 new_sp_m014 NA
## 2122 new_sp_m014 NA
## 2123 new_sp_m014 NA
## 2124 new_sp_m014 NA
## 2125 new_sp_m014 NA
## 2126 new_sp_m014 NA
## 2127 new_sp_m014 NA
## 2128 new_sp_m014 NA
## 2129 new_sp_m014 NA
## 2130 new_sp_m014 NA
## 2131 new_sp_m014 NA
## 2132 new_sp_m014 NA
## 2133 new_sp_m014 102
## 2134 new_sp_m014 13
## 2135 new_sp_m014 21
## 2136 new_sp_m014 18
## 2137 new_sp_m014 13
## 2138 new_sp_m014 20
## 2139 new_sp_m014 8
## 2140 new_sp_m014 7
## 2141 new_sp_m014 5
## 2142 new_sp_m014 5
## 2143 new_sp_m014 6
## 2144 new_sp_m014 8
## 2145 new_sp_m014 8
## 2146 new_sp_m014 7
## 2147 new_sp_m014 5
## 2148 new_sp_m014 3
## 2149 new_sp_m014 5
## 2150 new_sp_m014 NA
## 2151 new_sp_m014 NA
## 2152 new_sp_m014 NA
## 2153 new_sp_m014 NA
## 2154 new_sp_m014 NA
## 2155 new_sp_m014 NA
## 2156 new_sp_m014 NA
## 2157 new_sp_m014 NA
## 2158 new_sp_m014 NA
## 2159 new_sp_m014 NA
## 2160 new_sp_m014 NA
## 2161 new_sp_m014 NA
## 2162 new_sp_m014 NA
## 2163 new_sp_m014 NA
## 2164 new_sp_m014 NA
## 2165 new_sp_m014 NA
## 2166 new_sp_m014 8
## 2167 new_sp_m014 NA
## 2168 new_sp_m014 5
## 2169 new_sp_m014 6
## 2170 new_sp_m014 NA
## 2171 new_sp_m014 NA
## 2172 new_sp_m014 NA
## 2173 new_sp_m014 NA
## 2174 new_sp_m014 NA
## 2175 new_sp_m014 5
## 2176 new_sp_m014 NA
## 2177 new_sp_m014 NA
## 2178 new_sp_m014 NA
## 2179 new_sp_m014 8
## 2180 new_sp_m014 10
## 2181 new_sp_m014 10
## 2182 new_sp_m014 11
## 2183 new_sp_m014 NA
## 2184 new_sp_m014 NA
## 2185 new_sp_m014 NA
## 2186 new_sp_m014 NA
## 2187 new_sp_m014 NA
## 2188 new_sp_m014 NA
## 2189 new_sp_m014 NA
## 2190 new_sp_m014 NA
## 2191 new_sp_m014 NA
## 2192 new_sp_m014 NA
## 2193 new_sp_m014 NA
## 2194 new_sp_m014 NA
## 2195 new_sp_m014 NA
## 2196 new_sp_m014 NA
## 2197 new_sp_m014 NA
## 2198 new_sp_m014 NA
## 2199 new_sp_m014 NA
## 2200 new_sp_m014 NA
## 2201 new_sp_m014 NA
## 2202 new_sp_m014 0
## 2203 new_sp_m014 4
## 2204 new_sp_m014 3
## 2205 new_sp_m014 9
## 2206 new_sp_m014 5
## 2207 new_sp_m014 16
## 2208 new_sp_m014 17
## 2209 new_sp_m014 14
## 2210 new_sp_m014 9
## 2211 new_sp_m014 6
## 2212 new_sp_m014 21
## 2213 new_sp_m014 NA
## 2214 new_sp_m014 6
## 2215 new_sp_m014 10
## 2216 new_sp_m014 NA
## 2217 new_sp_m014 2
## 2218 new_sp_m014 NA
## 2219 new_sp_m014 NA
## 2220 new_sp_m014 NA
## 2221 new_sp_m014 NA
## 2222 new_sp_m014 NA
## 2223 new_sp_m014 NA
## 2224 new_sp_m014 NA
## 2225 new_sp_m014 NA
## 2226 new_sp_m014 NA
## 2227 new_sp_m014 NA
## 2228 new_sp_m014 NA
## 2229 new_sp_m014 NA
## 2230 new_sp_m014 NA
## 2231 new_sp_m014 NA
## 2232 new_sp_m014 NA
## 2233 new_sp_m014 NA
## 2234 new_sp_m014 NA
## 2235 new_sp_m014 1
## 2236 new_sp_m014 0
## 2237 new_sp_m014 0
## 2238 new_sp_m014 0
## 2239 new_sp_m014 0
## 2240 new_sp_m014 0
## 2241 new_sp_m014 0
## 2242 new_sp_m014 0
## 2243 new_sp_m014 0
## 2244 new_sp_m014 0
## 2245 new_sp_m014 0
## 2246 new_sp_m014 0
## 2247 new_sp_m014 0
## 2248 new_sp_m014 0
## 2249 new_sp_m014 0
## 2250 new_sp_m014 0
## 2251 new_sp_m014 0
## 2252 new_sp_m014 NA
## 2253 new_sp_m014 NA
## 2254 new_sp_m014 NA
## 2255 new_sp_m014 NA
## 2256 new_sp_m014 NA
## 2257 new_sp_m014 NA
## 2258 new_sp_m014 NA
## 2259 new_sp_m014 NA
## 2260 new_sp_m014 NA
## 2261 new_sp_m014 NA
## 2262 new_sp_m014 NA
## 2263 new_sp_m014 NA
## 2264 new_sp_m014 NA
## 2265 new_sp_m014 NA
## 2266 new_sp_m014 NA
## 2267 new_sp_m014 NA
## 2268 new_sp_m014 247
## 2269 new_sp_m014 302
## 2270 new_sp_m014 579
## 2271 new_sp_m014 715
## 2272 new_sp_m014 692
## 2273 new_sp_m014 915
## 2274 new_sp_m014 913
## 2275 new_sp_m014 1251
## 2276 new_sp_m014 1110
## 2277 new_sp_m014 1160
## 2278 new_sp_m014 1109
## 2279 new_sp_m014 978
## 2280 new_sp_m014 1055
## 2281 new_sp_m014 978
## 2282 new_sp_m014 1421
## 2283 new_sp_m014 1582
## 2284 new_sp_m014 1847
## 2285 new_sp_m014 NA
## 2286 new_sp_m014 NA
## 2287 new_sp_m014 NA
## 2288 new_sp_m014 NA
## 2289 new_sp_m014 NA
## 2290 new_sp_m014 NA
## 2291 new_sp_m014 NA
## 2292 new_sp_m014 NA
## 2293 new_sp_m014 NA
## 2294 new_sp_m014 NA
## 2295 new_sp_m014 NA
## 2296 new_sp_m014 NA
## 2297 new_sp_m014 NA
## 2298 new_sp_m014 NA
## 2299 new_sp_m014 NA
## 2300 new_sp_m014 NA
## 2301 new_sp_m014 2
## 2302 new_sp_m014 0
## 2303 new_sp_m014 1
## 2304 new_sp_m014 1
## 2305 new_sp_m014 0
## 2306 new_sp_m014 1
## 2307 new_sp_m014 0
## 2308 new_sp_m014 0
## 2309 new_sp_m014 1
## 2310 new_sp_m014 2
## 2311 new_sp_m014 0
## 2312 new_sp_m014 7
## 2313 new_sp_m014 0
## 2314 new_sp_m014 1
## 2315 new_sp_m014 NA
## 2316 new_sp_m014 0
## 2317 new_sp_m014 1
## 2318 new_sp_m014 0
## 2319 new_sp_m014 2
## 2320 new_sp_m014 NA
## 2321 new_sp_m014 NA
## 2322 new_sp_m014 NA
## 2323 new_sp_m014 NA
## 2324 new_sp_m014 NA
## 2325 new_sp_m014 NA
## 2326 new_sp_m014 NA
## 2327 new_sp_m014 NA
## 2328 new_sp_m014 NA
## 2329 new_sp_m014 NA
## 2330 new_sp_m014 NA
## 2331 new_sp_m014 NA
## 2332 new_sp_m014 NA
## 2333 new_sp_m014 NA
## 2334 new_sp_m014 NA
## 2335 new_sp_m014 NA
## 2336 new_sp_m014 1
## 2337 new_sp_m014 0
## 2338 new_sp_m014 0
## 2339 new_sp_m014 0
## 2340 new_sp_m014 0
## 2341 new_sp_m014 0
## 2342 new_sp_m014 0
## 2343 new_sp_m014 0
## 2344 new_sp_m014 0
## 2345 new_sp_m014 0
## 2346 new_sp_m014 1
## 2347 new_sp_m014 0
## 2348 new_sp_m014 0
## 2349 new_sp_m014 0
## 2350 new_sp_m014 0
## 2351 new_sp_m014 0
## 2352 new_sp_m014 0
## 2353 new_sp_m014 0
## 2354 new_sp_m014 NA
## 2355 new_sp_m014 NA
## 2356 new_sp_m014 NA
## 2357 new_sp_m014 NA
## 2358 new_sp_m014 NA
## 2359 new_sp_m014 NA
## 2360 new_sp_m014 NA
## 2361 new_sp_m014 NA
## 2362 new_sp_m014 NA
## 2363 new_sp_m014 NA
## 2364 new_sp_m014 NA
## 2365 new_sp_m014 NA
## 2366 new_sp_m014 NA
## 2367 new_sp_m014 NA
## 2368 new_sp_m014 NA
## 2369 new_sp_m014 NA
## 2370 new_sp_m014 30
## 2371 new_sp_m014 36
## 2372 new_sp_m014 24
## 2373 new_sp_m014 NA
## 2374 new_sp_m014 13
## 2375 new_sp_m014 10
## 2376 new_sp_m014 10
## 2377 new_sp_m014 24
## 2378 new_sp_m014 18
## 2379 new_sp_m014 13
## 2380 new_sp_m014 12
## 2381 new_sp_m014 17
## 2382 new_sp_m014 17
## 2383 new_sp_m014 10
## 2384 new_sp_m014 11
## 2385 new_sp_m014 10
## 2386 new_sp_m014 12
## 2387 new_sp_m014 8
## 2388 new_sp_m014 NA
## 2389 new_sp_m014 NA
## 2390 new_sp_m014 NA
## 2391 new_sp_m014 NA
## 2392 new_sp_m014 NA
## 2393 new_sp_m014 NA
## 2394 new_sp_m014 NA
## 2395 new_sp_m014 NA
## 2396 new_sp_m014 NA
## 2397 new_sp_m014 NA
## 2398 new_sp_m014 NA
## 2399 new_sp_m014 NA
## 2400 new_sp_m014 NA
## 2401 new_sp_m014 NA
## 2402 new_sp_m014 NA
## 2403 new_sp_m014 NA
## 2404 new_sp_m014 NA
## 2405 new_sp_m014 1
## 2406 new_sp_m014 1
## 2407 new_sp_m014 0
## 2408 new_sp_m014 0
## 2409 new_sp_m014 1
## 2410 new_sp_m014 2
## 2411 new_sp_m014 0
## 2412 new_sp_m014 NA
## 2413 new_sp_m014 1
## 2414 new_sp_m014 0
## 2415 new_sp_m014 1
## 2416 new_sp_m014 NA
## 2417 new_sp_m014 1
## 2418 new_sp_m014 1
## 2419 new_sp_m014 0
## 2420 new_sp_m014 0
## 2421 new_sp_m014 0
## 2422 new_sp_m014 NA
## 2423 new_sp_m014 NA
## 2424 new_sp_m014 NA
## 2425 new_sp_m014 NA
## 2426 new_sp_m014 NA
## 2427 new_sp_m014 NA
## 2428 new_sp_m014 NA
## 2429 new_sp_m014 NA
## 2430 new_sp_m014 NA
## 2431 new_sp_m014 NA
## 2432 new_sp_m014 NA
## 2433 new_sp_m014 NA
## 2434 new_sp_m014 NA
## 2435 new_sp_m014 NA
## 2436 new_sp_m014 NA
## 2437 new_sp_m014 NA
## 2438 new_sp_m014 3
## 2439 new_sp_m014 0
## 2440 new_sp_m014 NA
## 2441 new_sp_m014 14
## 2442 new_sp_m014 14
## 2443 new_sp_m014 NA
## 2444 new_sp_m014 21
## 2445 new_sp_m014 10
## 2446 new_sp_m014 14
## 2447 new_sp_m014 17
## 2448 new_sp_m014 13
## 2449 new_sp_m014 20
## 2450 new_sp_m014 NA
## 2451 new_sp_m014 14
## 2452 new_sp_m014 45
## 2453 new_sp_m014 15
## 2454 new_sp_m014 34
## 2455 new_sp_m014 42
## 2456 new_sp_m014 NA
## 2457 new_sp_m014 NA
## 2458 new_sp_m014 NA
## 2459 new_sp_m014 NA
## 2460 new_sp_m014 NA
## 2461 new_sp_m014 NA
## 2462 new_sp_m014 NA
## 2463 new_sp_m014 NA
## 2464 new_sp_m014 NA
## 2465 new_sp_m014 NA
## 2466 new_sp_m014 NA
## 2467 new_sp_m014 NA
## 2468 new_sp_m014 NA
## 2469 new_sp_m014 NA
## 2470 new_sp_m014 NA
## 2471 new_sp_m014 NA
## 2472 new_sp_m014 3
## 2473 new_sp_m014 29
## 2474 new_sp_m014 2
## 2475 new_sp_m014 6
## 2476 new_sp_m014 6
## 2477 new_sp_m014 NA
## 2478 new_sp_m014 NA
## 2479 new_sp_m014 2
## 2480 new_sp_m014 3
## 2481 new_sp_m014 5
## 2482 new_sp_m014 13
## 2483 new_sp_m014 13
## 2484 new_sp_m014 NA
## 2485 new_sp_m014 7
## 2486 new_sp_m014 12
## 2487 new_sp_m014 9
## 2488 new_sp_m014 14
## 2489 new_sp_m014 7
## 2490 new_sp_m014 NA
## 2491 new_sp_m014 NA
## 2492 new_sp_m014 NA
## 2493 new_sp_m014 NA
## 2494 new_sp_m014 NA
## 2495 new_sp_m014 NA
## 2496 new_sp_m014 NA
## 2497 new_sp_m014 NA
## 2498 new_sp_m014 NA
## 2499 new_sp_m014 NA
## 2500 new_sp_m014 NA
## 2501 new_sp_m014 NA
## 2502 new_sp_m014 NA
## 2503 new_sp_m014 NA
## 2504 new_sp_m014 NA
## 2505 new_sp_m014 NA
## 2506 new_sp_m014 2
## 2507 new_sp_m014 4
## 2508 new_sp_m014 0
## 2509 new_sp_m014 4
## 2510 new_sp_m014 5
## 2511 new_sp_m014 4
## 2512 new_sp_m014 4
## 2513 new_sp_m014 1
## 2514 new_sp_m014 1
## 2515 new_sp_m014 3
## 2516 new_sp_m014 0
## 2517 new_sp_m014 3
## 2518 new_sp_m014 7
## 2519 new_sp_m014 4
## 2520 new_sp_m014 2
## 2521 new_sp_m014 5
## 2522 new_sp_m014 5
## 2523 new_sp_m014 4
## 2524 new_sp_m014 NA
## 2525 new_sp_m014 NA
## 2526 new_sp_m014 NA
## 2527 new_sp_m014 NA
## 2528 new_sp_m014 NA
## 2529 new_sp_m014 NA
## 2530 new_sp_m014 NA
## 2531 new_sp_m014 NA
## 2532 new_sp_m014 NA
## 2533 new_sp_m014 NA
## 2534 new_sp_m014 NA
## 2535 new_sp_m014 NA
## 2536 new_sp_m014 NA
## 2537 new_sp_m014 NA
## 2538 new_sp_m014 NA
## 2539 new_sp_m014 NA
## 2540 new_sp_m014 14
## 2541 new_sp_m014 20
## 2542 new_sp_m014 11
## 2543 new_sp_m014 9
## 2544 new_sp_m014 13
## 2545 new_sp_m014 NA
## 2546 new_sp_m014 3
## 2547 new_sp_m014 3
## 2548 new_sp_m014 2
## 2549 new_sp_m014 5
## 2550 new_sp_m014 6
## 2551 new_sp_m014 2
## 2552 new_sp_m014 2
## 2553 new_sp_m014 2
## 2554 new_sp_m014 2
## 2555 new_sp_m014 1
## 2556 new_sp_m014 0
## 2557 new_sp_m014 4
## 2558 new_sp_m014 NA
## 2559 new_sp_m014 NA
## 2560 new_sp_m014 NA
## 2561 new_sp_m014 NA
## 2562 new_sp_m014 NA
## 2563 new_sp_m014 NA
## 2564 new_sp_m014 NA
## 2565 new_sp_m014 NA
## 2566 new_sp_m014 NA
## 2567 new_sp_m014 NA
## 2568 new_sp_m014 NA
## 2569 new_sp_m014 NA
## 2570 new_sp_m014 NA
## 2571 new_sp_m014 NA
## 2572 new_sp_m014 NA
## 2573 new_sp_m014 NA
## 2574 new_sp_m014 42
## 2575 new_sp_m014 30
## 2576 new_sp_m014 77
## 2577 new_sp_m014 83
## 2578 new_sp_m014 64
## 2579 new_sp_m014 73
## 2580 new_sp_m014 84
## 2581 new_sp_m014 80
## 2582 new_sp_m014 79
## 2583 new_sp_m014 54
## 2584 new_sp_m014 49
## 2585 new_sp_m014 33
## 2586 new_sp_m014 66
## 2587 new_sp_m014 NA
## 2588 new_sp_m014 66
## 2589 new_sp_m014 63
## 2590 new_sp_m014 50
## 2591 new_sp_m014 30
## 2592 new_sp_m014 NA
## 2593 new_sp_m014 NA
## 2594 new_sp_m014 NA
## 2595 new_sp_m014 NA
## 2596 new_sp_m014 NA
## 2597 new_sp_m014 NA
## 2598 new_sp_m014 NA
## 2599 new_sp_m014 NA
## 2600 new_sp_m014 NA
## 2601 new_sp_m014 NA
## 2602 new_sp_m014 NA
## 2603 new_sp_m014 NA
## 2604 new_sp_m014 NA
## 2605 new_sp_m014 NA
## 2606 new_sp_m014 NA
## 2607 new_sp_m014 NA
## 2608 new_sp_m014 NA
## 2609 new_sp_m014 NA
## 2610 new_sp_m014 0
## 2611 new_sp_m014 15
## 2612 new_sp_m014 3
## 2613 new_sp_m014 1
## 2614 new_sp_m014 0
## 2615 new_sp_m014 0
## 2616 new_sp_m014 2
## 2617 new_sp_m014 1
## 2618 new_sp_m014 1
## 2619 new_sp_m014 0
## 2620 new_sp_m014 1
## 2621 new_sp_m014 0
## 2622 new_sp_m014 3
## 2623 new_sp_m014 1
## 2624 new_sp_m014 2
## 2625 new_sp_m014 2
## 2626 new_sp_m014 NA
## 2627 new_sp_m014 NA
## 2628 new_sp_m014 NA
## 2629 new_sp_m014 NA
## 2630 new_sp_m014 NA
## 2631 new_sp_m014 NA
## 2632 new_sp_m014 NA
## 2633 new_sp_m014 NA
## 2634 new_sp_m014 NA
## 2635 new_sp_m014 NA
## 2636 new_sp_m014 NA
## 2637 new_sp_m014 NA
## 2638 new_sp_m014 NA
## 2639 new_sp_m014 NA
## 2640 new_sp_m014 NA
## 2641 new_sp_m014 NA
## 2642 new_sp_m014 NA
## 2643 new_sp_m014 NA
## 2644 new_sp_m014 NA
## 2645 new_sp_m014 NA
## 2646 new_sp_m014 NA
## 2647 new_sp_m014 NA
## 2648 new_sp_m014 NA
## 2649 new_sp_m014 NA
## 2650 new_sp_m014 NA
## 2651 new_sp_m014 NA
## 2652 new_sp_m014 NA
## 2653 new_sp_m014 NA
## 2654 new_sp_m014 NA
## 2655 new_sp_m014 NA
## 2656 new_sp_m014 NA
## 2657 new_sp_m014 0
## 2658 new_sp_m014 0
## 2659 new_sp_m014 0
## 2660 new_sp_m014 NA
## 2661 new_sp_m014 NA
## 2662 new_sp_m014 NA
## 2663 new_sp_m014 NA
## 2664 new_sp_m014 NA
## 2665 new_sp_m014 NA
## 2666 new_sp_m014 NA
## 2667 new_sp_m014 NA
## 2668 new_sp_m014 NA
## 2669 new_sp_m014 NA
## 2670 new_sp_m014 NA
## 2671 new_sp_m014 NA
## 2672 new_sp_m014 NA
## 2673 new_sp_m014 NA
## 2674 new_sp_m014 NA
## 2675 new_sp_m014 NA
## 2676 new_sp_m014 NA
## 2677 new_sp_m014 NA
## 2678 new_sp_m014 0
## 2679 new_sp_m014 0
## 2680 new_sp_m014 0
## 2681 new_sp_m014 NA
## 2682 new_sp_m014 NA
## 2683 new_sp_m014 NA
## 2684 new_sp_m014 NA
## 2685 new_sp_m014 NA
## 2686 new_sp_m014 NA
## 2687 new_sp_m014 0
## 2688 new_sp_m014 NA
## 2689 new_sp_m014 NA
## 2690 new_sp_m014 NA
## 2691 new_sp_m014 NA
## 2692 new_sp_m014 0
## 2693 new_sp_m014 NA
## 2694 new_sp_m014 NA
## 2695 new_sp_m014 NA
## 2696 new_sp_m014 NA
## 2697 new_sp_m014 NA
## 2698 new_sp_m014 NA
## 2699 new_sp_m014 NA
## 2700 new_sp_m014 NA
## 2701 new_sp_m014 NA
## 2702 new_sp_m014 NA
## 2703 new_sp_m014 NA
## 2704 new_sp_m014 NA
## 2705 new_sp_m014 NA
## 2706 new_sp_m014 NA
## 2707 new_sp_m014 NA
## 2708 new_sp_m014 NA
## 2709 new_sp_m014 NA
## 2710 new_sp_m014 NA
## 2711 new_sp_m014 NA
## 2712 new_sp_m014 NA
## 2713 new_sp_m014 NA
## 2714 new_sp_m014 NA
## 2715 new_sp_m014 2
## 2716 new_sp_m014 0
## 2717 new_sp_m014 3
## 2718 new_sp_m014 0
## 2719 new_sp_m014 0
## 2720 new_sp_m014 0
## 2721 new_sp_m014 0
## 2722 new_sp_m014 0
## 2723 new_sp_m014 0
## 2724 new_sp_m014 0
## 2725 new_sp_m014 0
## 2726 new_sp_m014 0
## 2727 new_sp_m014 0
## 2728 new_sp_m014 NA
## 2729 new_sp_m014 NA
## 2730 new_sp_m014 NA
## 2731 new_sp_m014 NA
## 2732 new_sp_m014 NA
## 2733 new_sp_m014 NA
## 2734 new_sp_m014 NA
## 2735 new_sp_m014 NA
## 2736 new_sp_m014 NA
## 2737 new_sp_m014 NA
## 2738 new_sp_m014 NA
## 2739 new_sp_m014 NA
## 2740 new_sp_m014 NA
## 2741 new_sp_m014 NA
## 2742 new_sp_m014 NA
## 2743 new_sp_m014 NA
## 2744 new_sp_m014 51
## 2745 new_sp_m014 75
## 2746 new_sp_m014 45
## 2747 new_sp_m014 60
## 2748 new_sp_m014 34
## 2749 new_sp_m014 36
## 2750 new_sp_m014 27
## 2751 new_sp_m014 27
## 2752 new_sp_m014 29
## 2753 new_sp_m014 43
## 2754 new_sp_m014 39
## 2755 new_sp_m014 NA
## 2756 new_sp_m014 74
## 2757 new_sp_m014 19
## 2758 new_sp_m014 121
## 2759 new_sp_m014 60
## 2760 new_sp_m014 18
## 2761 new_sp_m014 NA
## 2762 new_sp_m014 NA
## 2763 new_sp_m014 NA
## 2764 new_sp_m014 NA
## 2765 new_sp_m014 NA
## 2766 new_sp_m014 NA
## 2767 new_sp_m014 NA
## 2768 new_sp_m014 NA
## 2769 new_sp_m014 NA
## 2770 new_sp_m014 NA
## 2771 new_sp_m014 NA
## 2772 new_sp_m014 NA
## 2773 new_sp_m014 NA
## 2774 new_sp_m014 NA
## 2775 new_sp_m014 NA
## 2776 new_sp_m014 NA
## 2777 new_sp_m014 NA
## 2778 new_sp_m014 18
## 2779 new_sp_m014 29
## 2780 new_sp_m014 25
## 2781 new_sp_m014 22
## 2782 new_sp_m014 30
## 2783 new_sp_m014 39
## 2784 new_sp_m014 24
## 2785 new_sp_m014 24
## 2786 new_sp_m014 34
## 2787 new_sp_m014 38
## 2788 new_sp_m014 51
## 2789 new_sp_m014 31
## 2790 new_sp_m014 46
## 2791 new_sp_m014 56
## 2792 new_sp_m014 65
## 2793 new_sp_m014 61
## 2794 new_sp_m014 45
## 2795 new_sp_m014 28
## 2796 new_sp_m014 NA
## 2797 new_sp_m014 NA
## 2798 new_sp_m014 NA
## 2799 new_sp_m014 NA
## 2800 new_sp_m014 NA
## 2801 new_sp_m014 NA
## 2802 new_sp_m014 NA
## 2803 new_sp_m014 NA
## 2804 new_sp_m014 NA
## 2805 new_sp_m014 NA
## 2806 new_sp_m014 NA
## 2807 new_sp_m014 NA
## 2808 new_sp_m014 NA
## 2809 new_sp_m014 NA
## 2810 new_sp_m014 NA
## 2811 new_sp_m014 NA
## 2812 new_sp_m014 NA
## 2813 new_sp_m014 9
## 2814 new_sp_m014 NA
## 2815 new_sp_m014 NA
## 2816 new_sp_m014 NA
## 2817 new_sp_m014 2
## 2818 new_sp_m014 NA
## 2819 new_sp_m014 7
## 2820 new_sp_m014 9
## 2821 new_sp_m014 16
## 2822 new_sp_m014 14
## 2823 new_sp_m014 8
## 2824 new_sp_m014 NA
## 2825 new_sp_m014 8
## 2826 new_sp_m014 8
## 2827 new_sp_m014 18
## 2828 new_sp_m014 6
## 2829 new_sp_m014 7
## 2830 new_sp_m014 NA
## 2831 new_sp_m014 NA
## 2832 new_sp_m014 NA
## 2833 new_sp_m014 NA
## 2834 new_sp_m014 NA
## 2835 new_sp_m014 NA
## 2836 new_sp_m014 NA
## 2837 new_sp_m014 NA
## 2838 new_sp_m014 NA
## 2839 new_sp_m014 NA
## 2840 new_sp_m014 NA
## 2841 new_sp_m014 NA
## 2842 new_sp_m014 NA
## 2843 new_sp_m014 NA
## 2844 new_sp_m014 NA
## 2845 new_sp_m014 NA
## 2846 new_sp_m014 7
## 2847 new_sp_m014 4
## 2848 new_sp_m014 1
## 2849 new_sp_m014 9
## 2850 new_sp_m014 NA
## 2851 new_sp_m014 4
## 2852 new_sp_m014 1
## 2853 new_sp_m014 20
## 2854 new_sp_m014 10
## 2855 new_sp_m014 9
## 2856 new_sp_m014 12
## 2857 new_sp_m014 6
## 2858 new_sp_m014 2
## 2859 new_sp_m014 7
## 2860 new_sp_m014 7
## 2861 new_sp_m014 2
## 2862 new_sp_m014 8
## 2863 new_sp_m014 5
## 2864 new_sp_m014 NA
## 2865 new_sp_m014 NA
## 2866 new_sp_m014 NA
## 2867 new_sp_m014 NA
## 2868 new_sp_m014 NA
## 2869 new_sp_m014 NA
## 2870 new_sp_m014 NA
## 2871 new_sp_m014 NA
## 2872 new_sp_m014 NA
## 2873 new_sp_m014 NA
## 2874 new_sp_m014 NA
## 2875 new_sp_m014 NA
## 2876 new_sp_m014 NA
## 2877 new_sp_m014 NA
## 2878 new_sp_m014 NA
## 2879 new_sp_m014 NA
## 2880 new_sp_m014 NA
## 2881 new_sp_m014 148
## 2882 new_sp_m014 156
## 2883 new_sp_m014 188
## 2884 new_sp_m014 286
## 2885 new_sp_m014 67
## 2886 new_sp_m014 72
## 2887 new_sp_m014 79
## 2888 new_sp_m014 89
## 2889 new_sp_m014 94
## 2890 new_sp_m014 69
## 2891 new_sp_m014 93
## 2892 new_sp_m014 104
## 2893 new_sp_m014 90
## 2894 new_sp_m014 NA
## 2895 new_sp_m014 98
## 2896 new_sp_m014 107
## 2897 new_sp_m014 126
## 2898 new_sp_m014 NA
## 2899 new_sp_m014 NA
## 2900 new_sp_m014 NA
## 2901 new_sp_m014 NA
## 2902 new_sp_m014 NA
## 2903 new_sp_m014 NA
## 2904 new_sp_m014 NA
## 2905 new_sp_m014 NA
## 2906 new_sp_m014 NA
## 2907 new_sp_m014 NA
## 2908 new_sp_m014 NA
## 2909 new_sp_m014 NA
## 2910 new_sp_m014 NA
## 2911 new_sp_m014 NA
## 2912 new_sp_m014 NA
## 2913 new_sp_m014 NA
## 2914 new_sp_m014 42
## 2915 new_sp_m014 51
## 2916 new_sp_m014 26
## 2917 new_sp_m014 147
## 2918 new_sp_m014 150
## 2919 new_sp_m014 30
## 2920 new_sp_m014 12
## 2921 new_sp_m014 76
## 2922 new_sp_m014 52
## 2923 new_sp_m014 54
## 2924 new_sp_m014 13
## 2925 new_sp_m014 21
## 2926 new_sp_m014 21
## 2927 new_sp_m014 11
## 2928 new_sp_m014 13
## 2929 new_sp_m014 15
## 2930 new_sp_m014 17
## 2931 new_sp_m014 18
## 2932 new_sp_m014 NA
## 2933 new_sp_m014 NA
## 2934 new_sp_m014 NA
## 2935 new_sp_m014 NA
## 2936 new_sp_m014 NA
## 2937 new_sp_m014 NA
## 2938 new_sp_m014 NA
## 2939 new_sp_m014 NA
## 2940 new_sp_m014 NA
## 2941 new_sp_m014 NA
## 2942 new_sp_m014 NA
## 2943 new_sp_m014 NA
## 2944 new_sp_m014 NA
## 2945 new_sp_m014 NA
## 2946 new_sp_m014 NA
## 2947 new_sp_m014 NA
## 2948 new_sp_m014 NA
## 2949 new_sp_m014 3
## 2950 new_sp_m014 0
## 2951 new_sp_m014 0
## 2952 new_sp_m014 2
## 2953 new_sp_m014 0
## 2954 new_sp_m014 1
## 2955 new_sp_m014 1
## 2956 new_sp_m014 0
## 2957 new_sp_m014 2
## 2958 new_sp_m014 0
## 2959 new_sp_m014 2
## 2960 new_sp_m014 0
## 2961 new_sp_m014 0
## 2962 new_sp_m014 0
## 2963 new_sp_m014 1
## 2964 new_sp_m014 0
## 2965 new_sp_m014 2
## 2966 new_sp_m014 NA
## 2967 new_sp_m014 NA
## 2968 new_sp_m014 NA
## 2969 new_sp_m014 NA
## 2970 new_sp_m014 NA
## 2971 new_sp_m014 NA
## 2972 new_sp_m014 NA
## 2973 new_sp_m014 NA
## 2974 new_sp_m014 NA
## 2975 new_sp_m014 NA
## 2976 new_sp_m014 NA
## 2977 new_sp_m014 NA
## 2978 new_sp_m014 NA
## 2979 new_sp_m014 NA
## 2980 new_sp_m014 NA
## 2981 new_sp_m014 NA
## 2982 new_sp_m014 0
## 2983 new_sp_m014 NA
## 2984 new_sp_m014 0
## 2985 new_sp_m014 0
## 2986 new_sp_m014 0
## 2987 new_sp_m014 NA
## 2988 new_sp_m014 0
## 2989 new_sp_m014 0
## 2990 new_sp_m014 0
## 2991 new_sp_m014 0
## 2992 new_sp_m014 0
## 2993 new_sp_m014 0
## 2994 new_sp_m014 0
## 2995 new_sp_m014 0
## 2996 new_sp_m014 0
## 2997 new_sp_m014 0
## 2998 new_sp_m014 0
## 2999 new_sp_m014 0
## 3000 new_sp_m014 NA
## 3001 new_sp_m014 NA
## 3002 new_sp_m014 NA
## 3003 new_sp_m014 NA
## 3004 new_sp_m014 NA
## 3005 new_sp_m014 NA
## 3006 new_sp_m014 NA
## 3007 new_sp_m014 NA
## 3008 new_sp_m014 NA
## 3009 new_sp_m014 NA
## 3010 new_sp_m014 NA
## 3011 new_sp_m014 NA
## 3012 new_sp_m014 NA
## 3013 new_sp_m014 NA
## 3014 new_sp_m014 NA
## 3015 new_sp_m014 NA
## 3016 new_sp_m014 16
## 3017 new_sp_m014 47
## 3018 new_sp_m014 50
## 3019 new_sp_m014 84
## 3020 new_sp_m014 327
## 3021 new_sp_m014 1588
## 3022 new_sp_m014 1063
## 3023 new_sp_m014 2551
## 3024 new_sp_m014 2411
## 3025 new_sp_m014 3018
## 3026 new_sp_m014 3185
## 3027 new_sp_m014 3566
## 3028 new_sp_m014 4305
## 3029 new_sp_m014 4648
## 3030 new_sp_m014 5001
## 3031 new_sp_m014 4871
## 3032 new_sp_m014 4649
## 3033 new_sp_m014 4697
## 3034 new_sp_m014 NA
## 3035 new_sp_m014 NA
## 3036 new_sp_m014 NA
## 3037 new_sp_m014 NA
## 3038 new_sp_m014 NA
## 3039 new_sp_m014 NA
## 3040 new_sp_m014 NA
## 3041 new_sp_m014 NA
## 3042 new_sp_m014 NA
## 3043 new_sp_m014 NA
## 3044 new_sp_m014 NA
## 3045 new_sp_m014 NA
## 3046 new_sp_m014 NA
## 3047 new_sp_m014 NA
## 3048 new_sp_m014 NA
## 3049 new_sp_m014 NA
## 3050 new_sp_m014 6
## 3051 new_sp_m014 28
## 3052 new_sp_m014 46
## 3053 new_sp_m014 78
## 3054 new_sp_m014 106
## 3055 new_sp_m014 NA
## 3056 new_sp_m014 298
## 3057 new_sp_m014 569
## 3058 new_sp_m014 532
## 3059 new_sp_m014 697
## 3060 new_sp_m014 846
## 3061 new_sp_m014 899
## 3062 new_sp_m014 849
## 3063 new_sp_m014 871
## 3064 new_sp_m014 811
## 3065 new_sp_m014 714
## 3066 new_sp_m014 787
## 3067 new_sp_m014 824
## 3068 new_sp_m014 NA
## 3069 new_sp_m014 NA
## 3070 new_sp_m014 NA
## 3071 new_sp_m014 NA
## 3072 new_sp_m014 NA
## 3073 new_sp_m014 NA
## 3074 new_sp_m014 NA
## 3075 new_sp_m014 NA
## 3076 new_sp_m014 NA
## 3077 new_sp_m014 NA
## 3078 new_sp_m014 NA
## 3079 new_sp_m014 NA
## 3080 new_sp_m014 NA
## 3081 new_sp_m014 NA
## 3082 new_sp_m014 NA
## 3083 new_sp_m014 NA
## 3084 new_sp_m014 118
## 3085 new_sp_m014 63
## 3086 new_sp_m014 54
## 3087 new_sp_m014 35
## 3088 new_sp_m014 27
## 3089 new_sp_m014 29
## 3090 new_sp_m014 37
## 3091 new_sp_m014 29
## 3092 new_sp_m014 32
## 3093 new_sp_m014 16
## 3094 new_sp_m014 16
## 3095 new_sp_m014 12
## 3096 new_sp_m014 10
## 3097 new_sp_m014 11
## 3098 new_sp_m014 15
## 3099 new_sp_m014 18
## 3100 new_sp_m014 13
## 3101 new_sp_m014 16
## 3102 new_sp_m014 NA
## 3103 new_sp_m014 NA
## 3104 new_sp_m014 NA
## 3105 new_sp_m014 NA
## 3106 new_sp_m014 NA
## 3107 new_sp_m014 NA
## 3108 new_sp_m014 NA
## 3109 new_sp_m014 NA
## 3110 new_sp_m014 NA
## 3111 new_sp_m014 NA
## 3112 new_sp_m014 NA
## 3113 new_sp_m014 NA
## 3114 new_sp_m014 NA
## 3115 new_sp_m014 NA
## 3116 new_sp_m014 NA
## 3117 new_sp_m014 NA
## 3118 new_sp_m014 1125
## 3119 new_sp_m014 NA
## 3120 new_sp_m014 416
## 3121 new_sp_m014 453
## 3122 new_sp_m014 519
## 3123 new_sp_m014 21
## 3124 new_sp_m014 10
## 3125 new_sp_m014 47
## 3126 new_sp_m014 30
## 3127 new_sp_m014 28
## 3128 new_sp_m014 13
## 3129 new_sp_m014 14
## 3130 new_sp_m014 20
## 3131 new_sp_m014 18
## 3132 new_sp_m014 33
## 3133 new_sp_m014 42
## 3134 new_sp_m014 35
## 3135 new_sp_m014 27
## 3136 new_sp_m014 NA
## 3137 new_sp_m014 NA
## 3138 new_sp_m014 NA
## 3139 new_sp_m014 NA
## 3140 new_sp_m014 NA
## 3141 new_sp_m014 NA
## 3142 new_sp_m014 NA
## 3143 new_sp_m014 NA
## 3144 new_sp_m014 NA
## 3145 new_sp_m014 NA
## 3146 new_sp_m014 NA
## 3147 new_sp_m014 NA
## 3148 new_sp_m014 NA
## 3149 new_sp_m014 NA
## 3150 new_sp_m014 NA
## 3151 new_sp_m014 NA
## 3152 new_sp_m014 NA
## 3153 new_sp_m014 NA
## 3154 new_sp_m014 NA
## 3155 new_sp_m014 1
## 3156 new_sp_m014 0
## 3157 new_sp_m014 0
## 3158 new_sp_m014 0
## 3159 new_sp_m014 0
## 3160 new_sp_m014 0
## 3161 new_sp_m014 1
## 3162 new_sp_m014 1
## 3163 new_sp_m014 0
## 3164 new_sp_m014 0
## 3165 new_sp_m014 2
## 3166 new_sp_m014 0
## 3167 new_sp_m014 0
## 3168 new_sp_m014 0
## 3169 new_sp_m014 1
## 3170 new_sp_m014 NA
## 3171 new_sp_m014 NA
## 3172 new_sp_m014 NA
## 3173 new_sp_m014 NA
## 3174 new_sp_m014 NA
## 3175 new_sp_m014 NA
## 3176 new_sp_m014 NA
## 3177 new_sp_m014 NA
## 3178 new_sp_m014 NA
## 3179 new_sp_m014 NA
## 3180 new_sp_m014 NA
## 3181 new_sp_m014 NA
## 3182 new_sp_m014 NA
## 3183 new_sp_m014 NA
## 3184 new_sp_m014 NA
## 3185 new_sp_m014 NA
## 3186 new_sp_m014 NA
## 3187 new_sp_m014 1
## 3188 new_sp_m014 5
## 3189 new_sp_m014 1
## 3190 new_sp_m014 3
## 3191 new_sp_m014 0
## 3192 new_sp_m014 2
## 3193 new_sp_m014 4
## 3194 new_sp_m014 2
## 3195 new_sp_m014 1
## 3196 new_sp_m014 1
## 3197 new_sp_m014 1
## 3198 new_sp_m014 1
## 3199 new_sp_m014 0
## 3200 new_sp_m014 2
## 3201 new_sp_m014 1
## 3202 new_sp_m014 0
## 3203 new_sp_m014 0
## 3204 new_sp_m014 NA
## 3205 new_sp_m014 NA
## 3206 new_sp_m014 NA
## 3207 new_sp_m014 NA
## 3208 new_sp_m014 NA
## 3209 new_sp_m014 NA
## 3210 new_sp_m014 NA
## 3211 new_sp_m014 NA
## 3212 new_sp_m014 NA
## 3213 new_sp_m014 NA
## 3214 new_sp_m014 NA
## 3215 new_sp_m014 NA
## 3216 new_sp_m014 NA
## 3217 new_sp_m014 NA
## 3218 new_sp_m014 NA
## 3219 new_sp_m014 NA
## 3220 new_sp_m014 9
## 3221 new_sp_m014 12
## 3222 new_sp_m014 14
## 3223 new_sp_m014 15
## 3224 new_sp_m014 7
## 3225 new_sp_m014 12
## 3226 new_sp_m014 4
## 3227 new_sp_m014 6
## 3228 new_sp_m014 19
## 3229 new_sp_m014 34
## 3230 new_sp_m014 8
## 3231 new_sp_m014 7
## 3232 new_sp_m014 3
## 3233 new_sp_m014 13
## 3234 new_sp_m014 4
## 3235 new_sp_m014 15
## 3236 new_sp_m014 0
## 3237 new_sp_m014 1
## 3238 new_sp_m014 NA
## 3239 new_sp_m014 NA
## 3240 new_sp_m014 NA
## 3241 new_sp_m014 NA
## 3242 new_sp_m014 NA
## 3243 new_sp_m014 NA
## 3244 new_sp_m014 NA
## 3245 new_sp_m014 NA
## 3246 new_sp_m014 NA
## 3247 new_sp_m014 NA
## 3248 new_sp_m014 NA
## 3249 new_sp_m014 NA
## 3250 new_sp_m014 NA
## 3251 new_sp_m014 NA
## 3252 new_sp_m014 NA
## 3253 new_sp_m014 NA
## 3254 new_sp_m014 2
## 3255 new_sp_m014 1
## 3256 new_sp_m014 1
## 3257 new_sp_m014 0
## 3258 new_sp_m014 2
## 3259 new_sp_m014 0
## 3260 new_sp_m014 3
## 3261 new_sp_m014 0
## 3262 new_sp_m014 1
## 3263 new_sp_m014 0
## 3264 new_sp_m014 0
## 3265 new_sp_m014 0
## 3266 new_sp_m014 NA
## 3267 new_sp_m014 3
## 3268 new_sp_m014 1
## 3269 new_sp_m014 1
## 3270 new_sp_m014 0
## 3271 new_sp_m014 1
## 3272 new_sp_m014 NA
## 3273 new_sp_m014 NA
## 3274 new_sp_m014 NA
## 3275 new_sp_m014 NA
## 3276 new_sp_m014 NA
## 3277 new_sp_m014 NA
## 3278 new_sp_m014 NA
## 3279 new_sp_m014 NA
## 3280 new_sp_m014 NA
## 3281 new_sp_m014 NA
## 3282 new_sp_m014 NA
## 3283 new_sp_m014 NA
## 3284 new_sp_m014 NA
## 3285 new_sp_m014 NA
## 3286 new_sp_m014 NA
## 3287 new_sp_m014 NA
## 3288 new_sp_m014 15
## 3289 new_sp_m014 16
## 3290 new_sp_m014 8
## 3291 new_sp_m014 2
## 3292 new_sp_m014 6
## 3293 new_sp_m014 2
## 3294 new_sp_m014 3
## 3295 new_sp_m014 2
## 3296 new_sp_m014 1
## 3297 new_sp_m014 2
## 3298 new_sp_m014 9
## 3299 new_sp_m014 3
## 3300 new_sp_m014 1
## 3301 new_sp_m014 2
## 3302 new_sp_m014 1
## 3303 new_sp_m014 1
## 3304 new_sp_m014 0
## 3305 new_sp_m014 2
## 3306 new_sp_m014 NA
## 3307 new_sp_m014 NA
## 3308 new_sp_m014 NA
## 3309 new_sp_m014 NA
## 3310 new_sp_m014 NA
## 3311 new_sp_m014 NA
## 3312 new_sp_m014 NA
## 3313 new_sp_m014 NA
## 3314 new_sp_m014 NA
## 3315 new_sp_m014 NA
## 3316 new_sp_m014 NA
## 3317 new_sp_m014 NA
## 3318 new_sp_m014 NA
## 3319 new_sp_m014 NA
## 3320 new_sp_m014 NA
## 3321 new_sp_m014 NA
## 3322 new_sp_m014 0
## 3323 new_sp_m014 2
## 3324 new_sp_m014 5
## 3325 new_sp_m014 0
## 3326 new_sp_m014 0
## 3327 new_sp_m014 0
## 3328 new_sp_m014 2
## 3329 new_sp_m014 0
## 3330 new_sp_m014 0
## 3331 new_sp_m014 0
## 3332 new_sp_m014 0
## 3333 new_sp_m014 0
## 3334 new_sp_m014 0
## 3335 new_sp_m014 0
## 3336 new_sp_m014 1
## 3337 new_sp_m014 2
## 3338 new_sp_m014 0
## 3339 new_sp_m014 0
## 3340 new_sp_m014 NA
## 3341 new_sp_m014 NA
## 3342 new_sp_m014 NA
## 3343 new_sp_m014 NA
## 3344 new_sp_m014 NA
## 3345 new_sp_m014 NA
## 3346 new_sp_m014 NA
## 3347 new_sp_m014 NA
## 3348 new_sp_m014 NA
## 3349 new_sp_m014 NA
## 3350 new_sp_m014 NA
## 3351 new_sp_m014 NA
## 3352 new_sp_m014 NA
## 3353 new_sp_m014 NA
## 3354 new_sp_m014 NA
## 3355 new_sp_m014 NA
## 3356 new_sp_m014 NA
## 3357 new_sp_m014 NA
## 3358 new_sp_m014 22
## 3359 new_sp_m014 34
## 3360 new_sp_m014 34
## 3361 new_sp_m014 36
## 3362 new_sp_m014 38
## 3363 new_sp_m014 33
## 3364 new_sp_m014 NA
## 3365 new_sp_m014 24
## 3366 new_sp_m014 31
## 3367 new_sp_m014 11
## 3368 new_sp_m014 14
## 3369 new_sp_m014 14
## 3370 new_sp_m014 6
## 3371 new_sp_m014 15
## 3372 new_sp_m014 6
## 3373 new_sp_m014 9
## 3374 new_sp_m014 NA
## 3375 new_sp_m014 NA
## 3376 new_sp_m014 NA
## 3377 new_sp_m014 NA
## 3378 new_sp_m014 NA
## 3379 new_sp_m014 NA
## 3380 new_sp_m014 NA
## 3381 new_sp_m014 NA
## 3382 new_sp_m014 NA
## 3383 new_sp_m014 NA
## 3384 new_sp_m014 NA
## 3385 new_sp_m014 NA
## 3386 new_sp_m014 NA
## 3387 new_sp_m014 NA
## 3388 new_sp_m014 NA
## 3389 new_sp_m014 NA
## 3390 new_sp_m014 154
## 3391 new_sp_m014 151
## 3392 new_sp_m014 53
## 3393 new_sp_m014 210
## 3394 new_sp_m014 237
## 3395 new_sp_m014 264
## 3396 new_sp_m014 299
## 3397 new_sp_m014 299
## 3398 new_sp_m014 341
## 3399 new_sp_m014 391
## 3400 new_sp_m014 359
## 3401 new_sp_m014 387
## 3402 new_sp_m014 474
## 3403 new_sp_m014 451
## 3404 new_sp_m014 470
## 3405 new_sp_m014 357
## 3406 new_sp_m014 356
## 3407 new_sp_m014 393
## 3408 new_sp_m014 NA
## 3409 new_sp_m014 NA
## 3410 new_sp_m014 NA
## 3411 new_sp_m014 NA
## 3412 new_sp_m014 NA
## 3413 new_sp_m014 NA
## 3414 new_sp_m014 NA
## 3415 new_sp_m014 NA
## 3416 new_sp_m014 NA
## 3417 new_sp_m014 NA
## 3418 new_sp_m014 NA
## 3419 new_sp_m014 NA
## 3420 new_sp_m014 NA
## 3421 new_sp_m014 NA
## 3422 new_sp_m014 NA
## 3423 new_sp_m014 NA
## 3424 new_sp_m014 NA
## 3425 new_sp_m014 0
## 3426 new_sp_m014 1
## 3427 new_sp_m014 1
## 3428 new_sp_m014 2
## 3429 new_sp_m014 2
## 3430 new_sp_m014 4
## 3431 new_sp_m014 5
## 3432 new_sp_m014 5
## 3433 new_sp_m014 8
## 3434 new_sp_m014 3
## 3435 new_sp_m014 3
## 3436 new_sp_m014 2
## 3437 new_sp_m014 2
## 3438 new_sp_m014 6
## 3439 new_sp_m014 3
## 3440 new_sp_m014 4
## 3441 new_sp_m014 4
## 3442 new_sp_m014 NA
## 3443 new_sp_m014 NA
## 3444 new_sp_m014 NA
## 3445 new_sp_m014 NA
## 3446 new_sp_m014 NA
## 3447 new_sp_m014 NA
## 3448 new_sp_m014 NA
## 3449 new_sp_m014 NA
## 3450 new_sp_m014 NA
## 3451 new_sp_m014 NA
## 3452 new_sp_m014 NA
## 3453 new_sp_m014 NA
## 3454 new_sp_m014 NA
## 3455 new_sp_m014 NA
## 3456 new_sp_m014 NA
## 3457 new_sp_m014 NA
## 3458 new_sp_m014 0
## 3459 new_sp_m014 0
## 3460 new_sp_m014 1
## 3461 new_sp_m014 0
## 3462 new_sp_m014 0
## 3463 new_sp_m014 0
## 3464 new_sp_m014 0
## 3465 new_sp_m014 0
## 3466 new_sp_m014 1
## 3467 new_sp_m014 0
## 3468 new_sp_m014 0
## 3469 new_sp_m014 1
## 3470 new_sp_m014 1
## 3471 new_sp_m014 0
## 3472 new_sp_m014 0
## 3473 new_sp_m014 1
## 3474 new_sp_m014 0
## 3475 new_sp_m014 0
## 3476 new_sp_m014 NA
## 3477 new_sp_m014 NA
## 3478 new_sp_m014 NA
## 3479 new_sp_m014 NA
## 3480 new_sp_m014 NA
## 3481 new_sp_m014 NA
## 3482 new_sp_m014 NA
## 3483 new_sp_m014 NA
## 3484 new_sp_m014 NA
## 3485 new_sp_m014 NA
## 3486 new_sp_m014 NA
## 3487 new_sp_m014 NA
## 3488 new_sp_m014 NA
## 3489 new_sp_m014 NA
## 3490 new_sp_m014 NA
## 3491 new_sp_m014 NA
## 3492 new_sp_m014 3
## 3493 new_sp_m014 4
## 3494 new_sp_m014 1
## 3495 new_sp_m014 4
## 3496 new_sp_m014 5
## 3497 new_sp_m014 4
## 3498 new_sp_m014 0
## 3499 new_sp_m014 0
## 3500 new_sp_m014 0
## 3501 new_sp_m014 3
## 3502 new_sp_m014 1
## 3503 new_sp_m014 3
## 3504 new_sp_m014 3
## 3505 new_sp_m014 1
## 3506 new_sp_m014 7
## 3507 new_sp_m014 5
## 3508 new_sp_m014 6
## 3509 new_sp_m014 4
## 3510 new_sp_m014 NA
## 3511 new_sp_m014 NA
## 3512 new_sp_m014 NA
## 3513 new_sp_m014 NA
## 3514 new_sp_m014 NA
## 3515 new_sp_m014 NA
## 3516 new_sp_m014 NA
## 3517 new_sp_m014 NA
## 3518 new_sp_m014 NA
## 3519 new_sp_m014 NA
## 3520 new_sp_m014 NA
## 3521 new_sp_m014 NA
## 3522 new_sp_m014 NA
## 3523 new_sp_m014 NA
## 3524 new_sp_m014 NA
## 3525 new_sp_m014 NA
## 3526 new_sp_m014 6
## 3527 new_sp_m014 1
## 3528 new_sp_m014 2
## 3529 new_sp_m014 4
## 3530 new_sp_m014 5
## 3531 new_sp_m014 7
## 3532 new_sp_m014 10
## 3533 new_sp_m014 4
## 3534 new_sp_m014 6
## 3535 new_sp_m014 14
## 3536 new_sp_m014 13
## 3537 new_sp_m014 12
## 3538 new_sp_m014 11
## 3539 new_sp_m014 6
## 3540 new_sp_m014 11
## 3541 new_sp_m014 8
## 3542 new_sp_m014 8
## 3543 new_sp_m014 10
## 3544 new_sp_m014 NA
## 3545 new_sp_m014 NA
## 3546 new_sp_m014 NA
## 3547 new_sp_m014 NA
## 3548 new_sp_m014 NA
## 3549 new_sp_m014 NA
## 3550 new_sp_m014 NA
## 3551 new_sp_m014 NA
## 3552 new_sp_m014 NA
## 3553 new_sp_m014 NA
## 3554 new_sp_m014 NA
## 3555 new_sp_m014 NA
## 3556 new_sp_m014 NA
## 3557 new_sp_m014 NA
## 3558 new_sp_m014 NA
## 3559 new_sp_m014 NA
## 3560 new_sp_m014 0
## 3561 new_sp_m014 0
## 3562 new_sp_m014 0
## 3563 new_sp_m014 0
## 3564 new_sp_m014 1
## 3565 new_sp_m014 0
## 3566 new_sp_m014 0
## 3567 new_sp_m014 0
## 3568 new_sp_m014 0
## 3569 new_sp_m014 0
## 3570 new_sp_m014 1
## 3571 new_sp_m014 2
## 3572 new_sp_m014 NA
## 3573 new_sp_m014 0
## 3574 new_sp_m014 0
## 3575 new_sp_m014 0
## 3576 new_sp_m014 0
## 3577 new_sp_m014 0
## 3578 new_sp_m014 NA
## 3579 new_sp_m014 NA
## 3580 new_sp_m014 NA
## 3581 new_sp_m014 NA
## 3582 new_sp_m014 NA
## 3583 new_sp_m014 NA
## 3584 new_sp_m014 NA
## 3585 new_sp_m014 NA
## 3586 new_sp_m014 NA
## 3587 new_sp_m014 NA
## 3588 new_sp_m014 NA
## 3589 new_sp_m014 NA
## 3590 new_sp_m014 NA
## 3591 new_sp_m014 NA
## 3592 new_sp_m014 NA
## 3593 new_sp_m014 NA
## 3594 new_sp_m014 3
## 3595 new_sp_m014 4
## 3596 new_sp_m014 1
## 3597 new_sp_m014 1
## 3598 new_sp_m014 3
## 3599 new_sp_m014 5
## 3600 new_sp_m014 0
## 3601 new_sp_m014 1
## 3602 new_sp_m014 0
## 3603 new_sp_m014 1
## 3604 new_sp_m014 0
## 3605 new_sp_m014 0
## 3606 new_sp_m014 0
## 3607 new_sp_m014 1
## 3608 new_sp_m014 1
## 3609 new_sp_m014 1
## 3610 new_sp_m014 1
## 3611 new_sp_m014 2
## 3612 new_sp_m014 NA
## 3613 new_sp_m014 NA
## 3614 new_sp_m014 NA
## 3615 new_sp_m014 NA
## 3616 new_sp_m014 NA
## 3617 new_sp_m014 NA
## 3618 new_sp_m014 NA
## 3619 new_sp_m014 NA
## 3620 new_sp_m014 NA
## 3621 new_sp_m014 NA
## 3622 new_sp_m014 NA
## 3623 new_sp_m014 NA
## 3624 new_sp_m014 NA
## 3625 new_sp_m014 NA
## 3626 new_sp_m014 NA
## 3627 new_sp_m014 NA
## 3628 new_sp_m014 9
## 3629 new_sp_m014 12
## 3630 new_sp_m014 11
## 3631 new_sp_m014 6
## 3632 new_sp_m014 NA
## 3633 new_sp_m014 8
## 3634 new_sp_m014 NA
## 3635 new_sp_m014 10
## 3636 new_sp_m014 10
## 3637 new_sp_m014 29
## 3638 new_sp_m014 32
## 3639 new_sp_m014 33
## 3640 new_sp_m014 6
## 3641 new_sp_m014 21
## 3642 new_sp_m014 26
## 3643 new_sp_m014 16
## 3644 new_sp_m014 19
## 3645 new_sp_m014 15
## 3646 new_sp_m014 NA
## 3647 new_sp_m014 NA
## 3648 new_sp_m014 NA
## 3649 new_sp_m014 NA
## 3650 new_sp_m014 NA
## 3651 new_sp_m014 NA
## 3652 new_sp_m014 NA
## 3653 new_sp_m014 NA
## 3654 new_sp_m014 NA
## 3655 new_sp_m014 NA
## 3656 new_sp_m014 NA
## 3657 new_sp_m014 NA
## 3658 new_sp_m014 NA
## 3659 new_sp_m014 NA
## 3660 new_sp_m014 NA
## 3661 new_sp_m014 NA
## 3662 new_sp_m014 NA
## 3663 new_sp_m014 38
## 3664 new_sp_m014 NA
## 3665 new_sp_m014 18
## 3666 new_sp_m014 NA
## 3667 new_sp_m014 12
## 3668 new_sp_m014 16
## 3669 new_sp_m014 20
## 3670 new_sp_m014 5
## 3671 new_sp_m014 32
## 3672 new_sp_m014 26
## 3673 new_sp_m014 59
## 3674 new_sp_m014 NA
## 3675 new_sp_m014 107
## 3676 new_sp_m014 95
## 3677 new_sp_m014 90
## 3678 new_sp_m014 67
## 3679 new_sp_m014 65
## 3680 new_sp_m014 NA
## 3681 new_sp_m014 NA
## 3682 new_sp_m014 NA
## 3683 new_sp_m014 NA
## 3684 new_sp_m014 NA
## 3685 new_sp_m014 NA
## 3686 new_sp_m014 NA
## 3687 new_sp_m014 NA
## 3688 new_sp_m014 NA
## 3689 new_sp_m014 NA
## 3690 new_sp_m014 NA
## 3691 new_sp_m014 NA
## 3692 new_sp_m014 NA
## 3693 new_sp_m014 NA
## 3694 new_sp_m014 NA
## 3695 new_sp_m014 NA
## 3696 new_sp_m014 2
## 3697 new_sp_m014 4
## 3698 new_sp_m014 NA
## 3699 new_sp_m014 NA
## 3700 new_sp_m014 2
## 3701 new_sp_m014 5
## 3702 new_sp_m014 NA
## 3703 new_sp_m014 NA
## 3704 new_sp_m014 0
## 3705 new_sp_m014 5
## 3706 new_sp_m014 2
## 3707 new_sp_m014 1
## 3708 new_sp_m014 2
## 3709 new_sp_m014 2
## 3710 new_sp_m014 4
## 3711 new_sp_m014 NA
## 3712 new_sp_m014 5
## 3713 new_sp_m014 2
## 3714 new_sp_m014 NA
## 3715 new_sp_m014 NA
## 3716 new_sp_m014 NA
## 3717 new_sp_m014 NA
## 3718 new_sp_m014 NA
## 3719 new_sp_m014 NA
## 3720 new_sp_m014 NA
## 3721 new_sp_m014 NA
## 3722 new_sp_m014 NA
## 3723 new_sp_m014 NA
## 3724 new_sp_m014 NA
## 3725 new_sp_m014 NA
## 3726 new_sp_m014 NA
## 3727 new_sp_m014 NA
## 3728 new_sp_m014 NA
## 3729 new_sp_m014 NA
## 3730 new_sp_m014 4
## 3731 new_sp_m014 2
## 3732 new_sp_m014 2
## 3733 new_sp_m014 0
## 3734 new_sp_m014 0
## 3735 new_sp_m014 1
## 3736 new_sp_m014 0
## 3737 new_sp_m014 1
## 3738 new_sp_m014 1
## 3739 new_sp_m014 0
## 3740 new_sp_m014 0
## 3741 new_sp_m014 0
## 3742 new_sp_m014 0
## 3743 new_sp_m014 0
## 3744 new_sp_m014 0
## 3745 new_sp_m014 1
## 3746 new_sp_m014 1
## 3747 new_sp_m014 0
## 3748 new_sp_m014 NA
## 3749 new_sp_m014 NA
## 3750 new_sp_m014 NA
## 3751 new_sp_m014 NA
## 3752 new_sp_m014 NA
## 3753 new_sp_m014 NA
## 3754 new_sp_m014 NA
## 3755 new_sp_m014 NA
## 3756 new_sp_m014 NA
## 3757 new_sp_m014 NA
## 3758 new_sp_m014 NA
## 3759 new_sp_m014 NA
## 3760 new_sp_m014 NA
## 3761 new_sp_m014 NA
## 3762 new_sp_m014 NA
## 3763 new_sp_m014 NA
## 3764 new_sp_m014 NA
## 3765 new_sp_m014 0
## 3766 new_sp_m014 1
## 3767 new_sp_m014 0
## 3768 new_sp_m014 NA
## 3769 new_sp_m014 NA
## 3770 new_sp_m014 0
## 3771 new_sp_m014 0
## 3772 new_sp_m014 0
## 3773 new_sp_m014 0
## 3774 new_sp_m014 0
## 3775 new_sp_m014 0
## 3776 new_sp_m014 0
## 3777 new_sp_m014 0
## 3778 new_sp_m014 0
## 3779 new_sp_m014 0
## 3780 new_sp_m014 0
## 3781 new_sp_m014 0
## 3782 new_sp_m014 NA
## 3783 new_sp_m014 NA
## 3784 new_sp_m014 NA
## 3785 new_sp_m014 NA
## 3786 new_sp_m014 NA
## 3787 new_sp_m014 NA
## 3788 new_sp_m014 NA
## 3789 new_sp_m014 NA
## 3790 new_sp_m014 NA
## 3791 new_sp_m014 NA
## 3792 new_sp_m014 NA
## 3793 new_sp_m014 NA
## 3794 new_sp_m014 NA
## 3795 new_sp_m014 NA
## 3796 new_sp_m014 NA
## 3797 new_sp_m014 NA
## 3798 new_sp_m014 79
## 3799 new_sp_m014 68
## 3800 new_sp_m014 NA
## 3801 new_sp_m014 70
## 3802 new_sp_m014 NA
## 3803 new_sp_m014 NA
## 3804 new_sp_m014 103
## 3805 new_sp_m014 94
## 3806 new_sp_m014 123
## 3807 new_sp_m014 118
## 3808 new_sp_m014 98
## 3809 new_sp_m014 117
## 3810 new_sp_m014 196
## 3811 new_sp_m014 142
## 3812 new_sp_m014 150
## 3813 new_sp_m014 204
## 3814 new_sp_m014 146
## 3815 new_sp_m014 177
## 3816 new_sp_m014 NA
## 3817 new_sp_m014 NA
## 3818 new_sp_m014 NA
## 3819 new_sp_m014 NA
## 3820 new_sp_m014 NA
## 3821 new_sp_m014 NA
## 3822 new_sp_m014 NA
## 3823 new_sp_m014 NA
## 3824 new_sp_m014 NA
## 3825 new_sp_m014 NA
## 3826 new_sp_m014 NA
## 3827 new_sp_m014 NA
## 3828 new_sp_m014 NA
## 3829 new_sp_m014 NA
## 3830 new_sp_m014 NA
## 3831 new_sp_m014 NA
## 3832 new_sp_m014 25
## 3833 new_sp_m014 27
## 3834 new_sp_m014 47
## 3835 new_sp_m014 46
## 3836 new_sp_m014 43
## 3837 new_sp_m014 50
## 3838 new_sp_m014 37
## 3839 new_sp_m014 NA
## 3840 new_sp_m014 43
## 3841 new_sp_m014 47
## 3842 new_sp_m014 58
## 3843 new_sp_m014 42
## 3844 new_sp_m014 61
## 3845 new_sp_m014 56
## 3846 new_sp_m014 53
## 3847 new_sp_m014 50
## 3848 new_sp_m014 70
## 3849 new_sp_m014 52
## 3850 new_sp_m014 NA
## 3851 new_sp_m014 NA
## 3852 new_sp_m014 NA
## 3853 new_sp_m014 NA
## 3854 new_sp_m014 NA
## 3855 new_sp_m014 NA
## 3856 new_sp_m014 NA
## 3857 new_sp_m014 NA
## 3858 new_sp_m014 NA
## 3859 new_sp_m014 NA
## 3860 new_sp_m014 NA
## 3861 new_sp_m014 NA
## 3862 new_sp_m014 NA
## 3863 new_sp_m014 NA
## 3864 new_sp_m014 NA
## 3865 new_sp_m014 NA
## 3866 new_sp_m014 59
## 3867 new_sp_m014 45
## 3868 new_sp_m014 44
## 3869 new_sp_m014 31
## 3870 new_sp_m014 27
## 3871 new_sp_m014 32
## 3872 new_sp_m014 48
## 3873 new_sp_m014 22
## 3874 new_sp_m014 216
## 3875 new_sp_m014 191
## 3876 new_sp_m014 244
## 3877 new_sp_m014 15
## 3878 new_sp_m014 216
## 3879 new_sp_m014 221
## 3880 new_sp_m014 NA
## 3881 new_sp_m014 129
## 3882 new_sp_m014 63
## 3883 new_sp_m014 74
## 3884 new_sp_m014 NA
## 3885 new_sp_m014 NA
## 3886 new_sp_m014 NA
## 3887 new_sp_m014 NA
## 3888 new_sp_m014 NA
## 3889 new_sp_m014 NA
## 3890 new_sp_m014 NA
## 3891 new_sp_m014 NA
## 3892 new_sp_m014 NA
## 3893 new_sp_m014 NA
## 3894 new_sp_m014 NA
## 3895 new_sp_m014 NA
## 3896 new_sp_m014 NA
## 3897 new_sp_m014 NA
## 3898 new_sp_m014 NA
## 3899 new_sp_m014 NA
## 3900 new_sp_m014 1
## 3901 new_sp_m014 0
## 3902 new_sp_m014 1
## 3903 new_sp_m014 1
## 3904 new_sp_m014 0
## 3905 new_sp_m014 0
## 3906 new_sp_m014 1
## 3907 new_sp_m014 0
## 3908 new_sp_m014 1
## 3909 new_sp_m014 0
## 3910 new_sp_m014 0
## 3911 new_sp_m014 0
## 3912 new_sp_m014 0
## 3913 new_sp_m014 NA
## 3914 new_sp_m014 0
## 3915 new_sp_m014 0
## 3916 new_sp_m014 0
## 3917 new_sp_m014 0
## 3918 new_sp_m014 NA
## 3919 new_sp_m014 NA
## 3920 new_sp_m014 NA
## 3921 new_sp_m014 NA
## 3922 new_sp_m014 NA
## 3923 new_sp_m014 NA
## 3924 new_sp_m014 NA
## 3925 new_sp_m014 NA
## 3926 new_sp_m014 NA
## 3927 new_sp_m014 NA
## 3928 new_sp_m014 NA
## 3929 new_sp_m014 NA
## 3930 new_sp_m014 NA
## 3931 new_sp_m014 NA
## 3932 new_sp_m014 NA
## 3933 new_sp_m014 NA
## 3934 new_sp_m014 27
## 3935 new_sp_m014 19
## 3936 new_sp_m014 16
## 3937 new_sp_m014 13
## 3938 new_sp_m014 19
## 3939 new_sp_m014 23
## 3940 new_sp_m014 NA
## 3941 new_sp_m014 20
## 3942 new_sp_m014 32
## 3943 new_sp_m014 28
## 3944 new_sp_m014 26
## 3945 new_sp_m014 28
## 3946 new_sp_m014 29
## 3947 new_sp_m014 22
## 3948 new_sp_m014 37
## 3949 new_sp_m014 94
## 3950 new_sp_m014 25
## 3951 new_sp_m014 25
## 3952 new_sp_m014 NA
## 3953 new_sp_m014 NA
## 3954 new_sp_m014 NA
## 3955 new_sp_m014 NA
## 3956 new_sp_m014 NA
## 3957 new_sp_m014 NA
## 3958 new_sp_m014 NA
## 3959 new_sp_m014 NA
## 3960 new_sp_m014 NA
## 3961 new_sp_m014 NA
## 3962 new_sp_m014 NA
## 3963 new_sp_m014 NA
## 3964 new_sp_m014 NA
## 3965 new_sp_m014 NA
## 3966 new_sp_m014 NA
## 3967 new_sp_m014 NA
## 3968 new_sp_m014 0
## 3969 new_sp_m014 0
## 3970 new_sp_m014 0
## 3971 new_sp_m014 0
## 3972 new_sp_m014 0
## 3973 new_sp_m014 0
## 3974 new_sp_m014 0
## 3975 new_sp_m014 0
## 3976 new_sp_m014 0
## 3977 new_sp_m014 0
## 3978 new_sp_m014 0
## 3979 new_sp_m014 0
## 3980 new_sp_m014 0
## 3981 new_sp_m014 0
## 3982 new_sp_m014 0
## 3983 new_sp_m014 0
## 3984 new_sp_m014 0
## 3985 new_sp_m014 1
## 3986 new_sp_m014 NA
## 3987 new_sp_m014 NA
## 3988 new_sp_m014 NA
## 3989 new_sp_m014 NA
## 3990 new_sp_m014 NA
## 3991 new_sp_m014 NA
## 3992 new_sp_m014 NA
## 3993 new_sp_m014 NA
## 3994 new_sp_m014 NA
## 3995 new_sp_m014 NA
## 3996 new_sp_m014 NA
## 3997 new_sp_m014 NA
## 3998 new_sp_m014 NA
## 3999 new_sp_m014 NA
## 4000 new_sp_m014 NA
## 4001 new_sp_m014 NA
## 4002 new_sp_m014 NA
## 4003 new_sp_m014 7
## 4004 new_sp_m014 NA
## 4005 new_sp_m014 0
## 4006 new_sp_m014 5
## 4007 new_sp_m014 3
## 4008 new_sp_m014 3
## 4009 new_sp_m014 0
## 4010 new_sp_m014 6
## 4011 new_sp_m014 2
## 4012 new_sp_m014 2
## 4013 new_sp_m014 NA
## 4014 new_sp_m014 0
## 4015 new_sp_m014 1
## 4016 new_sp_m014 1
## 4017 new_sp_m014 0
## 4018 new_sp_m014 1
## 4019 new_sp_m014 0
## 4020 new_sp_m014 NA
## 4021 new_sp_m014 NA
## 4022 new_sp_m014 NA
## 4023 new_sp_m014 NA
## 4024 new_sp_m014 NA
## 4025 new_sp_m014 NA
## 4026 new_sp_m014 NA
## 4027 new_sp_m014 NA
## 4028 new_sp_m014 NA
## 4029 new_sp_m014 NA
## 4030 new_sp_m014 NA
## 4031 new_sp_m014 NA
## 4032 new_sp_m014 NA
## 4033 new_sp_m014 NA
## 4034 new_sp_m014 NA
## 4035 new_sp_m014 NA
## 4036 new_sp_m014 NA
## 4037 new_sp_m014 NA
## 4038 new_sp_m014 188
## 4039 new_sp_m014 NA
## 4040 new_sp_m014 15
## 4041 new_sp_m014 NA
## 4042 new_sp_m014 NA
## 4043 new_sp_m014 NA
## 4044 new_sp_m014 NA
## 4045 new_sp_m014 15
## 4046 new_sp_m014 NA
## 4047 new_sp_m014 12
## 4048 new_sp_m014 14
## 4049 new_sp_m014 10
## 4050 new_sp_m014 25
## 4051 new_sp_m014 17
## 4052 new_sp_m014 36
## 4053 new_sp_m014 22
## 4054 new_sp_m014 NA
## 4055 new_sp_m014 NA
## 4056 new_sp_m014 NA
## 4057 new_sp_m014 NA
## 4058 new_sp_m014 NA
## 4059 new_sp_m014 NA
## 4060 new_sp_m014 NA
## 4061 new_sp_m014 NA
## 4062 new_sp_m014 NA
## 4063 new_sp_m014 NA
## 4064 new_sp_m014 NA
## 4065 new_sp_m014 NA
## 4066 new_sp_m014 NA
## 4067 new_sp_m014 NA
## 4068 new_sp_m014 NA
## 4069 new_sp_m014 NA
## 4070 new_sp_m014 2
## 4071 new_sp_m014 NA
## 4072 new_sp_m014 NA
## 4073 new_sp_m014 1
## 4074 new_sp_m014 0
## 4075 new_sp_m014 2
## 4076 new_sp_m014 NA
## 4077 new_sp_m014 1
## 4078 new_sp_m014 0
## 4079 new_sp_m014 1
## 4080 new_sp_m014 NA
## 4081 new_sp_m014 0
## 4082 new_sp_m014 0
## 4083 new_sp_m014 0
## 4084 new_sp_m014 0
## 4085 new_sp_m014 0
## 4086 new_sp_m014 0
## 4087 new_sp_m014 2
## 4088 new_sp_m014 NA
## 4089 new_sp_m014 NA
## 4090 new_sp_m014 NA
## 4091 new_sp_m014 NA
## 4092 new_sp_m014 NA
## 4093 new_sp_m014 NA
## 4094 new_sp_m014 NA
## 4095 new_sp_m014 NA
## 4096 new_sp_m014 NA
## 4097 new_sp_m014 NA
## 4098 new_sp_m014 NA
## 4099 new_sp_m014 NA
## 4100 new_sp_m014 NA
## 4101 new_sp_m014 NA
## 4102 new_sp_m014 NA
## 4103 new_sp_m014 NA
## 4104 new_sp_m014 NA
## 4105 new_sp_m014 198
## 4106 new_sp_m014 NA
## 4107 new_sp_m014 229
## 4108 new_sp_m014 143
## 4109 new_sp_m014 214
## 4110 new_sp_m014 130
## 4111 new_sp_m014 154
## 4112 new_sp_m014 187
## 4113 new_sp_m014 86
## 4114 new_sp_m014 100
## 4115 new_sp_m014 129
## 4116 new_sp_m014 145
## 4117 new_sp_m014 124
## 4118 new_sp_m014 103
## 4119 new_sp_m014 125
## 4120 new_sp_m014 128
## 4121 new_sp_m014 133
## 4122 new_sp_m014 NA
## 4123 new_sp_m014 NA
## 4124 new_sp_m014 NA
## 4125 new_sp_m014 NA
## 4126 new_sp_m014 NA
## 4127 new_sp_m014 NA
## 4128 new_sp_m014 NA
## 4129 new_sp_m014 NA
## 4130 new_sp_m014 NA
## 4131 new_sp_m014 NA
## 4132 new_sp_m014 NA
## 4133 new_sp_m014 NA
## 4134 new_sp_m014 NA
## 4135 new_sp_m014 NA
## 4136 new_sp_m014 NA
## 4137 new_sp_m014 NA
## 4138 new_sp_m014 0
## 4139 new_sp_m014 0
## 4140 new_sp_m014 0
## 4141 new_sp_m014 4
## 4142 new_sp_m014 NA
## 4143 new_sp_m014 0
## 4144 new_sp_m014 0
## 4145 new_sp_m014 2
## 4146 new_sp_m014 0
## 4147 new_sp_m014 0
## 4148 new_sp_m014 NA
## 4149 new_sp_m014 14
## 4150 new_sp_m014 1
## 4151 new_sp_m014 1
## 4152 new_sp_m014 5
## 4153 new_sp_m014 3
## 4154 new_sp_m014 4
## 4155 new_sp_m014 3
## 4156 new_sp_m014 NA
## 4157 new_sp_m014 NA
## 4158 new_sp_m014 NA
## 4159 new_sp_m014 NA
## 4160 new_sp_m014 NA
## 4161 new_sp_m014 NA
## 4162 new_sp_m014 NA
## 4163 new_sp_m014 NA
## 4164 new_sp_m014 NA
## 4165 new_sp_m014 NA
## 4166 new_sp_m014 NA
## 4167 new_sp_m014 NA
## 4168 new_sp_m014 NA
## 4169 new_sp_m014 NA
## 4170 new_sp_m014 NA
## 4171 new_sp_m014 NA
## 4172 new_sp_m014 NA
## 4173 new_sp_m014 NA
## 4174 new_sp_m014 NA
## 4175 new_sp_m014 NA
## 4176 new_sp_m014 0
## 4177 new_sp_m014 NA
## 4178 new_sp_m014 NA
## 4179 new_sp_m014 NA
## 4180 new_sp_m014 NA
## 4181 new_sp_m014 NA
## 4182 new_sp_m014 NA
## 4183 new_sp_m014 NA
## 4184 new_sp_m014 NA
## 4185 new_sp_m014 NA
## 4186 new_sp_m014 NA
## 4187 new_sp_m014 NA
## 4188 new_sp_m014 NA
## 4189 new_sp_m014 NA
## 4190 new_sp_m014 NA
## 4191 new_sp_m014 NA
## 4192 new_sp_m014 NA
## 4193 new_sp_m014 NA
## 4194 new_sp_m014 NA
## 4195 new_sp_m014 NA
## 4196 new_sp_m014 NA
## 4197 new_sp_m014 NA
## 4198 new_sp_m014 NA
## 4199 new_sp_m014 NA
## 4200 new_sp_m014 NA
## 4201 new_sp_m014 NA
## 4202 new_sp_m014 NA
## 4203 new_sp_m014 NA
## 4204 new_sp_m014 NA
## 4205 new_sp_m014 1
## 4206 new_sp_m014 37
## 4207 new_sp_m014 8
## 4208 new_sp_m014 6
## 4209 new_sp_m014 17
## 4210 new_sp_m014 12
## 4211 new_sp_m014 6
## 4212 new_sp_m014 13
## 4213 new_sp_m014 9
## 4214 new_sp_m014 10
## 4215 new_sp_m014 6
## 4216 new_sp_m014 7
## 4217 new_sp_m014 7
## 4218 new_sp_m014 4
## 4219 new_sp_m014 7
## 4220 new_sp_m014 2
## 4221 new_sp_m014 3
## 4222 new_sp_m014 2
## 4223 new_sp_m014 7
## 4224 new_sp_m014 NA
## 4225 new_sp_m014 0
## 4226 new_sp_m014 0
## 4227 new_sp_m014 0
## 4228 new_sp_m014 0
## 4229 new_sp_m014 0
## 4230 new_sp_m014 0
## 4231 new_sp_m014 0
## 4232 new_sp_m014 0
## 4233 new_sp_m014 NA
## 4234 new_sp_m014 NA
## 4235 new_sp_m014 NA
## 4236 new_sp_m014 NA
## 4237 new_sp_m014 NA
## 4238 new_sp_m014 NA
## 4239 new_sp_m014 NA
## 4240 new_sp_m014 NA
## 4241 new_sp_m014 NA
## 4242 new_sp_m014 NA
## 4243 new_sp_m014 NA
## 4244 new_sp_m014 NA
## 4245 new_sp_m014 NA
## 4246 new_sp_m014 NA
## 4247 new_sp_m014 NA
## 4248 new_sp_m014 NA
## 4249 new_sp_m014 NA
## 4250 new_sp_m014 NA
## 4251 new_sp_m014 NA
## 4252 new_sp_m014 NA
## 4253 new_sp_m014 NA
## 4254 new_sp_m014 NA
## 4255 new_sp_m014 NA
## 4256 new_sp_m014 NA
## 4257 new_sp_m014 0
## 4258 new_sp_m014 0
## 4259 new_sp_m014 NA
## 4260 new_sp_m014 NA
## 4261 new_sp_m014 NA
## 4262 new_sp_m014 NA
## 4263 new_sp_m014 NA
## 4264 new_sp_m014 0
## 4265 new_sp_m014 0
## 4266 new_sp_m014 0
## 4267 new_sp_m014 NA
## 4268 new_sp_m014 NA
## 4269 new_sp_m014 NA
## 4270 new_sp_m014 NA
## 4271 new_sp_m014 NA
## 4272 new_sp_m014 NA
## 4273 new_sp_m014 NA
## 4274 new_sp_m014 NA
## 4275 new_sp_m014 NA
## 4276 new_sp_m014 NA
## 4277 new_sp_m014 NA
## 4278 new_sp_m014 NA
## 4279 new_sp_m014 NA
## 4280 new_sp_m014 NA
## 4281 new_sp_m014 NA
## 4282 new_sp_m014 NA
## 4283 new_sp_m014 142
## 4284 new_sp_m014 118
## 4285 new_sp_m014 119
## 4286 new_sp_m014 116
## 4287 new_sp_m014 78
## 4288 new_sp_m014 99
## 4289 new_sp_m014 85
## 4290 new_sp_m014 79
## 4291 new_sp_m014 91
## 4292 new_sp_m014 68
## 4293 new_sp_m014 79
## 4294 new_sp_m014 73
## 4295 new_sp_m014 74
## 4296 new_sp_m014 51
## 4297 new_sp_m014 63
## 4298 new_sp_m014 51
## 4299 new_sp_m014 79
## 4300 new_sp_m014 54
## 4301 new_sp_m014 NA
## 4302 new_sp_m014 NA
## 4303 new_sp_m014 NA
## 4304 new_sp_m014 NA
## 4305 new_sp_m014 NA
## 4306 new_sp_m014 NA
## 4307 new_sp_m014 NA
## 4308 new_sp_m014 NA
## 4309 new_sp_m014 NA
## 4310 new_sp_m014 NA
## 4311 new_sp_m014 NA
## 4312 new_sp_m014 NA
## 4313 new_sp_m014 NA
## 4314 new_sp_m014 NA
## 4315 new_sp_m014 NA
## 4316 new_sp_m014 NA
## 4317 new_sp_m014 187
## 4318 new_sp_m014 141
## 4319 new_sp_m014 163
## 4320 new_sp_m014 NA
## 4321 new_sp_m014 NA
## 4322 new_sp_m014 NA
## 4323 new_sp_m014 NA
## 4324 new_sp_m014 NA
## 4325 new_sp_m014 NA
## 4326 new_sp_m014 NA
## 4327 new_sp_m014 NA
## 4328 new_sp_m014 NA
## 4329 new_sp_m014 NA
## 4330 new_sp_m014 NA
## 4331 new_sp_m014 NA
## 4332 new_sp_m014 NA
## 4333 new_sp_m014 NA
## 4334 new_sp_m014 NA
## 4335 new_sp_m014 NA
## 4336 new_sp_m014 NA
## 4337 new_sp_m014 NA
## 4338 new_sp_m014 NA
## 4339 new_sp_m014 NA
## 4340 new_sp_m014 NA
## 4341 new_sp_m014 NA
## 4342 new_sp_m014 NA
## 4343 new_sp_m014 NA
## 4344 new_sp_m014 NA
## 4345 new_sp_m014 NA
## 4346 new_sp_m014 NA
## 4347 new_sp_m014 NA
## 4348 new_sp_m014 NA
## 4349 new_sp_m014 NA
## 4350 new_sp_m014 NA
## 4351 new_sp_m014 42
## 4352 new_sp_m014 58
## 4353 new_sp_m014 56
## 4354 new_sp_m014 64
## 4355 new_sp_m014 37
## 4356 new_sp_m014 88
## 4357 new_sp_m014 69
## 4358 new_sp_m014 64
## 4359 new_sp_m014 107
## 4360 new_sp_m014 96
## 4361 new_sp_m014 132
## 4362 new_sp_m014 113
## 4363 new_sp_m014 127
## 4364 new_sp_m014 118
## 4365 new_sp_m014 127
## 4366 new_sp_m014 106
## 4367 new_sp_m014 120
## 4368 new_sp_m014 146
## 4369 new_sp_m014 NA
## 4370 new_sp_m014 NA
## 4371 new_sp_m014 NA
## 4372 new_sp_m014 NA
## 4373 new_sp_m014 NA
## 4374 new_sp_m014 NA
## 4375 new_sp_m014 NA
## 4376 new_sp_m014 NA
## 4377 new_sp_m014 NA
## 4378 new_sp_m014 NA
## 4379 new_sp_m014 NA
## 4380 new_sp_m014 NA
## 4381 new_sp_m014 NA
## 4382 new_sp_m014 NA
## 4383 new_sp_m014 NA
## 4384 new_sp_m014 NA
## 4385 new_sp_m014 0
## 4386 new_sp_m014 16
## 4387 new_sp_m014 18
## 4388 new_sp_m014 21
## 4389 new_sp_m014 20
## 4390 new_sp_m014 18
## 4391 new_sp_m014 20
## 4392 new_sp_m014 19
## 4393 new_sp_m014 31
## 4394 new_sp_m014 31
## 4395 new_sp_m014 98
## 4396 new_sp_m014 86
## 4397 new_sp_m014 57
## 4398 new_sp_m014 30
## 4399 new_sp_m014 41
## 4400 new_sp_m014 36
## 4401 new_sp_m014 48
## 4402 new_sp_m014 61
## 4403 new_sp_m014 NA
## 4404 new_sp_m014 NA
## 4405 new_sp_m014 NA
## 4406 new_sp_m014 NA
## 4407 new_sp_m014 NA
## 4408 new_sp_m014 NA
## 4409 new_sp_m014 NA
## 4410 new_sp_m014 NA
## 4411 new_sp_m014 NA
## 4412 new_sp_m014 NA
## 4413 new_sp_m014 NA
## 4414 new_sp_m014 NA
## 4415 new_sp_m014 NA
## 4416 new_sp_m014 NA
## 4417 new_sp_m014 NA
## 4418 new_sp_m014 NA
## 4419 new_sp_m014 NA
## 4420 new_sp_m014 NA
## 4421 new_sp_m014 NA
## 4422 new_sp_m014 NA
## 4423 new_sp_m014 0
## 4424 new_sp_m014 NA
## 4425 new_sp_m014 NA
## 4426 new_sp_m014 NA
## 4427 new_sp_m014 0
## 4428 new_sp_m014 NA
## 4429 new_sp_m014 NA
## 4430 new_sp_m014 0
## 4431 new_sp_m014 1
## 4432 new_sp_m014 0
## 4433 new_sp_m014 0
## 4434 new_sp_m014 0
## 4435 new_sp_m014 0
## 4436 new_sp_m014 NA
## 4437 new_sp_m014 NA
## 4438 new_sp_m014 NA
## 4439 new_sp_m014 NA
## 4440 new_sp_m014 NA
## 4441 new_sp_m014 NA
## 4442 new_sp_m014 NA
## 4443 new_sp_m014 NA
## 4444 new_sp_m014 NA
## 4445 new_sp_m014 NA
## 4446 new_sp_m014 NA
## 4447 new_sp_m014 NA
## 4448 new_sp_m014 NA
## 4449 new_sp_m014 NA
## 4450 new_sp_m014 NA
## 4451 new_sp_m014 NA
## 4452 new_sp_m014 NA
## 4453 new_sp_m014 NA
## 4454 new_sp_m014 91
## 4455 new_sp_m014 NA
## 4456 new_sp_m014 133
## 4457 new_sp_m014 150
## 4458 new_sp_m014 170
## 4459 new_sp_m014 155
## 4460 new_sp_m014 129
## 4461 new_sp_m014 122
## 4462 new_sp_m014 121
## 4463 new_sp_m014 148
## 4464 new_sp_m014 125
## 4465 new_sp_m014 150
## 4466 new_sp_m014 81
## 4467 new_sp_m014 149
## 4468 new_sp_m014 165
## 4469 new_sp_m014 245
## 4470 new_sp_m014 250
## 4471 new_sp_m014 NA
## 4472 new_sp_m014 NA
## 4473 new_sp_m014 NA
## 4474 new_sp_m014 NA
## 4475 new_sp_m014 NA
## 4476 new_sp_m014 NA
## 4477 new_sp_m014 NA
## 4478 new_sp_m014 NA
## 4479 new_sp_m014 NA
## 4480 new_sp_m014 NA
## 4481 new_sp_m014 NA
## 4482 new_sp_m014 NA
## 4483 new_sp_m014 NA
## 4484 new_sp_m014 NA
## 4485 new_sp_m014 NA
## 4486 new_sp_m014 NA
## 4487 new_sp_m014 22
## 4488 new_sp_m014 8
## 4489 new_sp_m014 3
## 4490 new_sp_m014 2
## 4491 new_sp_m014 5
## 4492 new_sp_m014 0
## 4493 new_sp_m014 1
## 4494 new_sp_m014 1
## 4495 new_sp_m014 2
## 4496 new_sp_m014 6
## 4497 new_sp_m014 0
## 4498 new_sp_m014 0
## 4499 new_sp_m014 1
## 4500 new_sp_m014 0
## 4501 new_sp_m014 1
## 4502 new_sp_m014 0
## 4503 new_sp_m014 2
## 4504 new_sp_m014 1
## 4505 new_sp_m014 NA
## 4506 new_sp_m014 NA
## 4507 new_sp_m014 NA
## 4508 new_sp_m014 NA
## 4509 new_sp_m014 NA
## 4510 new_sp_m014 NA
## 4511 new_sp_m014 NA
## 4512 new_sp_m014 NA
## 4513 new_sp_m014 NA
## 4514 new_sp_m014 NA
## 4515 new_sp_m014 NA
## 4516 new_sp_m014 NA
## 4517 new_sp_m014 NA
## 4518 new_sp_m014 NA
## 4519 new_sp_m014 NA
## 4520 new_sp_m014 NA
## 4521 new_sp_m014 NA
## 4522 new_sp_m014 0
## 4523 new_sp_m014 0
## 4524 new_sp_m014 0
## 4525 new_sp_m014 0
## 4526 new_sp_m014 0
## 4527 new_sp_m014 0
## 4528 new_sp_m014 0
## 4529 new_sp_m014 0
## 4530 new_sp_m014 1
## 4531 new_sp_m014 NA
## 4532 new_sp_m014 0
## 4533 new_sp_m014 NA
## 4534 new_sp_m014 NA
## 4535 new_sp_m014 NA
## 4536 new_sp_m014 NA
## 4537 new_sp_m014 NA
## 4538 new_sp_m014 NA
## 4539 new_sp_m014 NA
## 4540 new_sp_m014 NA
## 4541 new_sp_m014 NA
## 4542 new_sp_m014 NA
## 4543 new_sp_m014 NA
## 4544 new_sp_m014 NA
## 4545 new_sp_m014 NA
## 4546 new_sp_m014 NA
## 4547 new_sp_m014 NA
## 4548 new_sp_m014 NA
## 4549 new_sp_m014 NA
## 4550 new_sp_m014 NA
## 4551 new_sp_m014 3
## 4552 new_sp_m014 1
## 4553 new_sp_m014 NA
## 4554 new_sp_m014 NA
## 4555 new_sp_m014 0
## 4556 new_sp_m014 1
## 4557 new_sp_m014 0
## 4558 new_sp_m014 0
## 4559 new_sp_m014 0
## 4560 new_sp_m014 0
## 4561 new_sp_m014 0
## 4562 new_sp_m014 0
## 4563 new_sp_m014 0
## 4564 new_sp_m014 0
## 4565 new_sp_m014 0
## 4566 new_sp_m014 0
## 4567 new_sp_m014 0
## 4568 new_sp_m014 NA
## 4569 new_sp_m014 NA
## 4570 new_sp_m014 NA
## 4571 new_sp_m014 NA
## 4572 new_sp_m014 NA
## 4573 new_sp_m014 NA
## 4574 new_sp_m014 NA
## 4575 new_sp_m014 NA
## 4576 new_sp_m014 NA
## 4577 new_sp_m014 NA
## 4578 new_sp_m014 NA
## 4579 new_sp_m014 NA
## 4580 new_sp_m014 NA
## 4581 new_sp_m014 NA
## 4582 new_sp_m014 NA
## 4583 new_sp_m014 NA
## 4584 new_sp_m014 NA
## 4585 new_sp_m014 0
## 4586 new_sp_m014 2
## 4587 new_sp_m014 0
## 4588 new_sp_m014 1
## 4589 new_sp_m014 1
## 4590 new_sp_m014 0
## 4591 new_sp_m014 1
## 4592 new_sp_m014 0
## 4593 new_sp_m014 5
## 4594 new_sp_m014 3
## 4595 new_sp_m014 4
## 4596 new_sp_m014 5
## 4597 new_sp_m014 0
## 4598 new_sp_m014 0
## 4599 new_sp_m014 1
## 4600 new_sp_m014 0
## 4601 new_sp_m014 1
## 4602 new_sp_m014 0
## 4603 new_sp_m014 NA
## 4604 new_sp_m014 NA
## 4605 new_sp_m014 NA
## 4606 new_sp_m014 NA
## 4607 new_sp_m014 NA
## 4608 new_sp_m014 NA
## 4609 new_sp_m014 NA
## 4610 new_sp_m014 NA
## 4611 new_sp_m014 NA
## 4612 new_sp_m014 NA
## 4613 new_sp_m014 NA
## 4614 new_sp_m014 NA
## 4615 new_sp_m014 NA
## 4616 new_sp_m014 NA
## 4617 new_sp_m014 NA
## 4618 new_sp_m014 NA
## 4619 new_sp_m014 23
## 4620 new_sp_m014 27
## 4621 new_sp_m014 18
## 4622 new_sp_m014 24
## 4623 new_sp_m014 26
## 4624 new_sp_m014 18
## 4625 new_sp_m014 24
## 4626 new_sp_m014 22
## 4627 new_sp_m014 14
## 4628 new_sp_m014 24
## 4629 new_sp_m014 17
## 4630 new_sp_m014 15
## 4631 new_sp_m014 16
## 4632 new_sp_m014 20
## 4633 new_sp_m014 NA
## 4634 new_sp_m014 22
## 4635 new_sp_m014 10
## 4636 new_sp_m014 0
## 4637 new_sp_m014 NA
## 4638 new_sp_m014 NA
## 4639 new_sp_m014 NA
## 4640 new_sp_m014 NA
## 4641 new_sp_m014 NA
## 4642 new_sp_m014 NA
## 4643 new_sp_m014 NA
## 4644 new_sp_m014 NA
## 4645 new_sp_m014 NA
## 4646 new_sp_m014 NA
## 4647 new_sp_m014 NA
## 4648 new_sp_m014 NA
## 4649 new_sp_m014 NA
## 4650 new_sp_m014 NA
## 4651 new_sp_m014 NA
## 4652 new_sp_m014 NA
## 4653 new_sp_m014 NA
## 4654 new_sp_m014 NA
## 4655 new_sp_m014 4
## 4656 new_sp_m014 4
## 4657 new_sp_m014 NA
## 4658 new_sp_m014 29
## 4659 new_sp_m014 NA
## 4660 new_sp_m014 NA
## 4661 new_sp_m014 41
## 4662 new_sp_m014 NA
## 4663 new_sp_m014 35
## 4664 new_sp_m014 25
## 4665 new_sp_m014 40
## 4666 new_sp_m014 35
## 4667 new_sp_m014 52
## 4668 new_sp_m014 44
## 4669 new_sp_m014 50
## 4670 new_sp_m014 40
## 4671 new_sp_m014 NA
## 4672 new_sp_m014 NA
## 4673 new_sp_m014 NA
## 4674 new_sp_m014 NA
## 4675 new_sp_m014 NA
## 4676 new_sp_m014 NA
## 4677 new_sp_m014 NA
## 4678 new_sp_m014 NA
## 4679 new_sp_m014 NA
## 4680 new_sp_m014 NA
## 4681 new_sp_m014 NA
## 4682 new_sp_m014 NA
## 4683 new_sp_m014 NA
## 4684 new_sp_m014 NA
## 4685 new_sp_m014 NA
## 4686 new_sp_m014 NA
## 4687 new_sp_m014 450
## 4688 new_sp_m014 234
## 4689 new_sp_m014 116
## 4690 new_sp_m014 125
## 4691 new_sp_m014 NA
## 4692 new_sp_m014 157
## 4693 new_sp_m014 164
## 4694 new_sp_m014 163
## 4695 new_sp_m014 267
## 4696 new_sp_m014 408
## 4697 new_sp_m014 325
## 4698 new_sp_m014 247
## 4699 new_sp_m014 503
## 4700 new_sp_m014 579
## 4701 new_sp_m014 711
## 4702 new_sp_m014 521
## 4703 new_sp_m014 529
## 4704 new_sp_m014 538
## 4705 new_sp_m014 NA
## 4706 new_sp_m014 NA
## 4707 new_sp_m014 NA
## 4708 new_sp_m014 NA
## 4709 new_sp_m014 NA
## 4710 new_sp_m014 NA
## 4711 new_sp_m014 NA
## 4712 new_sp_m014 NA
## 4713 new_sp_m014 NA
## 4714 new_sp_m014 NA
## 4715 new_sp_m014 NA
## 4716 new_sp_m014 NA
## 4717 new_sp_m014 NA
## 4718 new_sp_m014 NA
## 4719 new_sp_m014 NA
## 4720 new_sp_m014 NA
## 4721 new_sp_m014 NA
## 4722 new_sp_m014 NA
## 4723 new_sp_m014 NA
## 4724 new_sp_m014 NA
## 4725 new_sp_m014 NA
## 4726 new_sp_m014 NA
## 4727 new_sp_m014 NA
## 4728 new_sp_m014 NA
## 4729 new_sp_m014 NA
## 4730 new_sp_m014 0
## 4731 new_sp_m014 0
## 4732 new_sp_m014 0
## 4733 new_sp_m014 0
## 4734 new_sp_m014 0
## 4735 new_sp_m014 NA
## 4736 new_sp_m014 NA
## 4737 new_sp_m014 NA
## 4738 new_sp_m014 0
## 4739 new_sp_m014 NA
## 4740 new_sp_m014 NA
## 4741 new_sp_m014 NA
## 4742 new_sp_m014 NA
## 4743 new_sp_m014 NA
## 4744 new_sp_m014 NA
## 4745 new_sp_m014 NA
## 4746 new_sp_m014 NA
## 4747 new_sp_m014 NA
## 4748 new_sp_m014 NA
## 4749 new_sp_m014 NA
## 4750 new_sp_m014 NA
## 4751 new_sp_m014 NA
## 4752 new_sp_m014 NA
## 4753 new_sp_m014 NA
## 4754 new_sp_m014 NA
## 4755 new_sp_m014 1
## 4756 new_sp_m014 0
## 4757 new_sp_m014 NA
## 4758 new_sp_m014 0
## 4759 new_sp_m014 NA
## 4760 new_sp_m014 1
## 4761 new_sp_m014 0
## 4762 new_sp_m014 1
## 4763 new_sp_m014 0
## 4764 new_sp_m014 0
## 4765 new_sp_m014 0
## 4766 new_sp_m014 0
## 4767 new_sp_m014 0
## 4768 new_sp_m014 0
## 4769 new_sp_m014 0
## 4770 new_sp_m014 0
## 4771 new_sp_m014 0
## 4772 new_sp_m014 0
## 4773 new_sp_m014 NA
## 4774 new_sp_m014 NA
## 4775 new_sp_m014 NA
## 4776 new_sp_m014 NA
## 4777 new_sp_m014 NA
## 4778 new_sp_m014 NA
## 4779 new_sp_m014 NA
## 4780 new_sp_m014 NA
## 4781 new_sp_m014 NA
## 4782 new_sp_m014 NA
## 4783 new_sp_m014 NA
## 4784 new_sp_m014 NA
## 4785 new_sp_m014 NA
## 4786 new_sp_m014 NA
## 4787 new_sp_m014 NA
## 4788 new_sp_m014 NA
## 4789 new_sp_m014 0
## 4790 new_sp_m014 3
## 4791 new_sp_m014 3
## 4792 new_sp_m014 0
## 4793 new_sp_m014 0
## 4794 new_sp_m014 0
## 4795 new_sp_m014 0
## 4796 new_sp_m014 0
## 4797 new_sp_m014 0
## 4798 new_sp_m014 1
## 4799 new_sp_m014 0
## 4800 new_sp_m014 0
## 4801 new_sp_m014 NA
## 4802 new_sp_m014 1
## 4803 new_sp_m014 0
## 4804 new_sp_m014 0
## 4805 new_sp_m014 0
## 4806 new_sp_m014 1
## 4807 new_sp_m014 NA
## 4808 new_sp_m014 NA
## 4809 new_sp_m014 NA
## 4810 new_sp_m014 NA
## 4811 new_sp_m014 NA
## 4812 new_sp_m014 NA
## 4813 new_sp_m014 NA
## 4814 new_sp_m014 NA
## 4815 new_sp_m014 NA
## 4816 new_sp_m014 NA
## 4817 new_sp_m014 NA
## 4818 new_sp_m014 NA
## 4819 new_sp_m014 NA
## 4820 new_sp_m014 NA
## 4821 new_sp_m014 NA
## 4822 new_sp_m014 NA
## 4823 new_sp_m014 1
## 4824 new_sp_m014 0
## 4825 new_sp_m014 0
## 4826 new_sp_m014 0
## 4827 new_sp_m014 2
## 4828 new_sp_m014 1
## 4829 new_sp_m014 1
## 4830 new_sp_m014 7
## 4831 new_sp_m014 5
## 4832 new_sp_m014 1
## 4833 new_sp_m014 1
## 4834 new_sp_m014 6
## 4835 new_sp_m014 0
## 4836 new_sp_m014 0
## 4837 new_sp_m014 0
## 4838 new_sp_m014 2
## 4839 new_sp_m014 1
## 4840 new_sp_m014 0
## 4841 new_sp_m014 NA
## 4842 new_sp_m014 NA
## 4843 new_sp_m014 NA
## 4844 new_sp_m014 NA
## 4845 new_sp_m014 NA
## 4846 new_sp_m014 NA
## 4847 new_sp_m014 NA
## 4848 new_sp_m014 NA
## 4849 new_sp_m014 NA
## 4850 new_sp_m014 NA
## 4851 new_sp_m014 NA
## 4852 new_sp_m014 NA
## 4853 new_sp_m014 NA
## 4854 new_sp_m014 NA
## 4855 new_sp_m014 NA
## 4856 new_sp_m014 NA
## 4857 new_sp_m014 29
## 4858 new_sp_m014 NA
## 4859 new_sp_m014 NA
## 4860 new_sp_m014 59
## 4861 new_sp_m014 49
## 4862 new_sp_m014 55
## 4863 new_sp_m014 139
## 4864 new_sp_m014 225
## 4865 new_sp_m014 284
## 4866 new_sp_m014 363
## 4867 new_sp_m014 621
## 4868 new_sp_m014 820
## 4869 new_sp_m014 1017
## 4870 new_sp_m014 1213
## 4871 new_sp_m014 1052
## 4872 new_sp_m014 1548
## 4873 new_sp_m014 1216
## 4874 new_sp_m014 1317
## 4875 new_sp_m014 NA
## 4876 new_sp_m014 NA
## 4877 new_sp_m014 NA
## 4878 new_sp_m014 NA
## 4879 new_sp_m014 NA
## 4880 new_sp_m014 NA
## 4881 new_sp_m014 NA
## 4882 new_sp_m014 NA
## 4883 new_sp_m014 NA
## 4884 new_sp_m014 NA
## 4885 new_sp_m014 NA
## 4886 new_sp_m014 NA
## 4887 new_sp_m014 NA
## 4888 new_sp_m014 NA
## 4889 new_sp_m014 NA
## 4890 new_sp_m014 NA
## 4891 new_sp_m014 0
## 4892 new_sp_m014 0
## 4893 new_sp_m014 0
## 4894 new_sp_m014 NA
## 4895 new_sp_m014 0
## 4896 new_sp_m014 NA
## 4897 new_sp_m014 NA
## 4898 new_sp_m014 1
## 4899 new_sp_m014 0
## 4900 new_sp_m014 NA
## 4901 new_sp_m014 NA
## 4902 new_sp_m014 1
## 4903 new_sp_m014 0
## 4904 new_sp_m014 NA
## 4905 new_sp_m014 0
## 4906 new_sp_m014 0
## 4907 new_sp_m014 0
## 4908 new_sp_m014 0
## 4909 new_sp_m014 NA
## 4910 new_sp_m014 NA
## 4911 new_sp_m014 NA
## 4912 new_sp_m014 NA
## 4913 new_sp_m014 NA
## 4914 new_sp_m014 NA
## 4915 new_sp_m014 NA
## 4916 new_sp_m014 NA
## 4917 new_sp_m014 NA
## 4918 new_sp_m014 NA
## 4919 new_sp_m014 NA
## 4920 new_sp_m014 NA
## 4921 new_sp_m014 NA
## 4922 new_sp_m014 NA
## 4923 new_sp_m014 NA
## 4924 new_sp_m014 NA
## 4925 new_sp_m014 86
## 4926 new_sp_m014 52
## 4927 new_sp_m014 41
## 4928 new_sp_m014 2
## 4929 new_sp_m014 38
## 4930 new_sp_m014 3
## 4931 new_sp_m014 7
## 4932 new_sp_m014 7
## 4933 new_sp_m014 10
## 4934 new_sp_m014 16
## 4935 new_sp_m014 5
## 4936 new_sp_m014 7
## 4937 new_sp_m014 7
## 4938 new_sp_m014 9
## 4939 new_sp_m014 10
## 4940 new_sp_m014 6
## 4941 new_sp_m014 10
## 4942 new_sp_m014 19
## 4943 new_sp_m014 NA
## 4944 new_sp_m014 NA
## 4945 new_sp_m014 NA
## 4946 new_sp_m014 NA
## 4947 new_sp_m014 NA
## 4948 new_sp_m014 NA
## 4949 new_sp_m014 NA
## 4950 new_sp_m014 NA
## 4951 new_sp_m014 NA
## 4952 new_sp_m014 NA
## 4953 new_sp_m014 NA
## 4954 new_sp_m014 NA
## 4955 new_sp_m014 NA
## 4956 new_sp_m014 NA
## 4957 new_sp_m014 NA
## 4958 new_sp_m014 NA
## 4959 new_sp_m014 NA
## 4960 new_sp_m014 11
## 4961 new_sp_m014 2
## 4962 new_sp_m014 9
## 4963 new_sp_m014 1
## 4964 new_sp_m014 8
## 4965 new_sp_m014 4
## 4966 new_sp_m014 18
## 4967 new_sp_m014 17
## 4968 new_sp_m014 28
## 4969 new_sp_m014 28
## 4970 new_sp_m014 32
## 4971 new_sp_m014 16
## 4972 new_sp_m014 65
## 4973 new_sp_m014 NA
## 4974 new_sp_m014 37
## 4975 new_sp_m014 50
## 4976 new_sp_m014 54
## 4977 new_sp_m014 NA
## 4978 new_sp_m014 NA
## 4979 new_sp_m014 NA
## 4980 new_sp_m014 NA
## 4981 new_sp_m014 NA
## 4982 new_sp_m014 NA
## 4983 new_sp_m014 NA
## 4984 new_sp_m014 NA
## 4985 new_sp_m014 NA
## 4986 new_sp_m014 NA
## 4987 new_sp_m014 NA
## 4988 new_sp_m014 NA
## 4989 new_sp_m014 NA
## 4990 new_sp_m014 NA
## 4991 new_sp_m014 NA
## 4992 new_sp_m014 NA
## 4993 new_sp_m014 18
## 4994 new_sp_m014 17
## 4995 new_sp_m014 25
## 4996 new_sp_m014 14
## 4997 new_sp_m014 19
## 4998 new_sp_m014 16
## 4999 new_sp_m014 18
## 5000 new_sp_m014 20
## 5001 new_sp_m014 11
## 5002 new_sp_m014 18
## 5003 new_sp_m014 23
## 5004 new_sp_m014 20
## 5005 new_sp_m014 14
## 5006 new_sp_m014 11
## 5007 new_sp_m014 15
## 5008 new_sp_m014 18
## 5009 new_sp_m014 9
## 5010 new_sp_m014 4
## 5011 new_sp_m014 NA
## 5012 new_sp_m014 NA
## 5013 new_sp_m014 NA
## 5014 new_sp_m014 NA
## 5015 new_sp_m014 NA
## 5016 new_sp_m014 NA
## 5017 new_sp_m014 NA
## 5018 new_sp_m014 NA
## 5019 new_sp_m014 NA
## 5020 new_sp_m014 NA
## 5021 new_sp_m014 NA
## 5022 new_sp_m014 NA
## 5023 new_sp_m014 NA
## 5024 new_sp_m014 NA
## 5025 new_sp_m014 NA
## 5026 new_sp_m014 NA
## 5027 new_sp_m014 147
## 5028 new_sp_m014 151
## 5029 new_sp_m014 745
## 5030 new_sp_m014 704
## 5031 new_sp_m014 712
## 5032 new_sp_m014 552
## 5033 new_sp_m014 11
## 5034 new_sp_m014 65
## 5035 new_sp_m014 101
## 5036 new_sp_m014 385
## 5037 new_sp_m014 371
## 5038 new_sp_m014 400
## 5039 new_sp_m014 395
## 5040 new_sp_m014 84
## 5041 new_sp_m014 NA
## 5042 new_sp_m014 NA
## 5043 new_sp_m014 NA
## 5044 new_sp_m014 NA
## 5045 new_sp_m014 NA
## 5046 new_sp_m014 NA
## 5047 new_sp_m014 NA
## 5048 new_sp_m014 NA
## 5049 new_sp_m014 NA
## 5050 new_sp_m014 NA
## 5051 new_sp_m014 NA
## 5052 new_sp_m014 NA
## 5053 new_sp_m014 NA
## 5054 new_sp_m014 NA
## 5055 new_sp_m014 NA
## 5056 new_sp_m014 NA
## 5057 new_sp_m014 NA
## 5058 new_sp_m014 NA
## 5059 new_sp_m014 NA
## 5060 new_sp_m014 NA
## 5061 new_sp_m014 2
## 5062 new_sp_m014 1
## 5063 new_sp_m014 5
## 5064 new_sp_m014 2
## 5065 new_sp_m014 NA
## 5066 new_sp_m014 NA
## 5067 new_sp_m014 NA
## 5068 new_sp_m014 NA
## 5069 new_sp_m014 356
## 5070 new_sp_m014 312
## 5071 new_sp_m014 482
## 5072 new_sp_m014 419
## 5073 new_sp_m014 466
## 5074 new_sp_m014 369
## 5075 new_sp_m014 487
## 5076 new_sp_m014 511
## 5077 new_sp_m014 573
## 5078 new_sp_m014 583
## 5079 new_sp_m014 NA
## 5080 new_sp_m014 NA
## 5081 new_sp_m014 NA
## 5082 new_sp_m014 NA
## 5083 new_sp_m014 NA
## 5084 new_sp_m014 NA
## 5085 new_sp_m014 NA
## 5086 new_sp_m014 NA
## 5087 new_sp_m014 NA
## 5088 new_sp_m014 NA
## 5089 new_sp_m014 NA
## 5090 new_sp_m014 NA
## 5091 new_sp_m014 NA
## 5092 new_sp_m014 NA
## 5093 new_sp_m014 NA
## 5094 new_sp_m014 NA
## 5095 new_sp_m014 3
## 5096 new_sp_m014 10
## 5097 new_sp_m014 3
## 5098 new_sp_m014 4
## 5099 new_sp_m014 0
## 5100 new_sp_m014 1
## 5101 new_sp_m014 5
## 5102 new_sp_m014 4
## 5103 new_sp_m014 2
## 5104 new_sp_m014 1
## 5105 new_sp_m014 3
## 5106 new_sp_m014 1
## 5107 new_sp_m014 2
## 5108 new_sp_m014 6
## 5109 new_sp_m014 2
## 5110 new_sp_m014 3
## 5111 new_sp_m014 5
## 5112 new_sp_m014 1
## 5113 new_sp_m014 NA
## 5114 new_sp_m014 NA
## 5115 new_sp_m014 NA
## 5116 new_sp_m014 NA
## 5117 new_sp_m014 NA
## 5118 new_sp_m014 NA
## 5119 new_sp_m014 NA
## 5120 new_sp_m014 NA
## 5121 new_sp_m014 NA
## 5122 new_sp_m014 NA
## 5123 new_sp_m014 NA
## 5124 new_sp_m014 NA
## 5125 new_sp_m014 NA
## 5126 new_sp_m014 NA
## 5127 new_sp_m014 NA
## 5128 new_sp_m014 NA
## 5129 new_sp_m014 11
## 5130 new_sp_m014 12
## 5131 new_sp_m014 8
## 5132 new_sp_m014 8
## 5133 new_sp_m014 13
## 5134 new_sp_m014 8
## 5135 new_sp_m014 9
## 5136 new_sp_m014 12
## 5137 new_sp_m014 11
## 5138 new_sp_m014 4
## 5139 new_sp_m014 5
## 5140 new_sp_m014 7
## 5141 new_sp_m014 4
## 5142 new_sp_m014 2
## 5143 new_sp_m014 2
## 5144 new_sp_m014 4
## 5145 new_sp_m014 2
## 5146 new_sp_m014 1
## 5147 new_sp_m014 NA
## 5148 new_sp_m014 NA
## 5149 new_sp_m014 NA
## 5150 new_sp_m014 NA
## 5151 new_sp_m014 NA
## 5152 new_sp_m014 NA
## 5153 new_sp_m014 NA
## 5154 new_sp_m014 NA
## 5155 new_sp_m014 NA
## 5156 new_sp_m014 NA
## 5157 new_sp_m014 NA
## 5158 new_sp_m014 NA
## 5159 new_sp_m014 NA
## 5160 new_sp_m014 NA
## 5161 new_sp_m014 NA
## 5162 new_sp_m014 NA
## 5163 new_sp_m014 4
## 5164 new_sp_m014 2
## 5165 new_sp_m014 1
## 5166 new_sp_m014 1
## 5167 new_sp_m014 0
## 5168 new_sp_m014 0
## 5169 new_sp_m014 0
## 5170 new_sp_m014 2
## 5171 new_sp_m014 0
## 5172 new_sp_m014 0
## 5173 new_sp_m014 0
## 5174 new_sp_m014 1
## 5175 new_sp_m014 0
## 5176 new_sp_m014 0
## 5177 new_sp_m014 0
## 5178 new_sp_m014 0
## 5179 new_sp_m014 0
## 5180 new_sp_m014 0
## 5181 new_sp_m014 NA
## 5182 new_sp_m014 NA
## 5183 new_sp_m014 NA
## 5184 new_sp_m014 NA
## 5185 new_sp_m014 NA
## 5186 new_sp_m014 NA
## 5187 new_sp_m014 NA
## 5188 new_sp_m014 NA
## 5189 new_sp_m014 NA
## 5190 new_sp_m014 NA
## 5191 new_sp_m014 NA
## 5192 new_sp_m014 NA
## 5193 new_sp_m014 NA
## 5194 new_sp_m014 NA
## 5195 new_sp_m014 NA
## 5196 new_sp_m014 NA
## 5197 new_sp_m014 0
## 5198 new_sp_m014 0
## 5199 new_sp_m014 0
## 5200 new_sp_m014 0
## 5201 new_sp_m014 0
## 5202 new_sp_m014 0
## 5203 new_sp_m014 1
## 5204 new_sp_m014 NA
## 5205 new_sp_m014 1
## 5206 new_sp_m014 0
## 5207 new_sp_m014 NA
## 5208 new_sp_m014 0
## 5209 new_sp_m014 0
## 5210 new_sp_m014 1
## 5211 new_sp_m014 0
## 5212 new_sp_m014 0
## 5213 new_sp_m014 0
## 5214 new_sp_m014 0
## 5215 new_sp_m014 NA
## 5216 new_sp_m014 NA
## 5217 new_sp_m014 NA
## 5218 new_sp_m014 NA
## 5219 new_sp_m014 NA
## 5220 new_sp_m014 NA
## 5221 new_sp_m014 NA
## 5222 new_sp_m014 NA
## 5223 new_sp_m014 NA
## 5224 new_sp_m014 NA
## 5225 new_sp_m014 NA
## 5226 new_sp_m014 NA
## 5227 new_sp_m014 NA
## 5228 new_sp_m014 NA
## 5229 new_sp_m014 NA
## 5230 new_sp_m014 NA
## 5231 new_sp_m014 27
## 5232 new_sp_m014 31
## 5233 new_sp_m014 24
## 5234 new_sp_m014 19
## 5235 new_sp_m014 27
## 5236 new_sp_m014 19
## 5237 new_sp_m014 23
## 5238 new_sp_m014 20
## 5239 new_sp_m014 22
## 5240 new_sp_m014 18
## 5241 new_sp_m014 22
## 5242 new_sp_m014 19
## 5243 new_sp_m014 16
## 5244 new_sp_m014 21
## 5245 new_sp_m014 25
## 5246 new_sp_m014 22
## 5247 new_sp_m014 13
## 5248 new_sp_m014 11
## 5249 new_sp_m014 NA
## 5250 new_sp_m014 NA
## 5251 new_sp_m014 NA
## 5252 new_sp_m014 NA
## 5253 new_sp_m014 NA
## 5254 new_sp_m014 NA
## 5255 new_sp_m014 NA
## 5256 new_sp_m014 NA
## 5257 new_sp_m014 NA
## 5258 new_sp_m014 NA
## 5259 new_sp_m014 NA
## 5260 new_sp_m014 NA
## 5261 new_sp_m014 NA
## 5262 new_sp_m014 NA
## 5263 new_sp_m014 NA
## 5264 new_sp_m014 NA
## 5265 new_sp_m014 0
## 5266 new_sp_m014 0
## 5267 new_sp_m014 0
## 5268 new_sp_m014 2
## 5269 new_sp_m014 1
## 5270 new_sp_m014 2
## 5271 new_sp_m014 1
## 5272 new_sp_m014 5
## 5273 new_sp_m014 1
## 5274 new_sp_m014 8
## 5275 new_sp_m014 2
## 5276 new_sp_m014 2
## 5277 new_sp_m014 0
## 5278 new_sp_m014 1
## 5279 new_sp_m014 3
## 5280 new_sp_m014 0
## 5281 new_sp_m014 2
## 5282 new_sp_m014 0
## 5283 new_sp_m014 NA
## 5284 new_sp_m014 NA
## 5285 new_sp_m014 NA
## 5286 new_sp_m014 NA
## 5287 new_sp_m014 NA
## 5288 new_sp_m014 NA
## 5289 new_sp_m014 NA
## 5290 new_sp_m014 NA
## 5291 new_sp_m014 NA
## 5292 new_sp_m014 NA
## 5293 new_sp_m014 NA
## 5294 new_sp_m014 NA
## 5295 new_sp_m014 NA
## 5296 new_sp_m014 NA
## 5297 new_sp_m014 NA
## 5298 new_sp_m014 NA
## 5299 new_sp_m014 387
## 5300 new_sp_m014 35
## 5301 new_sp_m014 31
## 5302 new_sp_m014 21
## 5303 new_sp_m014 34
## 5304 new_sp_m014 46
## 5305 new_sp_m014 60
## 5306 new_sp_m014 102
## 5307 new_sp_m014 37
## 5308 new_sp_m014 31
## 5309 new_sp_m014 36
## 5310 new_sp_m014 30
## 5311 new_sp_m014 25
## 5312 new_sp_m014 22
## 5313 new_sp_m014 24
## 5314 new_sp_m014 21
## 5315 new_sp_m014 19
## 5316 new_sp_m014 14
## 5317 new_sp_m014 NA
## 5318 new_sp_m014 NA
## 5319 new_sp_m014 NA
## 5320 new_sp_m014 NA
## 5321 new_sp_m014 NA
## 5322 new_sp_m014 NA
## 5323 new_sp_m014 NA
## 5324 new_sp_m014 NA
## 5325 new_sp_m014 NA
## 5326 new_sp_m014 NA
## 5327 new_sp_m014 NA
## 5328 new_sp_m014 NA
## 5329 new_sp_m014 NA
## 5330 new_sp_m014 NA
## 5331 new_sp_m014 NA
## 5332 new_sp_m014 NA
## 5333 new_sp_m014 NA
## 5334 new_sp_m014 0
## 5335 new_sp_m014 0
## 5336 new_sp_m014 0
## 5337 new_sp_m014 17
## 5338 new_sp_m014 1
## 5339 new_sp_m014 26
## 5340 new_sp_m014 0
## 5341 new_sp_m014 0
## 5342 new_sp_m014 18
## 5343 new_sp_m014 NA
## 5344 new_sp_m014 18
## 5345 new_sp_m014 20
## 5346 new_sp_m014 12
## 5347 new_sp_m014 22
## 5348 new_sp_m014 8
## 5349 new_sp_m014 15
## 5350 new_sp_m014 17
## 5351 new_sp_m014 NA
## 5352 new_sp_m014 NA
## 5353 new_sp_m014 NA
## 5354 new_sp_m014 NA
## 5355 new_sp_m014 NA
## 5356 new_sp_m014 NA
## 5357 new_sp_m014 NA
## 5358 new_sp_m014 NA
## 5359 new_sp_m014 NA
## 5360 new_sp_m014 NA
## 5361 new_sp_m014 NA
## 5362 new_sp_m014 NA
## 5363 new_sp_m014 NA
## 5364 new_sp_m014 NA
## 5365 new_sp_m014 NA
## 5366 new_sp_m014 NA
## 5367 new_sp_m014 NA
## 5368 new_sp_m014 48
## 5369 new_sp_m014 78
## 5370 new_sp_m014 NA
## 5371 new_sp_m014 93
## 5372 new_sp_m014 155
## 5373 new_sp_m014 NA
## 5374 new_sp_m014 13
## 5375 new_sp_m014 32
## 5376 new_sp_m014 52
## 5377 new_sp_m014 45
## 5378 new_sp_m014 25
## 5379 new_sp_m014 51
## 5380 new_sp_m014 33
## 5381 new_sp_m014 25
## 5382 new_sp_m014 48
## 5383 new_sp_m014 42
## 5384 new_sp_m014 22
## 5385 new_sp_m014 NA
## 5386 new_sp_m014 NA
## 5387 new_sp_m014 NA
## 5388 new_sp_m014 NA
## 5389 new_sp_m014 NA
## 5390 new_sp_m014 NA
## 5391 new_sp_m014 NA
## 5392 new_sp_m014 NA
## 5393 new_sp_m014 NA
## 5394 new_sp_m014 NA
## 5395 new_sp_m014 NA
## 5396 new_sp_m014 NA
## 5397 new_sp_m014 NA
## 5398 new_sp_m014 NA
## 5399 new_sp_m014 NA
## 5400 new_sp_m014 NA
## 5401 new_sp_m014 NA
## 5402 new_sp_m014 0
## 5403 new_sp_m014 NA
## 5404 new_sp_m014 0
## 5405 new_sp_m014 NA
## 5406 new_sp_m014 NA
## 5407 new_sp_m014 NA
## 5408 new_sp_m014 NA
## 5409 new_sp_m014 NA
## 5410 new_sp_m014 NA
## 5411 new_sp_m014 NA
## 5412 new_sp_m014 NA
## 5413 new_sp_m014 NA
## 5414 new_sp_m014 0
## 5415 new_sp_m014 0
## 5416 new_sp_m014 0
## 5417 new_sp_m014 0
## 5418 new_sp_m014 0
## 5419 new_sp_m014 NA
## 5420 new_sp_m014 NA
## 5421 new_sp_m014 NA
## 5422 new_sp_m014 NA
## 5423 new_sp_m014 NA
## 5424 new_sp_m014 NA
## 5425 new_sp_m014 NA
## 5426 new_sp_m014 NA
## 5427 new_sp_m014 NA
## 5428 new_sp_m014 NA
## 5429 new_sp_m014 NA
## 5430 new_sp_m014 NA
## 5431 new_sp_m014 NA
## 5432 new_sp_m014 NA
## 5433 new_sp_m014 NA
## 5434 new_sp_m014 NA
## 5435 new_sp_m014 NA
## 5436 new_sp_m014 NA
## 5437 new_sp_m014 0
## 5438 new_sp_m014 0
## 5439 new_sp_m014 NA
## 5440 new_sp_m014 0
## 5441 new_sp_m014 0
## 5442 new_sp_m014 NA
## 5443 new_sp_m014 0
## 5444 new_sp_m014 0
## 5445 new_sp_m014 0
## 5446 new_sp_m014 NA
## 5447 new_sp_m014 NA
## 5448 new_sp_m014 0
## 5449 new_sp_m014 0
## 5450 new_sp_m014 0
## 5451 new_sp_m014 0
## 5452 new_sp_m014 0
## 5453 new_sp_m014 NA
## 5454 new_sp_m014 NA
## 5455 new_sp_m014 NA
## 5456 new_sp_m014 NA
## 5457 new_sp_m014 NA
## 5458 new_sp_m014 NA
## 5459 new_sp_m014 NA
## 5460 new_sp_m014 NA
## 5461 new_sp_m014 NA
## 5462 new_sp_m014 NA
## 5463 new_sp_m014 NA
## 5464 new_sp_m014 NA
## 5465 new_sp_m014 NA
## 5466 new_sp_m014 NA
## 5467 new_sp_m014 NA
## 5468 new_sp_m014 NA
## 5469 new_sp_m014 NA
## 5470 new_sp_m014 NA
## 5471 new_sp_m014 NA
## 5472 new_sp_m014 0
## 5473 new_sp_m014 NA
## 5474 new_sp_m014 0
## 5475 new_sp_m014 NA
## 5476 new_sp_m014 NA
## 5477 new_sp_m014 NA
## 5478 new_sp_m014 NA
## 5479 new_sp_m014 0
## 5480 new_sp_m014 NA
## 5481 new_sp_m014 0
## 5482 new_sp_m014 NA
## 5483 new_sp_m014 NA
## 5484 new_sp_m014 0
## 5485 new_sp_m014 0
## 5486 new_sp_m014 0
## 5487 new_sp_m014 NA
## 5488 new_sp_m014 NA
## 5489 new_sp_m014 NA
## 5490 new_sp_m014 NA
## 5491 new_sp_m014 NA
## 5492 new_sp_m014 NA
## 5493 new_sp_m014 NA
## 5494 new_sp_m014 NA
## 5495 new_sp_m014 NA
## 5496 new_sp_m014 NA
## 5497 new_sp_m014 NA
## 5498 new_sp_m014 NA
## 5499 new_sp_m014 NA
## 5500 new_sp_m014 NA
## 5501 new_sp_m014 NA
## 5502 new_sp_m014 NA
## 5503 new_sp_m014 0
## 5504 new_sp_m014 0
## 5505 new_sp_m014 0
## 5506 new_sp_m014 1
## 5507 new_sp_m014 0
## 5508 new_sp_m014 0
## 5509 new_sp_m014 1
## 5510 new_sp_m014 0
## 5511 new_sp_m014 NA
## 5512 new_sp_m014 NA
## 5513 new_sp_m014 0
## 5514 new_sp_m014 NA
## 5515 new_sp_m014 NA
## 5516 new_sp_m014 0
## 5517 new_sp_m014 NA
## 5518 new_sp_m014 NA
## 5519 new_sp_m014 0
## 5520 new_sp_m014 0
## 5521 new_sp_m014 NA
## 5522 new_sp_m014 NA
## 5523 new_sp_m014 NA
## 5524 new_sp_m014 NA
## 5525 new_sp_m014 NA
## 5526 new_sp_m014 NA
## 5527 new_sp_m014 NA
## 5528 new_sp_m014 NA
## 5529 new_sp_m014 NA
## 5530 new_sp_m014 NA
## 5531 new_sp_m014 NA
## 5532 new_sp_m014 NA
## 5533 new_sp_m014 NA
## 5534 new_sp_m014 NA
## 5535 new_sp_m014 NA
## 5536 new_sp_m014 NA
## 5537 new_sp_m014 NA
## 5538 new_sp_m014 NA
## 5539 new_sp_m014 NA
## 5540 new_sp_m014 NA
## 5541 new_sp_m014 NA
## 5542 new_sp_m014 NA
## 5543 new_sp_m014 NA
## 5544 new_sp_m014 NA
## 5545 new_sp_m014 0
## 5546 new_sp_m014 0
## 5547 new_sp_m014 NA
## 5548 new_sp_m014 NA
## 5549 new_sp_m014 NA
## 5550 new_sp_m014 NA
## 5551 new_sp_m014 NA
## 5552 new_sp_m014 NA
## 5553 new_sp_m014 NA
## 5554 new_sp_m014 NA
## 5555 new_sp_m014 NA
## 5556 new_sp_m014 NA
## 5557 new_sp_m014 NA
## 5558 new_sp_m014 NA
## 5559 new_sp_m014 NA
## 5560 new_sp_m014 NA
## 5561 new_sp_m014 NA
## 5562 new_sp_m014 NA
## 5563 new_sp_m014 NA
## 5564 new_sp_m014 NA
## 5565 new_sp_m014 NA
## 5566 new_sp_m014 NA
## 5567 new_sp_m014 NA
## 5568 new_sp_m014 NA
## 5569 new_sp_m014 NA
## 5570 new_sp_m014 NA
## 5571 new_sp_m014 NA
## 5572 new_sp_m014 NA
## 5573 new_sp_m014 NA
## 5574 new_sp_m014 NA
## 5575 new_sp_m014 NA
## 5576 new_sp_m014 1
## 5577 new_sp_m014 0
## 5578 new_sp_m014 1
## 5579 new_sp_m014 1
## 5580 new_sp_m014 3
## 5581 new_sp_m014 2
## 5582 new_sp_m014 0
## 5583 new_sp_m014 0
## 5584 new_sp_m014 1
## 5585 new_sp_m014 0
## 5586 new_sp_m014 0
## 5587 new_sp_m014 0
## 5588 new_sp_m014 1
## 5589 new_sp_m014 NA
## 5590 new_sp_m014 NA
## 5591 new_sp_m014 NA
## 5592 new_sp_m014 NA
## 5593 new_sp_m014 NA
## 5594 new_sp_m014 NA
## 5595 new_sp_m014 NA
## 5596 new_sp_m014 NA
## 5597 new_sp_m014 NA
## 5598 new_sp_m014 NA
## 5599 new_sp_m014 NA
## 5600 new_sp_m014 NA
## 5601 new_sp_m014 NA
## 5602 new_sp_m014 NA
## 5603 new_sp_m014 NA
## 5604 new_sp_m014 NA
## 5605 new_sp_m014 NA
## 5606 new_sp_m014 NA
## 5607 new_sp_m014 NA
## 5608 new_sp_m014 2
## 5609 new_sp_m014 5
## 5610 new_sp_m014 0
## 5611 new_sp_m014 7
## 5612 new_sp_m014 11
## 5613 new_sp_m014 5
## 5614 new_sp_m014 4
## 5615 new_sp_m014 8
## 5616 new_sp_m014 10
## 5617 new_sp_m014 8
## 5618 new_sp_m014 16
## 5619 new_sp_m014 15
## 5620 new_sp_m014 14
## 5621 new_sp_m014 4
## 5622 new_sp_m014 13
## 5623 new_sp_m014 NA
## 5624 new_sp_m014 NA
## 5625 new_sp_m014 NA
## 5626 new_sp_m014 NA
## 5627 new_sp_m014 NA
## 5628 new_sp_m014 NA
## 5629 new_sp_m014 NA
## 5630 new_sp_m014 NA
## 5631 new_sp_m014 NA
## 5632 new_sp_m014 NA
## 5633 new_sp_m014 NA
## 5634 new_sp_m014 NA
## 5635 new_sp_m014 NA
## 5636 new_sp_m014 NA
## 5637 new_sp_m014 NA
## 5638 new_sp_m014 NA
## 5639 new_sp_m014 94
## 5640 new_sp_m014 74
## 5641 new_sp_m014 64
## 5642 new_sp_m014 90
## 5643 new_sp_m014 50
## 5644 new_sp_m014 60
## 5645 new_sp_m014 77
## 5646 new_sp_m014 58
## 5647 new_sp_m014 50
## 5648 new_sp_m014 60
## 5649 new_sp_m014 71
## 5650 new_sp_m014 60
## 5651 new_sp_m014 57
## 5652 new_sp_m014 67
## 5653 new_sp_m014 66
## 5654 new_sp_m014 81
## 5655 new_sp_m014 75
## 5656 new_sp_m014 84
## 5657 new_sp_m014 NA
## 5658 new_sp_m014 3
## 5659 new_sp_m014 6
## 5660 new_sp_m014 0
## 5661 new_sp_m014 3
## 5662 new_sp_m014 1
## 5663 new_sp_m014 2
## 5664 new_sp_m014 2
## 5665 new_sp_m014 1
## 5666 new_sp_m014 NA
## 5667 new_sp_m014 NA
## 5668 new_sp_m014 NA
## 5669 new_sp_m014 NA
## 5670 new_sp_m014 NA
## 5671 new_sp_m014 NA
## 5672 new_sp_m014 NA
## 5673 new_sp_m014 NA
## 5674 new_sp_m014 NA
## 5675 new_sp_m014 NA
## 5676 new_sp_m014 NA
## 5677 new_sp_m014 NA
## 5678 new_sp_m014 NA
## 5679 new_sp_m014 NA
## 5680 new_sp_m014 NA
## 5681 new_sp_m014 NA
## 5682 new_sp_m014 10
## 5683 new_sp_m014 45
## 5684 new_sp_m014 45
## 5685 new_sp_m014 NA
## 5686 new_sp_m014 NA
## 5687 new_sp_m014 NA
## 5688 new_sp_m014 3
## 5689 new_sp_m014 7
## 5690 new_sp_m014 1
## 5691 new_sp_m014 4
## 5692 new_sp_m014 NA
## 5693 new_sp_m014 NA
## 5694 new_sp_m014 NA
## 5695 new_sp_m014 NA
## 5696 new_sp_m014 NA
## 5697 new_sp_m014 NA
## 5698 new_sp_m014 NA
## 5699 new_sp_m014 NA
## 5700 new_sp_m014 NA
## 5701 new_sp_m014 NA
## 5702 new_sp_m014 NA
## 5703 new_sp_m014 NA
## 5704 new_sp_m014 NA
## 5705 new_sp_m014 NA
## 5706 new_sp_m014 NA
## 5707 new_sp_m014 0
## 5708 new_sp_m014 0
## 5709 new_sp_m014 0
## 5710 new_sp_m014 0
## 5711 new_sp_m014 NA
## 5712 new_sp_m014 NA
## 5713 new_sp_m014 0
## 5714 new_sp_m014 0
## 5715 new_sp_m014 0
## 5716 new_sp_m014 0
## 5717 new_sp_m014 0
## 5718 new_sp_m014 NA
## 5719 new_sp_m014 NA
## 5720 new_sp_m014 0
## 5721 new_sp_m014 0
## 5722 new_sp_m014 0
## 5723 new_sp_m014 0
## 5724 new_sp_m014 0
## 5725 new_sp_m014 NA
## 5726 new_sp_m014 NA
## 5727 new_sp_m014 NA
## 5728 new_sp_m014 NA
## 5729 new_sp_m014 NA
## 5730 new_sp_m014 NA
## 5731 new_sp_m014 NA
## 5732 new_sp_m014 NA
## 5733 new_sp_m014 NA
## 5734 new_sp_m014 NA
## 5735 new_sp_m014 NA
## 5736 new_sp_m014 NA
## 5737 new_sp_m014 NA
## 5738 new_sp_m014 NA
## 5739 new_sp_m014 NA
## 5740 new_sp_m014 NA
## 5741 new_sp_m014 10
## 5742 new_sp_m014 23
## 5743 new_sp_m014 14
## 5744 new_sp_m014 14
## 5745 new_sp_m014 NA
## 5746 new_sp_m014 18
## 5747 new_sp_m014 19
## 5748 new_sp_m014 23
## 5749 new_sp_m014 19
## 5750 new_sp_m014 19
## 5751 new_sp_m014 45
## 5752 new_sp_m014 43
## 5753 new_sp_m014 45
## 5754 new_sp_m014 NA
## 5755 new_sp_m014 44
## 5756 new_sp_m014 64
## 5757 new_sp_m014 75
## 5758 new_sp_m014 70
## 5759 new_sp_m014 NA
## 5760 new_sp_m014 NA
## 5761 new_sp_m014 NA
## 5762 new_sp_m014 NA
## 5763 new_sp_m014 NA
## 5764 new_sp_m014 NA
## 5765 new_sp_m014 NA
## 5766 new_sp_m014 NA
## 5767 new_sp_m014 NA
## 5768 new_sp_m014 NA
## 5769 new_sp_m014 NA
## 5770 new_sp_m014 NA
## 5771 new_sp_m014 NA
## 5772 new_sp_m014 NA
## 5773 new_sp_m014 NA
## 5774 new_sp_m014 NA
## 5775 new_sp_m014 0
## 5776 new_sp_m014 NA
## 5777 new_sp_m014 0
## 5778 new_sp_m014 1
## 5779 new_sp_m014 0
## 5780 new_sp_m014 1
## 5781 new_sp_m014 1
## 5782 new_sp_m014 0
## 5783 new_sp_m014 1
## 5784 new_sp_m014 1
## 5785 new_sp_m014 0
## 5786 new_sp_m014 2
## 5787 new_sp_m014 0
## 5788 new_sp_m014 0
## 5789 new_sp_m014 0
## 5790 new_sp_m014 0
## 5791 new_sp_m014 0
## 5792 new_sp_m014 1
## 5793 new_sp_m014 NA
## 5794 new_sp_m014 NA
## 5795 new_sp_m014 NA
## 5796 new_sp_m014 0
## 5797 new_sp_m014 NA
## 5798 new_sp_m014 NA
## 5799 new_sp_m014 NA
## 5800 new_sp_m014 NA
## 5801 new_sp_m014 NA
## 5802 new_sp_m014 NA
## 5803 new_sp_m014 NA
## 5804 new_sp_m014 NA
## 5805 new_sp_m014 NA
## 5806 new_sp_m014 NA
## 5807 new_sp_m014 NA
## 5808 new_sp_m014 NA
## 5809 new_sp_m014 NA
## 5810 new_sp_m014 NA
## 5811 new_sp_m014 NA
## 5812 new_sp_m014 NA
## 5813 new_sp_m014 4
## 5814 new_sp_m014 2
## 5815 new_sp_m014 1
## 5816 new_sp_m014 0
## 5817 new_sp_m014 1
## 5818 new_sp_m014 2
## 5819 new_sp_m014 0
## 5820 new_sp_m014 0
## 5821 new_sp_m014 1
## 5822 new_sp_m014 0
## 5823 new_sp_m014 0
## 5824 new_sp_m014 4
## 5825 new_sp_m014 0
## 5826 new_sp_m014 0
## 5827 new_sp_m014 0
## 5828 new_sp_m014 1
## 5829 new_sp_m014 0
## 5830 new_sp_m014 0
## 5831 new_sp_m014 NA
## 5832 new_sp_m014 NA
## 5833 new_sp_m014 NA
## 5834 new_sp_m014 NA
## 5835 new_sp_m014 NA
## 5836 new_sp_m014 NA
## 5837 new_sp_m014 NA
## 5838 new_sp_m014 NA
## 5839 new_sp_m014 NA
## 5840 new_sp_m014 NA
## 5841 new_sp_m014 NA
## 5842 new_sp_m014 NA
## 5843 new_sp_m014 NA
## 5844 new_sp_m014 NA
## 5845 new_sp_m014 NA
## 5846 new_sp_m014 NA
## 5847 new_sp_m014 1
## 5848 new_sp_m014 0
## 5849 new_sp_m014 0
## 5850 new_sp_m014 0
## 5851 new_sp_m014 0
## 5852 new_sp_m014 0
## 5853 new_sp_m014 0
## 5854 new_sp_m014 0
## 5855 new_sp_m014 0
## 5856 new_sp_m014 0
## 5857 new_sp_m014 0
## 5858 new_sp_m014 0
## 5859 new_sp_m014 0
## 5860 new_sp_m014 0
## 5861 new_sp_m014 0
## 5862 new_sp_m014 0
## 5863 new_sp_m014 0
## 5864 new_sp_m014 0
## 5865 new_sp_m014 NA
## 5866 new_sp_m014 NA
## 5867 new_sp_m014 NA
## 5868 new_sp_m014 NA
## 5869 new_sp_m014 NA
## 5870 new_sp_m014 NA
## 5871 new_sp_m014 NA
## 5872 new_sp_m014 NA
## 5873 new_sp_m014 NA
## 5874 new_sp_m014 NA
## 5875 new_sp_m014 NA
## 5876 new_sp_m014 NA
## 5877 new_sp_m014 NA
## 5878 new_sp_m014 NA
## 5879 new_sp_m014 NA
## 5880 new_sp_m014 NA
## 5881 new_sp_m014 2
## 5882 new_sp_m014 4
## 5883 new_sp_m014 2
## 5884 new_sp_m014 3
## 5885 new_sp_m014 NA
## 5886 new_sp_m014 3
## 5887 new_sp_m014 NA
## 5888 new_sp_m014 3
## 5889 new_sp_m014 4
## 5890 new_sp_m014 6
## 5891 new_sp_m014 4
## 5892 new_sp_m014 1
## 5893 new_sp_m014 5
## 5894 new_sp_m014 3
## 5895 new_sp_m014 3
## 5896 new_sp_m014 4
## 5897 new_sp_m014 3
## 5898 new_sp_m014 3
## 5899 new_sp_m014 NA
## 5900 new_sp_m014 NA
## 5901 new_sp_m014 NA
## 5902 new_sp_m014 NA
## 5903 new_sp_m014 NA
## 5904 new_sp_m014 NA
## 5905 new_sp_m014 NA
## 5906 new_sp_m014 NA
## 5907 new_sp_m014 NA
## 5908 new_sp_m014 NA
## 5909 new_sp_m014 NA
## 5910 new_sp_m014 NA
## 5911 new_sp_m014 NA
## 5912 new_sp_m014 NA
## 5913 new_sp_m014 NA
## 5914 new_sp_m014 NA
## 5915 new_sp_m014 46
## 5916 new_sp_m014 45
## 5917 new_sp_m014 72
## 5918 new_sp_m014 99
## 5919 new_sp_m014 136
## 5920 new_sp_m014 113
## 5921 new_sp_m014 125
## 5922 new_sp_m014 119
## 5923 new_sp_m014 118
## 5924 new_sp_m014 175
## 5925 new_sp_m014 125
## 5926 new_sp_m014 166
## 5927 new_sp_m014 125
## 5928 new_sp_m014 116
## 5929 new_sp_m014 175
## 5930 new_sp_m014 109
## 5931 new_sp_m014 113
## 5932 new_sp_m014 129
## 5933 new_sp_m014 NA
## 5934 new_sp_m014 NA
## 5935 new_sp_m014 NA
## 5936 new_sp_m014 NA
## 5937 new_sp_m014 NA
## 5938 new_sp_m014 NA
## 5939 new_sp_m014 NA
## 5940 new_sp_m014 NA
## 5941 new_sp_m014 NA
## 5942 new_sp_m014 NA
## 5943 new_sp_m014 NA
## 5944 new_sp_m014 NA
## 5945 new_sp_m014 NA
## 5946 new_sp_m014 NA
## 5947 new_sp_m014 NA
## 5948 new_sp_m014 NA
## 5949 new_sp_m014 NA
## 5950 new_sp_m014 NA
## 5951 new_sp_m014 NA
## 5952 new_sp_m014 NA
## 5953 new_sp_m014 52
## 5954 new_sp_m014 116
## 5955 new_sp_m014 163
## 5956 new_sp_m014 3081
## 5957 new_sp_m014 1769
## 5958 new_sp_m014 2269
## 5959 new_sp_m014 2035
## 5960 new_sp_m014 2062
## 5961 new_sp_m014 1909
## 5962 new_sp_m014 1863
## 5963 new_sp_m014 1685
## 5964 new_sp_m014 1496
## 5965 new_sp_m014 1472
## 5966 new_sp_m014 1132
## 5967 new_sp_m014 NA
## 5968 new_sp_m014 39
## 5969 new_sp_m014 42
## 5970 new_sp_m014 NA
## 5971 new_sp_m014 NA
## 5972 new_sp_m014 NA
## 5973 new_sp_m014 NA
## 5974 new_sp_m014 NA
## 5975 new_sp_m014 NA
## 5976 new_sp_m014 NA
## 5977 new_sp_m014 NA
## 5978 new_sp_m014 NA
## 5979 new_sp_m014 NA
## 5980 new_sp_m014 NA
## 5981 new_sp_m014 NA
## 5982 new_sp_m014 NA
## 5983 new_sp_m014 NA
## 5984 new_sp_m014 NA
## 5985 new_sp_m014 NA
## 5986 new_sp_m014 22
## 5987 new_sp_m014 NA
## 5988 new_sp_m014 NA
## 5989 new_sp_m014 25
## 5990 new_sp_m014 NA
## 5991 new_sp_m014 NA
## 5992 new_sp_m014 13
## 5993 new_sp_m014 22
## 5994 new_sp_m014 7
## 5995 new_sp_m014 14
## 5996 new_sp_m014 13
## 5997 new_sp_m014 18
## 5998 new_sp_m014 10
## 5999 new_sp_m014 18
## 6000 new_sp_m014 0
## 6001 new_sp_m014 8
## 6002 new_sp_m014 14
## 6003 new_sp_m014 10
## 6004 new_sp_m014 NA
## 6005 new_sp_m014 NA
## 6006 new_sp_m014 NA
## 6007 new_sp_m014 NA
## 6008 new_sp_m014 NA
## 6009 new_sp_m014 NA
## 6010 new_sp_m014 NA
## 6011 new_sp_m014 NA
## 6012 new_sp_m014 NA
## 6013 new_sp_m014 NA
## 6014 new_sp_m014 NA
## 6015 new_sp_m014 NA
## 6016 new_sp_m014 NA
## 6017 new_sp_m014 NA
## 6018 new_sp_m014 NA
## 6019 new_sp_m014 NA
## 6020 new_sp_m014 10
## 6021 new_sp_m014 10
## 6022 new_sp_m014 11
## 6023 new_sp_m014 7
## 6024 new_sp_m014 8
## 6025 new_sp_m014 25
## 6026 new_sp_m014 6
## 6027 new_sp_m014 11
## 6028 new_sp_m014 12
## 6029 new_sp_m014 6
## 6030 new_sp_m014 9
## 6031 new_sp_m014 8
## 6032 new_sp_m014 10
## 6033 new_sp_m014 11
## 6034 new_sp_m014 10
## 6035 new_sp_m014 14
## 6036 new_sp_m014 12
## 6037 new_sp_m014 7
## 6038 new_sp_m014 NA
## 6039 new_sp_m014 NA
## 6040 new_sp_m014 NA
## 6041 new_sp_m014 NA
## 6042 new_sp_m014 NA
## 6043 new_sp_m014 NA
## 6044 new_sp_m014 NA
## 6045 new_sp_m014 NA
## 6046 new_sp_m014 NA
## 6047 new_sp_m014 NA
## 6048 new_sp_m014 NA
## 6049 new_sp_m014 NA
## 6050 new_sp_m014 NA
## 6051 new_sp_m014 NA
## 6052 new_sp_m014 NA
## 6053 new_sp_m014 NA
## 6054 new_sp_m014 250
## 6055 new_sp_m014 NA
## 6056 new_sp_m014 NA
## 6057 new_sp_m014 805
## 6058 new_sp_m014 842
## 6059 new_sp_m014 785
## 6060 new_sp_m014 732
## 6061 new_sp_m014 559
## 6062 new_sp_m014 489
## 6063 new_sp_m014 537
## 6064 new_sp_m014 425
## 6065 new_sp_m014 297
## 6066 new_sp_m014 288
## 6067 new_sp_m014 317
## 6068 new_sp_m014 288
## 6069 new_sp_m014 209
## 6070 new_sp_m014 107
## 6071 new_sp_m014 117
## 6072 new_sp_m014 NA
## 6073 new_sp_m014 NA
## 6074 new_sp_m014 NA
## 6075 new_sp_m014 NA
## 6076 new_sp_m014 NA
## 6077 new_sp_m014 NA
## 6078 new_sp_m014 NA
## 6079 new_sp_m014 NA
## 6080 new_sp_m014 NA
## 6081 new_sp_m014 NA
## 6082 new_sp_m014 NA
## 6083 new_sp_m014 NA
## 6084 new_sp_m014 NA
## 6085 new_sp_m014 NA
## 6086 new_sp_m014 NA
## 6087 new_sp_m014 NA
## 6088 new_sp_m014 NA
## 6089 new_sp_m014 1
## 6090 new_sp_m014 0
## 6091 new_sp_m014 NA
## 6092 new_sp_m014 NA
## 6093 new_sp_m014 1
## 6094 new_sp_m014 1
## 6095 new_sp_m014 2
## 6096 new_sp_m014 0
## 6097 new_sp_m014 0
## 6098 new_sp_m014 0
## 6099 new_sp_m014 5
## 6100 new_sp_m014 NA
## 6101 new_sp_m014 NA
## 6102 new_sp_m014 2
## 6103 new_sp_m014 0
## 6104 new_sp_m014 0
## 6105 new_sp_m014 0
## 6106 new_sp_m014 NA
## 6107 new_sp_m014 NA
## 6108 new_sp_m014 NA
## 6109 new_sp_m014 NA
## 6110 new_sp_m014 NA
## 6111 new_sp_m014 NA
## 6112 new_sp_m014 NA
## 6113 new_sp_m014 NA
## 6114 new_sp_m014 NA
## 6115 new_sp_m014 NA
## 6116 new_sp_m014 NA
## 6117 new_sp_m014 NA
## 6118 new_sp_m014 NA
## 6119 new_sp_m014 NA
## 6120 new_sp_m014 NA
## 6121 new_sp_m014 NA
## 6122 new_sp_m014 4
## 6123 new_sp_m014 79
## 6124 new_sp_m014 NA
## 6125 new_sp_m014 NA
## 6126 new_sp_m014 NA
## 6127 new_sp_m014 11
## 6128 new_sp_m014 16
## 6129 new_sp_m014 1
## 6130 new_sp_m014 15
## 6131 new_sp_m014 6
## 6132 new_sp_m014 9
## 6133 new_sp_m014 32
## 6134 new_sp_m014 NA
## 6135 new_sp_m014 29
## 6136 new_sp_m014 26
## 6137 new_sp_m014 30
## 6138 new_sp_m014 16
## 6139 new_sp_m014 18
## 6140 new_sp_m014 NA
## 6141 new_sp_m014 NA
## 6142 new_sp_m014 NA
## 6143 new_sp_m014 NA
## 6144 new_sp_m014 NA
## 6145 new_sp_m014 NA
## 6146 new_sp_m014 NA
## 6147 new_sp_m014 NA
## 6148 new_sp_m014 NA
## 6149 new_sp_m014 NA
## 6150 new_sp_m014 NA
## 6151 new_sp_m014 NA
## 6152 new_sp_m014 NA
## 6153 new_sp_m014 NA
## 6154 new_sp_m014 NA
## 6155 new_sp_m014 NA
## 6156 new_sp_m014 1
## 6157 new_sp_m014 1
## 6158 new_sp_m014 0
## 6159 new_sp_m014 2
## 6160 new_sp_m014 0
## 6161 new_sp_m014 0
## 6162 new_sp_m014 1
## 6163 new_sp_m014 0
## 6164 new_sp_m014 0
## 6165 new_sp_m014 1
## 6166 new_sp_m014 0
## 6167 new_sp_m014 0
## 6168 new_sp_m014 0
## 6169 new_sp_m014 0
## 6170 new_sp_m014 0
## 6171 new_sp_m014 1
## 6172 new_sp_m014 1
## 6173 new_sp_m014 0
## 6174 new_sp_m014 NA
## 6175 new_sp_m014 NA
## 6176 new_sp_m014 NA
## 6177 new_sp_m014 NA
## 6178 new_sp_m014 NA
## 6179 new_sp_m014 NA
## 6180 new_sp_m014 NA
## 6181 new_sp_m014 NA
## 6182 new_sp_m014 NA
## 6183 new_sp_m014 NA
## 6184 new_sp_m014 NA
## 6185 new_sp_m014 NA
## 6186 new_sp_m014 NA
## 6187 new_sp_m014 NA
## 6188 new_sp_m014 NA
## 6189 new_sp_m014 NA
## 6190 new_sp_m014 0
## 6191 new_sp_m014 1
## 6192 new_sp_m014 0
## 6193 new_sp_m014 0
## 6194 new_sp_m014 1
## 6195 new_sp_m014 0
## 6196 new_sp_m014 0
## 6197 new_sp_m014 0
## 6198 new_sp_m014 0
## 6199 new_sp_m014 0
## 6200 new_sp_m014 2
## 6201 new_sp_m014 1
## 6202 new_sp_m014 0
## 6203 new_sp_m014 0
## 6204 new_sp_m014 0
## 6205 new_sp_m014 0
## 6206 new_sp_m014 2
## 6207 new_sp_m014 0
## 6208 new_sp_m014 NA
## 6209 new_sp_m014 NA
## 6210 new_sp_m014 NA
## 6211 new_sp_m014 NA
## 6212 new_sp_m014 NA
## 6213 new_sp_m014 NA
## 6214 new_sp_m014 NA
## 6215 new_sp_m014 NA
## 6216 new_sp_m014 NA
## 6217 new_sp_m014 NA
## 6218 new_sp_m014 NA
## 6219 new_sp_m014 NA
## 6220 new_sp_m014 NA
## 6221 new_sp_m014 NA
## 6222 new_sp_m014 NA
## 6223 new_sp_m014 NA
## 6224 new_sp_m014 13
## 6225 new_sp_m014 11
## 6226 new_sp_m014 6
## 6227 new_sp_m014 5
## 6228 new_sp_m014 NA
## 6229 new_sp_m014 8
## 6230 new_sp_m014 8
## 6231 new_sp_m014 12
## 6232 new_sp_m014 10
## 6233 new_sp_m014 13
## 6234 new_sp_m014 9
## 6235 new_sp_m014 8
## 6236 new_sp_m014 7
## 6237 new_sp_m014 18
## 6238 new_sp_m014 10
## 6239 new_sp_m014 7
## 6240 new_sp_m014 8
## 6241 new_sp_m014 7
## 6242 new_sp_m014 NA
## 6243 new_sp_m014 NA
## 6244 new_sp_m014 NA
## 6245 new_sp_m014 NA
## 6246 new_sp_m014 NA
## 6247 new_sp_m014 NA
## 6248 new_sp_m014 NA
## 6249 new_sp_m014 NA
## 6250 new_sp_m014 NA
## 6251 new_sp_m014 NA
## 6252 new_sp_m014 NA
## 6253 new_sp_m014 NA
## 6254 new_sp_m014 NA
## 6255 new_sp_m014 NA
## 6256 new_sp_m014 NA
## 6257 new_sp_m014 NA
## 6258 new_sp_m014 NA
## 6259 new_sp_m014 4
## 6260 new_sp_m014 8
## 6261 new_sp_m014 9
## 6262 new_sp_m014 NA
## 6263 new_sp_m014 NA
## 6264 new_sp_m014 8
## 6265 new_sp_m014 7
## 6266 new_sp_m014 NA
## 6267 new_sp_m014 7
## 6268 new_sp_m014 8
## 6269 new_sp_m014 NA
## 6270 new_sp_m014 13
## 6271 new_sp_m014 7
## 6272 new_sp_m014 4
## 6273 new_sp_m014 12
## 6274 new_sp_m014 8
## 6275 new_sp_m014 8
## 6276 new_sp_m014 NA
## 6277 new_sp_m014 NA
## 6278 new_sp_m014 NA
## 6279 new_sp_m014 NA
## 6280 new_sp_m014 NA
## 6281 new_sp_m014 NA
## 6282 new_sp_m014 NA
## 6283 new_sp_m014 NA
## 6284 new_sp_m014 NA
## 6285 new_sp_m014 NA
## 6286 new_sp_m014 NA
## 6287 new_sp_m014 NA
## 6288 new_sp_m014 NA
## 6289 new_sp_m014 NA
## 6290 new_sp_m014 NA
## 6291 new_sp_m014 NA
## 6292 new_sp_m014 59
## 6293 new_sp_m014 54
## 6294 new_sp_m014 53
## 6295 new_sp_m014 11
## 6296 new_sp_m014 20
## 6297 new_sp_m014 27
## 6298 new_sp_m014 37
## 6299 new_sp_m014 35
## 6300 new_sp_m014 41
## 6301 new_sp_m014 46
## 6302 new_sp_m014 44
## 6303 new_sp_m014 43
## 6304 new_sp_m014 48
## 6305 new_sp_m014 66
## 6306 new_sp_m014 43
## 6307 new_sp_m014 55
## 6308 new_sp_m014 38
## 6309 new_sp_m014 35
## 6310 new_sp_m014 NA
## 6311 new_sp_m014 NA
## 6312 new_sp_m014 NA
## 6313 new_sp_m014 NA
## 6314 new_sp_m014 NA
## 6315 new_sp_m014 NA
## 6316 new_sp_m014 NA
## 6317 new_sp_m014 NA
## 6318 new_sp_m014 NA
## 6319 new_sp_m014 NA
## 6320 new_sp_m014 NA
## 6321 new_sp_m014 NA
## 6322 new_sp_m014 NA
## 6323 new_sp_m014 NA
## 6324 new_sp_m014 NA
## 6325 new_sp_m014 NA
## 6326 new_sp_m014 2
## 6327 new_sp_m014 5
## 6328 new_sp_m014 1
## 6329 new_sp_m014 3
## 6330 new_sp_m014 1
## 6331 new_sp_m014 5
## 6332 new_sp_m014 1
## 6333 new_sp_m014 2
## 6334 new_sp_m014 1
## 6335 new_sp_m014 2
## 6336 new_sp_m014 2
## 6337 new_sp_m014 0
## 6338 new_sp_m014 1
## 6339 new_sp_m014 1
## 6340 new_sp_m014 1
## 6341 new_sp_m014 0
## 6342 new_sp_m014 3
## 6343 new_sp_m014 0
## 6344 new_sp_m014 NA
## 6345 new_sp_m014 13
## 6346 new_sp_m014 5
## 6347 new_sp_m014 5
## 6348 new_sp_m014 8
## 6349 new_sp_m014 1
## 6350 new_sp_m014 4
## 6351 new_sp_m014 6
## 6352 new_sp_m014 8
## 6353 new_sp_m014 NA
## 6354 new_sp_m014 14
## 6355 new_sp_m014 7
## 6356 new_sp_m014 NA
## 6357 new_sp_m014 NA
## 6358 new_sp_m014 NA
## 6359 new_sp_m014 NA
## 6360 new_sp_m014 NA
## 6361 new_sp_m014 NA
## 6362 new_sp_m014 NA
## 6363 new_sp_m014 NA
## 6364 new_sp_m014 NA
## 6365 new_sp_m014 NA
## 6366 new_sp_m014 NA
## 6367 new_sp_m014 NA
## 6368 new_sp_m014 NA
## 6369 new_sp_m014 NA
## 6370 new_sp_m014 NA
## 6371 new_sp_m014 NA
## 6372 new_sp_m014 7
## 6373 new_sp_m014 11
## 6374 new_sp_m014 NA
## 6375 new_sp_m014 13
## 6376 new_sp_m014 11
## 6377 new_sp_m014 4
## 6378 new_sp_m014 NA
## 6379 new_sp_m014 10
## 6380 new_sp_m014 10
## 6381 new_sp_m014 9
## 6382 new_sp_m014 11
## 6383 new_sp_m014 15
## 6384 new_sp_m014 7
## 6385 new_sp_m014 15
## 6386 new_sp_m014 15
## 6387 new_sp_m014 21
## 6388 new_sp_m014 15
## 6389 new_sp_m014 9
## 6390 new_sp_m014 NA
## 6391 new_sp_m014 NA
## 6392 new_sp_m014 NA
## 6393 new_sp_m014 NA
## 6394 new_sp_m014 NA
## 6395 new_sp_m014 NA
## 6396 new_sp_m014 NA
## 6397 new_sp_m014 NA
## 6398 new_sp_m014 NA
## 6399 new_sp_m014 NA
## 6400 new_sp_m014 NA
## 6401 new_sp_m014 NA
## 6402 new_sp_m014 NA
## 6403 new_sp_m014 NA
## 6404 new_sp_m014 NA
## 6405 new_sp_m014 NA
## 6406 new_sp_m014 NA
## 6407 new_sp_m014 NA
## 6408 new_sp_m014 NA
## 6409 new_sp_m014 NA
## 6410 new_sp_m014 NA
## 6411 new_sp_m014 NA
## 6412 new_sp_m014 NA
## 6413 new_sp_m014 NA
## 6414 new_sp_m014 NA
## 6415 new_sp_m014 NA
## 6416 new_sp_m014 NA
## 6417 new_sp_m014 NA
## 6418 new_sp_m014 0
## 6419 new_sp_m014 NA
## 6420 new_sp_m014 NA
## 6421 new_sp_m014 0
## 6422 new_sp_m014 NA
## 6423 new_sp_m014 NA
## 6424 new_sp_m014 NA
## 6425 new_sp_m014 NA
## 6426 new_sp_m014 NA
## 6427 new_sp_m014 NA
## 6428 new_sp_m014 NA
## 6429 new_sp_m014 NA
## 6430 new_sp_m014 NA
## 6431 new_sp_m014 NA
## 6432 new_sp_m014 NA
## 6433 new_sp_m014 NA
## 6434 new_sp_m014 NA
## 6435 new_sp_m014 NA
## 6436 new_sp_m014 NA
## 6437 new_sp_m014 NA
## 6438 new_sp_m014 NA
## 6439 new_sp_m014 NA
## 6440 new_sp_m014 0
## 6441 new_sp_m014 0
## 6442 new_sp_m014 0
## 6443 new_sp_m014 0
## 6444 new_sp_m014 0
## 6445 new_sp_m014 NA
## 6446 new_sp_m014 0
## 6447 new_sp_m014 NA
## 6448 new_sp_m014 0
## 6449 new_sp_m014 NA
## 6450 new_sp_m014 0
## 6451 new_sp_m014 0
## 6452 new_sp_m014 0
## 6453 new_sp_m014 0
## 6454 new_sp_m014 0
## 6455 new_sp_m014 0
## 6456 new_sp_m014 0
## 6457 new_sp_m014 0
## 6458 new_sp_m014 NA
## 6459 new_sp_m014 NA
## 6460 new_sp_m014 NA
## 6461 new_sp_m014 NA
## 6462 new_sp_m014 NA
## 6463 new_sp_m014 NA
## 6464 new_sp_m014 NA
## 6465 new_sp_m014 NA
## 6466 new_sp_m014 NA
## 6467 new_sp_m014 NA
## 6468 new_sp_m014 NA
## 6469 new_sp_m014 NA
## 6470 new_sp_m014 NA
## 6471 new_sp_m014 NA
## 6472 new_sp_m014 NA
## 6473 new_sp_m014 NA
## 6474 new_sp_m014 2
## 6475 new_sp_m014 0
## 6476 new_sp_m014 NA
## 6477 new_sp_m014 0
## 6478 new_sp_m014 0
## 6479 new_sp_m014 0
## 6480 new_sp_m014 5
## 6481 new_sp_m014 0
## 6482 new_sp_m014 0
## 6483 new_sp_m014 NA
## 6484 new_sp_m014 0
## 6485 new_sp_m014 2
## 6486 new_sp_m014 1
## 6487 new_sp_m014 2
## 6488 new_sp_m014 2
## 6489 new_sp_m014 0
## 6490 new_sp_m014 1
## 6491 new_sp_m014 0
## 6492 new_sp_m014 NA
## 6493 new_sp_m014 NA
## 6494 new_sp_m014 NA
## 6495 new_sp_m014 NA
## 6496 new_sp_m014 NA
## 6497 new_sp_m014 NA
## 6498 new_sp_m014 NA
## 6499 new_sp_m014 NA
## 6500 new_sp_m014 NA
## 6501 new_sp_m014 NA
## 6502 new_sp_m014 NA
## 6503 new_sp_m014 NA
## 6504 new_sp_m014 NA
## 6505 new_sp_m014 NA
## 6506 new_sp_m014 NA
## 6507 new_sp_m014 NA
## 6508 new_sp_m014 NA
## 6509 new_sp_m014 NA
## 6510 new_sp_m014 NA
## 6511 new_sp_m014 11
## 6512 new_sp_m014 18
## 6513 new_sp_m014 16
## 6514 new_sp_m014 23
## 6515 new_sp_m014 1
## 6516 new_sp_m014 3
## 6517 new_sp_m014 9
## 6518 new_sp_m014 5
## 6519 new_sp_m014 5
## 6520 new_sp_m014 1
## 6521 new_sp_m014 6
## 6522 new_sp_m014 6
## 6523 new_sp_m014 9
## 6524 new_sp_m014 6
## 6525 new_sp_m014 10
## 6526 new_sp_m014 NA
## 6527 new_sp_m014 NA
## 6528 new_sp_m014 NA
## 6529 new_sp_m014 NA
## 6530 new_sp_m014 NA
## 6531 new_sp_m014 NA
## 6532 new_sp_m014 NA
## 6533 new_sp_m014 NA
## 6534 new_sp_m014 NA
## 6535 new_sp_m014 NA
## 6536 new_sp_m014 NA
## 6537 new_sp_m014 NA
## 6538 new_sp_m014 NA
## 6539 new_sp_m014 NA
## 6540 new_sp_m014 NA
## 6541 new_sp_m014 NA
## 6542 new_sp_m014 NA
## 6543 new_sp_m014 NA
## 6544 new_sp_m014 NA
## 6545 new_sp_m014 NA
## 6546 new_sp_m014 NA
## 6547 new_sp_m014 NA
## 6548 new_sp_m014 NA
## 6549 new_sp_m014 NA
## 6550 new_sp_m014 NA
## 6551 new_sp_m014 0
## 6552 new_sp_m014 33
## 6553 new_sp_m014 40
## 6554 new_sp_m014 50
## 6555 new_sp_m014 48
## 6556 new_sp_m014 34
## 6557 new_sp_m014 23
## 6558 new_sp_m014 22
## 6559 new_sp_m014 20
## 6560 new_sp_m014 NA
## 6561 new_sp_m014 NA
## 6562 new_sp_m014 NA
## 6563 new_sp_m014 NA
## 6564 new_sp_m014 NA
## 6565 new_sp_m014 NA
## 6566 new_sp_m014 NA
## 6567 new_sp_m014 NA
## 6568 new_sp_m014 NA
## 6569 new_sp_m014 NA
## 6570 new_sp_m014 NA
## 6571 new_sp_m014 NA
## 6572 new_sp_m014 NA
## 6573 new_sp_m014 NA
## 6574 new_sp_m014 NA
## 6575 new_sp_m014 NA
## 6576 new_sp_m014 1
## 6577 new_sp_m014 0
## 6578 new_sp_m014 2
## 6579 new_sp_m014 0
## 6580 new_sp_m014 5
## 6581 new_sp_m014 16
## 6582 new_sp_m014 1
## 6583 new_sp_m014 2
## 6584 new_sp_m014 3
## 6585 new_sp_m014 0
## 6586 new_sp_m014 2
## 6587 new_sp_m014 0
## 6588 new_sp_m014 2
## 6589 new_sp_m014 3
## 6590 new_sp_m014 0
## 6591 new_sp_m014 1
## 6592 new_sp_m014 0
## 6593 new_sp_m014 1
## 6594 new_sp_m014 NA
## 6595 new_sp_m014 NA
## 6596 new_sp_m014 NA
## 6597 new_sp_m014 NA
## 6598 new_sp_m014 NA
## 6599 new_sp_m014 NA
## 6600 new_sp_m014 NA
## 6601 new_sp_m014 NA
## 6602 new_sp_m014 NA
## 6603 new_sp_m014 NA
## 6604 new_sp_m014 NA
## 6605 new_sp_m014 NA
## 6606 new_sp_m014 NA
## 6607 new_sp_m014 NA
## 6608 new_sp_m014 NA
## 6609 new_sp_m014 NA
## 6610 new_sp_m014 NA
## 6611 new_sp_m014 NA
## 6612 new_sp_m014 NA
## 6613 new_sp_m014 NA
## 6614 new_sp_m014 NA
## 6615 new_sp_m014 NA
## 6616 new_sp_m014 NA
## 6617 new_sp_m014 NA
## 6618 new_sp_m014 0
## 6619 new_sp_m014 NA
## 6620 new_sp_m014 NA
## 6621 new_sp_m014 0
## 6622 new_sp_m014 NA
## 6623 new_sp_m014 NA
## 6624 new_sp_m014 NA
## 6625 new_sp_m014 0
## 6626 new_sp_m014 0
## 6627 new_sp_m014 0
## 6628 new_sp_m014 NA
## 6629 new_sp_m014 NA
## 6630 new_sp_m014 NA
## 6631 new_sp_m014 NA
## 6632 new_sp_m014 NA
## 6633 new_sp_m014 NA
## 6634 new_sp_m014 NA
## 6635 new_sp_m014 NA
## 6636 new_sp_m014 NA
## 6637 new_sp_m014 NA
## 6638 new_sp_m014 NA
## 6639 new_sp_m014 NA
## 6640 new_sp_m014 NA
## 6641 new_sp_m014 NA
## 6642 new_sp_m014 NA
## 6643 new_sp_m014 NA
## 6644 new_sp_m014 1
## 6645 new_sp_m014 NA
## 6646 new_sp_m014 NA
## 6647 new_sp_m014 1
## 6648 new_sp_m014 NA
## 6649 new_sp_m014 NA
## 6650 new_sp_m014 NA
## 6651 new_sp_m014 NA
## 6652 new_sp_m014 4
## 6653 new_sp_m014 NA
## 6654 new_sp_m014 NA
## 6655 new_sp_m014 0
## 6656 new_sp_m014 1
## 6657 new_sp_m014 2
## 6658 new_sp_m014 NA
## 6659 new_sp_m014 0
## 6660 new_sp_m014 1
## 6661 new_sp_m014 NA
## 6662 new_sp_m014 NA
## 6663 new_sp_m014 NA
## 6664 new_sp_m014 NA
## 6665 new_sp_m014 NA
## 6666 new_sp_m014 NA
## 6667 new_sp_m014 NA
## 6668 new_sp_m014 NA
## 6669 new_sp_m014 NA
## 6670 new_sp_m014 NA
## 6671 new_sp_m014 NA
## 6672 new_sp_m014 NA
## 6673 new_sp_m014 NA
## 6674 new_sp_m014 NA
## 6675 new_sp_m014 NA
## 6676 new_sp_m014 NA
## 6677 new_sp_m014 NA
## 6678 new_sp_m014 370
## 6679 new_sp_m014 372
## 6680 new_sp_m014 340
## 6681 new_sp_m014 334
## 6682 new_sp_m014 310
## 6683 new_sp_m014 283
## 6684 new_sp_m014 231
## 6685 new_sp_m014 259
## 6686 new_sp_m014 261
## 6687 new_sp_m014 284
## 6688 new_sp_m014 257
## 6689 new_sp_m014 255
## 6690 new_sp_m014 234
## 6691 new_sp_m014 269
## 6692 new_sp_m014 250
## 6693 new_sp_m014 268
## 6694 new_sp_m014 295
## 6695 new_sp_m014 272
## 6696 new_sp_m014 NA
## 6697 new_sp_m014 NA
## 6698 new_sp_m014 NA
## 6699 new_sp_m014 NA
## 6700 new_sp_m014 NA
## 6701 new_sp_m014 NA
## 6702 new_sp_m014 NA
## 6703 new_sp_m014 NA
## 6704 new_sp_m014 NA
## 6705 new_sp_m014 NA
## 6706 new_sp_m014 NA
## 6707 new_sp_m014 NA
## 6708 new_sp_m014 NA
## 6709 new_sp_m014 NA
## 6710 new_sp_m014 NA
## 6711 new_sp_m014 NA
## 6712 new_sp_m014 10
## 6713 new_sp_m014 9
## 6714 new_sp_m014 12
## 6715 new_sp_m014 24
## 6716 new_sp_m014 11
## 6717 new_sp_m014 21
## 6718 new_sp_m014 9
## 6719 new_sp_m014 NA
## 6720 new_sp_m014 10
## 6721 new_sp_m014 NA
## 6722 new_sp_m014 NA
## 6723 new_sp_m014 8
## 6724 new_sp_m014 14
## 6725 new_sp_m014 9
## 6726 new_sp_m014 15
## 6727 new_sp_m014 NA
## 6728 new_sp_m014 8
## 6729 new_sp_m014 9
## 6730 new_sp_m014 NA
## 6731 new_sp_m014 NA
## 6732 new_sp_m014 NA
## 6733 new_sp_m014 NA
## 6734 new_sp_m014 NA
## 6735 new_sp_m014 NA
## 6736 new_sp_m014 NA
## 6737 new_sp_m014 NA
## 6738 new_sp_m014 NA
## 6739 new_sp_m014 NA
## 6740 new_sp_m014 NA
## 6741 new_sp_m014 NA
## 6742 new_sp_m014 NA
## 6743 new_sp_m014 NA
## 6744 new_sp_m014 NA
## 6745 new_sp_m014 NA
## 6746 new_sp_m014 NA
## 6747 new_sp_m014 NA
## 6748 new_sp_m014 NA
## 6749 new_sp_m014 NA
## 6750 new_sp_m014 4
## 6751 new_sp_m014 2
## 6752 new_sp_m014 NA
## 6753 new_sp_m014 1
## 6754 new_sp_m014 2
## 6755 new_sp_m014 1
## 6756 new_sp_m014 NA
## 6757 new_sp_m014 0
## 6758 new_sp_m014 2
## 6759 new_sp_m014 0
## 6760 new_sp_m014 2
## 6761 new_sp_m014 1
## 6762 new_sp_m014 0
## 6763 new_sp_m014 0
## 6764 new_sp_m014 NA
## 6765 new_sp_m014 NA
## 6766 new_sp_m014 NA
## 6767 new_sp_m014 NA
## 6768 new_sp_m014 NA
## 6769 new_sp_m014 NA
## 6770 new_sp_m014 NA
## 6771 new_sp_m014 NA
## 6772 new_sp_m014 NA
## 6773 new_sp_m014 NA
## 6774 new_sp_m014 NA
## 6775 new_sp_m014 NA
## 6776 new_sp_m014 NA
## 6777 new_sp_m014 NA
## 6778 new_sp_m014 NA
## 6779 new_sp_m014 NA
## 6780 new_sp_m014 NA
## 6781 new_sp_m014 NA
## 6782 new_sp_m014 2
## 6783 new_sp_m014 11
## 6784 new_sp_m014 8
## 6785 new_sp_m014 8
## 6786 new_sp_m014 10
## 6787 new_sp_m014 6
## 6788 new_sp_m014 13
## 6789 new_sp_m014 10
## 6790 new_sp_m014 9
## 6791 new_sp_m014 9
## 6792 new_sp_m014 13
## 6793 new_sp_m014 5
## 6794 new_sp_m014 4
## 6795 new_sp_m014 7
## 6796 new_sp_m014 3
## 6797 new_sp_m014 8
## 6798 new_sp_m014 NA
## 6799 new_sp_m014 NA
## 6800 new_sp_m014 NA
## 6801 new_sp_m014 NA
## 6802 new_sp_m014 NA
## 6803 new_sp_m014 NA
## 6804 new_sp_m014 NA
## 6805 new_sp_m014 NA
## 6806 new_sp_m014 NA
## 6807 new_sp_m014 NA
## 6808 new_sp_m014 NA
## 6809 new_sp_m014 NA
## 6810 new_sp_m014 NA
## 6811 new_sp_m014 NA
## 6812 new_sp_m014 NA
## 6813 new_sp_m014 NA
## 6814 new_sp_m014 183
## 6815 new_sp_m014 171
## 6816 new_sp_m014 188
## 6817 new_sp_m014 198
## 6818 new_sp_m014 170
## 6819 new_sp_m014 200
## 6820 new_sp_m014 212
## 6821 new_sp_m014 187
## 6822 new_sp_m014 181
## 6823 new_sp_m014 208
## 6824 new_sp_m014 190
## 6825 new_sp_m014 204
## 6826 new_sp_m014 189
## 6827 new_sp_m014 191
## 6828 new_sp_m014 196
## 6829 new_sp_m014 232
## 6830 new_sp_m014 190
## 6831 new_sp_m014 209
## 6832 new_sp_m014 NA
## 6833 new_sp_m014 NA
## 6834 new_sp_m014 NA
## 6835 new_sp_m014 NA
## 6836 new_sp_m014 NA
## 6837 new_sp_m014 NA
## 6838 new_sp_m014 NA
## 6839 new_sp_m014 NA
## 6840 new_sp_m014 NA
## 6841 new_sp_m014 NA
## 6842 new_sp_m014 NA
## 6843 new_sp_m014 NA
## 6844 new_sp_m014 NA
## 6845 new_sp_m014 NA
## 6846 new_sp_m014 NA
## 6847 new_sp_m014 NA
## 6848 new_sp_m014 19
## 6849 new_sp_m014 15
## 6850 new_sp_m014 12
## 6851 new_sp_m014 10
## 6852 new_sp_m014 18
## 6853 new_sp_m014 6
## 6854 new_sp_m014 17
## 6855 new_sp_m014 14
## 6856 new_sp_m014 11
## 6857 new_sp_m014 12
## 6858 new_sp_m014 14
## 6859 new_sp_m014 12
## 6860 new_sp_m014 12
## 6861 new_sp_m014 11
## 6862 new_sp_m014 11
## 6863 new_sp_m014 5
## 6864 new_sp_m014 12
## 6865 new_sp_m014 10
## 6866 new_sp_m014 NA
## 6867 new_sp_m014 NA
## 6868 new_sp_m014 NA
## 6869 new_sp_m014 NA
## 6870 new_sp_m014 NA
## 6871 new_sp_m014 NA
## 6872 new_sp_m014 NA
## 6873 new_sp_m014 NA
## 6874 new_sp_m014 NA
## 6875 new_sp_m014 NA
## 6876 new_sp_m014 NA
## 6877 new_sp_m014 NA
## 6878 new_sp_m014 NA
## 6879 new_sp_m014 NA
## 6880 new_sp_m014 NA
## 6881 new_sp_m014 NA
## 6882 new_sp_m014 4
## 6883 new_sp_m014 4
## 6884 new_sp_m014 3
## 6885 new_sp_m014 2
## 6886 new_sp_m014 1
## 6887 new_sp_m014 0
## 6888 new_sp_m014 2
## 6889 new_sp_m014 1
## 6890 new_sp_m014 3
## 6891 new_sp_m014 1
## 6892 new_sp_m014 1
## 6893 new_sp_m014 1
## 6894 new_sp_m014 1
## 6895 new_sp_m014 1
## 6896 new_sp_m014 1
## 6897 new_sp_m014 1
## 6898 new_sp_m014 0
## 6899 new_sp_m014 3
## 6900 new_sp_m014 NA
## 6901 new_sp_m014 NA
## 6902 new_sp_m014 NA
## 6903 new_sp_m014 NA
## 6904 new_sp_m014 NA
## 6905 new_sp_m014 NA
## 6906 new_sp_m014 NA
## 6907 new_sp_m014 NA
## 6908 new_sp_m014 NA
## 6909 new_sp_m014 NA
## 6910 new_sp_m014 NA
## 6911 new_sp_m014 NA
## 6912 new_sp_m014 NA
## 6913 new_sp_m014 NA
## 6914 new_sp_m014 NA
## 6915 new_sp_m014 NA
## 6916 new_sp_m014 0
## 6917 new_sp_m014 0
## 6918 new_sp_m014 NA
## 6919 new_sp_m014 NA
## 6920 new_sp_m014 NA
## 6921 new_sp_m014 NA
## 6922 new_sp_m014 NA
## 6923 new_sp_m014 NA
## 6924 new_sp_m014 NA
## 6925 new_sp_m014 NA
## 6926 new_sp_m014 NA
## 6927 new_sp_m014 NA
## 6928 new_sp_m014 NA
## 6929 new_sp_m014 NA
## 6930 new_sp_m014 NA
## 6931 new_sp_m014 NA
## 6932 new_sp_m014 NA
## 6933 new_sp_m014 NA
## 6934 new_sp_m014 NA
## 6935 new_sp_m014 NA
## 6936 new_sp_m014 NA
## 6937 new_sp_m014 NA
## 6938 new_sp_m014 NA
## 6939 new_sp_m014 NA
## 6940 new_sp_m014 NA
## 6941 new_sp_m014 NA
## 6942 new_sp_m014 NA
## 6943 new_sp_m014 NA
## 6944 new_sp_m014 NA
## 6945 new_sp_m014 NA
## 6946 new_sp_m014 NA
## 6947 new_sp_m014 NA
## 6948 new_sp_m014 NA
## 6949 new_sp_m014 NA
## 6950 new_sp_m014 NA
## 6951 new_sp_m014 2
## 6952 new_sp_m014 NA
## 6953 new_sp_m014 0
## 6954 new_sp_m014 4
## 6955 new_sp_m014 6
## 6956 new_sp_m014 7
## 6957 new_sp_m014 10
## 6958 new_sp_m014 9
## 6959 new_sp_m014 23
## 6960 new_sp_m014 25
## 6961 new_sp_m014 19
## 6962 new_sp_m014 18
## 6963 new_sp_m014 10
## 6964 new_sp_m014 12
## 6965 new_sp_m014 8
## 6966 new_sp_m014 8
## 6967 new_sp_m014 10
## 6968 new_sp_m014 NA
## 6969 new_sp_m014 NA
## 6970 new_sp_m014 NA
## 6971 new_sp_m014 NA
## 6972 new_sp_m014 NA
## 6973 new_sp_m014 NA
## 6974 new_sp_m014 NA
## 6975 new_sp_m014 NA
## 6976 new_sp_m014 NA
## 6977 new_sp_m014 NA
## 6978 new_sp_m014 NA
## 6979 new_sp_m014 NA
## 6980 new_sp_m014 NA
## 6981 new_sp_m014 NA
## 6982 new_sp_m014 NA
## 6983 new_sp_m014 NA
## 6984 new_sp_m014 0
## 6985 new_sp_m014 2
## 6986 new_sp_m014 NA
## 6987 new_sp_m014 2
## 6988 new_sp_m014 0
## 6989 new_sp_m014 2
## 6990 new_sp_m014 1
## 6991 new_sp_m014 0
## 6992 new_sp_m014 1
## 6993 new_sp_m014 1
## 6994 new_sp_m014 1
## 6995 new_sp_m014 1
## 6996 new_sp_m014 1
## 6997 new_sp_m014 NA
## 6998 new_sp_m014 0
## 6999 new_sp_m014 4
## 7000 new_sp_m014 2
## 7001 new_sp_m014 0
## 7002 new_sp_m014 NA
## 7003 new_sp_m014 NA
## 7004 new_sp_m014 NA
## 7005 new_sp_m014 NA
## 7006 new_sp_m014 NA
## 7007 new_sp_m014 NA
## 7008 new_sp_m014 NA
## 7009 new_sp_m014 NA
## 7010 new_sp_m014 NA
## 7011 new_sp_m014 NA
## 7012 new_sp_m014 NA
## 7013 new_sp_m014 NA
## 7014 new_sp_m014 NA
## 7015 new_sp_m014 NA
## 7016 new_sp_m014 NA
## 7017 new_sp_m014 NA
## 7018 new_sp_m014 NA
## 7019 new_sp_m014 NA
## 7020 new_sp_m014 NA
## 7021 new_sp_m014 NA
## 7022 new_sp_m014 32
## 7023 new_sp_m014 NA
## 7024 new_sp_m014 NA
## 7025 new_sp_m014 19
## 7026 new_sp_m014 39
## 7027 new_sp_m014 24
## 7028 new_sp_m014 35
## 7029 new_sp_m014 10
## 7030 new_sp_m014 17
## 7031 new_sp_m014 18
## 7032 new_sp_m014 26
## 7033 new_sp_m014 22
## 7034 new_sp_m014 28
## 7035 new_sp_m014 23
## 7036 new_sp_m014 NA
## 7037 new_sp_m014 NA
## 7038 new_sp_m014 NA
## 7039 new_sp_m014 NA
## 7040 new_sp_m014 NA
## 7041 new_sp_m014 NA
## 7042 new_sp_m014 NA
## 7043 new_sp_m014 NA
## 7044 new_sp_m014 NA
## 7045 new_sp_m014 NA
## 7046 new_sp_m014 NA
## 7047 new_sp_m014 NA
## 7048 new_sp_m014 NA
## 7049 new_sp_m014 NA
## 7050 new_sp_m014 NA
## 7051 new_sp_m014 NA
## 7052 new_sp_m014 NA
## 7053 new_sp_m014 92
## 7054 new_sp_m014 103
## 7055 new_sp_m014 56
## 7056 new_sp_m014 58
## 7057 new_sp_m014 51
## 7058 new_sp_m014 39
## 7059 new_sp_m014 57
## 7060 new_sp_m014 49
## 7061 new_sp_m014 54
## 7062 new_sp_m014 54
## 7063 new_sp_m014 49
## 7064 new_sp_m014 48
## 7065 new_sp_m014 36
## 7066 new_sp_m014 41
## 7067 new_sp_m014 59
## 7068 new_sp_m014 61
## 7069 new_sp_m014 58
## 7070 new_sp_m014 NA
## 7071 new_sp_m014 NA
## 7072 new_sp_m014 NA
## 7073 new_sp_m014 NA
## 7074 new_sp_m014 NA
## 7075 new_sp_m014 NA
## 7076 new_sp_m014 NA
## 7077 new_sp_m014 NA
## 7078 new_sp_m014 NA
## 7079 new_sp_m014 NA
## 7080 new_sp_m014 NA
## 7081 new_sp_m014 NA
## 7082 new_sp_m014 NA
## 7083 new_sp_m014 NA
## 7084 new_sp_m014 NA
## 7085 new_sp_m014 NA
## 7086 new_sp_m014 NA
## 7087 new_sp_m014 0
## 7088 new_sp_m014 NA
## 7089 new_sp_m014 NA
## 7090 new_sp_m014 NA
## 7091 new_sp_m014 NA
## 7092 new_sp_m014 NA
## 7093 new_sp_m014 NA
## 7094 new_sp_m014 0
## 7095 new_sp_m014 NA
## 7096 new_sp_m014 NA
## 7097 new_sp_m014 NA
## 7098 new_sp_m014 0
## 7099 new_sp_m014 NA
## 7100 new_sp_m014 NA
## 7101 new_sp_m014 NA
## 7102 new_sp_m014 NA
## 7103 new_sp_m014 NA
## 7104 new_sp_m014 NA
## 7105 new_sp_m014 NA
## 7106 new_sp_m014 NA
## 7107 new_sp_m014 NA
## 7108 new_sp_m014 NA
## 7109 new_sp_m014 NA
## 7110 new_sp_m014 NA
## 7111 new_sp_m014 NA
## 7112 new_sp_m014 NA
## 7113 new_sp_m014 NA
## 7114 new_sp_m014 NA
## 7115 new_sp_m014 NA
## 7116 new_sp_m014 NA
## 7117 new_sp_m014 NA
## 7118 new_sp_m014 NA
## 7119 new_sp_m014 NA
## 7120 new_sp_m014 1
## 7121 new_sp_m014 0
## 7122 new_sp_m014 NA
## 7123 new_sp_m014 NA
## 7124 new_sp_m014 NA
## 7125 new_sp_m014 NA
## 7126 new_sp_m014 NA
## 7127 new_sp_m014 NA
## 7128 new_sp_m014 0
## 7129 new_sp_m014 NA
## 7130 new_sp_m014 NA
## 7131 new_sp_m014 0
## 7132 new_sp_m014 1
## 7133 new_sp_m014 0
## 7134 new_sp_m014 0
## 7135 new_sp_m014 0
## 7136 new_sp_m014 1
## 7137 new_sp_m014 0
## 7138 new_sp_m014 NA
## 7139 new_sp_m014 NA
## 7140 new_sp_m014 NA
## 7141 new_sp_m014 NA
## 7142 new_sp_m014 NA
## 7143 new_sp_m014 NA
## 7144 new_sp_m014 NA
## 7145 new_sp_m014 NA
## 7146 new_sp_m014 NA
## 7147 new_sp_m014 NA
## 7148 new_sp_m014 NA
## 7149 new_sp_m014 NA
## 7150 new_sp_m014 NA
## 7151 new_sp_m014 NA
## 7152 new_sp_m014 NA
## 7153 new_sp_m014 NA
## 7154 new_sp_m014 57
## 7155 new_sp_m014 15
## 7156 new_sp_m014 87
## 7157 new_sp_m014 83
## 7158 new_sp_m014 96
## 7159 new_sp_m014 110
## 7160 new_sp_m014 82
## 7161 new_sp_m014 266
## 7162 new_sp_m014 40
## 7163 new_sp_m014 49
## 7164 new_sp_m014 48
## 7165 new_sp_m014 29
## 7166 new_sp_m014 23
## 7167 new_sp_m014 29
## 7168 new_sp_m014 32
## 7169 new_sp_m014 68
## 7170 new_sp_m014 33
## 7171 new_sp_m014 30
## 7172 new_sp_m014 NA
## 7173 new_sp_m014 NA
## 7174 new_sp_m014 NA
## 7175 new_sp_m014 NA
## 7176 new_sp_m014 NA
## 7177 new_sp_m014 NA
## 7178 new_sp_m014 NA
## 7179 new_sp_m014 NA
## 7180 new_sp_m014 NA
## 7181 new_sp_m014 NA
## 7182 new_sp_m014 NA
## 7183 new_sp_m014 NA
## 7184 new_sp_m014 NA
## 7185 new_sp_m014 NA
## 7186 new_sp_m014 NA
## 7187 new_sp_m014 NA
## 7188 new_sp_m014 91
## 7189 new_sp_m014 NA
## 7190 new_sp_m014 NA
## 7191 new_sp_m014 NA
## 7192 new_sp_m014 NA
## 7193 new_sp_m014 349
## 7194 new_sp_m014 NA
## 7195 new_sp_m014 1135
## 7196 new_sp_m014 302
## 7197 new_sp_m014 209
## 7198 new_sp_m014 135
## 7199 new_sp_m014 150
## 7200 new_sp_m014 152
## 7201 new_sp_m014 101
## 7202 new_sp_m014 92
## 7203 new_sp_m014 NA
## 7204 new_sp_m014 105
## 7205 new_sp_m014 141
## 7206 new_sp_m014 NA
## 7207 new_sp_m014 NA
## 7208 new_sp_m014 NA
## 7209 new_sp_m014 NA
## 7210 new_sp_m014 NA
## 7211 new_sp_m014 NA
## 7212 new_sp_m014 NA
## 7213 new_sp_m014 NA
## 7214 new_sp_m014 NA
## 7215 new_sp_m014 NA
## 7216 new_sp_m014 NA
## 7217 new_sp_m014 NA
## 7218 new_sp_m014 NA
## 7219 new_sp_m014 NA
## 7220 new_sp_m014 NA
## 7221 new_sp_m014 NA
## 7222 new_sp_m014 NA
## 7223 new_sp_m014 NA
## 7224 new_sp_m014 NA
## 7225 new_sp_m014 NA
## 7226 new_sp_m014 NA
## 7227 new_sp_m014 NA
## 7228 new_sp_m014 NA
## 7229 new_sp_m014 191
## 7230 new_sp_m014 133
## 7231 new_sp_m014 187
## 7232 new_sp_m014 210
## 7233 new_sp_m014 215
## 7234 new_sp_m014 138
## 7235 new_sp_m014 127
## 7236 new_sp_m014 125
## 7237 new_sp_m014 150
## 7238 new_sp_m014 152
## 7239 new_sp_m014 120
## 7240 new_sp_m014 NA
## 7241 new_sp_m1524 NA
## 7242 new_sp_m1524 NA
## 7243 new_sp_m1524 NA
## 7244 new_sp_m1524 NA
## 7245 new_sp_m1524 NA
## 7246 new_sp_m1524 NA
## 7247 new_sp_m1524 NA
## 7248 new_sp_m1524 NA
## 7249 new_sp_m1524 NA
## 7250 new_sp_m1524 NA
## 7251 new_sp_m1524 NA
## 7252 new_sp_m1524 NA
## 7253 new_sp_m1524 NA
## 7254 new_sp_m1524 NA
## 7255 new_sp_m1524 NA
## 7256 new_sp_m1524 NA
## 7257 new_sp_m1524 NA
## 7258 new_sp_m1524 10
## 7259 new_sp_m1524 129
## 7260 new_sp_m1524 55
## 7261 new_sp_m1524 228
## 7262 new_sp_m1524 379
## 7263 new_sp_m1524 476
## 7264 new_sp_m1524 511
## 7265 new_sp_m1524 537
## 7266 new_sp_m1524 606
## 7267 new_sp_m1524 837
## 7268 new_sp_m1524 856
## 7269 new_sp_m1524 941
## 7270 new_sp_m1524 906
## 7271 new_sp_m1524 986
## 7272 new_sp_m1524 1010
## 7273 new_sp_m1524 1116
## 7274 new_sp_m1524 NA
## 7275 new_sp_m1524 NA
## 7276 new_sp_m1524 NA
## 7277 new_sp_m1524 NA
## 7278 new_sp_m1524 NA
## 7279 new_sp_m1524 NA
## 7280 new_sp_m1524 NA
## 7281 new_sp_m1524 NA
## 7282 new_sp_m1524 NA
## 7283 new_sp_m1524 NA
## 7284 new_sp_m1524 NA
## 7285 new_sp_m1524 NA
## 7286 new_sp_m1524 NA
## 7287 new_sp_m1524 NA
## 7288 new_sp_m1524 NA
## 7289 new_sp_m1524 NA
## 7290 new_sp_m1524 0
## 7291 new_sp_m1524 NA
## 7292 new_sp_m1524 23
## 7293 new_sp_m1524 17
## 7294 new_sp_m1524 13
## 7295 new_sp_m1524 19
## 7296 new_sp_m1524 13
## 7297 new_sp_m1524 21
## 7298 new_sp_m1524 28
## 7299 new_sp_m1524 12
## 7300 new_sp_m1524 26
## 7301 new_sp_m1524 24
## 7302 new_sp_m1524 19
## 7303 new_sp_m1524 23
## 7304 new_sp_m1524 22
## 7305 new_sp_m1524 28
## 7306 new_sp_m1524 29
## 7307 new_sp_m1524 33
## 7308 new_sp_m1524 NA
## 7309 new_sp_m1524 NA
## 7310 new_sp_m1524 NA
## 7311 new_sp_m1524 NA
## 7312 new_sp_m1524 NA
## 7313 new_sp_m1524 NA
## 7314 new_sp_m1524 NA
## 7315 new_sp_m1524 NA
## 7316 new_sp_m1524 NA
## 7317 new_sp_m1524 NA
## 7318 new_sp_m1524 NA
## 7319 new_sp_m1524 NA
## 7320 new_sp_m1524 NA
## 7321 new_sp_m1524 NA
## 7322 new_sp_m1524 NA
## 7323 new_sp_m1524 NA
## 7324 new_sp_m1524 NA
## 7325 new_sp_m1524 NA
## 7326 new_sp_m1524 1422
## 7327 new_sp_m1524 NA
## 7328 new_sp_m1524 1193
## 7329 new_sp_m1524 927
## 7330 new_sp_m1524 1345
## 7331 new_sp_m1524 1364
## 7332 new_sp_m1524 1316
## 7333 new_sp_m1524 1326
## 7334 new_sp_m1524 1309
## 7335 new_sp_m1524 1173
## 7336 new_sp_m1524 1388
## 7337 new_sp_m1524 1505
## 7338 new_sp_m1524 1225
## 7339 new_sp_m1524 1203
## 7340 new_sp_m1524 1147
## 7341 new_sp_m1524 1102
## 7342 new_sp_m1524 NA
## 7343 new_sp_m1524 NA
## 7344 new_sp_m1524 NA
## 7345 new_sp_m1524 NA
## 7346 new_sp_m1524 NA
## 7347 new_sp_m1524 NA
## 7348 new_sp_m1524 NA
## 7349 new_sp_m1524 NA
## 7350 new_sp_m1524 NA
## 7351 new_sp_m1524 NA
## 7352 new_sp_m1524 NA
## 7353 new_sp_m1524 NA
## 7354 new_sp_m1524 NA
## 7355 new_sp_m1524 NA
## 7356 new_sp_m1524 NA
## 7357 new_sp_m1524 NA
## 7358 new_sp_m1524 NA
## 7359 new_sp_m1524 NA
## 7360 new_sp_m1524 0
## 7361 new_sp_m1524 NA
## 7362 new_sp_m1524 NA
## 7363 new_sp_m1524 NA
## 7364 new_sp_m1524 NA
## 7365 new_sp_m1524 NA
## 7366 new_sp_m1524 NA
## 7367 new_sp_m1524 NA
## 7368 new_sp_m1524 NA
## 7369 new_sp_m1524 NA
## 7370 new_sp_m1524 NA
## 7371 new_sp_m1524 0
## 7372 new_sp_m1524 0
## 7373 new_sp_m1524 0
## 7374 new_sp_m1524 NA
## 7375 new_sp_m1524 NA
## 7376 new_sp_m1524 NA
## 7377 new_sp_m1524 NA
## 7378 new_sp_m1524 NA
## 7379 new_sp_m1524 NA
## 7380 new_sp_m1524 NA
## 7381 new_sp_m1524 NA
## 7382 new_sp_m1524 NA
## 7383 new_sp_m1524 NA
## 7384 new_sp_m1524 NA
## 7385 new_sp_m1524 NA
## 7386 new_sp_m1524 NA
## 7387 new_sp_m1524 NA
## 7388 new_sp_m1524 NA
## 7389 new_sp_m1524 NA
## 7390 new_sp_m1524 NA
## 7391 new_sp_m1524 NA
## 7392 new_sp_m1524 NA
## 7393 new_sp_m1524 0
## 7394 new_sp_m1524 0
## 7395 new_sp_m1524 0
## 7396 new_sp_m1524 0
## 7397 new_sp_m1524 0
## 7398 new_sp_m1524 NA
## 7399 new_sp_m1524 0
## 7400 new_sp_m1524 0
## 7401 new_sp_m1524 0
## 7402 new_sp_m1524 0
## 7403 new_sp_m1524 1
## 7404 new_sp_m1524 NA
## 7405 new_sp_m1524 0
## 7406 new_sp_m1524 0
## 7407 new_sp_m1524 0
## 7408 new_sp_m1524 0
## 7409 new_sp_m1524 0
## 7410 new_sp_m1524 NA
## 7411 new_sp_m1524 NA
## 7412 new_sp_m1524 NA
## 7413 new_sp_m1524 NA
## 7414 new_sp_m1524 NA
## 7415 new_sp_m1524 NA
## 7416 new_sp_m1524 NA
## 7417 new_sp_m1524 NA
## 7418 new_sp_m1524 NA
## 7419 new_sp_m1524 NA
## 7420 new_sp_m1524 NA
## 7421 new_sp_m1524 NA
## 7422 new_sp_m1524 NA
## 7423 new_sp_m1524 NA
## 7424 new_sp_m1524 NA
## 7425 new_sp_m1524 NA
## 7426 new_sp_m1524 724
## 7427 new_sp_m1524 1036
## 7428 new_sp_m1524 913
## 7429 new_sp_m1524 915
## 7430 new_sp_m1524 1134
## 7431 new_sp_m1524 999
## 7432 new_sp_m1524 892
## 7433 new_sp_m1524 2223
## 7434 new_sp_m1524 2355
## 7435 new_sp_m1524 2684
## 7436 new_sp_m1524 2549
## 7437 new_sp_m1524 2632
## 7438 new_sp_m1524 2824
## 7439 new_sp_m1524 2970
## 7440 new_sp_m1524 3054
## 7441 new_sp_m1524 2900
## 7442 new_sp_m1524 3000
## 7443 new_sp_m1524 2804
## 7444 new_sp_m1524 NA
## 7445 new_sp_m1524 NA
## 7446 new_sp_m1524 NA
## 7447 new_sp_m1524 NA
## 7448 new_sp_m1524 NA
## 7449 new_sp_m1524 NA
## 7450 new_sp_m1524 NA
## 7451 new_sp_m1524 NA
## 7452 new_sp_m1524 NA
## 7453 new_sp_m1524 NA
## 7454 new_sp_m1524 NA
## 7455 new_sp_m1524 NA
## 7456 new_sp_m1524 NA
## 7457 new_sp_m1524 NA
## 7458 new_sp_m1524 NA
## 7459 new_sp_m1524 NA
## 7460 new_sp_m1524 NA
## 7461 new_sp_m1524 NA
## 7462 new_sp_m1524 NA
## 7463 new_sp_m1524 NA
## 7464 new_sp_m1524 NA
## 7465 new_sp_m1524 NA
## 7466 new_sp_m1524 NA
## 7467 new_sp_m1524 NA
## 7468 new_sp_m1524 NA
## 7469 new_sp_m1524 0
## 7470 new_sp_m1524 NA
## 7471 new_sp_m1524 NA
## 7472 new_sp_m1524 NA
## 7473 new_sp_m1524 NA
## 7474 new_sp_m1524 NA
## 7475 new_sp_m1524 0
## 7476 new_sp_m1524 0
## 7477 new_sp_m1524 0
## 7478 new_sp_m1524 NA
## 7479 new_sp_m1524 NA
## 7480 new_sp_m1524 NA
## 7481 new_sp_m1524 NA
## 7482 new_sp_m1524 NA
## 7483 new_sp_m1524 NA
## 7484 new_sp_m1524 NA
## 7485 new_sp_m1524 NA
## 7486 new_sp_m1524 NA
## 7487 new_sp_m1524 NA
## 7488 new_sp_m1524 NA
## 7489 new_sp_m1524 NA
## 7490 new_sp_m1524 NA
## 7491 new_sp_m1524 NA
## 7492 new_sp_m1524 NA
## 7493 new_sp_m1524 NA
## 7494 new_sp_m1524 NA
## 7495 new_sp_m1524 0
## 7496 new_sp_m1524 NA
## 7497 new_sp_m1524 NA
## 7498 new_sp_m1524 NA
## 7499 new_sp_m1524 0
## 7500 new_sp_m1524 NA
## 7501 new_sp_m1524 0
## 7502 new_sp_m1524 0
## 7503 new_sp_m1524 NA
## 7504 new_sp_m1524 NA
## 7505 new_sp_m1524 NA
## 7506 new_sp_m1524 0
## 7507 new_sp_m1524 0
## 7508 new_sp_m1524 0
## 7509 new_sp_m1524 0
## 7510 new_sp_m1524 0
## 7511 new_sp_m1524 0
## 7512 new_sp_m1524 NA
## 7513 new_sp_m1524 NA
## 7514 new_sp_m1524 NA
## 7515 new_sp_m1524 NA
## 7516 new_sp_m1524 NA
## 7517 new_sp_m1524 NA
## 7518 new_sp_m1524 NA
## 7519 new_sp_m1524 NA
## 7520 new_sp_m1524 NA
## 7521 new_sp_m1524 NA
## 7522 new_sp_m1524 NA
## 7523 new_sp_m1524 NA
## 7524 new_sp_m1524 NA
## 7525 new_sp_m1524 NA
## 7526 new_sp_m1524 NA
## 7527 new_sp_m1524 NA
## 7528 new_sp_m1524 NA
## 7529 new_sp_m1524 611
## 7530 new_sp_m1524 580
## 7531 new_sp_m1524 578
## 7532 new_sp_m1524 490
## 7533 new_sp_m1524 278
## 7534 new_sp_m1524 682
## 7535 new_sp_m1524 612
## 7536 new_sp_m1524 574
## 7537 new_sp_m1524 588
## 7538 new_sp_m1524 621
## 7539 new_sp_m1524 519
## 7540 new_sp_m1524 656
## 7541 new_sp_m1524 633
## 7542 new_sp_m1524 546
## 7543 new_sp_m1524 536
## 7544 new_sp_m1524 664
## 7545 new_sp_m1524 533
## 7546 new_sp_m1524 NA
## 7547 new_sp_m1524 NA
## 7548 new_sp_m1524 NA
## 7549 new_sp_m1524 NA
## 7550 new_sp_m1524 NA
## 7551 new_sp_m1524 NA
## 7552 new_sp_m1524 NA
## 7553 new_sp_m1524 NA
## 7554 new_sp_m1524 NA
## 7555 new_sp_m1524 NA
## 7556 new_sp_m1524 NA
## 7557 new_sp_m1524 NA
## 7558 new_sp_m1524 NA
## 7559 new_sp_m1524 NA
## 7560 new_sp_m1524 NA
## 7561 new_sp_m1524 NA
## 7562 new_sp_m1524 18
## 7563 new_sp_m1524 53
## 7564 new_sp_m1524 85
## 7565 new_sp_m1524 159
## 7566 new_sp_m1524 151
## 7567 new_sp_m1524 152
## 7568 new_sp_m1524 154
## 7569 new_sp_m1524 95
## 7570 new_sp_m1524 120
## 7571 new_sp_m1524 130
## 7572 new_sp_m1524 170
## 7573 new_sp_m1524 113
## 7574 new_sp_m1524 81
## 7575 new_sp_m1524 53
## 7576 new_sp_m1524 52
## 7577 new_sp_m1524 36
## 7578 new_sp_m1524 28
## 7579 new_sp_m1524 23
## 7580 new_sp_m1524 NA
## 7581 new_sp_m1524 NA
## 7582 new_sp_m1524 NA
## 7583 new_sp_m1524 NA
## 7584 new_sp_m1524 NA
## 7585 new_sp_m1524 NA
## 7586 new_sp_m1524 NA
## 7587 new_sp_m1524 NA
## 7588 new_sp_m1524 NA
## 7589 new_sp_m1524 NA
## 7590 new_sp_m1524 NA
## 7591 new_sp_m1524 NA
## 7592 new_sp_m1524 NA
## 7593 new_sp_m1524 NA
## 7594 new_sp_m1524 NA
## 7595 new_sp_m1524 NA
## 7596 new_sp_m1524 NA
## 7597 new_sp_m1524 NA
## 7598 new_sp_m1524 NA
## 7599 new_sp_m1524 NA
## 7600 new_sp_m1524 NA
## 7601 new_sp_m1524 NA
## 7602 new_sp_m1524 NA
## 7603 new_sp_m1524 NA
## 7604 new_sp_m1524 NA
## 7605 new_sp_m1524 NA
## 7606 new_sp_m1524 NA
## 7607 new_sp_m1524 NA
## 7608 new_sp_m1524 NA
## 7609 new_sp_m1524 NA
## 7610 new_sp_m1524 NA
## 7611 new_sp_m1524 NA
## 7612 new_sp_m1524 NA
## 7613 new_sp_m1524 NA
## 7614 new_sp_m1524 NA
## 7615 new_sp_m1524 NA
## 7616 new_sp_m1524 NA
## 7617 new_sp_m1524 NA
## 7618 new_sp_m1524 NA
## 7619 new_sp_m1524 NA
## 7620 new_sp_m1524 NA
## 7621 new_sp_m1524 NA
## 7622 new_sp_m1524 NA
## 7623 new_sp_m1524 NA
## 7624 new_sp_m1524 NA
## 7625 new_sp_m1524 NA
## 7626 new_sp_m1524 NA
## 7627 new_sp_m1524 NA
## 7628 new_sp_m1524 NA
## 7629 new_sp_m1524 NA
## 7630 new_sp_m1524 NA
## 7631 new_sp_m1524 NA
## 7632 new_sp_m1524 8
## 7633 new_sp_m1524 11
## 7634 new_sp_m1524 13
## 7635 new_sp_m1524 16
## 7636 new_sp_m1524 23
## 7637 new_sp_m1524 15
## 7638 new_sp_m1524 14
## 7639 new_sp_m1524 18
## 7640 new_sp_m1524 32
## 7641 new_sp_m1524 33
## 7642 new_sp_m1524 30
## 7643 new_sp_m1524 46
## 7644 new_sp_m1524 30
## 7645 new_sp_m1524 42
## 7646 new_sp_m1524 38
## 7647 new_sp_m1524 26
## 7648 new_sp_m1524 NA
## 7649 new_sp_m1524 NA
## 7650 new_sp_m1524 NA
## 7651 new_sp_m1524 NA
## 7652 new_sp_m1524 NA
## 7653 new_sp_m1524 NA
## 7654 new_sp_m1524 NA
## 7655 new_sp_m1524 NA
## 7656 new_sp_m1524 NA
## 7657 new_sp_m1524 NA
## 7658 new_sp_m1524 NA
## 7659 new_sp_m1524 NA
## 7660 new_sp_m1524 NA
## 7661 new_sp_m1524 NA
## 7662 new_sp_m1524 NA
## 7663 new_sp_m1524 NA
## 7664 new_sp_m1524 37
## 7665 new_sp_m1524 NA
## 7666 new_sp_m1524 59
## 7667 new_sp_m1524 NA
## 7668 new_sp_m1524 13
## 7669 new_sp_m1524 17
## 7670 new_sp_m1524 15
## 7671 new_sp_m1524 8
## 7672 new_sp_m1524 19
## 7673 new_sp_m1524 19
## 7674 new_sp_m1524 32
## 7675 new_sp_m1524 9
## 7676 new_sp_m1524 12
## 7677 new_sp_m1524 NA
## 7678 new_sp_m1524 4
## 7679 new_sp_m1524 4
## 7680 new_sp_m1524 8
## 7681 new_sp_m1524 5
## 7682 new_sp_m1524 NA
## 7683 new_sp_m1524 NA
## 7684 new_sp_m1524 NA
## 7685 new_sp_m1524 NA
## 7686 new_sp_m1524 NA
## 7687 new_sp_m1524 NA
## 7688 new_sp_m1524 NA
## 7689 new_sp_m1524 NA
## 7690 new_sp_m1524 NA
## 7691 new_sp_m1524 NA
## 7692 new_sp_m1524 NA
## 7693 new_sp_m1524 NA
## 7694 new_sp_m1524 NA
## 7695 new_sp_m1524 NA
## 7696 new_sp_m1524 NA
## 7697 new_sp_m1524 NA
## 7698 new_sp_m1524 13
## 7699 new_sp_m1524 57
## 7700 new_sp_m1524 120
## 7701 new_sp_m1524 44
## 7702 new_sp_m1524 96
## 7703 new_sp_m1524 9
## 7704 new_sp_m1524 1
## 7705 new_sp_m1524 290
## 7706 new_sp_m1524 212
## 7707 new_sp_m1524 248
## 7708 new_sp_m1524 109
## 7709 new_sp_m1524 241
## 7710 new_sp_m1524 NA
## 7711 new_sp_m1524 NA
## 7712 new_sp_m1524 229
## 7713 new_sp_m1524 328
## 7714 new_sp_m1524 NA
## 7715 new_sp_m1524 230
## 7716 new_sp_m1524 NA
## 7717 new_sp_m1524 NA
## 7718 new_sp_m1524 NA
## 7719 new_sp_m1524 NA
## 7720 new_sp_m1524 NA
## 7721 new_sp_m1524 NA
## 7722 new_sp_m1524 NA
## 7723 new_sp_m1524 NA
## 7724 new_sp_m1524 NA
## 7725 new_sp_m1524 NA
## 7726 new_sp_m1524 NA
## 7727 new_sp_m1524 NA
## 7728 new_sp_m1524 NA
## 7729 new_sp_m1524 NA
## 7730 new_sp_m1524 NA
## 7731 new_sp_m1524 NA
## 7732 new_sp_m1524 3
## 7733 new_sp_m1524 1
## 7734 new_sp_m1524 2
## 7735 new_sp_m1524 3
## 7736 new_sp_m1524 0
## 7737 new_sp_m1524 2
## 7738 new_sp_m1524 NA
## 7739 new_sp_m1524 2
## 7740 new_sp_m1524 2
## 7741 new_sp_m1524 3
## 7742 new_sp_m1524 NA
## 7743 new_sp_m1524 NA
## 7744 new_sp_m1524 3
## 7745 new_sp_m1524 2
## 7746 new_sp_m1524 2
## 7747 new_sp_m1524 2
## 7748 new_sp_m1524 2
## 7749 new_sp_m1524 1
## 7750 new_sp_m1524 NA
## 7751 new_sp_m1524 NA
## 7752 new_sp_m1524 NA
## 7753 new_sp_m1524 NA
## 7754 new_sp_m1524 NA
## 7755 new_sp_m1524 NA
## 7756 new_sp_m1524 NA
## 7757 new_sp_m1524 NA
## 7758 new_sp_m1524 NA
## 7759 new_sp_m1524 NA
## 7760 new_sp_m1524 NA
## 7761 new_sp_m1524 NA
## 7762 new_sp_m1524 NA
## 7763 new_sp_m1524 NA
## 7764 new_sp_m1524 NA
## 7765 new_sp_m1524 NA
## 7766 new_sp_m1524 0
## 7767 new_sp_m1524 8
## 7768 new_sp_m1524 11
## 7769 new_sp_m1524 3
## 7770 new_sp_m1524 12
## 7771 new_sp_m1524 0
## 7772 new_sp_m1524 1
## 7773 new_sp_m1524 1
## 7774 new_sp_m1524 2
## 7775 new_sp_m1524 0
## 7776 new_sp_m1524 0
## 7777 new_sp_m1524 10
## 7778 new_sp_m1524 8
## 7779 new_sp_m1524 17
## 7780 new_sp_m1524 13
## 7781 new_sp_m1524 10
## 7782 new_sp_m1524 5
## 7783 new_sp_m1524 9
## 7784 new_sp_m1524 NA
## 7785 new_sp_m1524 NA
## 7786 new_sp_m1524 NA
## 7787 new_sp_m1524 NA
## 7788 new_sp_m1524 NA
## 7789 new_sp_m1524 NA
## 7790 new_sp_m1524 NA
## 7791 new_sp_m1524 NA
## 7792 new_sp_m1524 NA
## 7793 new_sp_m1524 NA
## 7794 new_sp_m1524 NA
## 7795 new_sp_m1524 NA
## 7796 new_sp_m1524 NA
## 7797 new_sp_m1524 NA
## 7798 new_sp_m1524 NA
## 7799 new_sp_m1524 NA
## 7800 new_sp_m1524 505
## 7801 new_sp_m1524 723
## 7802 new_sp_m1524 2639
## 7803 new_sp_m1524 3516
## 7804 new_sp_m1524 3504
## 7805 new_sp_m1524 3640
## 7806 new_sp_m1524 3976
## 7807 new_sp_m1524 4490
## 7808 new_sp_m1524 5166
## 7809 new_sp_m1524 6171
## 7810 new_sp_m1524 8170
## 7811 new_sp_m1524 9937
## 7812 new_sp_m1524 10210
## 7813 new_sp_m1524 10618
## 7814 new_sp_m1524 NA
## 7815 new_sp_m1524 10460
## 7816 new_sp_m1524 9606
## 7817 new_sp_m1524 9479
## 7818 new_sp_m1524 NA
## 7819 new_sp_m1524 NA
## 7820 new_sp_m1524 NA
## 7821 new_sp_m1524 NA
## 7822 new_sp_m1524 NA
## 7823 new_sp_m1524 NA
## 7824 new_sp_m1524 NA
## 7825 new_sp_m1524 NA
## 7826 new_sp_m1524 NA
## 7827 new_sp_m1524 NA
## 7828 new_sp_m1524 NA
## 7829 new_sp_m1524 NA
## 7830 new_sp_m1524 NA
## 7831 new_sp_m1524 NA
## 7832 new_sp_m1524 NA
## 7833 new_sp_m1524 NA
## 7834 new_sp_m1524 NA
## 7835 new_sp_m1524 0
## 7836 new_sp_m1524 NA
## 7837 new_sp_m1524 NA
## 7838 new_sp_m1524 NA
## 7839 new_sp_m1524 0
## 7840 new_sp_m1524 1
## 7841 new_sp_m1524 2
## 7842 new_sp_m1524 NA
## 7843 new_sp_m1524 NA
## 7844 new_sp_m1524 NA
## 7845 new_sp_m1524 NA
## 7846 new_sp_m1524 0
## 7847 new_sp_m1524 0
## 7848 new_sp_m1524 0
## 7849 new_sp_m1524 0
## 7850 new_sp_m1524 0
## 7851 new_sp_m1524 0
## 7852 new_sp_m1524 NA
## 7853 new_sp_m1524 NA
## 7854 new_sp_m1524 NA
## 7855 new_sp_m1524 NA
## 7856 new_sp_m1524 NA
## 7857 new_sp_m1524 NA
## 7858 new_sp_m1524 NA
## 7859 new_sp_m1524 NA
## 7860 new_sp_m1524 NA
## 7861 new_sp_m1524 NA
## 7862 new_sp_m1524 NA
## 7863 new_sp_m1524 NA
## 7864 new_sp_m1524 NA
## 7865 new_sp_m1524 NA
## 7866 new_sp_m1524 NA
## 7867 new_sp_m1524 NA
## 7868 new_sp_m1524 NA
## 7869 new_sp_m1524 NA
## 7870 new_sp_m1524 NA
## 7871 new_sp_m1524 NA
## 7872 new_sp_m1524 NA
## 7873 new_sp_m1524 NA
## 7874 new_sp_m1524 NA
## 7875 new_sp_m1524 66
## 7876 new_sp_m1524 67
## 7877 new_sp_m1524 84
## 7878 new_sp_m1524 71
## 7879 new_sp_m1524 61
## 7880 new_sp_m1524 57
## 7881 new_sp_m1524 44
## 7882 new_sp_m1524 66
## 7883 new_sp_m1524 65
## 7884 new_sp_m1524 53
## 7885 new_sp_m1524 44
## 7886 new_sp_m1524 NA
## 7887 new_sp_m1524 NA
## 7888 new_sp_m1524 NA
## 7889 new_sp_m1524 NA
## 7890 new_sp_m1524 NA
## 7891 new_sp_m1524 NA
## 7892 new_sp_m1524 NA
## 7893 new_sp_m1524 NA
## 7894 new_sp_m1524 NA
## 7895 new_sp_m1524 NA
## 7896 new_sp_m1524 NA
## 7897 new_sp_m1524 NA
## 7898 new_sp_m1524 NA
## 7899 new_sp_m1524 NA
## 7900 new_sp_m1524 NA
## 7901 new_sp_m1524 NA
## 7902 new_sp_m1524 23
## 7903 new_sp_m1524 20
## 7904 new_sp_m1524 18
## 7905 new_sp_m1524 22
## 7906 new_sp_m1524 18
## 7907 new_sp_m1524 20
## 7908 new_sp_m1524 31
## 7909 new_sp_m1524 19
## 7910 new_sp_m1524 27
## 7911 new_sp_m1524 26
## 7912 new_sp_m1524 26
## 7913 new_sp_m1524 26
## 7914 new_sp_m1524 23
## 7915 new_sp_m1524 23
## 7916 new_sp_m1524 29
## 7917 new_sp_m1524 20
## 7918 new_sp_m1524 25
## 7919 new_sp_m1524 25
## 7920 new_sp_m1524 NA
## 7921 new_sp_m1524 NA
## 7922 new_sp_m1524 NA
## 7923 new_sp_m1524 NA
## 7924 new_sp_m1524 NA
## 7925 new_sp_m1524 NA
## 7926 new_sp_m1524 NA
## 7927 new_sp_m1524 NA
## 7928 new_sp_m1524 NA
## 7929 new_sp_m1524 NA
## 7930 new_sp_m1524 NA
## 7931 new_sp_m1524 NA
## 7932 new_sp_m1524 NA
## 7933 new_sp_m1524 NA
## 7934 new_sp_m1524 NA
## 7935 new_sp_m1524 NA
## 7936 new_sp_m1524 1
## 7937 new_sp_m1524 3
## 7938 new_sp_m1524 2
## 7939 new_sp_m1524 NA
## 7940 new_sp_m1524 NA
## 7941 new_sp_m1524 5
## 7942 new_sp_m1524 0
## 7943 new_sp_m1524 7
## 7944 new_sp_m1524 4
## 7945 new_sp_m1524 4
## 7946 new_sp_m1524 8
## 7947 new_sp_m1524 4
## 7948 new_sp_m1524 6
## 7949 new_sp_m1524 8
## 7950 new_sp_m1524 7
## 7951 new_sp_m1524 9
## 7952 new_sp_m1524 8
## 7953 new_sp_m1524 2
## 7954 new_sp_m1524 NA
## 7955 new_sp_m1524 NA
## 7956 new_sp_m1524 NA
## 7957 new_sp_m1524 NA
## 7958 new_sp_m1524 NA
## 7959 new_sp_m1524 NA
## 7960 new_sp_m1524 NA
## 7961 new_sp_m1524 NA
## 7962 new_sp_m1524 NA
## 7963 new_sp_m1524 NA
## 7964 new_sp_m1524 NA
## 7965 new_sp_m1524 NA
## 7966 new_sp_m1524 NA
## 7967 new_sp_m1524 NA
## 7968 new_sp_m1524 NA
## 7969 new_sp_m1524 NA
## 7970 new_sp_m1524 186
## 7971 new_sp_m1524 215
## 7972 new_sp_m1524 215
## 7973 new_sp_m1524 233
## 7974 new_sp_m1524 250
## 7975 new_sp_m1524 277
## 7976 new_sp_m1524 262
## 7977 new_sp_m1524 248
## 7978 new_sp_m1524 266
## 7979 new_sp_m1524 308
## 7980 new_sp_m1524 306
## 7981 new_sp_m1524 298
## 7982 new_sp_m1524 302
## 7983 new_sp_m1524 333
## 7984 new_sp_m1524 284
## 7985 new_sp_m1524 314
## 7986 new_sp_m1524 320
## 7987 new_sp_m1524 314
## 7988 new_sp_m1524 NA
## 7989 new_sp_m1524 NA
## 7990 new_sp_m1524 NA
## 7991 new_sp_m1524 NA
## 7992 new_sp_m1524 NA
## 7993 new_sp_m1524 NA
## 7994 new_sp_m1524 NA
## 7995 new_sp_m1524 NA
## 7996 new_sp_m1524 NA
## 7997 new_sp_m1524 NA
## 7998 new_sp_m1524 NA
## 7999 new_sp_m1524 NA
## 8000 new_sp_m1524 NA
## 8001 new_sp_m1524 NA
## 8002 new_sp_m1524 NA
## 8003 new_sp_m1524 NA
## 8004 new_sp_m1524 NA
## 8005 new_sp_m1524 NA
## 8006 new_sp_m1524 NA
## 8007 new_sp_m1524 NA
## 8008 new_sp_m1524 NA
## 8009 new_sp_m1524 NA
## 8010 new_sp_m1524 NA
## 8011 new_sp_m1524 NA
## 8012 new_sp_m1524 NA
## 8013 new_sp_m1524 0
## 8014 new_sp_m1524 NA
## 8015 new_sp_m1524 NA
## 8016 new_sp_m1524 NA
## 8017 new_sp_m1524 NA
## 8018 new_sp_m1524 NA
## 8019 new_sp_m1524 0
## 8020 new_sp_m1524 0
## 8021 new_sp_m1524 0
## 8022 new_sp_m1524 NA
## 8023 new_sp_m1524 NA
## 8024 new_sp_m1524 NA
## 8025 new_sp_m1524 NA
## 8026 new_sp_m1524 NA
## 8027 new_sp_m1524 NA
## 8028 new_sp_m1524 NA
## 8029 new_sp_m1524 NA
## 8030 new_sp_m1524 NA
## 8031 new_sp_m1524 NA
## 8032 new_sp_m1524 NA
## 8033 new_sp_m1524 NA
## 8034 new_sp_m1524 NA
## 8035 new_sp_m1524 NA
## 8036 new_sp_m1524 NA
## 8037 new_sp_m1524 NA
## 8038 new_sp_m1524 42
## 8039 new_sp_m1524 51
## 8040 new_sp_m1524 39
## 8041 new_sp_m1524 45
## 8042 new_sp_m1524 27
## 8043 new_sp_m1524 65
## 8044 new_sp_m1524 51
## 8045 new_sp_m1524 54
## 8046 new_sp_m1524 62
## 8047 new_sp_m1524 54
## 8048 new_sp_m1524 47
## 8049 new_sp_m1524 65
## 8050 new_sp_m1524 60
## 8051 new_sp_m1524 85
## 8052 new_sp_m1524 74
## 8053 new_sp_m1524 108
## 8054 new_sp_m1524 88
## 8055 new_sp_m1524 82
## 8056 new_sp_m1524 NA
## 8057 new_sp_m1524 NA
## 8058 new_sp_m1524 NA
## 8059 new_sp_m1524 NA
## 8060 new_sp_m1524 NA
## 8061 new_sp_m1524 NA
## 8062 new_sp_m1524 NA
## 8063 new_sp_m1524 NA
## 8064 new_sp_m1524 NA
## 8065 new_sp_m1524 NA
## 8066 new_sp_m1524 NA
## 8067 new_sp_m1524 NA
## 8068 new_sp_m1524 NA
## 8069 new_sp_m1524 NA
## 8070 new_sp_m1524 NA
## 8071 new_sp_m1524 NA
## 8072 new_sp_m1524 NA
## 8073 new_sp_m1524 1359
## 8074 new_sp_m1524 1214
## 8075 new_sp_m1524 1254
## 8076 new_sp_m1524 1182
## 8077 new_sp_m1524 1182
## 8078 new_sp_m1524 1235
## 8079 new_sp_m1524 1235
## 8080 new_sp_m1524 1164
## 8081 new_sp_m1524 1205
## 8082 new_sp_m1524 1320
## 8083 new_sp_m1524 1147
## 8084 new_sp_m1524 1100
## 8085 new_sp_m1524 1253
## 8086 new_sp_m1524 1225
## 8087 new_sp_m1524 1150
## 8088 new_sp_m1524 1231
## 8089 new_sp_m1524 1096
## 8090 new_sp_m1524 NA
## 8091 new_sp_m1524 0
## 8092 new_sp_m1524 0
## 8093 new_sp_m1524 0
## 8094 new_sp_m1524 NA
## 8095 new_sp_m1524 NA
## 8096 new_sp_m1524 NA
## 8097 new_sp_m1524 NA
## 8098 new_sp_m1524 NA
## 8099 new_sp_m1524 NA
## 8100 new_sp_m1524 NA
## 8101 new_sp_m1524 NA
## 8102 new_sp_m1524 NA
## 8103 new_sp_m1524 NA
## 8104 new_sp_m1524 NA
## 8105 new_sp_m1524 NA
## 8106 new_sp_m1524 NA
## 8107 new_sp_m1524 NA
## 8108 new_sp_m1524 NA
## 8109 new_sp_m1524 NA
## 8110 new_sp_m1524 15
## 8111 new_sp_m1524 30
## 8112 new_sp_m1524 48
## 8113 new_sp_m1524 28
## 8114 new_sp_m1524 44
## 8115 new_sp_m1524 56
## 8116 new_sp_m1524 39
## 8117 new_sp_m1524 36
## 8118 new_sp_m1524 32
## 8119 new_sp_m1524 66
## 8120 new_sp_m1524 22
## 8121 new_sp_m1524 40
## 8122 new_sp_m1524 0
## 8123 new_sp_m1524 20
## 8124 new_sp_m1524 27
## 8125 new_sp_m1524 27
## 8126 new_sp_m1524 33
## 8127 new_sp_m1524 23
## 8128 new_sp_m1524 NA
## 8129 new_sp_m1524 NA
## 8130 new_sp_m1524 NA
## 8131 new_sp_m1524 NA
## 8132 new_sp_m1524 NA
## 8133 new_sp_m1524 NA
## 8134 new_sp_m1524 NA
## 8135 new_sp_m1524 NA
## 8136 new_sp_m1524 NA
## 8137 new_sp_m1524 NA
## 8138 new_sp_m1524 NA
## 8139 new_sp_m1524 NA
## 8140 new_sp_m1524 NA
## 8141 new_sp_m1524 NA
## 8142 new_sp_m1524 NA
## 8143 new_sp_m1524 NA
## 8144 new_sp_m1524 NA
## 8145 new_sp_m1524 NA
## 8146 new_sp_m1524 193
## 8147 new_sp_m1524 NA
## 8148 new_sp_m1524 177
## 8149 new_sp_m1524 185
## 8150 new_sp_m1524 190
## 8151 new_sp_m1524 226
## 8152 new_sp_m1524 203
## 8153 new_sp_m1524 245
## 8154 new_sp_m1524 260
## 8155 new_sp_m1524 262
## 8156 new_sp_m1524 251
## 8157 new_sp_m1524 254
## 8158 new_sp_m1524 262
## 8159 new_sp_m1524 256
## 8160 new_sp_m1524 220
## 8161 new_sp_m1524 207
## 8162 new_sp_m1524 NA
## 8163 new_sp_m1524 NA
## 8164 new_sp_m1524 NA
## 8165 new_sp_m1524 NA
## 8166 new_sp_m1524 NA
## 8167 new_sp_m1524 NA
## 8168 new_sp_m1524 NA
## 8169 new_sp_m1524 NA
## 8170 new_sp_m1524 NA
## 8171 new_sp_m1524 NA
## 8172 new_sp_m1524 NA
## 8173 new_sp_m1524 NA
## 8174 new_sp_m1524 NA
## 8175 new_sp_m1524 NA
## 8176 new_sp_m1524 NA
## 8177 new_sp_m1524 NA
## 8178 new_sp_m1524 NA
## 8179 new_sp_m1524 NA
## 8180 new_sp_m1524 NA
## 8181 new_sp_m1524 NA
## 8182 new_sp_m1524 3662
## 8183 new_sp_m1524 7268
## 8184 new_sp_m1524 4455
## 8185 new_sp_m1524 4695
## 8186 new_sp_m1524 4485
## 8187 new_sp_m1524 5041
## 8188 new_sp_m1524 5074
## 8189 new_sp_m1524 4783
## 8190 new_sp_m1524 4399
## 8191 new_sp_m1524 4436
## 8192 new_sp_m1524 4621
## 8193 new_sp_m1524 4405
## 8194 new_sp_m1524 4877
## 8195 new_sp_m1524 5027
## 8196 new_sp_m1524 NA
## 8197 new_sp_m1524 NA
## 8198 new_sp_m1524 NA
## 8199 new_sp_m1524 NA
## 8200 new_sp_m1524 NA
## 8201 new_sp_m1524 NA
## 8202 new_sp_m1524 NA
## 8203 new_sp_m1524 NA
## 8204 new_sp_m1524 NA
## 8205 new_sp_m1524 NA
## 8206 new_sp_m1524 NA
## 8207 new_sp_m1524 NA
## 8208 new_sp_m1524 NA
## 8209 new_sp_m1524 NA
## 8210 new_sp_m1524 NA
## 8211 new_sp_m1524 NA
## 8212 new_sp_m1524 NA
## 8213 new_sp_m1524 NA
## 8214 new_sp_m1524 NA
## 8215 new_sp_m1524 NA
## 8216 new_sp_m1524 NA
## 8217 new_sp_m1524 NA
## 8218 new_sp_m1524 NA
## 8219 new_sp_m1524 NA
## 8220 new_sp_m1524 NA
## 8221 new_sp_m1524 NA
## 8222 new_sp_m1524 NA
## 8223 new_sp_m1524 NA
## 8224 new_sp_m1524 NA
## 8225 new_sp_m1524 NA
## 8226 new_sp_m1524 NA
## 8227 new_sp_m1524 0
## 8228 new_sp_m1524 0
## 8229 new_sp_m1524 0
## 8230 new_sp_m1524 NA
## 8231 new_sp_m1524 NA
## 8232 new_sp_m1524 NA
## 8233 new_sp_m1524 NA
## 8234 new_sp_m1524 NA
## 8235 new_sp_m1524 NA
## 8236 new_sp_m1524 NA
## 8237 new_sp_m1524 NA
## 8238 new_sp_m1524 NA
## 8239 new_sp_m1524 NA
## 8240 new_sp_m1524 NA
## 8241 new_sp_m1524 NA
## 8242 new_sp_m1524 NA
## 8243 new_sp_m1524 NA
## 8244 new_sp_m1524 NA
## 8245 new_sp_m1524 NA
## 8246 new_sp_m1524 NA
## 8247 new_sp_m1524 NA
## 8248 new_sp_m1524 NA
## 8249 new_sp_m1524 NA
## 8250 new_sp_m1524 16
## 8251 new_sp_m1524 6
## 8252 new_sp_m1524 NA
## 8253 new_sp_m1524 15
## 8254 new_sp_m1524 5
## 8255 new_sp_m1524 10
## 8256 new_sp_m1524 9
## 8257 new_sp_m1524 10
## 8258 new_sp_m1524 5
## 8259 new_sp_m1524 10
## 8260 new_sp_m1524 5
## 8261 new_sp_m1524 17
## 8262 new_sp_m1524 11
## 8263 new_sp_m1524 10
## 8264 new_sp_m1524 NA
## 8265 new_sp_m1524 NA
## 8266 new_sp_m1524 NA
## 8267 new_sp_m1524 NA
## 8268 new_sp_m1524 NA
## 8269 new_sp_m1524 NA
## 8270 new_sp_m1524 NA
## 8271 new_sp_m1524 NA
## 8272 new_sp_m1524 NA
## 8273 new_sp_m1524 NA
## 8274 new_sp_m1524 NA
## 8275 new_sp_m1524 NA
## 8276 new_sp_m1524 NA
## 8277 new_sp_m1524 NA
## 8278 new_sp_m1524 NA
## 8279 new_sp_m1524 NA
## 8280 new_sp_m1524 NA
## 8281 new_sp_m1524 NA
## 8282 new_sp_m1524 NA
## 8283 new_sp_m1524 NA
## 8284 new_sp_m1524 NA
## 8285 new_sp_m1524 13
## 8286 new_sp_m1524 15
## 8287 new_sp_m1524 62
## 8288 new_sp_m1524 99
## 8289 new_sp_m1524 97
## 8290 new_sp_m1524 98
## 8291 new_sp_m1524 86
## 8292 new_sp_m1524 63
## 8293 new_sp_m1524 80
## 8294 new_sp_m1524 51
## 8295 new_sp_m1524 40
## 8296 new_sp_m1524 38
## 8297 new_sp_m1524 46
## 8298 new_sp_m1524 NA
## 8299 new_sp_m1524 NA
## 8300 new_sp_m1524 NA
## 8301 new_sp_m1524 NA
## 8302 new_sp_m1524 NA
## 8303 new_sp_m1524 NA
## 8304 new_sp_m1524 NA
## 8305 new_sp_m1524 NA
## 8306 new_sp_m1524 NA
## 8307 new_sp_m1524 NA
## 8308 new_sp_m1524 NA
## 8309 new_sp_m1524 NA
## 8310 new_sp_m1524 NA
## 8311 new_sp_m1524 NA
## 8312 new_sp_m1524 NA
## 8313 new_sp_m1524 NA
## 8314 new_sp_m1524 67
## 8315 new_sp_m1524 47
## 8316 new_sp_m1524 47
## 8317 new_sp_m1524 104
## 8318 new_sp_m1524 85
## 8319 new_sp_m1524 91
## 8320 new_sp_m1524 124
## 8321 new_sp_m1524 123
## 8322 new_sp_m1524 148
## 8323 new_sp_m1524 155
## 8324 new_sp_m1524 181
## 8325 new_sp_m1524 227
## 8326 new_sp_m1524 233
## 8327 new_sp_m1524 225
## 8328 new_sp_m1524 221
## 8329 new_sp_m1524 231
## 8330 new_sp_m1524 265
## 8331 new_sp_m1524 277
## 8332 new_sp_m1524 NA
## 8333 new_sp_m1524 NA
## 8334 new_sp_m1524 NA
## 8335 new_sp_m1524 NA
## 8336 new_sp_m1524 NA
## 8337 new_sp_m1524 NA
## 8338 new_sp_m1524 NA
## 8339 new_sp_m1524 NA
## 8340 new_sp_m1524 NA
## 8341 new_sp_m1524 NA
## 8342 new_sp_m1524 NA
## 8343 new_sp_m1524 NA
## 8344 new_sp_m1524 NA
## 8345 new_sp_m1524 NA
## 8346 new_sp_m1524 NA
## 8347 new_sp_m1524 NA
## 8348 new_sp_m1524 128
## 8349 new_sp_m1524 217
## 8350 new_sp_m1524 208
## 8351 new_sp_m1524 301
## 8352 new_sp_m1524 349
## 8353 new_sp_m1524 NA
## 8354 new_sp_m1524 344
## 8355 new_sp_m1524 310
## 8356 new_sp_m1524 348
## 8357 new_sp_m1524 352
## 8358 new_sp_m1524 352
## 8359 new_sp_m1524 347
## 8360 new_sp_m1524 425
## 8361 new_sp_m1524 430
## 8362 new_sp_m1524 452
## 8363 new_sp_m1524 481
## 8364 new_sp_m1524 484
## 8365 new_sp_m1524 447
## 8366 new_sp_m1524 NA
## 8367 new_sp_m1524 NA
## 8368 new_sp_m1524 NA
## 8369 new_sp_m1524 NA
## 8370 new_sp_m1524 NA
## 8371 new_sp_m1524 NA
## 8372 new_sp_m1524 NA
## 8373 new_sp_m1524 NA
## 8374 new_sp_m1524 NA
## 8375 new_sp_m1524 NA
## 8376 new_sp_m1524 NA
## 8377 new_sp_m1524 NA
## 8378 new_sp_m1524 NA
## 8379 new_sp_m1524 NA
## 8380 new_sp_m1524 NA
## 8381 new_sp_m1524 NA
## 8382 new_sp_m1524 NA
## 8383 new_sp_m1524 NA
## 8384 new_sp_m1524 11
## 8385 new_sp_m1524 9
## 8386 new_sp_m1524 NA
## 8387 new_sp_m1524 NA
## 8388 new_sp_m1524 5
## 8389 new_sp_m1524 9
## 8390 new_sp_m1524 12
## 8391 new_sp_m1524 8
## 8392 new_sp_m1524 22
## 8393 new_sp_m1524 15
## 8394 new_sp_m1524 24
## 8395 new_sp_m1524 23
## 8396 new_sp_m1524 27
## 8397 new_sp_m1524 NA
## 8398 new_sp_m1524 17
## 8399 new_sp_m1524 29
## 8400 new_sp_m1524 NA
## 8401 new_sp_m1524 NA
## 8402 new_sp_m1524 NA
## 8403 new_sp_m1524 NA
## 8404 new_sp_m1524 NA
## 8405 new_sp_m1524 NA
## 8406 new_sp_m1524 NA
## 8407 new_sp_m1524 NA
## 8408 new_sp_m1524 NA
## 8409 new_sp_m1524 NA
## 8410 new_sp_m1524 NA
## 8411 new_sp_m1524 NA
## 8412 new_sp_m1524 NA
## 8413 new_sp_m1524 NA
## 8414 new_sp_m1524 NA
## 8415 new_sp_m1524 NA
## 8416 new_sp_m1524 453
## 8417 new_sp_m1524 32
## 8418 new_sp_m1524 NA
## 8419 new_sp_m1524 446
## 8420 new_sp_m1524 525
## 8421 new_sp_m1524 519
## 8422 new_sp_m1524 600
## 8423 new_sp_m1524 791
## 8424 new_sp_m1524 805
## 8425 new_sp_m1524 850
## 8426 new_sp_m1524 894
## 8427 new_sp_m1524 791
## 8428 new_sp_m1524 883
## 8429 new_sp_m1524 920
## 8430 new_sp_m1524 746
## 8431 new_sp_m1524 750
## 8432 new_sp_m1524 791
## 8433 new_sp_m1524 673
## 8434 new_sp_m1524 NA
## 8435 new_sp_m1524 NA
## 8436 new_sp_m1524 NA
## 8437 new_sp_m1524 NA
## 8438 new_sp_m1524 NA
## 8439 new_sp_m1524 NA
## 8440 new_sp_m1524 NA
## 8441 new_sp_m1524 NA
## 8442 new_sp_m1524 NA
## 8443 new_sp_m1524 NA
## 8444 new_sp_m1524 NA
## 8445 new_sp_m1524 NA
## 8446 new_sp_m1524 NA
## 8447 new_sp_m1524 NA
## 8448 new_sp_m1524 NA
## 8449 new_sp_m1524 NA
## 8450 new_sp_m1524 208
## 8451 new_sp_m1524 151
## 8452 new_sp_m1524 321
## 8453 new_sp_m1524 651
## 8454 new_sp_m1524 602
## 8455 new_sp_m1524 518
## 8456 new_sp_m1524 643
## 8457 new_sp_m1524 818
## 8458 new_sp_m1524 1176
## 8459 new_sp_m1524 1312
## 8460 new_sp_m1524 1472
## 8461 new_sp_m1524 1401
## 8462 new_sp_m1524 1392
## 8463 new_sp_m1524 1613
## 8464 new_sp_m1524 1635
## 8465 new_sp_m1524 1497
## 8466 new_sp_m1524 1580
## 8467 new_sp_m1524 1597
## 8468 new_sp_m1524 NA
## 8469 new_sp_m1524 54
## 8470 new_sp_m1524 49
## 8471 new_sp_m1524 52
## 8472 new_sp_m1524 47
## 8473 new_sp_m1524 44
## 8474 new_sp_m1524 42
## 8475 new_sp_m1524 58
## 8476 new_sp_m1524 40
## 8477 new_sp_m1524 43
## 8478 new_sp_m1524 45
## 8479 new_sp_m1524 35
## 8480 new_sp_m1524 37
## 8481 new_sp_m1524 42
## 8482 new_sp_m1524 33
## 8483 new_sp_m1524 42
## 8484 new_sp_m1524 28
## 8485 new_sp_m1524 28
## 8486 new_sp_m1524 21
## 8487 new_sp_m1524 33
## 8488 new_sp_m1524 23
## 8489 new_sp_m1524 34
## 8490 new_sp_m1524 24
## 8491 new_sp_m1524 25
## 8492 new_sp_m1524 26
## 8493 new_sp_m1524 25
## 8494 new_sp_m1524 37
## 8495 new_sp_m1524 34
## 8496 new_sp_m1524 31
## 8497 new_sp_m1524 39
## 8498 new_sp_m1524 45
## 8499 new_sp_m1524 30
## 8500 new_sp_m1524 34
## 8501 new_sp_m1524 33
## 8502 new_sp_m1524 NA
## 8503 new_sp_m1524 NA
## 8504 new_sp_m1524 NA
## 8505 new_sp_m1524 NA
## 8506 new_sp_m1524 NA
## 8507 new_sp_m1524 NA
## 8508 new_sp_m1524 NA
## 8509 new_sp_m1524 NA
## 8510 new_sp_m1524 NA
## 8511 new_sp_m1524 NA
## 8512 new_sp_m1524 NA
## 8513 new_sp_m1524 NA
## 8514 new_sp_m1524 NA
## 8515 new_sp_m1524 NA
## 8516 new_sp_m1524 NA
## 8517 new_sp_m1524 NA
## 8518 new_sp_m1524 NA
## 8519 new_sp_m1524 NA
## 8520 new_sp_m1524 NA
## 8521 new_sp_m1524 0
## 8522 new_sp_m1524 0
## 8523 new_sp_m1524 0
## 8524 new_sp_m1524 0
## 8525 new_sp_m1524 NA
## 8526 new_sp_m1524 0
## 8527 new_sp_m1524 0
## 8528 new_sp_m1524 NA
## 8529 new_sp_m1524 0
## 8530 new_sp_m1524 0
## 8531 new_sp_m1524 NA
## 8532 new_sp_m1524 NA
## 8533 new_sp_m1524 0
## 8534 new_sp_m1524 0
## 8535 new_sp_m1524 0
## 8536 new_sp_m1524 NA
## 8537 new_sp_m1524 NA
## 8538 new_sp_m1524 NA
## 8539 new_sp_m1524 NA
## 8540 new_sp_m1524 NA
## 8541 new_sp_m1524 NA
## 8542 new_sp_m1524 NA
## 8543 new_sp_m1524 NA
## 8544 new_sp_m1524 NA
## 8545 new_sp_m1524 NA
## 8546 new_sp_m1524 NA
## 8547 new_sp_m1524 NA
## 8548 new_sp_m1524 NA
## 8549 new_sp_m1524 NA
## 8550 new_sp_m1524 NA
## 8551 new_sp_m1524 NA
## 8552 new_sp_m1524 162
## 8553 new_sp_m1524 192
## 8554 new_sp_m1524 211
## 8555 new_sp_m1524 205
## 8556 new_sp_m1524 224
## 8557 new_sp_m1524 NA
## 8558 new_sp_m1524 127
## 8559 new_sp_m1524 264
## 8560 new_sp_m1524 NA
## 8561 new_sp_m1524 58
## 8562 new_sp_m1524 40
## 8563 new_sp_m1524 409
## 8564 new_sp_m1524 NA
## 8565 new_sp_m1524 466
## 8566 new_sp_m1524 546
## 8567 new_sp_m1524 379
## 8568 new_sp_m1524 362
## 8569 new_sp_m1524 502
## 8570 new_sp_m1524 NA
## 8571 new_sp_m1524 NA
## 8572 new_sp_m1524 NA
## 8573 new_sp_m1524 NA
## 8574 new_sp_m1524 NA
## 8575 new_sp_m1524 NA
## 8576 new_sp_m1524 NA
## 8577 new_sp_m1524 NA
## 8578 new_sp_m1524 NA
## 8579 new_sp_m1524 NA
## 8580 new_sp_m1524 NA
## 8581 new_sp_m1524 NA
## 8582 new_sp_m1524 NA
## 8583 new_sp_m1524 NA
## 8584 new_sp_m1524 NA
## 8585 new_sp_m1524 NA
## 8586 new_sp_m1524 NA
## 8587 new_sp_m1524 NA
## 8588 new_sp_m1524 NA
## 8589 new_sp_m1524 NA
## 8590 new_sp_m1524 172
## 8591 new_sp_m1524 NA
## 8592 new_sp_m1524 NA
## 8593 new_sp_m1524 90
## 8594 new_sp_m1524 256
## 8595 new_sp_m1524 141
## 8596 new_sp_m1524 194
## 8597 new_sp_m1524 NA
## 8598 new_sp_m1524 NA
## 8599 new_sp_m1524 NA
## 8600 new_sp_m1524 355
## 8601 new_sp_m1524 382
## 8602 new_sp_m1524 469
## 8603 new_sp_m1524 405
## 8604 new_sp_m1524 NA
## 8605 new_sp_m1524 NA
## 8606 new_sp_m1524 NA
## 8607 new_sp_m1524 NA
## 8608 new_sp_m1524 NA
## 8609 new_sp_m1524 NA
## 8610 new_sp_m1524 NA
## 8611 new_sp_m1524 NA
## 8612 new_sp_m1524 NA
## 8613 new_sp_m1524 NA
## 8614 new_sp_m1524 NA
## 8615 new_sp_m1524 NA
## 8616 new_sp_m1524 NA
## 8617 new_sp_m1524 NA
## 8618 new_sp_m1524 NA
## 8619 new_sp_m1524 NA
## 8620 new_sp_m1524 148
## 8621 new_sp_m1524 123
## 8622 new_sp_m1524 107
## 8623 new_sp_m1524 NA
## 8624 new_sp_m1524 118
## 8625 new_sp_m1524 81
## 8626 new_sp_m1524 78
## 8627 new_sp_m1524 87
## 8628 new_sp_m1524 77
## 8629 new_sp_m1524 87
## 8630 new_sp_m1524 74
## 8631 new_sp_m1524 107
## 8632 new_sp_m1524 86
## 8633 new_sp_m1524 86
## 8634 new_sp_m1524 85
## 8635 new_sp_m1524 90
## 8636 new_sp_m1524 88
## 8637 new_sp_m1524 91
## 8638 new_sp_m1524 NA
## 8639 new_sp_m1524 NA
## 8640 new_sp_m1524 NA
## 8641 new_sp_m1524 NA
## 8642 new_sp_m1524 NA
## 8643 new_sp_m1524 NA
## 8644 new_sp_m1524 NA
## 8645 new_sp_m1524 NA
## 8646 new_sp_m1524 NA
## 8647 new_sp_m1524 NA
## 8648 new_sp_m1524 NA
## 8649 new_sp_m1524 NA
## 8650 new_sp_m1524 NA
## 8651 new_sp_m1524 NA
## 8652 new_sp_m1524 NA
## 8653 new_sp_m1524 NA
## 8654 new_sp_m1524 12791
## 8655 new_sp_m1524 16490
## 8656 new_sp_m1524 18547
## 8657 new_sp_m1524 19699
## 8658 new_sp_m1524 18961
## 8659 new_sp_m1524 19111
## 8660 new_sp_m1524 19121
## 8661 new_sp_m1524 17933
## 8662 new_sp_m1524 25125
## 8663 new_sp_m1524 35465
## 8664 new_sp_m1524 43005
## 8665 new_sp_m1524 44528
## 8666 new_sp_m1524 44011
## 8667 new_sp_m1524 45596
## 8668 new_sp_m1524 44757
## 8669 new_sp_m1524 42851
## 8670 new_sp_m1524 37514
## 8671 new_sp_m1524 29018
## 8672 new_sp_m1524 NA
## 8673 new_sp_m1524 NA
## 8674 new_sp_m1524 NA
## 8675 new_sp_m1524 NA
## 8676 new_sp_m1524 NA
## 8677 new_sp_m1524 NA
## 8678 new_sp_m1524 NA
## 8679 new_sp_m1524 NA
## 8680 new_sp_m1524 NA
## 8681 new_sp_m1524 NA
## 8682 new_sp_m1524 NA
## 8683 new_sp_m1524 NA
## 8684 new_sp_m1524 NA
## 8685 new_sp_m1524 NA
## 8686 new_sp_m1524 NA
## 8687 new_sp_m1524 NA
## 8688 new_sp_m1524 NA
## 8689 new_sp_m1524 NA
## 8690 new_sp_m1524 90
## 8691 new_sp_m1524 NA
## 8692 new_sp_m1524 88
## 8693 new_sp_m1524 78
## 8694 new_sp_m1524 79
## 8695 new_sp_m1524 99
## 8696 new_sp_m1524 104
## 8697 new_sp_m1524 59
## 8698 new_sp_m1524 76
## 8699 new_sp_m1524 75
## 8700 new_sp_m1524 63
## 8701 new_sp_m1524 59
## 8702 new_sp_m1524 53
## 8703 new_sp_m1524 52
## 8704 new_sp_m1524 72
## 8705 new_sp_m1524 63
## 8706 new_sp_m1524 NA
## 8707 new_sp_m1524 NA
## 8708 new_sp_m1524 NA
## 8709 new_sp_m1524 NA
## 8710 new_sp_m1524 NA
## 8711 new_sp_m1524 NA
## 8712 new_sp_m1524 NA
## 8713 new_sp_m1524 NA
## 8714 new_sp_m1524 NA
## 8715 new_sp_m1524 NA
## 8716 new_sp_m1524 NA
## 8717 new_sp_m1524 NA
## 8718 new_sp_m1524 NA
## 8719 new_sp_m1524 NA
## 8720 new_sp_m1524 NA
## 8721 new_sp_m1524 NA
## 8722 new_sp_m1524 7
## 8723 new_sp_m1524 16
## 8724 new_sp_m1524 15
## 8725 new_sp_m1524 11
## 8726 new_sp_m1524 NA
## 8727 new_sp_m1524 10
## 8728 new_sp_m1524 9
## 8729 new_sp_m1524 13
## 8730 new_sp_m1524 9
## 8731 new_sp_m1524 8
## 8732 new_sp_m1524 6
## 8733 new_sp_m1524 15
## 8734 new_sp_m1524 14
## 8735 new_sp_m1524 18
## 8736 new_sp_m1524 12
## 8737 new_sp_m1524 17
## 8738 new_sp_m1524 20
## 8739 new_sp_m1524 10
## 8740 new_sp_m1524 NA
## 8741 new_sp_m1524 NA
## 8742 new_sp_m1524 NA
## 8743 new_sp_m1524 NA
## 8744 new_sp_m1524 NA
## 8745 new_sp_m1524 NA
## 8746 new_sp_m1524 NA
## 8747 new_sp_m1524 NA
## 8748 new_sp_m1524 NA
## 8749 new_sp_m1524 NA
## 8750 new_sp_m1524 NA
## 8751 new_sp_m1524 NA
## 8752 new_sp_m1524 NA
## 8753 new_sp_m1524 NA
## 8754 new_sp_m1524 NA
## 8755 new_sp_m1524 NA
## 8756 new_sp_m1524 NA
## 8757 new_sp_m1524 NA
## 8758 new_sp_m1524 NA
## 8759 new_sp_m1524 NA
## 8760 new_sp_m1524 1730
## 8761 new_sp_m1524 763
## 8762 new_sp_m1524 1037
## 8763 new_sp_m1524 614
## 8764 new_sp_m1524 684
## 8765 new_sp_m1524 732
## 8766 new_sp_m1524 623
## 8767 new_sp_m1524 709
## 8768 new_sp_m1524 618
## 8769 new_sp_m1524 666
## 8770 new_sp_m1524 697
## 8771 new_sp_m1524 602
## 8772 new_sp_m1524 663
## 8773 new_sp_m1524 613
## 8774 new_sp_m1524 NA
## 8775 new_sp_m1524 NA
## 8776 new_sp_m1524 NA
## 8777 new_sp_m1524 NA
## 8778 new_sp_m1524 NA
## 8779 new_sp_m1524 NA
## 8780 new_sp_m1524 NA
## 8781 new_sp_m1524 NA
## 8782 new_sp_m1524 NA
## 8783 new_sp_m1524 NA
## 8784 new_sp_m1524 NA
## 8785 new_sp_m1524 NA
## 8786 new_sp_m1524 NA
## 8787 new_sp_m1524 NA
## 8788 new_sp_m1524 NA
## 8789 new_sp_m1524 NA
## 8790 new_sp_m1524 18
## 8791 new_sp_m1524 19
## 8792 new_sp_m1524 NA
## 8793 new_sp_m1524 15
## 8794 new_sp_m1524 NA
## 8795 new_sp_m1524 18
## 8796 new_sp_m1524 15
## 8797 new_sp_m1524 10
## 8798 new_sp_m1524 7
## 8799 new_sp_m1524 NA
## 8800 new_sp_m1524 12
## 8801 new_sp_m1524 12
## 8802 new_sp_m1524 NA
## 8803 new_sp_m1524 11
## 8804 new_sp_m1524 9
## 8805 new_sp_m1524 NA
## 8806 new_sp_m1524 10
## 8807 new_sp_m1524 9
## 8808 new_sp_m1524 NA
## 8809 new_sp_m1524 NA
## 8810 new_sp_m1524 NA
## 8811 new_sp_m1524 NA
## 8812 new_sp_m1524 NA
## 8813 new_sp_m1524 NA
## 8814 new_sp_m1524 NA
## 8815 new_sp_m1524 NA
## 8816 new_sp_m1524 NA
## 8817 new_sp_m1524 NA
## 8818 new_sp_m1524 NA
## 8819 new_sp_m1524 NA
## 8820 new_sp_m1524 NA
## 8821 new_sp_m1524 NA
## 8822 new_sp_m1524 NA
## 8823 new_sp_m1524 NA
## 8824 new_sp_m1524 265
## 8825 new_sp_m1524 NA
## 8826 new_sp_m1524 NA
## 8827 new_sp_m1524 NA
## 8828 new_sp_m1524 272
## 8829 new_sp_m1524 NA
## 8830 new_sp_m1524 557
## 8831 new_sp_m1524 NA
## 8832 new_sp_m1524 NA
## 8833 new_sp_m1524 602
## 8834 new_sp_m1524 NA
## 8835 new_sp_m1524 371
## 8836 new_sp_m1524 351
## 8837 new_sp_m1524 417
## 8838 new_sp_m1524 474
## 8839 new_sp_m1524 435
## 8840 new_sp_m1524 453
## 8841 new_sp_m1524 563
## 8842 new_sp_m1524 NA
## 8843 new_sp_m1524 2
## 8844 new_sp_m1524 0
## 8845 new_sp_m1524 0
## 8846 new_sp_m1524 2
## 8847 new_sp_m1524 0
## 8848 new_sp_m1524 0
## 8849 new_sp_m1524 1
## 8850 new_sp_m1524 0
## 8851 new_sp_m1524 NA
## 8852 new_sp_m1524 0
## 8853 new_sp_m1524 NA
## 8854 new_sp_m1524 0
## 8855 new_sp_m1524 0
## 8856 new_sp_m1524 0
## 8857 new_sp_m1524 0
## 8858 new_sp_m1524 0
## 8859 new_sp_m1524 0
## 8860 new_sp_m1524 0
## 8861 new_sp_m1524 0
## 8862 new_sp_m1524 NA
## 8863 new_sp_m1524 0
## 8864 new_sp_m1524 0
## 8865 new_sp_m1524 0
## 8866 new_sp_m1524 0
## 8867 new_sp_m1524 0
## 8868 new_sp_m1524 1
## 8869 new_sp_m1524 0
## 8870 new_sp_m1524 NA
## 8871 new_sp_m1524 NA
## 8872 new_sp_m1524 0
## 8873 new_sp_m1524 0
## 8874 new_sp_m1524 0
## 8875 new_sp_m1524 0
## 8876 new_sp_m1524 NA
## 8877 new_sp_m1524 NA
## 8878 new_sp_m1524 NA
## 8879 new_sp_m1524 NA
## 8880 new_sp_m1524 NA
## 8881 new_sp_m1524 NA
## 8882 new_sp_m1524 NA
## 8883 new_sp_m1524 NA
## 8884 new_sp_m1524 NA
## 8885 new_sp_m1524 NA
## 8886 new_sp_m1524 NA
## 8887 new_sp_m1524 NA
## 8888 new_sp_m1524 NA
## 8889 new_sp_m1524 NA
## 8890 new_sp_m1524 NA
## 8891 new_sp_m1524 NA
## 8892 new_sp_m1524 17
## 8893 new_sp_m1524 11
## 8894 new_sp_m1524 30
## 8895 new_sp_m1524 53
## 8896 new_sp_m1524 28
## 8897 new_sp_m1524 31
## 8898 new_sp_m1524 26
## 8899 new_sp_m1524 26
## 8900 new_sp_m1524 33
## 8901 new_sp_m1524 49
## 8902 new_sp_m1524 43
## 8903 new_sp_m1524 27
## 8904 new_sp_m1524 44
## 8905 new_sp_m1524 24
## 8906 new_sp_m1524 26
## 8907 new_sp_m1524 18
## 8908 new_sp_m1524 23
## 8909 new_sp_m1524 18
## 8910 new_sp_m1524 NA
## 8911 new_sp_m1524 NA
## 8912 new_sp_m1524 NA
## 8913 new_sp_m1524 NA
## 8914 new_sp_m1524 NA
## 8915 new_sp_m1524 NA
## 8916 new_sp_m1524 NA
## 8917 new_sp_m1524 NA
## 8918 new_sp_m1524 NA
## 8919 new_sp_m1524 NA
## 8920 new_sp_m1524 NA
## 8921 new_sp_m1524 NA
## 8922 new_sp_m1524 NA
## 8923 new_sp_m1524 NA
## 8924 new_sp_m1524 NA
## 8925 new_sp_m1524 NA
## 8926 new_sp_m1524 989
## 8927 new_sp_m1524 903
## 8928 new_sp_m1524 1140
## 8929 new_sp_m1524 1173
## 8930 new_sp_m1524 1069
## 8931 new_sp_m1524 NA
## 8932 new_sp_m1524 1205
## 8933 new_sp_m1524 1271
## 8934 new_sp_m1524 1232
## 8935 new_sp_m1524 1418
## 8936 new_sp_m1524 1346
## 8937 new_sp_m1524 1467
## 8938 new_sp_m1524 1576
## 8939 new_sp_m1524 1764
## 8940 new_sp_m1524 1758
## 8941 new_sp_m1524 1751
## 8942 new_sp_m1524 1743
## 8943 new_sp_m1524 1743
## 8944 new_sp_m1524 NA
## 8945 new_sp_m1524 NA
## 8946 new_sp_m1524 NA
## 8947 new_sp_m1524 NA
## 8948 new_sp_m1524 NA
## 8949 new_sp_m1524 NA
## 8950 new_sp_m1524 NA
## 8951 new_sp_m1524 NA
## 8952 new_sp_m1524 NA
## 8953 new_sp_m1524 NA
## 8954 new_sp_m1524 NA
## 8955 new_sp_m1524 NA
## 8956 new_sp_m1524 NA
## 8957 new_sp_m1524 NA
## 8958 new_sp_m1524 NA
## 8959 new_sp_m1524 NA
## 8960 new_sp_m1524 38
## 8961 new_sp_m1524 NA
## 8962 new_sp_m1524 65
## 8963 new_sp_m1524 48
## 8964 new_sp_m1524 29
## 8965 new_sp_m1524 NA
## 8966 new_sp_m1524 32
## 8967 new_sp_m1524 18
## 8968 new_sp_m1524 15
## 8969 new_sp_m1524 18
## 8970 new_sp_m1524 24
## 8971 new_sp_m1524 20
## 8972 new_sp_m1524 NA
## 8973 new_sp_m1524 15
## 8974 new_sp_m1524 14
## 8975 new_sp_m1524 10
## 8976 new_sp_m1524 12
## 8977 new_sp_m1524 7
## 8978 new_sp_m1524 NA
## 8979 new_sp_m1524 NA
## 8980 new_sp_m1524 NA
## 8981 new_sp_m1524 NA
## 8982 new_sp_m1524 NA
## 8983 new_sp_m1524 NA
## 8984 new_sp_m1524 NA
## 8985 new_sp_m1524 NA
## 8986 new_sp_m1524 NA
## 8987 new_sp_m1524 NA
## 8988 new_sp_m1524 NA
## 8989 new_sp_m1524 NA
## 8990 new_sp_m1524 NA
## 8991 new_sp_m1524 NA
## 8992 new_sp_m1524 NA
## 8993 new_sp_m1524 NA
## 8994 new_sp_m1524 59
## 8995 new_sp_m1524 54
## 8996 new_sp_m1524 69
## 8997 new_sp_m1524 60
## 8998 new_sp_m1524 55
## 8999 new_sp_m1524 71
## 9000 new_sp_m1524 36
## 9001 new_sp_m1524 21
## 9002 new_sp_m1524 23
## 9003 new_sp_m1524 17
## 9004 new_sp_m1524 20
## 9005 new_sp_m1524 22
## 9006 new_sp_m1524 NA
## 9007 new_sp_m1524 30
## 9008 new_sp_m1524 16
## 9009 new_sp_m1524 17
## 9010 new_sp_m1524 14
## 9011 new_sp_m1524 15
## 9012 new_sp_m1524 NA
## 9013 new_sp_m1524 0
## 9014 new_sp_m1524 0
## 9015 new_sp_m1524 0
## 9016 new_sp_m1524 NA
## 9017 new_sp_m1524 NA
## 9018 new_sp_m1524 NA
## 9019 new_sp_m1524 NA
## 9020 new_sp_m1524 NA
## 9021 new_sp_m1524 NA
## 9022 new_sp_m1524 NA
## 9023 new_sp_m1524 NA
## 9024 new_sp_m1524 NA
## 9025 new_sp_m1524 NA
## 9026 new_sp_m1524 NA
## 9027 new_sp_m1524 NA
## 9028 new_sp_m1524 NA
## 9029 new_sp_m1524 NA
## 9030 new_sp_m1524 NA
## 9031 new_sp_m1524 NA
## 9032 new_sp_m1524 1
## 9033 new_sp_m1524 0
## 9034 new_sp_m1524 NA
## 9035 new_sp_m1524 0
## 9036 new_sp_m1524 1
## 9037 new_sp_m1524 NA
## 9038 new_sp_m1524 NA
## 9039 new_sp_m1524 2
## 9040 new_sp_m1524 1
## 9041 new_sp_m1524 3
## 9042 new_sp_m1524 3
## 9043 new_sp_m1524 0
## 9044 new_sp_m1524 2
## 9045 new_sp_m1524 1
## 9046 new_sp_m1524 1
## 9047 new_sp_m1524 2
## 9048 new_sp_m1524 0
## 9049 new_sp_m1524 0
## 9050 new_sp_m1524 NA
## 9051 new_sp_m1524 NA
## 9052 new_sp_m1524 NA
## 9053 new_sp_m1524 NA
## 9054 new_sp_m1524 NA
## 9055 new_sp_m1524 NA
## 9056 new_sp_m1524 NA
## 9057 new_sp_m1524 NA
## 9058 new_sp_m1524 NA
## 9059 new_sp_m1524 NA
## 9060 new_sp_m1524 NA
## 9061 new_sp_m1524 NA
## 9062 new_sp_m1524 NA
## 9063 new_sp_m1524 NA
## 9064 new_sp_m1524 NA
## 9065 new_sp_m1524 NA
## 9066 new_sp_m1524 10
## 9067 new_sp_m1524 10
## 9068 new_sp_m1524 5
## 9069 new_sp_m1524 7
## 9070 new_sp_m1524 13
## 9071 new_sp_m1524 7
## 9072 new_sp_m1524 18
## 9073 new_sp_m1524 14
## 9074 new_sp_m1524 11
## 9075 new_sp_m1524 10
## 9076 new_sp_m1524 8
## 9077 new_sp_m1524 6
## 9078 new_sp_m1524 14
## 9079 new_sp_m1524 7
## 9080 new_sp_m1524 11
## 9081 new_sp_m1524 12
## 9082 new_sp_m1524 10
## 9083 new_sp_m1524 7
## 9084 new_sp_m1524 NA
## 9085 new_sp_m1524 NA
## 9086 new_sp_m1524 NA
## 9087 new_sp_m1524 NA
## 9088 new_sp_m1524 NA
## 9089 new_sp_m1524 NA
## 9090 new_sp_m1524 NA
## 9091 new_sp_m1524 NA
## 9092 new_sp_m1524 NA
## 9093 new_sp_m1524 NA
## 9094 new_sp_m1524 NA
## 9095 new_sp_m1524 NA
## 9096 new_sp_m1524 NA
## 9097 new_sp_m1524 NA
## 9098 new_sp_m1524 NA
## 9099 new_sp_m1524 NA
## 9100 new_sp_m1524 NA
## 9101 new_sp_m1524 NA
## 9102 new_sp_m1524 375
## 9103 new_sp_m1524 21
## 9104 new_sp_m1524 294
## 9105 new_sp_m1524 928
## 9106 new_sp_m1524 1081
## 9107 new_sp_m1524 1444
## 9108 new_sp_m1524 1154
## 9109 new_sp_m1524 1284
## 9110 new_sp_m1524 1409
## 9111 new_sp_m1524 1498
## 9112 new_sp_m1524 1947
## 9113 new_sp_m1524 2341
## 9114 new_sp_m1524 2359
## 9115 new_sp_m1524 2524
## 9116 new_sp_m1524 2218
## 9117 new_sp_m1524 2439
## 9118 new_sp_m1524 NA
## 9119 new_sp_m1524 NA
## 9120 new_sp_m1524 NA
## 9121 new_sp_m1524 NA
## 9122 new_sp_m1524 NA
## 9123 new_sp_m1524 NA
## 9124 new_sp_m1524 NA
## 9125 new_sp_m1524 NA
## 9126 new_sp_m1524 NA
## 9127 new_sp_m1524 NA
## 9128 new_sp_m1524 NA
## 9129 new_sp_m1524 NA
## 9130 new_sp_m1524 NA
## 9131 new_sp_m1524 NA
## 9132 new_sp_m1524 NA
## 9133 new_sp_m1524 NA
## 9134 new_sp_m1524 1572
## 9135 new_sp_m1524 1040
## 9136 new_sp_m1524 1401
## 9137 new_sp_m1524 3684
## 9138 new_sp_m1524 4061
## 9139 new_sp_m1524 4048
## 9140 new_sp_m1524 4651
## 9141 new_sp_m1524 4965
## 9142 new_sp_m1524 5885
## 9143 new_sp_m1524 7007
## 9144 new_sp_m1524 6675
## 9145 new_sp_m1524 6391
## 9146 new_sp_m1524 6485
## 9147 new_sp_m1524 6497
## 9148 new_sp_m1524 6587
## 9149 new_sp_m1524 6859
## 9150 new_sp_m1524 6640
## 9151 new_sp_m1524 6612
## 9152 new_sp_m1524 NA
## 9153 new_sp_m1524 NA
## 9154 new_sp_m1524 NA
## 9155 new_sp_m1524 NA
## 9156 new_sp_m1524 NA
## 9157 new_sp_m1524 NA
## 9158 new_sp_m1524 NA
## 9159 new_sp_m1524 NA
## 9160 new_sp_m1524 NA
## 9161 new_sp_m1524 NA
## 9162 new_sp_m1524 NA
## 9163 new_sp_m1524 NA
## 9164 new_sp_m1524 NA
## 9165 new_sp_m1524 NA
## 9166 new_sp_m1524 NA
## 9167 new_sp_m1524 NA
## 9168 new_sp_m1524 7
## 9169 new_sp_m1524 4
## 9170 new_sp_m1524 11
## 9171 new_sp_m1524 7
## 9172 new_sp_m1524 9
## 9173 new_sp_m1524 10
## 9174 new_sp_m1524 10
## 9175 new_sp_m1524 11
## 9176 new_sp_m1524 11
## 9177 new_sp_m1524 6
## 9178 new_sp_m1524 12
## 9179 new_sp_m1524 8
## 9180 new_sp_m1524 6
## 9181 new_sp_m1524 8
## 9182 new_sp_m1524 7
## 9183 new_sp_m1524 8
## 9184 new_sp_m1524 5
## 9185 new_sp_m1524 7
## 9186 new_sp_m1524 NA
## 9187 new_sp_m1524 NA
## 9188 new_sp_m1524 NA
## 9189 new_sp_m1524 NA
## 9190 new_sp_m1524 NA
## 9191 new_sp_m1524 NA
## 9192 new_sp_m1524 NA
## 9193 new_sp_m1524 NA
## 9194 new_sp_m1524 NA
## 9195 new_sp_m1524 NA
## 9196 new_sp_m1524 NA
## 9197 new_sp_m1524 NA
## 9198 new_sp_m1524 NA
## 9199 new_sp_m1524 NA
## 9200 new_sp_m1524 NA
## 9201 new_sp_m1524 NA
## 9202 new_sp_m1524 NA
## 9203 new_sp_m1524 421
## 9204 new_sp_m1524 428
## 9205 new_sp_m1524 348
## 9206 new_sp_m1524 348
## 9207 new_sp_m1524 302
## 9208 new_sp_m1524 267
## 9209 new_sp_m1524 256
## 9210 new_sp_m1524 222
## 9211 new_sp_m1524 217
## 9212 new_sp_m1524 220
## 9213 new_sp_m1524 225
## 9214 new_sp_m1524 241
## 9215 new_sp_m1524 232
## 9216 new_sp_m1524 230
## 9217 new_sp_m1524 211
## 9218 new_sp_m1524 212
## 9219 new_sp_m1524 208
## 9220 new_sp_m1524 NA
## 9221 new_sp_m1524 NA
## 9222 new_sp_m1524 NA
## 9223 new_sp_m1524 NA
## 9224 new_sp_m1524 NA
## 9225 new_sp_m1524 NA
## 9226 new_sp_m1524 NA
## 9227 new_sp_m1524 NA
## 9228 new_sp_m1524 NA
## 9229 new_sp_m1524 NA
## 9230 new_sp_m1524 NA
## 9231 new_sp_m1524 NA
## 9232 new_sp_m1524 NA
## 9233 new_sp_m1524 NA
## 9234 new_sp_m1524 NA
## 9235 new_sp_m1524 NA
## 9236 new_sp_m1524 NA
## 9237 new_sp_m1524 0
## 9238 new_sp_m1524 0
## 9239 new_sp_m1524 0
## 9240 new_sp_m1524 NA
## 9241 new_sp_m1524 NA
## 9242 new_sp_m1524 NA
## 9243 new_sp_m1524 NA
## 9244 new_sp_m1524 NA
## 9245 new_sp_m1524 NA
## 9246 new_sp_m1524 NA
## 9247 new_sp_m1524 0
## 9248 new_sp_m1524 0
## 9249 new_sp_m1524 0
## 9250 new_sp_m1524 0
## 9251 new_sp_m1524 0
## 9252 new_sp_m1524 0
## 9253 new_sp_m1524 2
## 9254 new_sp_m1524 NA
## 9255 new_sp_m1524 NA
## 9256 new_sp_m1524 NA
## 9257 new_sp_m1524 NA
## 9258 new_sp_m1524 NA
## 9259 new_sp_m1524 NA
## 9260 new_sp_m1524 NA
## 9261 new_sp_m1524 NA
## 9262 new_sp_m1524 NA
## 9263 new_sp_m1524 NA
## 9264 new_sp_m1524 NA
## 9265 new_sp_m1524 NA
## 9266 new_sp_m1524 NA
## 9267 new_sp_m1524 NA
## 9268 new_sp_m1524 NA
## 9269 new_sp_m1524 NA
## 9270 new_sp_m1524 NA
## 9271 new_sp_m1524 231
## 9272 new_sp_m1524 450
## 9273 new_sp_m1524 340
## 9274 new_sp_m1524 507
## 9275 new_sp_m1524 410
## 9276 new_sp_m1524 NA
## 9277 new_sp_m1524 295
## 9278 new_sp_m1524 364
## 9279 new_sp_m1524 391
## 9280 new_sp_m1524 399
## 9281 new_sp_m1524 342
## 9282 new_sp_m1524 290
## 9283 new_sp_m1524 322
## 9284 new_sp_m1524 344
## 9285 new_sp_m1524 276
## 9286 new_sp_m1524 333
## 9287 new_sp_m1524 317
## 9288 new_sp_m1524 NA
## 9289 new_sp_m1524 NA
## 9290 new_sp_m1524 NA
## 9291 new_sp_m1524 NA
## 9292 new_sp_m1524 NA
## 9293 new_sp_m1524 NA
## 9294 new_sp_m1524 NA
## 9295 new_sp_m1524 NA
## 9296 new_sp_m1524 NA
## 9297 new_sp_m1524 NA
## 9298 new_sp_m1524 NA
## 9299 new_sp_m1524 NA
## 9300 new_sp_m1524 NA
## 9301 new_sp_m1524 NA
## 9302 new_sp_m1524 NA
## 9303 new_sp_m1524 NA
## 9304 new_sp_m1524 NA
## 9305 new_sp_m1524 NA
## 9306 new_sp_m1524 NA
## 9307 new_sp_m1524 402
## 9308 new_sp_m1524 NA
## 9309 new_sp_m1524 NA
## 9310 new_sp_m1524 673
## 9311 new_sp_m1524 NA
## 9312 new_sp_m1524 310
## 9313 new_sp_m1524 732
## 9314 new_sp_m1524 446
## 9315 new_sp_m1524 479
## 9316 new_sp_m1524 555
## 9317 new_sp_m1524 507
## 9318 new_sp_m1524 485
## 9319 new_sp_m1524 499
## 9320 new_sp_m1524 481
## 9321 new_sp_m1524 506
## 9322 new_sp_m1524 NA
## 9323 new_sp_m1524 NA
## 9324 new_sp_m1524 NA
## 9325 new_sp_m1524 NA
## 9326 new_sp_m1524 NA
## 9327 new_sp_m1524 NA
## 9328 new_sp_m1524 NA
## 9329 new_sp_m1524 NA
## 9330 new_sp_m1524 NA
## 9331 new_sp_m1524 NA
## 9332 new_sp_m1524 NA
## 9333 new_sp_m1524 NA
## 9334 new_sp_m1524 NA
## 9335 new_sp_m1524 NA
## 9336 new_sp_m1524 NA
## 9337 new_sp_m1524 NA
## 9338 new_sp_m1524 542
## 9339 new_sp_m1524 714
## 9340 new_sp_m1524 737
## 9341 new_sp_m1524 761
## 9342 new_sp_m1524 708
## 9343 new_sp_m1524 641
## 9344 new_sp_m1524 586
## 9345 new_sp_m1524 662
## 9346 new_sp_m1524 586
## 9347 new_sp_m1524 563
## 9348 new_sp_m1524 524
## 9349 new_sp_m1524 542
## 9350 new_sp_m1524 588
## 9351 new_sp_m1524 581
## 9352 new_sp_m1524 536
## 9353 new_sp_m1524 358
## 9354 new_sp_m1524 382
## 9355 new_sp_m1524 373
## 9356 new_sp_m1524 NA
## 9357 new_sp_m1524 NA
## 9358 new_sp_m1524 NA
## 9359 new_sp_m1524 NA
## 9360 new_sp_m1524 NA
## 9361 new_sp_m1524 NA
## 9362 new_sp_m1524 NA
## 9363 new_sp_m1524 NA
## 9364 new_sp_m1524 NA
## 9365 new_sp_m1524 NA
## 9366 new_sp_m1524 NA
## 9367 new_sp_m1524 NA
## 9368 new_sp_m1524 NA
## 9369 new_sp_m1524 NA
## 9370 new_sp_m1524 NA
## 9371 new_sp_m1524 NA
## 9372 new_sp_m1524 NA
## 9373 new_sp_m1524 76
## 9374 new_sp_m1524 86
## 9375 new_sp_m1524 95
## 9376 new_sp_m1524 102
## 9377 new_sp_m1524 99
## 9378 new_sp_m1524 101
## 9379 new_sp_m1524 85
## 9380 new_sp_m1524 75
## 9381 new_sp_m1524 92
## 9382 new_sp_m1524 97
## 9383 new_sp_m1524 93
## 9384 new_sp_m1524 79
## 9385 new_sp_m1524 107
## 9386 new_sp_m1524 99
## 9387 new_sp_m1524 101
## 9388 new_sp_m1524 114
## 9389 new_sp_m1524 131
## 9390 new_sp_m1524 NA
## 9391 new_sp_m1524 NA
## 9392 new_sp_m1524 NA
## 9393 new_sp_m1524 NA
## 9394 new_sp_m1524 NA
## 9395 new_sp_m1524 NA
## 9396 new_sp_m1524 NA
## 9397 new_sp_m1524 NA
## 9398 new_sp_m1524 NA
## 9399 new_sp_m1524 NA
## 9400 new_sp_m1524 NA
## 9401 new_sp_m1524 NA
## 9402 new_sp_m1524 NA
## 9403 new_sp_m1524 NA
## 9404 new_sp_m1524 NA
## 9405 new_sp_m1524 NA
## 9406 new_sp_m1524 15
## 9407 new_sp_m1524 NA
## 9408 new_sp_m1524 32
## 9409 new_sp_m1524 30
## 9410 new_sp_m1524 NA
## 9411 new_sp_m1524 NA
## 9412 new_sp_m1524 NA
## 9413 new_sp_m1524 NA
## 9414 new_sp_m1524 NA
## 9415 new_sp_m1524 50
## 9416 new_sp_m1524 NA
## 9417 new_sp_m1524 NA
## 9418 new_sp_m1524 NA
## 9419 new_sp_m1524 68
## 9420 new_sp_m1524 53
## 9421 new_sp_m1524 71
## 9422 new_sp_m1524 77
## 9423 new_sp_m1524 NA
## 9424 new_sp_m1524 NA
## 9425 new_sp_m1524 NA
## 9426 new_sp_m1524 NA
## 9427 new_sp_m1524 NA
## 9428 new_sp_m1524 NA
## 9429 new_sp_m1524 NA
## 9430 new_sp_m1524 NA
## 9431 new_sp_m1524 NA
## 9432 new_sp_m1524 NA
## 9433 new_sp_m1524 NA
## 9434 new_sp_m1524 NA
## 9435 new_sp_m1524 NA
## 9436 new_sp_m1524 NA
## 9437 new_sp_m1524 NA
## 9438 new_sp_m1524 NA
## 9439 new_sp_m1524 NA
## 9440 new_sp_m1524 NA
## 9441 new_sp_m1524 NA
## 9442 new_sp_m1524 2
## 9443 new_sp_m1524 36
## 9444 new_sp_m1524 55
## 9445 new_sp_m1524 70
## 9446 new_sp_m1524 79
## 9447 new_sp_m1524 85
## 9448 new_sp_m1524 90
## 9449 new_sp_m1524 67
## 9450 new_sp_m1524 68
## 9451 new_sp_m1524 50
## 9452 new_sp_m1524 56
## 9453 new_sp_m1524 NA
## 9454 new_sp_m1524 104
## 9455 new_sp_m1524 93
## 9456 new_sp_m1524 NA
## 9457 new_sp_m1524 84
## 9458 new_sp_m1524 NA
## 9459 new_sp_m1524 NA
## 9460 new_sp_m1524 NA
## 9461 new_sp_m1524 NA
## 9462 new_sp_m1524 NA
## 9463 new_sp_m1524 NA
## 9464 new_sp_m1524 NA
## 9465 new_sp_m1524 NA
## 9466 new_sp_m1524 NA
## 9467 new_sp_m1524 NA
## 9468 new_sp_m1524 NA
## 9469 new_sp_m1524 NA
## 9470 new_sp_m1524 NA
## 9471 new_sp_m1524 NA
## 9472 new_sp_m1524 NA
## 9473 new_sp_m1524 NA
## 9474 new_sp_m1524 NA
## 9475 new_sp_m1524 7
## 9476 new_sp_m1524 4
## 9477 new_sp_m1524 15
## 9478 new_sp_m1524 14
## 9479 new_sp_m1524 6
## 9480 new_sp_m1524 10
## 9481 new_sp_m1524 9
## 9482 new_sp_m1524 7
## 9483 new_sp_m1524 6
## 9484 new_sp_m1524 9
## 9485 new_sp_m1524 4
## 9486 new_sp_m1524 6
## 9487 new_sp_m1524 3
## 9488 new_sp_m1524 4
## 9489 new_sp_m1524 3
## 9490 new_sp_m1524 4
## 9491 new_sp_m1524 6
## 9492 new_sp_m1524 NA
## 9493 new_sp_m1524 NA
## 9494 new_sp_m1524 NA
## 9495 new_sp_m1524 NA
## 9496 new_sp_m1524 NA
## 9497 new_sp_m1524 NA
## 9498 new_sp_m1524 NA
## 9499 new_sp_m1524 NA
## 9500 new_sp_m1524 NA
## 9501 new_sp_m1524 NA
## 9502 new_sp_m1524 NA
## 9503 new_sp_m1524 NA
## 9504 new_sp_m1524 NA
## 9505 new_sp_m1524 NA
## 9506 new_sp_m1524 NA
## 9507 new_sp_m1524 NA
## 9508 new_sp_m1524 1221
## 9509 new_sp_m1524 1739
## 9510 new_sp_m1524 2810
## 9511 new_sp_m1524 2643
## 9512 new_sp_m1524 3916
## 9513 new_sp_m1524 5095
## 9514 new_sp_m1524 5730
## 9515 new_sp_m1524 6764
## 9516 new_sp_m1524 6923
## 9517 new_sp_m1524 7167
## 9518 new_sp_m1524 6726
## 9519 new_sp_m1524 6137
## 9520 new_sp_m1524 6522
## 9521 new_sp_m1524 6512
## 9522 new_sp_m1524 7215
## 9523 new_sp_m1524 7400
## 9524 new_sp_m1524 7835
## 9525 new_sp_m1524 NA
## 9526 new_sp_m1524 NA
## 9527 new_sp_m1524 NA
## 9528 new_sp_m1524 NA
## 9529 new_sp_m1524 NA
## 9530 new_sp_m1524 NA
## 9531 new_sp_m1524 NA
## 9532 new_sp_m1524 NA
## 9533 new_sp_m1524 NA
## 9534 new_sp_m1524 NA
## 9535 new_sp_m1524 NA
## 9536 new_sp_m1524 NA
## 9537 new_sp_m1524 NA
## 9538 new_sp_m1524 NA
## 9539 new_sp_m1524 NA
## 9540 new_sp_m1524 NA
## 9541 new_sp_m1524 8
## 9542 new_sp_m1524 8
## 9543 new_sp_m1524 8
## 9544 new_sp_m1524 4
## 9545 new_sp_m1524 7
## 9546 new_sp_m1524 13
## 9547 new_sp_m1524 8
## 9548 new_sp_m1524 6
## 9549 new_sp_m1524 13
## 9550 new_sp_m1524 8
## 9551 new_sp_m1524 8
## 9552 new_sp_m1524 9
## 9553 new_sp_m1524 8
## 9554 new_sp_m1524 7
## 9555 new_sp_m1524 10
## 9556 new_sp_m1524 15
## 9557 new_sp_m1524 7
## 9558 new_sp_m1524 12
## 9559 new_sp_m1524 14
## 9560 new_sp_m1524 NA
## 9561 new_sp_m1524 NA
## 9562 new_sp_m1524 NA
## 9563 new_sp_m1524 NA
## 9564 new_sp_m1524 NA
## 9565 new_sp_m1524 NA
## 9566 new_sp_m1524 NA
## 9567 new_sp_m1524 NA
## 9568 new_sp_m1524 NA
## 9569 new_sp_m1524 NA
## 9570 new_sp_m1524 NA
## 9571 new_sp_m1524 NA
## 9572 new_sp_m1524 NA
## 9573 new_sp_m1524 NA
## 9574 new_sp_m1524 NA
## 9575 new_sp_m1524 NA
## 9576 new_sp_m1524 1
## 9577 new_sp_m1524 2
## 9578 new_sp_m1524 1
## 9579 new_sp_m1524 4
## 9580 new_sp_m1524 NA
## 9581 new_sp_m1524 3
## 9582 new_sp_m1524 1
## 9583 new_sp_m1524 0
## 9584 new_sp_m1524 2
## 9585 new_sp_m1524 1
## 9586 new_sp_m1524 5
## 9587 new_sp_m1524 5
## 9588 new_sp_m1524 4
## 9589 new_sp_m1524 3
## 9590 new_sp_m1524 9
## 9591 new_sp_m1524 10
## 9592 new_sp_m1524 1
## 9593 new_sp_m1524 2
## 9594 new_sp_m1524 NA
## 9595 new_sp_m1524 NA
## 9596 new_sp_m1524 NA
## 9597 new_sp_m1524 NA
## 9598 new_sp_m1524 NA
## 9599 new_sp_m1524 NA
## 9600 new_sp_m1524 NA
## 9601 new_sp_m1524 NA
## 9602 new_sp_m1524 NA
## 9603 new_sp_m1524 NA
## 9604 new_sp_m1524 NA
## 9605 new_sp_m1524 NA
## 9606 new_sp_m1524 NA
## 9607 new_sp_m1524 NA
## 9608 new_sp_m1524 NA
## 9609 new_sp_m1524 NA
## 9610 new_sp_m1524 156
## 9611 new_sp_m1524 124
## 9612 new_sp_m1524 113
## 9613 new_sp_m1524 NA
## 9614 new_sp_m1524 147
## 9615 new_sp_m1524 136
## 9616 new_sp_m1524 124
## 9617 new_sp_m1524 138
## 9618 new_sp_m1524 129
## 9619 new_sp_m1524 109
## 9620 new_sp_m1524 127
## 9621 new_sp_m1524 137
## 9622 new_sp_m1524 120
## 9623 new_sp_m1524 73
## 9624 new_sp_m1524 74
## 9625 new_sp_m1524 60
## 9626 new_sp_m1524 89
## 9627 new_sp_m1524 63
## 9628 new_sp_m1524 NA
## 9629 new_sp_m1524 NA
## 9630 new_sp_m1524 NA
## 9631 new_sp_m1524 NA
## 9632 new_sp_m1524 NA
## 9633 new_sp_m1524 NA
## 9634 new_sp_m1524 NA
## 9635 new_sp_m1524 NA
## 9636 new_sp_m1524 NA
## 9637 new_sp_m1524 NA
## 9638 new_sp_m1524 NA
## 9639 new_sp_m1524 NA
## 9640 new_sp_m1524 NA
## 9641 new_sp_m1524 NA
## 9642 new_sp_m1524 NA
## 9643 new_sp_m1524 NA
## 9644 new_sp_m1524 NA
## 9645 new_sp_m1524 4
## 9646 new_sp_m1524 4
## 9647 new_sp_m1524 4
## 9648 new_sp_m1524 2
## 9649 new_sp_m1524 3
## 9650 new_sp_m1524 5
## 9651 new_sp_m1524 4
## 9652 new_sp_m1524 2
## 9653 new_sp_m1524 1
## 9654 new_sp_m1524 2
## 9655 new_sp_m1524 1
## 9656 new_sp_m1524 NA
## 9657 new_sp_m1524 3
## 9658 new_sp_m1524 1
## 9659 new_sp_m1524 3
## 9660 new_sp_m1524 3
## 9661 new_sp_m1524 1
## 9662 new_sp_m1524 NA
## 9663 new_sp_m1524 NA
## 9664 new_sp_m1524 NA
## 9665 new_sp_m1524 NA
## 9666 new_sp_m1524 NA
## 9667 new_sp_m1524 NA
## 9668 new_sp_m1524 NA
## 9669 new_sp_m1524 NA
## 9670 new_sp_m1524 NA
## 9671 new_sp_m1524 NA
## 9672 new_sp_m1524 NA
## 9673 new_sp_m1524 NA
## 9674 new_sp_m1524 NA
## 9675 new_sp_m1524 NA
## 9676 new_sp_m1524 NA
## 9677 new_sp_m1524 NA
## 9678 new_sp_m1524 45
## 9679 new_sp_m1524 28
## 9680 new_sp_m1524 NA
## 9681 new_sp_m1524 93
## 9682 new_sp_m1524 98
## 9683 new_sp_m1524 NA
## 9684 new_sp_m1524 137
## 9685 new_sp_m1524 137
## 9686 new_sp_m1524 165
## 9687 new_sp_m1524 197
## 9688 new_sp_m1524 123
## 9689 new_sp_m1524 157
## 9690 new_sp_m1524 NA
## 9691 new_sp_m1524 209
## 9692 new_sp_m1524 145
## 9693 new_sp_m1524 145
## 9694 new_sp_m1524 240
## 9695 new_sp_m1524 236
## 9696 new_sp_m1524 NA
## 9697 new_sp_m1524 NA
## 9698 new_sp_m1524 NA
## 9699 new_sp_m1524 NA
## 9700 new_sp_m1524 NA
## 9701 new_sp_m1524 NA
## 9702 new_sp_m1524 NA
## 9703 new_sp_m1524 NA
## 9704 new_sp_m1524 NA
## 9705 new_sp_m1524 NA
## 9706 new_sp_m1524 NA
## 9707 new_sp_m1524 NA
## 9708 new_sp_m1524 NA
## 9709 new_sp_m1524 NA
## 9710 new_sp_m1524 NA
## 9711 new_sp_m1524 NA
## 9712 new_sp_m1524 68
## 9713 new_sp_m1524 42
## 9714 new_sp_m1524 83
## 9715 new_sp_m1524 99
## 9716 new_sp_m1524 99
## 9717 new_sp_m1524 NA
## 9718 new_sp_m1524 NA
## 9719 new_sp_m1524 135
## 9720 new_sp_m1524 162
## 9721 new_sp_m1524 145
## 9722 new_sp_m1524 133
## 9723 new_sp_m1524 126
## 9724 new_sp_m1524 NA
## 9725 new_sp_m1524 151
## 9726 new_sp_m1524 159
## 9727 new_sp_m1524 194
## 9728 new_sp_m1524 183
## 9729 new_sp_m1524 210
## 9730 new_sp_m1524 NA
## 9731 new_sp_m1524 NA
## 9732 new_sp_m1524 NA
## 9733 new_sp_m1524 NA
## 9734 new_sp_m1524 NA
## 9735 new_sp_m1524 NA
## 9736 new_sp_m1524 NA
## 9737 new_sp_m1524 NA
## 9738 new_sp_m1524 NA
## 9739 new_sp_m1524 NA
## 9740 new_sp_m1524 NA
## 9741 new_sp_m1524 NA
## 9742 new_sp_m1524 NA
## 9743 new_sp_m1524 NA
## 9744 new_sp_m1524 NA
## 9745 new_sp_m1524 NA
## 9746 new_sp_m1524 20
## 9747 new_sp_m1524 27
## 9748 new_sp_m1524 75
## 9749 new_sp_m1524 64
## 9750 new_sp_m1524 135
## 9751 new_sp_m1524 76
## 9752 new_sp_m1524 142
## 9753 new_sp_m1524 155
## 9754 new_sp_m1524 112
## 9755 new_sp_m1524 157
## 9756 new_sp_m1524 226
## 9757 new_sp_m1524 315
## 9758 new_sp_m1524 277
## 9759 new_sp_m1524 294
## 9760 new_sp_m1524 327
## 9761 new_sp_m1524 340
## 9762 new_sp_m1524 271
## 9763 new_sp_m1524 200
## 9764 new_sp_m1524 NA
## 9765 new_sp_m1524 NA
## 9766 new_sp_m1524 NA
## 9767 new_sp_m1524 NA
## 9768 new_sp_m1524 NA
## 9769 new_sp_m1524 NA
## 9770 new_sp_m1524 NA
## 9771 new_sp_m1524 NA
## 9772 new_sp_m1524 NA
## 9773 new_sp_m1524 NA
## 9774 new_sp_m1524 NA
## 9775 new_sp_m1524 NA
## 9776 new_sp_m1524 NA
## 9777 new_sp_m1524 NA
## 9778 new_sp_m1524 NA
## 9779 new_sp_m1524 NA
## 9780 new_sp_m1524 179
## 9781 new_sp_m1524 181
## 9782 new_sp_m1524 166
## 9783 new_sp_m1524 179
## 9784 new_sp_m1524 145
## 9785 new_sp_m1524 NA
## 9786 new_sp_m1524 3
## 9787 new_sp_m1524 34
## 9788 new_sp_m1524 68
## 9789 new_sp_m1524 63
## 9790 new_sp_m1524 59
## 9791 new_sp_m1524 78
## 9792 new_sp_m1524 116
## 9793 new_sp_m1524 40
## 9794 new_sp_m1524 48
## 9795 new_sp_m1524 49
## 9796 new_sp_m1524 43
## 9797 new_sp_m1524 47
## 9798 new_sp_m1524 NA
## 9799 new_sp_m1524 NA
## 9800 new_sp_m1524 NA
## 9801 new_sp_m1524 NA
## 9802 new_sp_m1524 NA
## 9803 new_sp_m1524 NA
## 9804 new_sp_m1524 NA
## 9805 new_sp_m1524 NA
## 9806 new_sp_m1524 NA
## 9807 new_sp_m1524 NA
## 9808 new_sp_m1524 NA
## 9809 new_sp_m1524 NA
## 9810 new_sp_m1524 NA
## 9811 new_sp_m1524 NA
## 9812 new_sp_m1524 NA
## 9813 new_sp_m1524 NA
## 9814 new_sp_m1524 223
## 9815 new_sp_m1524 216
## 9816 new_sp_m1524 406
## 9817 new_sp_m1524 553
## 9818 new_sp_m1524 586
## 9819 new_sp_m1524 550
## 9820 new_sp_m1524 587
## 9821 new_sp_m1524 535
## 9822 new_sp_m1524 579
## 9823 new_sp_m1524 532
## 9824 new_sp_m1524 592
## 9825 new_sp_m1524 557
## 9826 new_sp_m1524 596
## 9827 new_sp_m1524 NA
## 9828 new_sp_m1524 674
## 9829 new_sp_m1524 570
## 9830 new_sp_m1524 550
## 9831 new_sp_m1524 559
## 9832 new_sp_m1524 NA
## 9833 new_sp_m1524 NA
## 9834 new_sp_m1524 NA
## 9835 new_sp_m1524 NA
## 9836 new_sp_m1524 NA
## 9837 new_sp_m1524 NA
## 9838 new_sp_m1524 NA
## 9839 new_sp_m1524 NA
## 9840 new_sp_m1524 NA
## 9841 new_sp_m1524 NA
## 9842 new_sp_m1524 NA
## 9843 new_sp_m1524 NA
## 9844 new_sp_m1524 NA
## 9845 new_sp_m1524 NA
## 9846 new_sp_m1524 NA
## 9847 new_sp_m1524 NA
## 9848 new_sp_m1524 NA
## 9849 new_sp_m1524 NA
## 9850 new_sp_m1524 16
## 9851 new_sp_m1524 15
## 9852 new_sp_m1524 11
## 9853 new_sp_m1524 10
## 9854 new_sp_m1524 10
## 9855 new_sp_m1524 1
## 9856 new_sp_m1524 20
## 9857 new_sp_m1524 9
## 9858 new_sp_m1524 14
## 9859 new_sp_m1524 11
## 9860 new_sp_m1524 21
## 9861 new_sp_m1524 5
## 9862 new_sp_m1524 20
## 9863 new_sp_m1524 19
## 9864 new_sp_m1524 30
## 9865 new_sp_m1524 20
## 9866 new_sp_m1524 NA
## 9867 new_sp_m1524 NA
## 9868 new_sp_m1524 NA
## 9869 new_sp_m1524 NA
## 9870 new_sp_m1524 NA
## 9871 new_sp_m1524 NA
## 9872 new_sp_m1524 NA
## 9873 new_sp_m1524 NA
## 9874 new_sp_m1524 NA
## 9875 new_sp_m1524 NA
## 9876 new_sp_m1524 NA
## 9877 new_sp_m1524 NA
## 9878 new_sp_m1524 NA
## 9879 new_sp_m1524 NA
## 9880 new_sp_m1524 NA
## 9881 new_sp_m1524 NA
## 9882 new_sp_m1524 NA
## 9883 new_sp_m1524 NA
## 9884 new_sp_m1524 NA
## 9885 new_sp_m1524 NA
## 9886 new_sp_m1524 NA
## 9887 new_sp_m1524 NA
## 9888 new_sp_m1524 NA
## 9889 new_sp_m1524 NA
## 9890 new_sp_m1524 NA
## 9891 new_sp_m1524 NA
## 9892 new_sp_m1524 NA
## 9893 new_sp_m1524 NA
## 9894 new_sp_m1524 NA
## 9895 new_sp_m1524 NA
## 9896 new_sp_m1524 2
## 9897 new_sp_m1524 5
## 9898 new_sp_m1524 10
## 9899 new_sp_m1524 6
## 9900 new_sp_m1524 NA
## 9901 new_sp_m1524 NA
## 9902 new_sp_m1524 NA
## 9903 new_sp_m1524 NA
## 9904 new_sp_m1524 NA
## 9905 new_sp_m1524 NA
## 9906 new_sp_m1524 NA
## 9907 new_sp_m1524 NA
## 9908 new_sp_m1524 NA
## 9909 new_sp_m1524 NA
## 9910 new_sp_m1524 NA
## 9911 new_sp_m1524 NA
## 9912 new_sp_m1524 NA
## 9913 new_sp_m1524 NA
## 9914 new_sp_m1524 NA
## 9915 new_sp_m1524 NA
## 9916 new_sp_m1524 NA
## 9917 new_sp_m1524 NA
## 9918 new_sp_m1524 0
## 9919 new_sp_m1524 1
## 9920 new_sp_m1524 0
## 9921 new_sp_m1524 NA
## 9922 new_sp_m1524 NA
## 9923 new_sp_m1524 NA
## 9924 new_sp_m1524 NA
## 9925 new_sp_m1524 NA
## 9926 new_sp_m1524 NA
## 9927 new_sp_m1524 0
## 9928 new_sp_m1524 NA
## 9929 new_sp_m1524 1
## 9930 new_sp_m1524 NA
## 9931 new_sp_m1524 NA
## 9932 new_sp_m1524 0
## 9933 new_sp_m1524 NA
## 9934 new_sp_m1524 NA
## 9935 new_sp_m1524 NA
## 9936 new_sp_m1524 NA
## 9937 new_sp_m1524 NA
## 9938 new_sp_m1524 NA
## 9939 new_sp_m1524 NA
## 9940 new_sp_m1524 NA
## 9941 new_sp_m1524 NA
## 9942 new_sp_m1524 NA
## 9943 new_sp_m1524 NA
## 9944 new_sp_m1524 NA
## 9945 new_sp_m1524 NA
## 9946 new_sp_m1524 NA
## 9947 new_sp_m1524 NA
## 9948 new_sp_m1524 NA
## 9949 new_sp_m1524 NA
## 9950 new_sp_m1524 NA
## 9951 new_sp_m1524 NA
## 9952 new_sp_m1524 NA
## 9953 new_sp_m1524 NA
## 9954 new_sp_m1524 NA
## 9955 new_sp_m1524 1
## 9956 new_sp_m1524 1
## 9957 new_sp_m1524 3
## 9958 new_sp_m1524 2
## 9959 new_sp_m1524 0
## 9960 new_sp_m1524 2
## 9961 new_sp_m1524 1
## 9962 new_sp_m1524 0
## 9963 new_sp_m1524 0
## 9964 new_sp_m1524 1
## 9965 new_sp_m1524 2
## 9966 new_sp_m1524 1
## 9967 new_sp_m1524 1
## 9968 new_sp_m1524 NA
## 9969 new_sp_m1524 NA
## 9970 new_sp_m1524 NA
## 9971 new_sp_m1524 NA
## 9972 new_sp_m1524 NA
## 9973 new_sp_m1524 NA
## 9974 new_sp_m1524 NA
## 9975 new_sp_m1524 NA
## 9976 new_sp_m1524 NA
## 9977 new_sp_m1524 NA
## 9978 new_sp_m1524 NA
## 9979 new_sp_m1524 NA
## 9980 new_sp_m1524 NA
## 9981 new_sp_m1524 NA
## 9982 new_sp_m1524 NA
## 9983 new_sp_m1524 NA
## 9984 new_sp_m1524 235
## 9985 new_sp_m1524 230
## 9986 new_sp_m1524 246
## 9987 new_sp_m1524 206
## 9988 new_sp_m1524 216
## 9989 new_sp_m1524 220
## 9990 new_sp_m1524 171
## 9991 new_sp_m1524 217
## 9992 new_sp_m1524 175
## 9993 new_sp_m1524 282
## 9994 new_sp_m1524 251
## 9995 new_sp_m1524 NA
## 9996 new_sp_m1524 169
## 9997 new_sp_m1524 220
## 9998 new_sp_m1524 144
## 9999 new_sp_m1524 187
## 10000 new_sp_m1524 197
## 10001 new_sp_m1524 NA
## 10002 new_sp_m1524 NA
## 10003 new_sp_m1524 NA
## 10004 new_sp_m1524 NA
## 10005 new_sp_m1524 NA
## 10006 new_sp_m1524 NA
## 10007 new_sp_m1524 NA
## 10008 new_sp_m1524 NA
## 10009 new_sp_m1524 NA
## 10010 new_sp_m1524 NA
## 10011 new_sp_m1524 NA
## 10012 new_sp_m1524 NA
## 10013 new_sp_m1524 NA
## 10014 new_sp_m1524 NA
## 10015 new_sp_m1524 NA
## 10016 new_sp_m1524 NA
## 10017 new_sp_m1524 NA
## 10018 new_sp_m1524 244
## 10019 new_sp_m1524 319
## 10020 new_sp_m1524 326
## 10021 new_sp_m1524 409
## 10022 new_sp_m1524 434
## 10023 new_sp_m1524 551
## 10024 new_sp_m1524 506
## 10025 new_sp_m1524 413
## 10026 new_sp_m1524 617
## 10027 new_sp_m1524 728
## 10028 new_sp_m1524 749
## 10029 new_sp_m1524 834
## 10030 new_sp_m1524 901
## 10031 new_sp_m1524 970
## 10032 new_sp_m1524 746
## 10033 new_sp_m1524 679
## 10034 new_sp_m1524 1051
## 10035 new_sp_m1524 761
## 10036 new_sp_m1524 NA
## 10037 new_sp_m1524 NA
## 10038 new_sp_m1524 NA
## 10039 new_sp_m1524 NA
## 10040 new_sp_m1524 NA
## 10041 new_sp_m1524 NA
## 10042 new_sp_m1524 NA
## 10043 new_sp_m1524 NA
## 10044 new_sp_m1524 NA
## 10045 new_sp_m1524 NA
## 10046 new_sp_m1524 NA
## 10047 new_sp_m1524 NA
## 10048 new_sp_m1524 NA
## 10049 new_sp_m1524 NA
## 10050 new_sp_m1524 NA
## 10051 new_sp_m1524 NA
## 10052 new_sp_m1524 NA
## 10053 new_sp_m1524 110
## 10054 new_sp_m1524 NA
## 10055 new_sp_m1524 NA
## 10056 new_sp_m1524 NA
## 10057 new_sp_m1524 52
## 10058 new_sp_m1524 NA
## 10059 new_sp_m1524 101
## 10060 new_sp_m1524 101
## 10061 new_sp_m1524 86
## 10062 new_sp_m1524 116
## 10063 new_sp_m1524 86
## 10064 new_sp_m1524 NA
## 10065 new_sp_m1524 119
## 10066 new_sp_m1524 124
## 10067 new_sp_m1524 164
## 10068 new_sp_m1524 140
## 10069 new_sp_m1524 145
## 10070 new_sp_m1524 NA
## 10071 new_sp_m1524 NA
## 10072 new_sp_m1524 NA
## 10073 new_sp_m1524 NA
## 10074 new_sp_m1524 NA
## 10075 new_sp_m1524 NA
## 10076 new_sp_m1524 NA
## 10077 new_sp_m1524 NA
## 10078 new_sp_m1524 NA
## 10079 new_sp_m1524 NA
## 10080 new_sp_m1524 NA
## 10081 new_sp_m1524 NA
## 10082 new_sp_m1524 NA
## 10083 new_sp_m1524 NA
## 10084 new_sp_m1524 NA
## 10085 new_sp_m1524 NA
## 10086 new_sp_m1524 8
## 10087 new_sp_m1524 8
## 10088 new_sp_m1524 15
## 10089 new_sp_m1524 29
## 10090 new_sp_m1524 NA
## 10091 new_sp_m1524 20
## 10092 new_sp_m1524 15
## 10093 new_sp_m1524 49
## 10094 new_sp_m1524 56
## 10095 new_sp_m1524 45
## 10096 new_sp_m1524 48
## 10097 new_sp_m1524 37
## 10098 new_sp_m1524 15
## 10099 new_sp_m1524 29
## 10100 new_sp_m1524 21
## 10101 new_sp_m1524 32
## 10102 new_sp_m1524 26
## 10103 new_sp_m1524 30
## 10104 new_sp_m1524 NA
## 10105 new_sp_m1524 NA
## 10106 new_sp_m1524 NA
## 10107 new_sp_m1524 NA
## 10108 new_sp_m1524 NA
## 10109 new_sp_m1524 NA
## 10110 new_sp_m1524 NA
## 10111 new_sp_m1524 NA
## 10112 new_sp_m1524 NA
## 10113 new_sp_m1524 NA
## 10114 new_sp_m1524 NA
## 10115 new_sp_m1524 NA
## 10116 new_sp_m1524 NA
## 10117 new_sp_m1524 NA
## 10118 new_sp_m1524 NA
## 10119 new_sp_m1524 NA
## 10120 new_sp_m1524 NA
## 10121 new_sp_m1524 358
## 10122 new_sp_m1524 683
## 10123 new_sp_m1524 804
## 10124 new_sp_m1524 812
## 10125 new_sp_m1524 836
## 10126 new_sp_m1524 752
## 10127 new_sp_m1524 903
## 10128 new_sp_m1524 1002
## 10129 new_sp_m1524 918
## 10130 new_sp_m1524 1045
## 10131 new_sp_m1524 1110
## 10132 new_sp_m1524 1166
## 10133 new_sp_m1524 1137
## 10134 new_sp_m1524 NA
## 10135 new_sp_m1524 1225
## 10136 new_sp_m1524 1239
## 10137 new_sp_m1524 1358
## 10138 new_sp_m1524 NA
## 10139 new_sp_m1524 NA
## 10140 new_sp_m1524 NA
## 10141 new_sp_m1524 NA
## 10142 new_sp_m1524 NA
## 10143 new_sp_m1524 NA
## 10144 new_sp_m1524 NA
## 10145 new_sp_m1524 NA
## 10146 new_sp_m1524 NA
## 10147 new_sp_m1524 NA
## 10148 new_sp_m1524 NA
## 10149 new_sp_m1524 NA
## 10150 new_sp_m1524 NA
## 10151 new_sp_m1524 NA
## 10152 new_sp_m1524 NA
## 10153 new_sp_m1524 NA
## 10154 new_sp_m1524 280
## 10155 new_sp_m1524 247
## 10156 new_sp_m1524 214
## 10157 new_sp_m1524 277
## 10158 new_sp_m1524 288
## 10159 new_sp_m1524 123
## 10160 new_sp_m1524 47
## 10161 new_sp_m1524 29
## 10162 new_sp_m1524 20
## 10163 new_sp_m1524 20
## 10164 new_sp_m1524 238
## 10165 new_sp_m1524 213
## 10166 new_sp_m1524 204
## 10167 new_sp_m1524 254
## 10168 new_sp_m1524 227
## 10169 new_sp_m1524 177
## 10170 new_sp_m1524 194
## 10171 new_sp_m1524 247
## 10172 new_sp_m1524 NA
## 10173 new_sp_m1524 NA
## 10174 new_sp_m1524 NA
## 10175 new_sp_m1524 NA
## 10176 new_sp_m1524 NA
## 10177 new_sp_m1524 NA
## 10178 new_sp_m1524 NA
## 10179 new_sp_m1524 NA
## 10180 new_sp_m1524 NA
## 10181 new_sp_m1524 NA
## 10182 new_sp_m1524 NA
## 10183 new_sp_m1524 NA
## 10184 new_sp_m1524 NA
## 10185 new_sp_m1524 NA
## 10186 new_sp_m1524 NA
## 10187 new_sp_m1524 NA
## 10188 new_sp_m1524 NA
## 10189 new_sp_m1524 28
## 10190 new_sp_m1524 8
## 10191 new_sp_m1524 14
## 10192 new_sp_m1524 16
## 10193 new_sp_m1524 8
## 10194 new_sp_m1524 11
## 10195 new_sp_m1524 10
## 10196 new_sp_m1524 6
## 10197 new_sp_m1524 7
## 10198 new_sp_m1524 6
## 10199 new_sp_m1524 10
## 10200 new_sp_m1524 7
## 10201 new_sp_m1524 12
## 10202 new_sp_m1524 10
## 10203 new_sp_m1524 9
## 10204 new_sp_m1524 11
## 10205 new_sp_m1524 7
## 10206 new_sp_m1524 NA
## 10207 new_sp_m1524 NA
## 10208 new_sp_m1524 NA
## 10209 new_sp_m1524 NA
## 10210 new_sp_m1524 NA
## 10211 new_sp_m1524 NA
## 10212 new_sp_m1524 NA
## 10213 new_sp_m1524 NA
## 10214 new_sp_m1524 NA
## 10215 new_sp_m1524 NA
## 10216 new_sp_m1524 NA
## 10217 new_sp_m1524 NA
## 10218 new_sp_m1524 NA
## 10219 new_sp_m1524 NA
## 10220 new_sp_m1524 NA
## 10221 new_sp_m1524 NA
## 10222 new_sp_m1524 0
## 10223 new_sp_m1524 NA
## 10224 new_sp_m1524 0
## 10225 new_sp_m1524 0
## 10226 new_sp_m1524 NA
## 10227 new_sp_m1524 NA
## 10228 new_sp_m1524 1
## 10229 new_sp_m1524 1
## 10230 new_sp_m1524 0
## 10231 new_sp_m1524 0
## 10232 new_sp_m1524 0
## 10233 new_sp_m1524 0
## 10234 new_sp_m1524 0
## 10235 new_sp_m1524 0
## 10236 new_sp_m1524 0
## 10237 new_sp_m1524 0
## 10238 new_sp_m1524 0
## 10239 new_sp_m1524 0
## 10240 new_sp_m1524 NA
## 10241 new_sp_m1524 NA
## 10242 new_sp_m1524 NA
## 10243 new_sp_m1524 NA
## 10244 new_sp_m1524 NA
## 10245 new_sp_m1524 NA
## 10246 new_sp_m1524 NA
## 10247 new_sp_m1524 NA
## 10248 new_sp_m1524 NA
## 10249 new_sp_m1524 NA
## 10250 new_sp_m1524 NA
## 10251 new_sp_m1524 NA
## 10252 new_sp_m1524 NA
## 10253 new_sp_m1524 NA
## 10254 new_sp_m1524 NA
## 10255 new_sp_m1524 NA
## 10256 new_sp_m1524 334
## 10257 new_sp_m1524 966
## 10258 new_sp_m1524 1257
## 10259 new_sp_m1524 1773
## 10260 new_sp_m1524 7058
## 10261 new_sp_m1524 20963
## 10262 new_sp_m1524 22483
## 10263 new_sp_m1524 39923
## 10264 new_sp_m1524 47251
## 10265 new_sp_m1524 57208
## 10266 new_sp_m1524 62620
## 10267 new_sp_m1524 68346
## 10268 new_sp_m1524 73947
## 10269 new_sp_m1524 77121
## 10270 new_sp_m1524 78177
## 10271 new_sp_m1524 78278
## 10272 new_sp_m1524 78096
## 10273 new_sp_m1524 75502
## 10274 new_sp_m1524 NA
## 10275 new_sp_m1524 NA
## 10276 new_sp_m1524 NA
## 10277 new_sp_m1524 NA
## 10278 new_sp_m1524 NA
## 10279 new_sp_m1524 NA
## 10280 new_sp_m1524 NA
## 10281 new_sp_m1524 NA
## 10282 new_sp_m1524 NA
## 10283 new_sp_m1524 NA
## 10284 new_sp_m1524 NA
## 10285 new_sp_m1524 NA
## 10286 new_sp_m1524 NA
## 10287 new_sp_m1524 NA
## 10288 new_sp_m1524 NA
## 10289 new_sp_m1524 NA
## 10290 new_sp_m1524 203
## 10291 new_sp_m1524 781
## 10292 new_sp_m1524 1320
## 10293 new_sp_m1524 2732
## 10294 new_sp_m1524 3741
## 10295 new_sp_m1524 NA
## 10296 new_sp_m1524 5400
## 10297 new_sp_m1524 7826
## 10298 new_sp_m1524 9570
## 10299 new_sp_m1524 12546
## 10300 new_sp_m1524 15215
## 10301 new_sp_m1524 16285
## 10302 new_sp_m1524 14835
## 10303 new_sp_m1524 15339
## 10304 new_sp_m1524 15721
## 10305 new_sp_m1524 16501
## 10306 new_sp_m1524 17406
## 10307 new_sp_m1524 17304
## 10308 new_sp_m1524 NA
## 10309 new_sp_m1524 NA
## 10310 new_sp_m1524 NA
## 10311 new_sp_m1524 NA
## 10312 new_sp_m1524 NA
## 10313 new_sp_m1524 NA
## 10314 new_sp_m1524 NA
## 10315 new_sp_m1524 NA
## 10316 new_sp_m1524 NA
## 10317 new_sp_m1524 NA
## 10318 new_sp_m1524 NA
## 10319 new_sp_m1524 NA
## 10320 new_sp_m1524 NA
## 10321 new_sp_m1524 NA
## 10322 new_sp_m1524 NA
## 10323 new_sp_m1524 NA
## 10324 new_sp_m1524 751
## 10325 new_sp_m1524 390
## 10326 new_sp_m1524 391
## 10327 new_sp_m1524 426
## 10328 new_sp_m1524 370
## 10329 new_sp_m1524 438
## 10330 new_sp_m1524 469
## 10331 new_sp_m1524 457
## 10332 new_sp_m1524 413
## 10333 new_sp_m1524 360
## 10334 new_sp_m1524 352
## 10335 new_sp_m1524 357
## 10336 new_sp_m1524 311
## 10337 new_sp_m1524 292
## 10338 new_sp_m1524 302
## 10339 new_sp_m1524 292
## 10340 new_sp_m1524 289
## 10341 new_sp_m1524 288
## 10342 new_sp_m1524 NA
## 10343 new_sp_m1524 NA
## 10344 new_sp_m1524 NA
## 10345 new_sp_m1524 NA
## 10346 new_sp_m1524 NA
## 10347 new_sp_m1524 NA
## 10348 new_sp_m1524 NA
## 10349 new_sp_m1524 NA
## 10350 new_sp_m1524 NA
## 10351 new_sp_m1524 NA
## 10352 new_sp_m1524 NA
## 10353 new_sp_m1524 NA
## 10354 new_sp_m1524 NA
## 10355 new_sp_m1524 NA
## 10356 new_sp_m1524 NA
## 10357 new_sp_m1524 NA
## 10358 new_sp_m1524 862
## 10359 new_sp_m1524 NA
## 10360 new_sp_m1524 791
## 10361 new_sp_m1524 879
## 10362 new_sp_m1524 1434
## 10363 new_sp_m1524 627
## 10364 new_sp_m1524 722
## 10365 new_sp_m1524 706
## 10366 new_sp_m1524 659
## 10367 new_sp_m1524 615
## 10368 new_sp_m1524 424
## 10369 new_sp_m1524 409
## 10370 new_sp_m1524 319
## 10371 new_sp_m1524 348
## 10372 new_sp_m1524 377
## 10373 new_sp_m1524 370
## 10374 new_sp_m1524 304
## 10375 new_sp_m1524 283
## 10376 new_sp_m1524 NA
## 10377 new_sp_m1524 NA
## 10378 new_sp_m1524 NA
## 10379 new_sp_m1524 NA
## 10380 new_sp_m1524 NA
## 10381 new_sp_m1524 NA
## 10382 new_sp_m1524 NA
## 10383 new_sp_m1524 NA
## 10384 new_sp_m1524 NA
## 10385 new_sp_m1524 NA
## 10386 new_sp_m1524 NA
## 10387 new_sp_m1524 NA
## 10388 new_sp_m1524 NA
## 10389 new_sp_m1524 NA
## 10390 new_sp_m1524 NA
## 10391 new_sp_m1524 NA
## 10392 new_sp_m1524 NA
## 10393 new_sp_m1524 NA
## 10394 new_sp_m1524 NA
## 10395 new_sp_m1524 11
## 10396 new_sp_m1524 7
## 10397 new_sp_m1524 10
## 10398 new_sp_m1524 6
## 10399 new_sp_m1524 7
## 10400 new_sp_m1524 10
## 10401 new_sp_m1524 4
## 10402 new_sp_m1524 6
## 10403 new_sp_m1524 8
## 10404 new_sp_m1524 26
## 10405 new_sp_m1524 9
## 10406 new_sp_m1524 5
## 10407 new_sp_m1524 8
## 10408 new_sp_m1524 7
## 10409 new_sp_m1524 7
## 10410 new_sp_m1524 NA
## 10411 new_sp_m1524 NA
## 10412 new_sp_m1524 NA
## 10413 new_sp_m1524 NA
## 10414 new_sp_m1524 NA
## 10415 new_sp_m1524 NA
## 10416 new_sp_m1524 NA
## 10417 new_sp_m1524 NA
## 10418 new_sp_m1524 NA
## 10419 new_sp_m1524 NA
## 10420 new_sp_m1524 NA
## 10421 new_sp_m1524 NA
## 10422 new_sp_m1524 NA
## 10423 new_sp_m1524 NA
## 10424 new_sp_m1524 NA
## 10425 new_sp_m1524 NA
## 10426 new_sp_m1524 NA
## 10427 new_sp_m1524 5
## 10428 new_sp_m1524 9
## 10429 new_sp_m1524 20
## 10430 new_sp_m1524 19
## 10431 new_sp_m1524 20
## 10432 new_sp_m1524 13
## 10433 new_sp_m1524 10
## 10434 new_sp_m1524 9
## 10435 new_sp_m1524 5
## 10436 new_sp_m1524 4
## 10437 new_sp_m1524 4
## 10438 new_sp_m1524 7
## 10439 new_sp_m1524 13
## 10440 new_sp_m1524 7
## 10441 new_sp_m1524 13
## 10442 new_sp_m1524 29
## 10443 new_sp_m1524 9
## 10444 new_sp_m1524 NA
## 10445 new_sp_m1524 NA
## 10446 new_sp_m1524 NA
## 10447 new_sp_m1524 NA
## 10448 new_sp_m1524 NA
## 10449 new_sp_m1524 NA
## 10450 new_sp_m1524 NA
## 10451 new_sp_m1524 NA
## 10452 new_sp_m1524 NA
## 10453 new_sp_m1524 NA
## 10454 new_sp_m1524 NA
## 10455 new_sp_m1524 NA
## 10456 new_sp_m1524 NA
## 10457 new_sp_m1524 NA
## 10458 new_sp_m1524 NA
## 10459 new_sp_m1524 NA
## 10460 new_sp_m1524 59
## 10461 new_sp_m1524 72
## 10462 new_sp_m1524 93
## 10463 new_sp_m1524 128
## 10464 new_sp_m1524 78
## 10465 new_sp_m1524 63
## 10466 new_sp_m1524 43
## 10467 new_sp_m1524 51
## 10468 new_sp_m1524 79
## 10469 new_sp_m1524 52
## 10470 new_sp_m1524 93
## 10471 new_sp_m1524 113
## 10472 new_sp_m1524 75
## 10473 new_sp_m1524 78
## 10474 new_sp_m1524 89
## 10475 new_sp_m1524 87
## 10476 new_sp_m1524 51
## 10477 new_sp_m1524 43
## 10478 new_sp_m1524 NA
## 10479 new_sp_m1524 NA
## 10480 new_sp_m1524 NA
## 10481 new_sp_m1524 NA
## 10482 new_sp_m1524 NA
## 10483 new_sp_m1524 NA
## 10484 new_sp_m1524 NA
## 10485 new_sp_m1524 NA
## 10486 new_sp_m1524 NA
## 10487 new_sp_m1524 NA
## 10488 new_sp_m1524 NA
## 10489 new_sp_m1524 NA
## 10490 new_sp_m1524 NA
## 10491 new_sp_m1524 NA
## 10492 new_sp_m1524 NA
## 10493 new_sp_m1524 NA
## 10494 new_sp_m1524 9
## 10495 new_sp_m1524 9
## 10496 new_sp_m1524 2
## 10497 new_sp_m1524 3
## 10498 new_sp_m1524 10
## 10499 new_sp_m1524 6
## 10500 new_sp_m1524 10
## 10501 new_sp_m1524 9
## 10502 new_sp_m1524 11
## 10503 new_sp_m1524 9
## 10504 new_sp_m1524 4
## 10505 new_sp_m1524 9
## 10506 new_sp_m1524 12
## 10507 new_sp_m1524 2
## 10508 new_sp_m1524 5
## 10509 new_sp_m1524 7
## 10510 new_sp_m1524 2
## 10511 new_sp_m1524 10
## 10512 new_sp_m1524 NA
## 10513 new_sp_m1524 NA
## 10514 new_sp_m1524 NA
## 10515 new_sp_m1524 NA
## 10516 new_sp_m1524 NA
## 10517 new_sp_m1524 NA
## 10518 new_sp_m1524 NA
## 10519 new_sp_m1524 NA
## 10520 new_sp_m1524 NA
## 10521 new_sp_m1524 NA
## 10522 new_sp_m1524 NA
## 10523 new_sp_m1524 NA
## 10524 new_sp_m1524 NA
## 10525 new_sp_m1524 NA
## 10526 new_sp_m1524 NA
## 10527 new_sp_m1524 NA
## 10528 new_sp_m1524 342
## 10529 new_sp_m1524 309
## 10530 new_sp_m1524 304
## 10531 new_sp_m1524 306
## 10532 new_sp_m1524 290
## 10533 new_sp_m1524 246
## 10534 new_sp_m1524 220
## 10535 new_sp_m1524 191
## 10536 new_sp_m1524 210
## 10537 new_sp_m1524 193
## 10538 new_sp_m1524 197
## 10539 new_sp_m1524 175
## 10540 new_sp_m1524 142
## 10541 new_sp_m1524 117
## 10542 new_sp_m1524 134
## 10543 new_sp_m1524 128
## 10544 new_sp_m1524 96
## 10545 new_sp_m1524 94
## 10546 new_sp_m1524 NA
## 10547 new_sp_m1524 NA
## 10548 new_sp_m1524 NA
## 10549 new_sp_m1524 NA
## 10550 new_sp_m1524 NA
## 10551 new_sp_m1524 NA
## 10552 new_sp_m1524 NA
## 10553 new_sp_m1524 NA
## 10554 new_sp_m1524 NA
## 10555 new_sp_m1524 NA
## 10556 new_sp_m1524 NA
## 10557 new_sp_m1524 NA
## 10558 new_sp_m1524 NA
## 10559 new_sp_m1524 NA
## 10560 new_sp_m1524 NA
## 10561 new_sp_m1524 NA
## 10562 new_sp_m1524 19
## 10563 new_sp_m1524 22
## 10564 new_sp_m1524 14
## 10565 new_sp_m1524 22
## 10566 new_sp_m1524 16
## 10567 new_sp_m1524 8
## 10568 new_sp_m1524 7
## 10569 new_sp_m1524 8
## 10570 new_sp_m1524 19
## 10571 new_sp_m1524 8
## 10572 new_sp_m1524 8
## 10573 new_sp_m1524 9
## 10574 new_sp_m1524 7
## 10575 new_sp_m1524 13
## 10576 new_sp_m1524 5
## 10577 new_sp_m1524 5
## 10578 new_sp_m1524 9
## 10579 new_sp_m1524 8
## 10580 new_sp_m1524 NA
## 10581 new_sp_m1524 NA
## 10582 new_sp_m1524 NA
## 10583 new_sp_m1524 NA
## 10584 new_sp_m1524 NA
## 10585 new_sp_m1524 NA
## 10586 new_sp_m1524 NA
## 10587 new_sp_m1524 NA
## 10588 new_sp_m1524 NA
## 10589 new_sp_m1524 NA
## 10590 new_sp_m1524 NA
## 10591 new_sp_m1524 NA
## 10592 new_sp_m1524 NA
## 10593 new_sp_m1524 NA
## 10594 new_sp_m1524 NA
## 10595 new_sp_m1524 NA
## 10596 new_sp_m1524 NA
## 10597 new_sp_m1524 NA
## 10598 new_sp_m1524 68
## 10599 new_sp_m1524 795
## 10600 new_sp_m1524 778
## 10601 new_sp_m1524 1057
## 10602 new_sp_m1524 1038
## 10603 new_sp_m1524 1067
## 10604 new_sp_m1524 NA
## 10605 new_sp_m1524 989
## 10606 new_sp_m1524 917
## 10607 new_sp_m1524 888
## 10608 new_sp_m1524 881
## 10609 new_sp_m1524 897
## 10610 new_sp_m1524 765
## 10611 new_sp_m1524 675
## 10612 new_sp_m1524 602
## 10613 new_sp_m1524 508
## 10614 new_sp_m1524 NA
## 10615 new_sp_m1524 NA
## 10616 new_sp_m1524 NA
## 10617 new_sp_m1524 NA
## 10618 new_sp_m1524 NA
## 10619 new_sp_m1524 NA
## 10620 new_sp_m1524 NA
## 10621 new_sp_m1524 NA
## 10622 new_sp_m1524 NA
## 10623 new_sp_m1524 NA
## 10624 new_sp_m1524 NA
## 10625 new_sp_m1524 NA
## 10626 new_sp_m1524 NA
## 10627 new_sp_m1524 NA
## 10628 new_sp_m1524 NA
## 10629 new_sp_m1524 NA
## 10630 new_sp_m1524 2072
## 10631 new_sp_m1524 2492
## 10632 new_sp_m1524 2881
## 10633 new_sp_m1524 3372
## 10634 new_sp_m1524 3835
## 10635 new_sp_m1524 3739
## 10636 new_sp_m1524 4083
## 10637 new_sp_m1524 4445
## 10638 new_sp_m1524 4918
## 10639 new_sp_m1524 5388
## 10640 new_sp_m1524 4790
## 10641 new_sp_m1524 4708
## 10642 new_sp_m1524 4752
## 10643 new_sp_m1524 4709
## 10644 new_sp_m1524 4667
## 10645 new_sp_m1524 4698
## 10646 new_sp_m1524 4773
## 10647 new_sp_m1524 4893
## 10648 new_sp_m1524 NA
## 10649 new_sp_m1524 NA
## 10650 new_sp_m1524 NA
## 10651 new_sp_m1524 NA
## 10652 new_sp_m1524 NA
## 10653 new_sp_m1524 NA
## 10654 new_sp_m1524 NA
## 10655 new_sp_m1524 NA
## 10656 new_sp_m1524 NA
## 10657 new_sp_m1524 NA
## 10658 new_sp_m1524 NA
## 10659 new_sp_m1524 NA
## 10660 new_sp_m1524 NA
## 10661 new_sp_m1524 NA
## 10662 new_sp_m1524 NA
## 10663 new_sp_m1524 NA
## 10664 new_sp_m1524 NA
## 10665 new_sp_m1524 4
## 10666 new_sp_m1524 2
## 10667 new_sp_m1524 6
## 10668 new_sp_m1524 6
## 10669 new_sp_m1524 9
## 10670 new_sp_m1524 10
## 10671 new_sp_m1524 11
## 10672 new_sp_m1524 13
## 10673 new_sp_m1524 17
## 10674 new_sp_m1524 15
## 10675 new_sp_m1524 18
## 10676 new_sp_m1524 15
## 10677 new_sp_m1524 30
## 10678 new_sp_m1524 22
## 10679 new_sp_m1524 27
## 10680 new_sp_m1524 17
## 10681 new_sp_m1524 19
## 10682 new_sp_m1524 NA
## 10683 new_sp_m1524 NA
## 10684 new_sp_m1524 NA
## 10685 new_sp_m1524 NA
## 10686 new_sp_m1524 NA
## 10687 new_sp_m1524 NA
## 10688 new_sp_m1524 NA
## 10689 new_sp_m1524 NA
## 10690 new_sp_m1524 NA
## 10691 new_sp_m1524 NA
## 10692 new_sp_m1524 NA
## 10693 new_sp_m1524 NA
## 10694 new_sp_m1524 NA
## 10695 new_sp_m1524 NA
## 10696 new_sp_m1524 NA
## 10697 new_sp_m1524 NA
## 10698 new_sp_m1524 15
## 10699 new_sp_m1524 11
## 10700 new_sp_m1524 23
## 10701 new_sp_m1524 14
## 10702 new_sp_m1524 18
## 10703 new_sp_m1524 10
## 10704 new_sp_m1524 13
## 10705 new_sp_m1524 14
## 10706 new_sp_m1524 14
## 10707 new_sp_m1524 20
## 10708 new_sp_m1524 12
## 10709 new_sp_m1524 19
## 10710 new_sp_m1524 16
## 10711 new_sp_m1524 18
## 10712 new_sp_m1524 26
## 10713 new_sp_m1524 16
## 10714 new_sp_m1524 13
## 10715 new_sp_m1524 14
## 10716 new_sp_m1524 NA
## 10717 new_sp_m1524 NA
## 10718 new_sp_m1524 NA
## 10719 new_sp_m1524 NA
## 10720 new_sp_m1524 NA
## 10721 new_sp_m1524 NA
## 10722 new_sp_m1524 NA
## 10723 new_sp_m1524 NA
## 10724 new_sp_m1524 NA
## 10725 new_sp_m1524 NA
## 10726 new_sp_m1524 NA
## 10727 new_sp_m1524 NA
## 10728 new_sp_m1524 NA
## 10729 new_sp_m1524 NA
## 10730 new_sp_m1524 NA
## 10731 new_sp_m1524 NA
## 10732 new_sp_m1524 109
## 10733 new_sp_m1524 148
## 10734 new_sp_m1524 212
## 10735 new_sp_m1524 105
## 10736 new_sp_m1524 216
## 10737 new_sp_m1524 128
## 10738 new_sp_m1524 176
## 10739 new_sp_m1524 202
## 10740 new_sp_m1524 189
## 10741 new_sp_m1524 221
## 10742 new_sp_m1524 247
## 10743 new_sp_m1524 245
## 10744 new_sp_m1524 243
## 10745 new_sp_m1524 261
## 10746 new_sp_m1524 251
## 10747 new_sp_m1524 261
## 10748 new_sp_m1524 225
## 10749 new_sp_m1524 210
## 10750 new_sp_m1524 NA
## 10751 new_sp_m1524 NA
## 10752 new_sp_m1524 NA
## 10753 new_sp_m1524 NA
## 10754 new_sp_m1524 NA
## 10755 new_sp_m1524 NA
## 10756 new_sp_m1524 NA
## 10757 new_sp_m1524 NA
## 10758 new_sp_m1524 NA
## 10759 new_sp_m1524 NA
## 10760 new_sp_m1524 NA
## 10761 new_sp_m1524 NA
## 10762 new_sp_m1524 NA
## 10763 new_sp_m1524 NA
## 10764 new_sp_m1524 NA
## 10765 new_sp_m1524 NA
## 10766 new_sp_m1524 56
## 10767 new_sp_m1524 42
## 10768 new_sp_m1524 61
## 10769 new_sp_m1524 77
## 10770 new_sp_m1524 91
## 10771 new_sp_m1524 92
## 10772 new_sp_m1524 81
## 10773 new_sp_m1524 86
## 10774 new_sp_m1524 91
## 10775 new_sp_m1524 120
## 10776 new_sp_m1524 136
## 10777 new_sp_m1524 145
## 10778 new_sp_m1524 150
## 10779 new_sp_m1524 159
## 10780 new_sp_m1524 159
## 10781 new_sp_m1524 157
## 10782 new_sp_m1524 145
## 10783 new_sp_m1524 144
## 10784 new_sp_m1524 NA
## 10785 new_sp_m1524 NA
## 10786 new_sp_m1524 NA
## 10787 new_sp_m1524 NA
## 10788 new_sp_m1524 NA
## 10789 new_sp_m1524 NA
## 10790 new_sp_m1524 NA
## 10791 new_sp_m1524 NA
## 10792 new_sp_m1524 NA
## 10793 new_sp_m1524 NA
## 10794 new_sp_m1524 NA
## 10795 new_sp_m1524 NA
## 10796 new_sp_m1524 NA
## 10797 new_sp_m1524 NA
## 10798 new_sp_m1524 NA
## 10799 new_sp_m1524 NA
## 10800 new_sp_m1524 20
## 10801 new_sp_m1524 28
## 10802 new_sp_m1524 47
## 10803 new_sp_m1524 58
## 10804 new_sp_m1524 48
## 10805 new_sp_m1524 53
## 10806 new_sp_m1524 48
## 10807 new_sp_m1524 32
## 10808 new_sp_m1524 36
## 10809 new_sp_m1524 30
## 10810 new_sp_m1524 22
## 10811 new_sp_m1524 27
## 10812 new_sp_m1524 33
## 10813 new_sp_m1524 28
## 10814 new_sp_m1524 21
## 10815 new_sp_m1524 20
## 10816 new_sp_m1524 11
## 10817 new_sp_m1524 19
## 10818 new_sp_m1524 NA
## 10819 new_sp_m1524 NA
## 10820 new_sp_m1524 NA
## 10821 new_sp_m1524 NA
## 10822 new_sp_m1524 NA
## 10823 new_sp_m1524 NA
## 10824 new_sp_m1524 NA
## 10825 new_sp_m1524 NA
## 10826 new_sp_m1524 NA
## 10827 new_sp_m1524 NA
## 10828 new_sp_m1524 NA
## 10829 new_sp_m1524 NA
## 10830 new_sp_m1524 NA
## 10831 new_sp_m1524 NA
## 10832 new_sp_m1524 NA
## 10833 new_sp_m1524 NA
## 10834 new_sp_m1524 26
## 10835 new_sp_m1524 28
## 10836 new_sp_m1524 18
## 10837 new_sp_m1524 27
## 10838 new_sp_m1524 27
## 10839 new_sp_m1524 16
## 10840 new_sp_m1524 22
## 10841 new_sp_m1524 19
## 10842 new_sp_m1524 19
## 10843 new_sp_m1524 11
## 10844 new_sp_m1524 12
## 10845 new_sp_m1524 11
## 10846 new_sp_m1524 12
## 10847 new_sp_m1524 9
## 10848 new_sp_m1524 12
## 10849 new_sp_m1524 8
## 10850 new_sp_m1524 14
## 10851 new_sp_m1524 18
## 10852 new_sp_m1524 NA
## 10853 new_sp_m1524 NA
## 10854 new_sp_m1524 NA
## 10855 new_sp_m1524 NA
## 10856 new_sp_m1524 NA
## 10857 new_sp_m1524 NA
## 10858 new_sp_m1524 NA
## 10859 new_sp_m1524 NA
## 10860 new_sp_m1524 NA
## 10861 new_sp_m1524 NA
## 10862 new_sp_m1524 NA
## 10863 new_sp_m1524 NA
## 10864 new_sp_m1524 NA
## 10865 new_sp_m1524 NA
## 10866 new_sp_m1524 NA
## 10867 new_sp_m1524 NA
## 10868 new_sp_m1524 108
## 10869 new_sp_m1524 123
## 10870 new_sp_m1524 180
## 10871 new_sp_m1524 190
## 10872 new_sp_m1524 NA
## 10873 new_sp_m1524 165
## 10874 new_sp_m1524 NA
## 10875 new_sp_m1524 218
## 10876 new_sp_m1524 219
## 10877 new_sp_m1524 286
## 10878 new_sp_m1524 395
## 10879 new_sp_m1524 228
## 10880 new_sp_m1524 32
## 10881 new_sp_m1524 223
## 10882 new_sp_m1524 217
## 10883 new_sp_m1524 222
## 10884 new_sp_m1524 179
## 10885 new_sp_m1524 204
## 10886 new_sp_m1524 NA
## 10887 new_sp_m1524 NA
## 10888 new_sp_m1524 NA
## 10889 new_sp_m1524 NA
## 10890 new_sp_m1524 NA
## 10891 new_sp_m1524 NA
## 10892 new_sp_m1524 NA
## 10893 new_sp_m1524 NA
## 10894 new_sp_m1524 NA
## 10895 new_sp_m1524 NA
## 10896 new_sp_m1524 NA
## 10897 new_sp_m1524 NA
## 10898 new_sp_m1524 NA
## 10899 new_sp_m1524 NA
## 10900 new_sp_m1524 NA
## 10901 new_sp_m1524 NA
## 10902 new_sp_m1524 NA
## 10903 new_sp_m1524 69
## 10904 new_sp_m1524 NA
## 10905 new_sp_m1524 150
## 10906 new_sp_m1524 NA
## 10907 new_sp_m1524 133
## 10908 new_sp_m1524 111
## 10909 new_sp_m1524 252
## 10910 new_sp_m1524 180
## 10911 new_sp_m1524 333
## 10912 new_sp_m1524 240
## 10913 new_sp_m1524 324
## 10914 new_sp_m1524 NA
## 10915 new_sp_m1524 129
## 10916 new_sp_m1524 360
## 10917 new_sp_m1524 338
## 10918 new_sp_m1524 382
## 10919 new_sp_m1524 382
## 10920 new_sp_m1524 NA
## 10921 new_sp_m1524 NA
## 10922 new_sp_m1524 NA
## 10923 new_sp_m1524 NA
## 10924 new_sp_m1524 NA
## 10925 new_sp_m1524 NA
## 10926 new_sp_m1524 NA
## 10927 new_sp_m1524 NA
## 10928 new_sp_m1524 NA
## 10929 new_sp_m1524 NA
## 10930 new_sp_m1524 NA
## 10931 new_sp_m1524 NA
## 10932 new_sp_m1524 NA
## 10933 new_sp_m1524 NA
## 10934 new_sp_m1524 NA
## 10935 new_sp_m1524 NA
## 10936 new_sp_m1524 112
## 10937 new_sp_m1524 93
## 10938 new_sp_m1524 NA
## 10939 new_sp_m1524 NA
## 10940 new_sp_m1524 110
## 10941 new_sp_m1524 101
## 10942 new_sp_m1524 NA
## 10943 new_sp_m1524 NA
## 10944 new_sp_m1524 108
## 10945 new_sp_m1524 113
## 10946 new_sp_m1524 114
## 10947 new_sp_m1524 98
## 10948 new_sp_m1524 61
## 10949 new_sp_m1524 116
## 10950 new_sp_m1524 131
## 10951 new_sp_m1524 NA
## 10952 new_sp_m1524 85
## 10953 new_sp_m1524 86
## 10954 new_sp_m1524 NA
## 10955 new_sp_m1524 NA
## 10956 new_sp_m1524 NA
## 10957 new_sp_m1524 NA
## 10958 new_sp_m1524 NA
## 10959 new_sp_m1524 NA
## 10960 new_sp_m1524 NA
## 10961 new_sp_m1524 NA
## 10962 new_sp_m1524 NA
## 10963 new_sp_m1524 NA
## 10964 new_sp_m1524 NA
## 10965 new_sp_m1524 NA
## 10966 new_sp_m1524 NA
## 10967 new_sp_m1524 NA
## 10968 new_sp_m1524 NA
## 10969 new_sp_m1524 NA
## 10970 new_sp_m1524 46
## 10971 new_sp_m1524 60
## 10972 new_sp_m1524 53
## 10973 new_sp_m1524 38
## 10974 new_sp_m1524 42
## 10975 new_sp_m1524 38
## 10976 new_sp_m1524 35
## 10977 new_sp_m1524 24
## 10978 new_sp_m1524 35
## 10979 new_sp_m1524 39
## 10980 new_sp_m1524 42
## 10981 new_sp_m1524 38
## 10982 new_sp_m1524 31
## 10983 new_sp_m1524 39
## 10984 new_sp_m1524 22
## 10985 new_sp_m1524 34
## 10986 new_sp_m1524 25
## 10987 new_sp_m1524 35
## 10988 new_sp_m1524 NA
## 10989 new_sp_m1524 NA
## 10990 new_sp_m1524 NA
## 10991 new_sp_m1524 NA
## 10992 new_sp_m1524 NA
## 10993 new_sp_m1524 NA
## 10994 new_sp_m1524 NA
## 10995 new_sp_m1524 NA
## 10996 new_sp_m1524 NA
## 10997 new_sp_m1524 NA
## 10998 new_sp_m1524 NA
## 10999 new_sp_m1524 NA
## 11000 new_sp_m1524 NA
## 11001 new_sp_m1524 NA
## 11002 new_sp_m1524 NA
## 11003 new_sp_m1524 NA
## 11004 new_sp_m1524 NA
## 11005 new_sp_m1524 5
## 11006 new_sp_m1524 2
## 11007 new_sp_m1524 3
## 11008 new_sp_m1524 NA
## 11009 new_sp_m1524 NA
## 11010 new_sp_m1524 0
## 11011 new_sp_m1524 0
## 11012 new_sp_m1524 2
## 11013 new_sp_m1524 1
## 11014 new_sp_m1524 0
## 11015 new_sp_m1524 0
## 11016 new_sp_m1524 0
## 11017 new_sp_m1524 0
## 11018 new_sp_m1524 0
## 11019 new_sp_m1524 0
## 11020 new_sp_m1524 0
## 11021 new_sp_m1524 0
## 11022 new_sp_m1524 NA
## 11023 new_sp_m1524 NA
## 11024 new_sp_m1524 NA
## 11025 new_sp_m1524 NA
## 11026 new_sp_m1524 NA
## 11027 new_sp_m1524 NA
## 11028 new_sp_m1524 NA
## 11029 new_sp_m1524 NA
## 11030 new_sp_m1524 NA
## 11031 new_sp_m1524 NA
## 11032 new_sp_m1524 NA
## 11033 new_sp_m1524 NA
## 11034 new_sp_m1524 NA
## 11035 new_sp_m1524 NA
## 11036 new_sp_m1524 NA
## 11037 new_sp_m1524 NA
## 11038 new_sp_m1524 791
## 11039 new_sp_m1524 888
## 11040 new_sp_m1524 NA
## 11041 new_sp_m1524 827
## 11042 new_sp_m1524 NA
## 11043 new_sp_m1524 NA
## 11044 new_sp_m1524 1033
## 11045 new_sp_m1524 1023
## 11046 new_sp_m1524 1249
## 11047 new_sp_m1524 1025
## 11048 new_sp_m1524 1159
## 11049 new_sp_m1524 1500
## 11050 new_sp_m1524 1473
## 11051 new_sp_m1524 1499
## 11052 new_sp_m1524 1463
## 11053 new_sp_m1524 1721
## 11054 new_sp_m1524 1807
## 11055 new_sp_m1524 1725
## 11056 new_sp_m1524 NA
## 11057 new_sp_m1524 NA
## 11058 new_sp_m1524 NA
## 11059 new_sp_m1524 NA
## 11060 new_sp_m1524 NA
## 11061 new_sp_m1524 NA
## 11062 new_sp_m1524 NA
## 11063 new_sp_m1524 NA
## 11064 new_sp_m1524 NA
## 11065 new_sp_m1524 NA
## 11066 new_sp_m1524 NA
## 11067 new_sp_m1524 NA
## 11068 new_sp_m1524 NA
## 11069 new_sp_m1524 NA
## 11070 new_sp_m1524 NA
## 11071 new_sp_m1524 NA
## 11072 new_sp_m1524 493
## 11073 new_sp_m1524 562
## 11074 new_sp_m1524 578
## 11075 new_sp_m1524 677
## 11076 new_sp_m1524 588
## 11077 new_sp_m1524 653
## 11078 new_sp_m1524 704
## 11079 new_sp_m1524 NA
## 11080 new_sp_m1524 596
## 11081 new_sp_m1524 647
## 11082 new_sp_m1524 622
## 11083 new_sp_m1524 584
## 11084 new_sp_m1524 614
## 11085 new_sp_m1524 570
## 11086 new_sp_m1524 565
## 11087 new_sp_m1524 565
## 11088 new_sp_m1524 519
## 11089 new_sp_m1524 495
## 11090 new_sp_m1524 NA
## 11091 new_sp_m1524 NA
## 11092 new_sp_m1524 NA
## 11093 new_sp_m1524 NA
## 11094 new_sp_m1524 NA
## 11095 new_sp_m1524 NA
## 11096 new_sp_m1524 NA
## 11097 new_sp_m1524 NA
## 11098 new_sp_m1524 NA
## 11099 new_sp_m1524 NA
## 11100 new_sp_m1524 NA
## 11101 new_sp_m1524 NA
## 11102 new_sp_m1524 NA
## 11103 new_sp_m1524 NA
## 11104 new_sp_m1524 NA
## 11105 new_sp_m1524 NA
## 11106 new_sp_m1524 640
## 11107 new_sp_m1524 720
## 11108 new_sp_m1524 701
## 11109 new_sp_m1524 670
## 11110 new_sp_m1524 692
## 11111 new_sp_m1524 694
## 11112 new_sp_m1524 713
## 11113 new_sp_m1524 562
## 11114 new_sp_m1524 1211
## 11115 new_sp_m1524 1195
## 11116 new_sp_m1524 1179
## 11117 new_sp_m1524 507
## 11118 new_sp_m1524 1291
## 11119 new_sp_m1524 1436
## 11120 new_sp_m1524 NA
## 11121 new_sp_m1524 884
## 11122 new_sp_m1524 948
## 11123 new_sp_m1524 1060
## 11124 new_sp_m1524 NA
## 11125 new_sp_m1524 NA
## 11126 new_sp_m1524 NA
## 11127 new_sp_m1524 NA
## 11128 new_sp_m1524 NA
## 11129 new_sp_m1524 NA
## 11130 new_sp_m1524 NA
## 11131 new_sp_m1524 NA
## 11132 new_sp_m1524 NA
## 11133 new_sp_m1524 NA
## 11134 new_sp_m1524 NA
## 11135 new_sp_m1524 NA
## 11136 new_sp_m1524 NA
## 11137 new_sp_m1524 NA
## 11138 new_sp_m1524 NA
## 11139 new_sp_m1524 NA
## 11140 new_sp_m1524 28
## 11141 new_sp_m1524 24
## 11142 new_sp_m1524 13
## 11143 new_sp_m1524 19
## 11144 new_sp_m1524 14
## 11145 new_sp_m1524 9
## 11146 new_sp_m1524 12
## 11147 new_sp_m1524 11
## 11148 new_sp_m1524 14
## 11149 new_sp_m1524 13
## 11150 new_sp_m1524 9
## 11151 new_sp_m1524 8
## 11152 new_sp_m1524 14
## 11153 new_sp_m1524 9
## 11154 new_sp_m1524 16
## 11155 new_sp_m1524 8
## 11156 new_sp_m1524 12
## 11157 new_sp_m1524 8
## 11158 new_sp_m1524 NA
## 11159 new_sp_m1524 NA
## 11160 new_sp_m1524 NA
## 11161 new_sp_m1524 NA
## 11162 new_sp_m1524 NA
## 11163 new_sp_m1524 NA
## 11164 new_sp_m1524 NA
## 11165 new_sp_m1524 NA
## 11166 new_sp_m1524 NA
## 11167 new_sp_m1524 NA
## 11168 new_sp_m1524 NA
## 11169 new_sp_m1524 NA
## 11170 new_sp_m1524 NA
## 11171 new_sp_m1524 NA
## 11172 new_sp_m1524 NA
## 11173 new_sp_m1524 NA
## 11174 new_sp_m1524 72
## 11175 new_sp_m1524 182
## 11176 new_sp_m1524 226
## 11177 new_sp_m1524 193
## 11178 new_sp_m1524 235
## 11179 new_sp_m1524 206
## 11180 new_sp_m1524 NA
## 11181 new_sp_m1524 209
## 11182 new_sp_m1524 348
## 11183 new_sp_m1524 302
## 11184 new_sp_m1524 350
## 11185 new_sp_m1524 361
## 11186 new_sp_m1524 369
## 11187 new_sp_m1524 453
## 11188 new_sp_m1524 489
## 11189 new_sp_m1524 381
## 11190 new_sp_m1524 370
## 11191 new_sp_m1524 405
## 11192 new_sp_m1524 NA
## 11193 new_sp_m1524 NA
## 11194 new_sp_m1524 NA
## 11195 new_sp_m1524 NA
## 11196 new_sp_m1524 NA
## 11197 new_sp_m1524 NA
## 11198 new_sp_m1524 NA
## 11199 new_sp_m1524 NA
## 11200 new_sp_m1524 NA
## 11201 new_sp_m1524 NA
## 11202 new_sp_m1524 NA
## 11203 new_sp_m1524 NA
## 11204 new_sp_m1524 NA
## 11205 new_sp_m1524 NA
## 11206 new_sp_m1524 NA
## 11207 new_sp_m1524 NA
## 11208 new_sp_m1524 0
## 11209 new_sp_m1524 0
## 11210 new_sp_m1524 1
## 11211 new_sp_m1524 1
## 11212 new_sp_m1524 0
## 11213 new_sp_m1524 1
## 11214 new_sp_m1524 NA
## 11215 new_sp_m1524 1
## 11216 new_sp_m1524 0
## 11217 new_sp_m1524 0
## 11218 new_sp_m1524 1
## 11219 new_sp_m1524 1
## 11220 new_sp_m1524 0
## 11221 new_sp_m1524 3
## 11222 new_sp_m1524 4
## 11223 new_sp_m1524 0
## 11224 new_sp_m1524 2
## 11225 new_sp_m1524 2
## 11226 new_sp_m1524 NA
## 11227 new_sp_m1524 NA
## 11228 new_sp_m1524 NA
## 11229 new_sp_m1524 NA
## 11230 new_sp_m1524 NA
## 11231 new_sp_m1524 NA
## 11232 new_sp_m1524 NA
## 11233 new_sp_m1524 NA
## 11234 new_sp_m1524 NA
## 11235 new_sp_m1524 NA
## 11236 new_sp_m1524 NA
## 11237 new_sp_m1524 NA
## 11238 new_sp_m1524 NA
## 11239 new_sp_m1524 NA
## 11240 new_sp_m1524 NA
## 11241 new_sp_m1524 NA
## 11242 new_sp_m1524 NA
## 11243 new_sp_m1524 8
## 11244 new_sp_m1524 NA
## 11245 new_sp_m1524 2
## 11246 new_sp_m1524 10
## 11247 new_sp_m1524 5
## 11248 new_sp_m1524 8
## 11249 new_sp_m1524 1
## 11250 new_sp_m1524 4
## 11251 new_sp_m1524 5
## 11252 new_sp_m1524 4
## 11253 new_sp_m1524 4
## 11254 new_sp_m1524 1
## 11255 new_sp_m1524 1
## 11256 new_sp_m1524 12
## 11257 new_sp_m1524 10
## 11258 new_sp_m1524 7
## 11259 new_sp_m1524 3
## 11260 new_sp_m1524 NA
## 11261 new_sp_m1524 NA
## 11262 new_sp_m1524 NA
## 11263 new_sp_m1524 NA
## 11264 new_sp_m1524 NA
## 11265 new_sp_m1524 NA
## 11266 new_sp_m1524 NA
## 11267 new_sp_m1524 NA
## 11268 new_sp_m1524 NA
## 11269 new_sp_m1524 NA
## 11270 new_sp_m1524 NA
## 11271 new_sp_m1524 NA
## 11272 new_sp_m1524 NA
## 11273 new_sp_m1524 NA
## 11274 new_sp_m1524 NA
## 11275 new_sp_m1524 NA
## 11276 new_sp_m1524 NA
## 11277 new_sp_m1524 NA
## 11278 new_sp_m1524 165
## 11279 new_sp_m1524 NA
## 11280 new_sp_m1524 290
## 11281 new_sp_m1524 NA
## 11282 new_sp_m1524 NA
## 11283 new_sp_m1524 NA
## 11284 new_sp_m1524 NA
## 11285 new_sp_m1524 204
## 11286 new_sp_m1524 NA
## 11287 new_sp_m1524 197
## 11288 new_sp_m1524 206
## 11289 new_sp_m1524 199
## 11290 new_sp_m1524 217
## 11291 new_sp_m1524 192
## 11292 new_sp_m1524 165
## 11293 new_sp_m1524 204
## 11294 new_sp_m1524 NA
## 11295 new_sp_m1524 NA
## 11296 new_sp_m1524 NA
## 11297 new_sp_m1524 NA
## 11298 new_sp_m1524 NA
## 11299 new_sp_m1524 NA
## 11300 new_sp_m1524 NA
## 11301 new_sp_m1524 NA
## 11302 new_sp_m1524 NA
## 11303 new_sp_m1524 NA
## 11304 new_sp_m1524 NA
## 11305 new_sp_m1524 NA
## 11306 new_sp_m1524 NA
## 11307 new_sp_m1524 NA
## 11308 new_sp_m1524 NA
## 11309 new_sp_m1524 NA
## 11310 new_sp_m1524 17
## 11311 new_sp_m1524 NA
## 11312 new_sp_m1524 NA
## 11313 new_sp_m1524 12
## 11314 new_sp_m1524 7
## 11315 new_sp_m1524 6
## 11316 new_sp_m1524 NA
## 11317 new_sp_m1524 12
## 11318 new_sp_m1524 9
## 11319 new_sp_m1524 13
## 11320 new_sp_m1524 10
## 11321 new_sp_m1524 4
## 11322 new_sp_m1524 9
## 11323 new_sp_m1524 11
## 11324 new_sp_m1524 5
## 11325 new_sp_m1524 9
## 11326 new_sp_m1524 10
## 11327 new_sp_m1524 11
## 11328 new_sp_m1524 NA
## 11329 new_sp_m1524 NA
## 11330 new_sp_m1524 NA
## 11331 new_sp_m1524 NA
## 11332 new_sp_m1524 NA
## 11333 new_sp_m1524 NA
## 11334 new_sp_m1524 NA
## 11335 new_sp_m1524 NA
## 11336 new_sp_m1524 NA
## 11337 new_sp_m1524 NA
## 11338 new_sp_m1524 NA
## 11339 new_sp_m1524 NA
## 11340 new_sp_m1524 NA
## 11341 new_sp_m1524 NA
## 11342 new_sp_m1524 NA
## 11343 new_sp_m1524 NA
## 11344 new_sp_m1524 NA
## 11345 new_sp_m1524 936
## 11346 new_sp_m1524 NA
## 11347 new_sp_m1524 1031
## 11348 new_sp_m1524 1013
## 11349 new_sp_m1524 1079
## 11350 new_sp_m1524 1448
## 11351 new_sp_m1524 1090
## 11352 new_sp_m1524 1207
## 11353 new_sp_m1524 1053
## 11354 new_sp_m1524 1095
## 11355 new_sp_m1524 986
## 11356 new_sp_m1524 981
## 11357 new_sp_m1524 966
## 11358 new_sp_m1524 1030
## 11359 new_sp_m1524 1081
## 11360 new_sp_m1524 1124
## 11361 new_sp_m1524 1153
## 11362 new_sp_m1524 NA
## 11363 new_sp_m1524 NA
## 11364 new_sp_m1524 NA
## 11365 new_sp_m1524 NA
## 11366 new_sp_m1524 NA
## 11367 new_sp_m1524 NA
## 11368 new_sp_m1524 NA
## 11369 new_sp_m1524 NA
## 11370 new_sp_m1524 NA
## 11371 new_sp_m1524 NA
## 11372 new_sp_m1524 NA
## 11373 new_sp_m1524 NA
## 11374 new_sp_m1524 NA
## 11375 new_sp_m1524 NA
## 11376 new_sp_m1524 NA
## 11377 new_sp_m1524 NA
## 11378 new_sp_m1524 1
## 11379 new_sp_m1524 1
## 11380 new_sp_m1524 0
## 11381 new_sp_m1524 5
## 11382 new_sp_m1524 NA
## 11383 new_sp_m1524 2
## 11384 new_sp_m1524 2
## 11385 new_sp_m1524 0
## 11386 new_sp_m1524 3
## 11387 new_sp_m1524 4
## 11388 new_sp_m1524 NA
## 11389 new_sp_m1524 21
## 11390 new_sp_m1524 8
## 11391 new_sp_m1524 9
## 11392 new_sp_m1524 7
## 11393 new_sp_m1524 8
## 11394 new_sp_m1524 8
## 11395 new_sp_m1524 8
## 11396 new_sp_m1524 NA
## 11397 new_sp_m1524 NA
## 11398 new_sp_m1524 NA
## 11399 new_sp_m1524 NA
## 11400 new_sp_m1524 NA
## 11401 new_sp_m1524 NA
## 11402 new_sp_m1524 NA
## 11403 new_sp_m1524 NA
## 11404 new_sp_m1524 NA
## 11405 new_sp_m1524 NA
## 11406 new_sp_m1524 NA
## 11407 new_sp_m1524 NA
## 11408 new_sp_m1524 NA
## 11409 new_sp_m1524 NA
## 11410 new_sp_m1524 NA
## 11411 new_sp_m1524 NA
## 11412 new_sp_m1524 NA
## 11413 new_sp_m1524 NA
## 11414 new_sp_m1524 NA
## 11415 new_sp_m1524 NA
## 11416 new_sp_m1524 0
## 11417 new_sp_m1524 NA
## 11418 new_sp_m1524 NA
## 11419 new_sp_m1524 NA
## 11420 new_sp_m1524 NA
## 11421 new_sp_m1524 NA
## 11422 new_sp_m1524 NA
## 11423 new_sp_m1524 NA
## 11424 new_sp_m1524 NA
## 11425 new_sp_m1524 NA
## 11426 new_sp_m1524 NA
## 11427 new_sp_m1524 NA
## 11428 new_sp_m1524 NA
## 11429 new_sp_m1524 NA
## 11430 new_sp_m1524 NA
## 11431 new_sp_m1524 NA
## 11432 new_sp_m1524 NA
## 11433 new_sp_m1524 NA
## 11434 new_sp_m1524 NA
## 11435 new_sp_m1524 NA
## 11436 new_sp_m1524 NA
## 11437 new_sp_m1524 NA
## 11438 new_sp_m1524 NA
## 11439 new_sp_m1524 NA
## 11440 new_sp_m1524 NA
## 11441 new_sp_m1524 NA
## 11442 new_sp_m1524 NA
## 11443 new_sp_m1524 NA
## 11444 new_sp_m1524 NA
## 11445 new_sp_m1524 23
## 11446 new_sp_m1524 99
## 11447 new_sp_m1524 103
## 11448 new_sp_m1524 173
## 11449 new_sp_m1524 213
## 11450 new_sp_m1524 213
## 11451 new_sp_m1524 181
## 11452 new_sp_m1524 236
## 11453 new_sp_m1524 242
## 11454 new_sp_m1524 206
## 11455 new_sp_m1524 287
## 11456 new_sp_m1524 271
## 11457 new_sp_m1524 317
## 11458 new_sp_m1524 280
## 11459 new_sp_m1524 289
## 11460 new_sp_m1524 280
## 11461 new_sp_m1524 285
## 11462 new_sp_m1524 246
## 11463 new_sp_m1524 257
## 11464 new_sp_m1524 NA
## 11465 new_sp_m1524 3
## 11466 new_sp_m1524 0
## 11467 new_sp_m1524 0
## 11468 new_sp_m1524 2
## 11469 new_sp_m1524 1
## 11470 new_sp_m1524 1
## 11471 new_sp_m1524 1
## 11472 new_sp_m1524 3
## 11473 new_sp_m1524 NA
## 11474 new_sp_m1524 NA
## 11475 new_sp_m1524 NA
## 11476 new_sp_m1524 NA
## 11477 new_sp_m1524 NA
## 11478 new_sp_m1524 NA
## 11479 new_sp_m1524 NA
## 11480 new_sp_m1524 NA
## 11481 new_sp_m1524 NA
## 11482 new_sp_m1524 NA
## 11483 new_sp_m1524 NA
## 11484 new_sp_m1524 NA
## 11485 new_sp_m1524 NA
## 11486 new_sp_m1524 NA
## 11487 new_sp_m1524 NA
## 11488 new_sp_m1524 NA
## 11489 new_sp_m1524 NA
## 11490 new_sp_m1524 NA
## 11491 new_sp_m1524 NA
## 11492 new_sp_m1524 NA
## 11493 new_sp_m1524 NA
## 11494 new_sp_m1524 NA
## 11495 new_sp_m1524 NA
## 11496 new_sp_m1524 NA
## 11497 new_sp_m1524 0
## 11498 new_sp_m1524 0
## 11499 new_sp_m1524 NA
## 11500 new_sp_m1524 NA
## 11501 new_sp_m1524 NA
## 11502 new_sp_m1524 NA
## 11503 new_sp_m1524 NA
## 11504 new_sp_m1524 0
## 11505 new_sp_m1524 0
## 11506 new_sp_m1524 0
## 11507 new_sp_m1524 NA
## 11508 new_sp_m1524 NA
## 11509 new_sp_m1524 NA
## 11510 new_sp_m1524 NA
## 11511 new_sp_m1524 NA
## 11512 new_sp_m1524 NA
## 11513 new_sp_m1524 NA
## 11514 new_sp_m1524 NA
## 11515 new_sp_m1524 NA
## 11516 new_sp_m1524 NA
## 11517 new_sp_m1524 NA
## 11518 new_sp_m1524 NA
## 11519 new_sp_m1524 NA
## 11520 new_sp_m1524 NA
## 11521 new_sp_m1524 NA
## 11522 new_sp_m1524 NA
## 11523 new_sp_m1524 2508
## 11524 new_sp_m1524 2618
## 11525 new_sp_m1524 2328
## 11526 new_sp_m1524 2308
## 11527 new_sp_m1524 2296
## 11528 new_sp_m1524 2061
## 11529 new_sp_m1524 2200
## 11530 new_sp_m1524 2190
## 11531 new_sp_m1524 2225
## 11532 new_sp_m1524 2081
## 11533 new_sp_m1524 2222
## 11534 new_sp_m1524 2104
## 11535 new_sp_m1524 2098
## 11536 new_sp_m1524 1992
## 11537 new_sp_m1524 1960
## 11538 new_sp_m1524 1982
## 11539 new_sp_m1524 1929
## 11540 new_sp_m1524 1840
## 11541 new_sp_m1524 NA
## 11542 new_sp_m1524 NA
## 11543 new_sp_m1524 NA
## 11544 new_sp_m1524 NA
## 11545 new_sp_m1524 NA
## 11546 new_sp_m1524 NA
## 11547 new_sp_m1524 NA
## 11548 new_sp_m1524 NA
## 11549 new_sp_m1524 NA
## 11550 new_sp_m1524 NA
## 11551 new_sp_m1524 NA
## 11552 new_sp_m1524 NA
## 11553 new_sp_m1524 NA
## 11554 new_sp_m1524 NA
## 11555 new_sp_m1524 NA
## 11556 new_sp_m1524 NA
## 11557 new_sp_m1524 1136
## 11558 new_sp_m1524 1163
## 11559 new_sp_m1524 1194
## 11560 new_sp_m1524 NA
## 11561 new_sp_m1524 NA
## 11562 new_sp_m1524 NA
## 11563 new_sp_m1524 NA
## 11564 new_sp_m1524 NA
## 11565 new_sp_m1524 NA
## 11566 new_sp_m1524 NA
## 11567 new_sp_m1524 NA
## 11568 new_sp_m1524 NA
## 11569 new_sp_m1524 NA
## 11570 new_sp_m1524 NA
## 11571 new_sp_m1524 NA
## 11572 new_sp_m1524 NA
## 11573 new_sp_m1524 NA
## 11574 new_sp_m1524 NA
## 11575 new_sp_m1524 NA
## 11576 new_sp_m1524 NA
## 11577 new_sp_m1524 NA
## 11578 new_sp_m1524 NA
## 11579 new_sp_m1524 NA
## 11580 new_sp_m1524 NA
## 11581 new_sp_m1524 NA
## 11582 new_sp_m1524 NA
## 11583 new_sp_m1524 NA
## 11584 new_sp_m1524 NA
## 11585 new_sp_m1524 NA
## 11586 new_sp_m1524 NA
## 11587 new_sp_m1524 NA
## 11588 new_sp_m1524 NA
## 11589 new_sp_m1524 NA
## 11590 new_sp_m1524 NA
## 11591 new_sp_m1524 713
## 11592 new_sp_m1524 767
## 11593 new_sp_m1524 676
## 11594 new_sp_m1524 798
## 11595 new_sp_m1524 936
## 11596 new_sp_m1524 1459
## 11597 new_sp_m1524 1800
## 11598 new_sp_m1524 2125
## 11599 new_sp_m1524 2536
## 11600 new_sp_m1524 2777
## 11601 new_sp_m1524 3401
## 11602 new_sp_m1524 3572
## 11603 new_sp_m1524 3591
## 11604 new_sp_m1524 3416
## 11605 new_sp_m1524 3259
## 11606 new_sp_m1524 3043
## 11607 new_sp_m1524 2923
## 11608 new_sp_m1524 2898
## 11609 new_sp_m1524 NA
## 11610 new_sp_m1524 NA
## 11611 new_sp_m1524 NA
## 11612 new_sp_m1524 NA
## 11613 new_sp_m1524 NA
## 11614 new_sp_m1524 NA
## 11615 new_sp_m1524 NA
## 11616 new_sp_m1524 NA
## 11617 new_sp_m1524 NA
## 11618 new_sp_m1524 NA
## 11619 new_sp_m1524 NA
## 11620 new_sp_m1524 NA
## 11621 new_sp_m1524 NA
## 11622 new_sp_m1524 NA
## 11623 new_sp_m1524 NA
## 11624 new_sp_m1524 NA
## 11625 new_sp_m1524 68
## 11626 new_sp_m1524 205
## 11627 new_sp_m1524 232
## 11628 new_sp_m1524 270
## 11629 new_sp_m1524 247
## 11630 new_sp_m1524 269
## 11631 new_sp_m1524 322
## 11632 new_sp_m1524 301
## 11633 new_sp_m1524 364
## 11634 new_sp_m1524 319
## 11635 new_sp_m1524 355
## 11636 new_sp_m1524 347
## 11637 new_sp_m1524 370
## 11638 new_sp_m1524 387
## 11639 new_sp_m1524 357
## 11640 new_sp_m1524 359
## 11641 new_sp_m1524 337
## 11642 new_sp_m1524 358
## 11643 new_sp_m1524 NA
## 11644 new_sp_m1524 NA
## 11645 new_sp_m1524 NA
## 11646 new_sp_m1524 NA
## 11647 new_sp_m1524 NA
## 11648 new_sp_m1524 NA
## 11649 new_sp_m1524 NA
## 11650 new_sp_m1524 NA
## 11651 new_sp_m1524 NA
## 11652 new_sp_m1524 NA
## 11653 new_sp_m1524 NA
## 11654 new_sp_m1524 NA
## 11655 new_sp_m1524 NA
## 11656 new_sp_m1524 NA
## 11657 new_sp_m1524 NA
## 11658 new_sp_m1524 NA
## 11659 new_sp_m1524 NA
## 11660 new_sp_m1524 NA
## 11661 new_sp_m1524 NA
## 11662 new_sp_m1524 NA
## 11663 new_sp_m1524 0
## 11664 new_sp_m1524 NA
## 11665 new_sp_m1524 NA
## 11666 new_sp_m1524 NA
## 11667 new_sp_m1524 0
## 11668 new_sp_m1524 NA
## 11669 new_sp_m1524 NA
## 11670 new_sp_m1524 1
## 11671 new_sp_m1524 1
## 11672 new_sp_m1524 1
## 11673 new_sp_m1524 0
## 11674 new_sp_m1524 0
## 11675 new_sp_m1524 0
## 11676 new_sp_m1524 NA
## 11677 new_sp_m1524 NA
## 11678 new_sp_m1524 NA
## 11679 new_sp_m1524 NA
## 11680 new_sp_m1524 NA
## 11681 new_sp_m1524 NA
## 11682 new_sp_m1524 NA
## 11683 new_sp_m1524 NA
## 11684 new_sp_m1524 NA
## 11685 new_sp_m1524 NA
## 11686 new_sp_m1524 NA
## 11687 new_sp_m1524 NA
## 11688 new_sp_m1524 NA
## 11689 new_sp_m1524 NA
## 11690 new_sp_m1524 NA
## 11691 new_sp_m1524 NA
## 11692 new_sp_m1524 NA
## 11693 new_sp_m1524 NA
## 11694 new_sp_m1524 1451
## 11695 new_sp_m1524 NA
## 11696 new_sp_m1524 1621
## 11697 new_sp_m1524 1872
## 11698 new_sp_m1524 1904
## 11699 new_sp_m1524 1957
## 11700 new_sp_m1524 1980
## 11701 new_sp_m1524 2039
## 11702 new_sp_m1524 1991
## 11703 new_sp_m1524 1946
## 11704 new_sp_m1524 1914
## 11705 new_sp_m1524 2025
## 11706 new_sp_m1524 150
## 11707 new_sp_m1524 1991
## 11708 new_sp_m1524 2110
## 11709 new_sp_m1524 1914
## 11710 new_sp_m1524 1906
## 11711 new_sp_m1524 NA
## 11712 new_sp_m1524 NA
## 11713 new_sp_m1524 NA
## 11714 new_sp_m1524 NA
## 11715 new_sp_m1524 NA
## 11716 new_sp_m1524 NA
## 11717 new_sp_m1524 NA
## 11718 new_sp_m1524 NA
## 11719 new_sp_m1524 NA
## 11720 new_sp_m1524 NA
## 11721 new_sp_m1524 NA
## 11722 new_sp_m1524 NA
## 11723 new_sp_m1524 NA
## 11724 new_sp_m1524 NA
## 11725 new_sp_m1524 NA
## 11726 new_sp_m1524 NA
## 11727 new_sp_m1524 79
## 11728 new_sp_m1524 48
## 11729 new_sp_m1524 33
## 11730 new_sp_m1524 31
## 11731 new_sp_m1524 44
## 11732 new_sp_m1524 34
## 11733 new_sp_m1524 51
## 11734 new_sp_m1524 40
## 11735 new_sp_m1524 35
## 11736 new_sp_m1524 36
## 11737 new_sp_m1524 23
## 11738 new_sp_m1524 25
## 11739 new_sp_m1524 10
## 11740 new_sp_m1524 16
## 11741 new_sp_m1524 28
## 11742 new_sp_m1524 23
## 11743 new_sp_m1524 22
## 11744 new_sp_m1524 15
## 11745 new_sp_m1524 NA
## 11746 new_sp_m1524 NA
## 11747 new_sp_m1524 NA
## 11748 new_sp_m1524 NA
## 11749 new_sp_m1524 NA
## 11750 new_sp_m1524 NA
## 11751 new_sp_m1524 NA
## 11752 new_sp_m1524 NA
## 11753 new_sp_m1524 NA
## 11754 new_sp_m1524 NA
## 11755 new_sp_m1524 NA
## 11756 new_sp_m1524 NA
## 11757 new_sp_m1524 NA
## 11758 new_sp_m1524 NA
## 11759 new_sp_m1524 NA
## 11760 new_sp_m1524 NA
## 11761 new_sp_m1524 NA
## 11762 new_sp_m1524 0
## 11763 new_sp_m1524 0
## 11764 new_sp_m1524 0
## 11765 new_sp_m1524 0
## 11766 new_sp_m1524 0
## 11767 new_sp_m1524 0
## 11768 new_sp_m1524 1
## 11769 new_sp_m1524 0
## 11770 new_sp_m1524 1
## 11771 new_sp_m1524 NA
## 11772 new_sp_m1524 0
## 11773 new_sp_m1524 NA
## 11774 new_sp_m1524 NA
## 11775 new_sp_m1524 NA
## 11776 new_sp_m1524 NA
## 11777 new_sp_m1524 NA
## 11778 new_sp_m1524 NA
## 11779 new_sp_m1524 NA
## 11780 new_sp_m1524 NA
## 11781 new_sp_m1524 NA
## 11782 new_sp_m1524 NA
## 11783 new_sp_m1524 NA
## 11784 new_sp_m1524 NA
## 11785 new_sp_m1524 NA
## 11786 new_sp_m1524 NA
## 11787 new_sp_m1524 NA
## 11788 new_sp_m1524 NA
## 11789 new_sp_m1524 NA
## 11790 new_sp_m1524 NA
## 11791 new_sp_m1524 2
## 11792 new_sp_m1524 3
## 11793 new_sp_m1524 NA
## 11794 new_sp_m1524 NA
## 11795 new_sp_m1524 0
## 11796 new_sp_m1524 1
## 11797 new_sp_m1524 1
## 11798 new_sp_m1524 2
## 11799 new_sp_m1524 1
## 11800 new_sp_m1524 2
## 11801 new_sp_m1524 2
## 11802 new_sp_m1524 0
## 11803 new_sp_m1524 1
## 11804 new_sp_m1524 1
## 11805 new_sp_m1524 0
## 11806 new_sp_m1524 1
## 11807 new_sp_m1524 0
## 11808 new_sp_m1524 NA
## 11809 new_sp_m1524 NA
## 11810 new_sp_m1524 NA
## 11811 new_sp_m1524 NA
## 11812 new_sp_m1524 NA
## 11813 new_sp_m1524 NA
## 11814 new_sp_m1524 NA
## 11815 new_sp_m1524 NA
## 11816 new_sp_m1524 NA
## 11817 new_sp_m1524 NA
## 11818 new_sp_m1524 NA
## 11819 new_sp_m1524 NA
## 11820 new_sp_m1524 NA
## 11821 new_sp_m1524 NA
## 11822 new_sp_m1524 NA
## 11823 new_sp_m1524 NA
## 11824 new_sp_m1524 NA
## 11825 new_sp_m1524 4
## 11826 new_sp_m1524 4
## 11827 new_sp_m1524 3
## 11828 new_sp_m1524 8
## 11829 new_sp_m1524 10
## 11830 new_sp_m1524 6
## 11831 new_sp_m1524 7
## 11832 new_sp_m1524 10
## 11833 new_sp_m1524 9
## 11834 new_sp_m1524 10
## 11835 new_sp_m1524 6
## 11836 new_sp_m1524 14
## 11837 new_sp_m1524 11
## 11838 new_sp_m1524 9
## 11839 new_sp_m1524 8
## 11840 new_sp_m1524 6
## 11841 new_sp_m1524 12
## 11842 new_sp_m1524 7
## 11843 new_sp_m1524 NA
## 11844 new_sp_m1524 NA
## 11845 new_sp_m1524 NA
## 11846 new_sp_m1524 NA
## 11847 new_sp_m1524 NA
## 11848 new_sp_m1524 NA
## 11849 new_sp_m1524 NA
## 11850 new_sp_m1524 NA
## 11851 new_sp_m1524 NA
## 11852 new_sp_m1524 NA
## 11853 new_sp_m1524 NA
## 11854 new_sp_m1524 NA
## 11855 new_sp_m1524 NA
## 11856 new_sp_m1524 NA
## 11857 new_sp_m1524 NA
## 11858 new_sp_m1524 NA
## 11859 new_sp_m1524 178
## 11860 new_sp_m1524 231
## 11861 new_sp_m1524 211
## 11862 new_sp_m1524 221
## 11863 new_sp_m1524 217
## 11864 new_sp_m1524 194
## 11865 new_sp_m1524 213
## 11866 new_sp_m1524 168
## 11867 new_sp_m1524 179
## 11868 new_sp_m1524 161
## 11869 new_sp_m1524 163
## 11870 new_sp_m1524 162
## 11871 new_sp_m1524 172
## 11872 new_sp_m1524 174
## 11873 new_sp_m1524 NA
## 11874 new_sp_m1524 157
## 11875 new_sp_m1524 273
## 11876 new_sp_m1524 0
## 11877 new_sp_m1524 NA
## 11878 new_sp_m1524 NA
## 11879 new_sp_m1524 NA
## 11880 new_sp_m1524 NA
## 11881 new_sp_m1524 NA
## 11882 new_sp_m1524 NA
## 11883 new_sp_m1524 NA
## 11884 new_sp_m1524 NA
## 11885 new_sp_m1524 NA
## 11886 new_sp_m1524 NA
## 11887 new_sp_m1524 NA
## 11888 new_sp_m1524 NA
## 11889 new_sp_m1524 NA
## 11890 new_sp_m1524 NA
## 11891 new_sp_m1524 NA
## 11892 new_sp_m1524 NA
## 11893 new_sp_m1524 NA
## 11894 new_sp_m1524 NA
## 11895 new_sp_m1524 148
## 11896 new_sp_m1524 218
## 11897 new_sp_m1524 NA
## 11898 new_sp_m1524 270
## 11899 new_sp_m1524 NA
## 11900 new_sp_m1524 NA
## 11901 new_sp_m1524 485
## 11902 new_sp_m1524 NA
## 11903 new_sp_m1524 557
## 11904 new_sp_m1524 537
## 11905 new_sp_m1524 571
## 11906 new_sp_m1524 659
## 11907 new_sp_m1524 602
## 11908 new_sp_m1524 669
## 11909 new_sp_m1524 709
## 11910 new_sp_m1524 702
## 11911 new_sp_m1524 NA
## 11912 new_sp_m1524 NA
## 11913 new_sp_m1524 NA
## 11914 new_sp_m1524 NA
## 11915 new_sp_m1524 NA
## 11916 new_sp_m1524 NA
## 11917 new_sp_m1524 NA
## 11918 new_sp_m1524 NA
## 11919 new_sp_m1524 NA
## 11920 new_sp_m1524 NA
## 11921 new_sp_m1524 NA
## 11922 new_sp_m1524 NA
## 11923 new_sp_m1524 NA
## 11924 new_sp_m1524 NA
## 11925 new_sp_m1524 NA
## 11926 new_sp_m1524 NA
## 11927 new_sp_m1524 845
## 11928 new_sp_m1524 2097
## 11929 new_sp_m1524 1518
## 11930 new_sp_m1524 1798
## 11931 new_sp_m1524 NA
## 11932 new_sp_m1524 2173
## 11933 new_sp_m1524 2196
## 11934 new_sp_m1524 2274
## 11935 new_sp_m1524 3263
## 11936 new_sp_m1524 3679
## 11937 new_sp_m1524 3824
## 11938 new_sp_m1524 4488
## 11939 new_sp_m1524 4251
## 11940 new_sp_m1524 4518
## 11941 new_sp_m1524 4342
## 11942 new_sp_m1524 4457
## 11943 new_sp_m1524 4549
## 11944 new_sp_m1524 5026
## 11945 new_sp_m1524 NA
## 11946 new_sp_m1524 NA
## 11947 new_sp_m1524 NA
## 11948 new_sp_m1524 NA
## 11949 new_sp_m1524 NA
## 11950 new_sp_m1524 NA
## 11951 new_sp_m1524 NA
## 11952 new_sp_m1524 NA
## 11953 new_sp_m1524 NA
## 11954 new_sp_m1524 NA
## 11955 new_sp_m1524 NA
## 11956 new_sp_m1524 NA
## 11957 new_sp_m1524 NA
## 11958 new_sp_m1524 NA
## 11959 new_sp_m1524 NA
## 11960 new_sp_m1524 NA
## 11961 new_sp_m1524 NA
## 11962 new_sp_m1524 NA
## 11963 new_sp_m1524 NA
## 11964 new_sp_m1524 NA
## 11965 new_sp_m1524 1
## 11966 new_sp_m1524 NA
## 11967 new_sp_m1524 NA
## 11968 new_sp_m1524 NA
## 11969 new_sp_m1524 NA
## 11970 new_sp_m1524 0
## 11971 new_sp_m1524 0
## 11972 new_sp_m1524 0
## 11973 new_sp_m1524 0
## 11974 new_sp_m1524 0
## 11975 new_sp_m1524 NA
## 11976 new_sp_m1524 NA
## 11977 new_sp_m1524 NA
## 11978 new_sp_m1524 0
## 11979 new_sp_m1524 NA
## 11980 new_sp_m1524 NA
## 11981 new_sp_m1524 NA
## 11982 new_sp_m1524 NA
## 11983 new_sp_m1524 NA
## 11984 new_sp_m1524 NA
## 11985 new_sp_m1524 NA
## 11986 new_sp_m1524 NA
## 11987 new_sp_m1524 NA
## 11988 new_sp_m1524 NA
## 11989 new_sp_m1524 NA
## 11990 new_sp_m1524 NA
## 11991 new_sp_m1524 NA
## 11992 new_sp_m1524 NA
## 11993 new_sp_m1524 NA
## 11994 new_sp_m1524 NA
## 11995 new_sp_m1524 1
## 11996 new_sp_m1524 2
## 11997 new_sp_m1524 NA
## 11998 new_sp_m1524 0
## 11999 new_sp_m1524 NA
## 12000 new_sp_m1524 4
## 12001 new_sp_m1524 1
## 12002 new_sp_m1524 2
## 12003 new_sp_m1524 2
## 12004 new_sp_m1524 0
## 12005 new_sp_m1524 0
## 12006 new_sp_m1524 0
## 12007 new_sp_m1524 0
## 12008 new_sp_m1524 1
## 12009 new_sp_m1524 0
## 12010 new_sp_m1524 2
## 12011 new_sp_m1524 0
## 12012 new_sp_m1524 0
## 12013 new_sp_m1524 NA
## 12014 new_sp_m1524 NA
## 12015 new_sp_m1524 NA
## 12016 new_sp_m1524 NA
## 12017 new_sp_m1524 NA
## 12018 new_sp_m1524 NA
## 12019 new_sp_m1524 NA
## 12020 new_sp_m1524 NA
## 12021 new_sp_m1524 NA
## 12022 new_sp_m1524 NA
## 12023 new_sp_m1524 NA
## 12024 new_sp_m1524 NA
## 12025 new_sp_m1524 NA
## 12026 new_sp_m1524 NA
## 12027 new_sp_m1524 NA
## 12028 new_sp_m1524 NA
## 12029 new_sp_m1524 4
## 12030 new_sp_m1524 8
## 12031 new_sp_m1524 6
## 12032 new_sp_m1524 1
## 12033 new_sp_m1524 2
## 12034 new_sp_m1524 1
## 12035 new_sp_m1524 6
## 12036 new_sp_m1524 4
## 12037 new_sp_m1524 3
## 12038 new_sp_m1524 5
## 12039 new_sp_m1524 9
## 12040 new_sp_m1524 5
## 12041 new_sp_m1524 4
## 12042 new_sp_m1524 10
## 12043 new_sp_m1524 6
## 12044 new_sp_m1524 9
## 12045 new_sp_m1524 3
## 12046 new_sp_m1524 8
## 12047 new_sp_m1524 NA
## 12048 new_sp_m1524 NA
## 12049 new_sp_m1524 NA
## 12050 new_sp_m1524 NA
## 12051 new_sp_m1524 NA
## 12052 new_sp_m1524 NA
## 12053 new_sp_m1524 NA
## 12054 new_sp_m1524 NA
## 12055 new_sp_m1524 NA
## 12056 new_sp_m1524 NA
## 12057 new_sp_m1524 NA
## 12058 new_sp_m1524 NA
## 12059 new_sp_m1524 NA
## 12060 new_sp_m1524 NA
## 12061 new_sp_m1524 NA
## 12062 new_sp_m1524 NA
## 12063 new_sp_m1524 7
## 12064 new_sp_m1524 15
## 12065 new_sp_m1524 18
## 12066 new_sp_m1524 18
## 12067 new_sp_m1524 10
## 12068 new_sp_m1524 8
## 12069 new_sp_m1524 10
## 12070 new_sp_m1524 22
## 12071 new_sp_m1524 28
## 12072 new_sp_m1524 15
## 12073 new_sp_m1524 21
## 12074 new_sp_m1524 18
## 12075 new_sp_m1524 16
## 12076 new_sp_m1524 18
## 12077 new_sp_m1524 28
## 12078 new_sp_m1524 12
## 12079 new_sp_m1524 17
## 12080 new_sp_m1524 18
## 12081 new_sp_m1524 NA
## 12082 new_sp_m1524 NA
## 12083 new_sp_m1524 NA
## 12084 new_sp_m1524 NA
## 12085 new_sp_m1524 NA
## 12086 new_sp_m1524 NA
## 12087 new_sp_m1524 NA
## 12088 new_sp_m1524 NA
## 12089 new_sp_m1524 NA
## 12090 new_sp_m1524 NA
## 12091 new_sp_m1524 NA
## 12092 new_sp_m1524 NA
## 12093 new_sp_m1524 NA
## 12094 new_sp_m1524 NA
## 12095 new_sp_m1524 NA
## 12096 new_sp_m1524 NA
## 12097 new_sp_m1524 274
## 12098 new_sp_m1524 NA
## 12099 new_sp_m1524 NA
## 12100 new_sp_m1524 633
## 12101 new_sp_m1524 229
## 12102 new_sp_m1524 498
## 12103 new_sp_m1524 1191
## 12104 new_sp_m1524 1964
## 12105 new_sp_m1524 2605
## 12106 new_sp_m1524 3812
## 12107 new_sp_m1524 5278
## 12108 new_sp_m1524 7290
## 12109 new_sp_m1524 9598
## 12110 new_sp_m1524 10521
## 12111 new_sp_m1524 11090
## 12112 new_sp_m1524 11860
## 12113 new_sp_m1524 12143
## 12114 new_sp_m1524 12605
## 12115 new_sp_m1524 NA
## 12116 new_sp_m1524 NA
## 12117 new_sp_m1524 NA
## 12118 new_sp_m1524 NA
## 12119 new_sp_m1524 NA
## 12120 new_sp_m1524 NA
## 12121 new_sp_m1524 NA
## 12122 new_sp_m1524 NA
## 12123 new_sp_m1524 NA
## 12124 new_sp_m1524 NA
## 12125 new_sp_m1524 NA
## 12126 new_sp_m1524 NA
## 12127 new_sp_m1524 NA
## 12128 new_sp_m1524 NA
## 12129 new_sp_m1524 NA
## 12130 new_sp_m1524 NA
## 12131 new_sp_m1524 2
## 12132 new_sp_m1524 1
## 12133 new_sp_m1524 0
## 12134 new_sp_m1524 NA
## 12135 new_sp_m1524 2
## 12136 new_sp_m1524 NA
## 12137 new_sp_m1524 NA
## 12138 new_sp_m1524 0
## 12139 new_sp_m1524 0
## 12140 new_sp_m1524 NA
## 12141 new_sp_m1524 NA
## 12142 new_sp_m1524 0
## 12143 new_sp_m1524 0
## 12144 new_sp_m1524 NA
## 12145 new_sp_m1524 0
## 12146 new_sp_m1524 1
## 12147 new_sp_m1524 0
## 12148 new_sp_m1524 0
## 12149 new_sp_m1524 NA
## 12150 new_sp_m1524 NA
## 12151 new_sp_m1524 NA
## 12152 new_sp_m1524 NA
## 12153 new_sp_m1524 NA
## 12154 new_sp_m1524 NA
## 12155 new_sp_m1524 NA
## 12156 new_sp_m1524 NA
## 12157 new_sp_m1524 NA
## 12158 new_sp_m1524 NA
## 12159 new_sp_m1524 NA
## 12160 new_sp_m1524 NA
## 12161 new_sp_m1524 NA
## 12162 new_sp_m1524 NA
## 12163 new_sp_m1524 NA
## 12164 new_sp_m1524 NA
## 12165 new_sp_m1524 155
## 12166 new_sp_m1524 68
## 12167 new_sp_m1524 79
## 12168 new_sp_m1524 14
## 12169 new_sp_m1524 107
## 12170 new_sp_m1524 44
## 12171 new_sp_m1524 58
## 12172 new_sp_m1524 89
## 12173 new_sp_m1524 91
## 12174 new_sp_m1524 89
## 12175 new_sp_m1524 76
## 12176 new_sp_m1524 100
## 12177 new_sp_m1524 106
## 12178 new_sp_m1524 102
## 12179 new_sp_m1524 58
## 12180 new_sp_m1524 70
## 12181 new_sp_m1524 100
## 12182 new_sp_m1524 88
## 12183 new_sp_m1524 NA
## 12184 new_sp_m1524 NA
## 12185 new_sp_m1524 NA
## 12186 new_sp_m1524 NA
## 12187 new_sp_m1524 NA
## 12188 new_sp_m1524 NA
## 12189 new_sp_m1524 NA
## 12190 new_sp_m1524 NA
## 12191 new_sp_m1524 NA
## 12192 new_sp_m1524 NA
## 12193 new_sp_m1524 NA
## 12194 new_sp_m1524 NA
## 12195 new_sp_m1524 NA
## 12196 new_sp_m1524 NA
## 12197 new_sp_m1524 NA
## 12198 new_sp_m1524 NA
## 12199 new_sp_m1524 NA
## 12200 new_sp_m1524 31
## 12201 new_sp_m1524 9
## 12202 new_sp_m1524 69
## 12203 new_sp_m1524 33
## 12204 new_sp_m1524 87
## 12205 new_sp_m1524 101
## 12206 new_sp_m1524 139
## 12207 new_sp_m1524 190
## 12208 new_sp_m1524 153
## 12209 new_sp_m1524 183
## 12210 new_sp_m1524 221
## 12211 new_sp_m1524 178
## 12212 new_sp_m1524 250
## 12213 new_sp_m1524 NA
## 12214 new_sp_m1524 279
## 12215 new_sp_m1524 278
## 12216 new_sp_m1524 415
## 12217 new_sp_m1524 NA
## 12218 new_sp_m1524 NA
## 12219 new_sp_m1524 NA
## 12220 new_sp_m1524 NA
## 12221 new_sp_m1524 NA
## 12222 new_sp_m1524 NA
## 12223 new_sp_m1524 NA
## 12224 new_sp_m1524 NA
## 12225 new_sp_m1524 NA
## 12226 new_sp_m1524 NA
## 12227 new_sp_m1524 NA
## 12228 new_sp_m1524 NA
## 12229 new_sp_m1524 NA
## 12230 new_sp_m1524 NA
## 12231 new_sp_m1524 NA
## 12232 new_sp_m1524 NA
## 12233 new_sp_m1524 64
## 12234 new_sp_m1524 84
## 12235 new_sp_m1524 100
## 12236 new_sp_m1524 100
## 12237 new_sp_m1524 113
## 12238 new_sp_m1524 112
## 12239 new_sp_m1524 114
## 12240 new_sp_m1524 119
## 12241 new_sp_m1524 163
## 12242 new_sp_m1524 160
## 12243 new_sp_m1524 168
## 12244 new_sp_m1524 188
## 12245 new_sp_m1524 171
## 12246 new_sp_m1524 238
## 12247 new_sp_m1524 203
## 12248 new_sp_m1524 163
## 12249 new_sp_m1524 182
## 12250 new_sp_m1524 180
## 12251 new_sp_m1524 NA
## 12252 new_sp_m1524 NA
## 12253 new_sp_m1524 NA
## 12254 new_sp_m1524 NA
## 12255 new_sp_m1524 NA
## 12256 new_sp_m1524 NA
## 12257 new_sp_m1524 NA
## 12258 new_sp_m1524 NA
## 12259 new_sp_m1524 NA
## 12260 new_sp_m1524 NA
## 12261 new_sp_m1524 NA
## 12262 new_sp_m1524 NA
## 12263 new_sp_m1524 NA
## 12264 new_sp_m1524 NA
## 12265 new_sp_m1524 NA
## 12266 new_sp_m1524 NA
## 12267 new_sp_m1524 1311
## 12268 new_sp_m1524 1351
## 12269 new_sp_m1524 6913
## 12270 new_sp_m1524 6271
## 12271 new_sp_m1524 4861
## 12272 new_sp_m1524 5290
## 12273 new_sp_m1524 5591
## 12274 new_sp_m1524 983
## 12275 new_sp_m1524 758
## 12276 new_sp_m1524 3860
## 12277 new_sp_m1524 3802
## 12278 new_sp_m1524 4071
## 12279 new_sp_m1524 3436
## 12280 new_sp_m1524 3406
## 12281 new_sp_m1524 NA
## 12282 new_sp_m1524 NA
## 12283 new_sp_m1524 NA
## 12284 new_sp_m1524 NA
## 12285 new_sp_m1524 NA
## 12286 new_sp_m1524 NA
## 12287 new_sp_m1524 NA
## 12288 new_sp_m1524 NA
## 12289 new_sp_m1524 NA
## 12290 new_sp_m1524 NA
## 12291 new_sp_m1524 NA
## 12292 new_sp_m1524 NA
## 12293 new_sp_m1524 NA
## 12294 new_sp_m1524 NA
## 12295 new_sp_m1524 NA
## 12296 new_sp_m1524 NA
## 12297 new_sp_m1524 NA
## 12298 new_sp_m1524 NA
## 12299 new_sp_m1524 NA
## 12300 new_sp_m1524 NA
## 12301 new_sp_m1524 43
## 12302 new_sp_m1524 26
## 12303 new_sp_m1524 136
## 12304 new_sp_m1524 157
## 12305 new_sp_m1524 NA
## 12306 new_sp_m1524 NA
## 12307 new_sp_m1524 NA
## 12308 new_sp_m1524 NA
## 12309 new_sp_m1524 6360
## 12310 new_sp_m1524 6792
## 12311 new_sp_m1524 7358
## 12312 new_sp_m1524 7878
## 12313 new_sp_m1524 8524
## 12314 new_sp_m1524 8735
## 12315 new_sp_m1524 9348
## 12316 new_sp_m1524 9320
## 12317 new_sp_m1524 9725
## 12318 new_sp_m1524 9754
## 12319 new_sp_m1524 NA
## 12320 new_sp_m1524 NA
## 12321 new_sp_m1524 NA
## 12322 new_sp_m1524 NA
## 12323 new_sp_m1524 NA
## 12324 new_sp_m1524 NA
## 12325 new_sp_m1524 NA
## 12326 new_sp_m1524 NA
## 12327 new_sp_m1524 NA
## 12328 new_sp_m1524 NA
## 12329 new_sp_m1524 NA
## 12330 new_sp_m1524 NA
## 12331 new_sp_m1524 NA
## 12332 new_sp_m1524 NA
## 12333 new_sp_m1524 NA
## 12334 new_sp_m1524 NA
## 12335 new_sp_m1524 122
## 12336 new_sp_m1524 248
## 12337 new_sp_m1524 104
## 12338 new_sp_m1524 99
## 12339 new_sp_m1524 84
## 12340 new_sp_m1524 99
## 12341 new_sp_m1524 78
## 12342 new_sp_m1524 100
## 12343 new_sp_m1524 93
## 12344 new_sp_m1524 85
## 12345 new_sp_m1524 109
## 12346 new_sp_m1524 92
## 12347 new_sp_m1524 85
## 12348 new_sp_m1524 66
## 12349 new_sp_m1524 84
## 12350 new_sp_m1524 70
## 12351 new_sp_m1524 69
## 12352 new_sp_m1524 82
## 12353 new_sp_m1524 NA
## 12354 new_sp_m1524 NA
## 12355 new_sp_m1524 NA
## 12356 new_sp_m1524 NA
## 12357 new_sp_m1524 NA
## 12358 new_sp_m1524 NA
## 12359 new_sp_m1524 NA
## 12360 new_sp_m1524 NA
## 12361 new_sp_m1524 NA
## 12362 new_sp_m1524 NA
## 12363 new_sp_m1524 NA
## 12364 new_sp_m1524 NA
## 12365 new_sp_m1524 NA
## 12366 new_sp_m1524 NA
## 12367 new_sp_m1524 NA
## 12368 new_sp_m1524 NA
## 12369 new_sp_m1524 215
## 12370 new_sp_m1524 176
## 12371 new_sp_m1524 135
## 12372 new_sp_m1524 154
## 12373 new_sp_m1524 113
## 12374 new_sp_m1524 147
## 12375 new_sp_m1524 156
## 12376 new_sp_m1524 156
## 12377 new_sp_m1524 134
## 12378 new_sp_m1524 97
## 12379 new_sp_m1524 85
## 12380 new_sp_m1524 80
## 12381 new_sp_m1524 69
## 12382 new_sp_m1524 51
## 12383 new_sp_m1524 74
## 12384 new_sp_m1524 53
## 12385 new_sp_m1524 60
## 12386 new_sp_m1524 56
## 12387 new_sp_m1524 NA
## 12388 new_sp_m1524 NA
## 12389 new_sp_m1524 NA
## 12390 new_sp_m1524 NA
## 12391 new_sp_m1524 NA
## 12392 new_sp_m1524 NA
## 12393 new_sp_m1524 NA
## 12394 new_sp_m1524 NA
## 12395 new_sp_m1524 NA
## 12396 new_sp_m1524 NA
## 12397 new_sp_m1524 NA
## 12398 new_sp_m1524 NA
## 12399 new_sp_m1524 NA
## 12400 new_sp_m1524 NA
## 12401 new_sp_m1524 NA
## 12402 new_sp_m1524 NA
## 12403 new_sp_m1524 3
## 12404 new_sp_m1524 1
## 12405 new_sp_m1524 4
## 12406 new_sp_m1524 9
## 12407 new_sp_m1524 5
## 12408 new_sp_m1524 1
## 12409 new_sp_m1524 5
## 12410 new_sp_m1524 4
## 12411 new_sp_m1524 3
## 12412 new_sp_m1524 2
## 12413 new_sp_m1524 4
## 12414 new_sp_m1524 4
## 12415 new_sp_m1524 6
## 12416 new_sp_m1524 2
## 12417 new_sp_m1524 0
## 12418 new_sp_m1524 0
## 12419 new_sp_m1524 1
## 12420 new_sp_m1524 1
## 12421 new_sp_m1524 NA
## 12422 new_sp_m1524 NA
## 12423 new_sp_m1524 NA
## 12424 new_sp_m1524 NA
## 12425 new_sp_m1524 NA
## 12426 new_sp_m1524 NA
## 12427 new_sp_m1524 NA
## 12428 new_sp_m1524 NA
## 12429 new_sp_m1524 NA
## 12430 new_sp_m1524 NA
## 12431 new_sp_m1524 NA
## 12432 new_sp_m1524 NA
## 12433 new_sp_m1524 NA
## 12434 new_sp_m1524 NA
## 12435 new_sp_m1524 NA
## 12436 new_sp_m1524 NA
## 12437 new_sp_m1524 8
## 12438 new_sp_m1524 2
## 12439 new_sp_m1524 8
## 12440 new_sp_m1524 10
## 12441 new_sp_m1524 5
## 12442 new_sp_m1524 7
## 12443 new_sp_m1524 2
## 12444 new_sp_m1524 8
## 12445 new_sp_m1524 10
## 12446 new_sp_m1524 9
## 12447 new_sp_m1524 19
## 12448 new_sp_m1524 22
## 12449 new_sp_m1524 26
## 12450 new_sp_m1524 47
## 12451 new_sp_m1524 41
## 12452 new_sp_m1524 59
## 12453 new_sp_m1524 36
## 12454 new_sp_m1524 34
## 12455 new_sp_m1524 NA
## 12456 new_sp_m1524 NA
## 12457 new_sp_m1524 NA
## 12458 new_sp_m1524 NA
## 12459 new_sp_m1524 NA
## 12460 new_sp_m1524 NA
## 12461 new_sp_m1524 NA
## 12462 new_sp_m1524 NA
## 12463 new_sp_m1524 NA
## 12464 new_sp_m1524 NA
## 12465 new_sp_m1524 NA
## 12466 new_sp_m1524 NA
## 12467 new_sp_m1524 NA
## 12468 new_sp_m1524 NA
## 12469 new_sp_m1524 NA
## 12470 new_sp_m1524 NA
## 12471 new_sp_m1524 1131
## 12472 new_sp_m1524 1150
## 12473 new_sp_m1524 935
## 12474 new_sp_m1524 977
## 12475 new_sp_m1524 884
## 12476 new_sp_m1524 821
## 12477 new_sp_m1524 942
## 12478 new_sp_m1524 806
## 12479 new_sp_m1524 732
## 12480 new_sp_m1524 709
## 12481 new_sp_m1524 687
## 12482 new_sp_m1524 652
## 12483 new_sp_m1524 589
## 12484 new_sp_m1524 492
## 12485 new_sp_m1524 567
## 12486 new_sp_m1524 537
## 12487 new_sp_m1524 491
## 12488 new_sp_m1524 500
## 12489 new_sp_m1524 NA
## 12490 new_sp_m1524 NA
## 12491 new_sp_m1524 NA
## 12492 new_sp_m1524 NA
## 12493 new_sp_m1524 NA
## 12494 new_sp_m1524 NA
## 12495 new_sp_m1524 NA
## 12496 new_sp_m1524 NA
## 12497 new_sp_m1524 NA
## 12498 new_sp_m1524 NA
## 12499 new_sp_m1524 NA
## 12500 new_sp_m1524 NA
## 12501 new_sp_m1524 NA
## 12502 new_sp_m1524 NA
## 12503 new_sp_m1524 NA
## 12504 new_sp_m1524 NA
## 12505 new_sp_m1524 55
## 12506 new_sp_m1524 26
## 12507 new_sp_m1524 51
## 12508 new_sp_m1524 72
## 12509 new_sp_m1524 89
## 12510 new_sp_m1524 52
## 12511 new_sp_m1524 152
## 12512 new_sp_m1524 159
## 12513 new_sp_m1524 152
## 12514 new_sp_m1524 210
## 12515 new_sp_m1524 211
## 12516 new_sp_m1524 175
## 12517 new_sp_m1524 181
## 12518 new_sp_m1524 167
## 12519 new_sp_m1524 155
## 12520 new_sp_m1524 119
## 12521 new_sp_m1524 94
## 12522 new_sp_m1524 99
## 12523 new_sp_m1524 NA
## 12524 new_sp_m1524 NA
## 12525 new_sp_m1524 NA
## 12526 new_sp_m1524 NA
## 12527 new_sp_m1524 NA
## 12528 new_sp_m1524 NA
## 12529 new_sp_m1524 NA
## 12530 new_sp_m1524 NA
## 12531 new_sp_m1524 NA
## 12532 new_sp_m1524 NA
## 12533 new_sp_m1524 NA
## 12534 new_sp_m1524 NA
## 12535 new_sp_m1524 NA
## 12536 new_sp_m1524 NA
## 12537 new_sp_m1524 NA
## 12538 new_sp_m1524 NA
## 12539 new_sp_m1524 1662
## 12540 new_sp_m1524 851
## 12541 new_sp_m1524 1073
## 12542 new_sp_m1524 895
## 12543 new_sp_m1524 842
## 12544 new_sp_m1524 832
## 12545 new_sp_m1524 790
## 12546 new_sp_m1524 742
## 12547 new_sp_m1524 750
## 12548 new_sp_m1524 718
## 12549 new_sp_m1524 752
## 12550 new_sp_m1524 748
## 12551 new_sp_m1524 706
## 12552 new_sp_m1524 671
## 12553 new_sp_m1524 726
## 12554 new_sp_m1524 673
## 12555 new_sp_m1524 624
## 12556 new_sp_m1524 545
## 12557 new_sp_m1524 NA
## 12558 new_sp_m1524 NA
## 12559 new_sp_m1524 NA
## 12560 new_sp_m1524 NA
## 12561 new_sp_m1524 NA
## 12562 new_sp_m1524 NA
## 12563 new_sp_m1524 NA
## 12564 new_sp_m1524 NA
## 12565 new_sp_m1524 NA
## 12566 new_sp_m1524 NA
## 12567 new_sp_m1524 NA
## 12568 new_sp_m1524 NA
## 12569 new_sp_m1524 NA
## 12570 new_sp_m1524 NA
## 12571 new_sp_m1524 NA
## 12572 new_sp_m1524 NA
## 12573 new_sp_m1524 NA
## 12574 new_sp_m1524 12
## 12575 new_sp_m1524 38
## 12576 new_sp_m1524 45
## 12577 new_sp_m1524 1858
## 12578 new_sp_m1524 295
## 12579 new_sp_m1524 2124
## 12580 new_sp_m1524 2081
## 12581 new_sp_m1524 2128
## 12582 new_sp_m1524 2355
## 12583 new_sp_m1524 NA
## 12584 new_sp_m1524 2445
## 12585 new_sp_m1524 2492
## 12586 new_sp_m1524 2495
## 12587 new_sp_m1524 2510
## 12588 new_sp_m1524 2228
## 12589 new_sp_m1524 1826
## 12590 new_sp_m1524 1568
## 12591 new_sp_m1524 NA
## 12592 new_sp_m1524 NA
## 12593 new_sp_m1524 NA
## 12594 new_sp_m1524 NA
## 12595 new_sp_m1524 NA
## 12596 new_sp_m1524 NA
## 12597 new_sp_m1524 NA
## 12598 new_sp_m1524 NA
## 12599 new_sp_m1524 NA
## 12600 new_sp_m1524 NA
## 12601 new_sp_m1524 NA
## 12602 new_sp_m1524 NA
## 12603 new_sp_m1524 NA
## 12604 new_sp_m1524 NA
## 12605 new_sp_m1524 NA
## 12606 new_sp_m1524 NA
## 12607 new_sp_m1524 NA
## 12608 new_sp_m1524 222
## 12609 new_sp_m1524 284
## 12610 new_sp_m1524 NA
## 12611 new_sp_m1524 245
## 12612 new_sp_m1524 466
## 12613 new_sp_m1524 NA
## 12614 new_sp_m1524 96
## 12615 new_sp_m1524 364
## 12616 new_sp_m1524 561
## 12617 new_sp_m1524 494
## 12618 new_sp_m1524 598
## 12619 new_sp_m1524 523
## 12620 new_sp_m1524 528
## 12621 new_sp_m1524 519
## 12622 new_sp_m1524 430
## 12623 new_sp_m1524 423
## 12624 new_sp_m1524 375
## 12625 new_sp_m1524 NA
## 12626 new_sp_m1524 NA
## 12627 new_sp_m1524 NA
## 12628 new_sp_m1524 NA
## 12629 new_sp_m1524 NA
## 12630 new_sp_m1524 NA
## 12631 new_sp_m1524 NA
## 12632 new_sp_m1524 NA
## 12633 new_sp_m1524 NA
## 12634 new_sp_m1524 NA
## 12635 new_sp_m1524 NA
## 12636 new_sp_m1524 NA
## 12637 new_sp_m1524 NA
## 12638 new_sp_m1524 NA
## 12639 new_sp_m1524 NA
## 12640 new_sp_m1524 NA
## 12641 new_sp_m1524 NA
## 12642 new_sp_m1524 0
## 12643 new_sp_m1524 NA
## 12644 new_sp_m1524 0
## 12645 new_sp_m1524 NA
## 12646 new_sp_m1524 NA
## 12647 new_sp_m1524 NA
## 12648 new_sp_m1524 NA
## 12649 new_sp_m1524 NA
## 12650 new_sp_m1524 NA
## 12651 new_sp_m1524 NA
## 12652 new_sp_m1524 NA
## 12653 new_sp_m1524 1
## 12654 new_sp_m1524 0
## 12655 new_sp_m1524 0
## 12656 new_sp_m1524 0
## 12657 new_sp_m1524 0
## 12658 new_sp_m1524 0
## 12659 new_sp_m1524 NA
## 12660 new_sp_m1524 NA
## 12661 new_sp_m1524 NA
## 12662 new_sp_m1524 NA
## 12663 new_sp_m1524 NA
## 12664 new_sp_m1524 NA
## 12665 new_sp_m1524 NA
## 12666 new_sp_m1524 NA
## 12667 new_sp_m1524 NA
## 12668 new_sp_m1524 NA
## 12669 new_sp_m1524 NA
## 12670 new_sp_m1524 NA
## 12671 new_sp_m1524 NA
## 12672 new_sp_m1524 NA
## 12673 new_sp_m1524 NA
## 12674 new_sp_m1524 NA
## 12675 new_sp_m1524 NA
## 12676 new_sp_m1524 NA
## 12677 new_sp_m1524 0
## 12678 new_sp_m1524 2
## 12679 new_sp_m1524 1
## 12680 new_sp_m1524 0
## 12681 new_sp_m1524 1
## 12682 new_sp_m1524 NA
## 12683 new_sp_m1524 0
## 12684 new_sp_m1524 0
## 12685 new_sp_m1524 0
## 12686 new_sp_m1524 NA
## 12687 new_sp_m1524 NA
## 12688 new_sp_m1524 2
## 12689 new_sp_m1524 1
## 12690 new_sp_m1524 0
## 12691 new_sp_m1524 0
## 12692 new_sp_m1524 2
## 12693 new_sp_m1524 NA
## 12694 new_sp_m1524 NA
## 12695 new_sp_m1524 NA
## 12696 new_sp_m1524 NA
## 12697 new_sp_m1524 NA
## 12698 new_sp_m1524 NA
## 12699 new_sp_m1524 NA
## 12700 new_sp_m1524 NA
## 12701 new_sp_m1524 NA
## 12702 new_sp_m1524 NA
## 12703 new_sp_m1524 NA
## 12704 new_sp_m1524 NA
## 12705 new_sp_m1524 NA
## 12706 new_sp_m1524 NA
## 12707 new_sp_m1524 NA
## 12708 new_sp_m1524 NA
## 12709 new_sp_m1524 NA
## 12710 new_sp_m1524 NA
## 12711 new_sp_m1524 NA
## 12712 new_sp_m1524 0
## 12713 new_sp_m1524 NA
## 12714 new_sp_m1524 1
## 12715 new_sp_m1524 NA
## 12716 new_sp_m1524 NA
## 12717 new_sp_m1524 NA
## 12718 new_sp_m1524 NA
## 12719 new_sp_m1524 0
## 12720 new_sp_m1524 NA
## 12721 new_sp_m1524 0
## 12722 new_sp_m1524 NA
## 12723 new_sp_m1524 NA
## 12724 new_sp_m1524 0
## 12725 new_sp_m1524 0
## 12726 new_sp_m1524 1
## 12727 new_sp_m1524 NA
## 12728 new_sp_m1524 NA
## 12729 new_sp_m1524 NA
## 12730 new_sp_m1524 NA
## 12731 new_sp_m1524 NA
## 12732 new_sp_m1524 NA
## 12733 new_sp_m1524 NA
## 12734 new_sp_m1524 NA
## 12735 new_sp_m1524 NA
## 12736 new_sp_m1524 NA
## 12737 new_sp_m1524 NA
## 12738 new_sp_m1524 NA
## 12739 new_sp_m1524 NA
## 12740 new_sp_m1524 NA
## 12741 new_sp_m1524 NA
## 12742 new_sp_m1524 NA
## 12743 new_sp_m1524 1
## 12744 new_sp_m1524 0
## 12745 new_sp_m1524 1
## 12746 new_sp_m1524 1
## 12747 new_sp_m1524 1
## 12748 new_sp_m1524 3
## 12749 new_sp_m1524 3
## 12750 new_sp_m1524 1
## 12751 new_sp_m1524 2
## 12752 new_sp_m1524 NA
## 12753 new_sp_m1524 4
## 12754 new_sp_m1524 3
## 12755 new_sp_m1524 NA
## 12756 new_sp_m1524 1
## 12757 new_sp_m1524 NA
## 12758 new_sp_m1524 1
## 12759 new_sp_m1524 1
## 12760 new_sp_m1524 4
## 12761 new_sp_m1524 NA
## 12762 new_sp_m1524 NA
## 12763 new_sp_m1524 NA
## 12764 new_sp_m1524 NA
## 12765 new_sp_m1524 NA
## 12766 new_sp_m1524 NA
## 12767 new_sp_m1524 NA
## 12768 new_sp_m1524 NA
## 12769 new_sp_m1524 NA
## 12770 new_sp_m1524 NA
## 12771 new_sp_m1524 NA
## 12772 new_sp_m1524 NA
## 12773 new_sp_m1524 NA
## 12774 new_sp_m1524 NA
## 12775 new_sp_m1524 NA
## 12776 new_sp_m1524 NA
## 12777 new_sp_m1524 NA
## 12778 new_sp_m1524 NA
## 12779 new_sp_m1524 NA
## 12780 new_sp_m1524 NA
## 12781 new_sp_m1524 NA
## 12782 new_sp_m1524 NA
## 12783 new_sp_m1524 NA
## 12784 new_sp_m1524 NA
## 12785 new_sp_m1524 0
## 12786 new_sp_m1524 0
## 12787 new_sp_m1524 NA
## 12788 new_sp_m1524 NA
## 12789 new_sp_m1524 NA
## 12790 new_sp_m1524 NA
## 12791 new_sp_m1524 NA
## 12792 new_sp_m1524 NA
## 12793 new_sp_m1524 NA
## 12794 new_sp_m1524 NA
## 12795 new_sp_m1524 NA
## 12796 new_sp_m1524 NA
## 12797 new_sp_m1524 NA
## 12798 new_sp_m1524 NA
## 12799 new_sp_m1524 NA
## 12800 new_sp_m1524 NA
## 12801 new_sp_m1524 NA
## 12802 new_sp_m1524 NA
## 12803 new_sp_m1524 NA
## 12804 new_sp_m1524 NA
## 12805 new_sp_m1524 NA
## 12806 new_sp_m1524 NA
## 12807 new_sp_m1524 NA
## 12808 new_sp_m1524 NA
## 12809 new_sp_m1524 NA
## 12810 new_sp_m1524 NA
## 12811 new_sp_m1524 NA
## 12812 new_sp_m1524 NA
## 12813 new_sp_m1524 NA
## 12814 new_sp_m1524 NA
## 12815 new_sp_m1524 NA
## 12816 new_sp_m1524 5
## 12817 new_sp_m1524 7
## 12818 new_sp_m1524 7
## 12819 new_sp_m1524 2
## 12820 new_sp_m1524 5
## 12821 new_sp_m1524 5
## 12822 new_sp_m1524 5
## 12823 new_sp_m1524 4
## 12824 new_sp_m1524 5
## 12825 new_sp_m1524 2
## 12826 new_sp_m1524 10
## 12827 new_sp_m1524 5
## 12828 new_sp_m1524 6
## 12829 new_sp_m1524 NA
## 12830 new_sp_m1524 NA
## 12831 new_sp_m1524 NA
## 12832 new_sp_m1524 NA
## 12833 new_sp_m1524 NA
## 12834 new_sp_m1524 NA
## 12835 new_sp_m1524 NA
## 12836 new_sp_m1524 NA
## 12837 new_sp_m1524 NA
## 12838 new_sp_m1524 NA
## 12839 new_sp_m1524 NA
## 12840 new_sp_m1524 NA
## 12841 new_sp_m1524 NA
## 12842 new_sp_m1524 NA
## 12843 new_sp_m1524 NA
## 12844 new_sp_m1524 NA
## 12845 new_sp_m1524 NA
## 12846 new_sp_m1524 NA
## 12847 new_sp_m1524 NA
## 12848 new_sp_m1524 76
## 12849 new_sp_m1524 155
## 12850 new_sp_m1524 131
## 12851 new_sp_m1524 141
## 12852 new_sp_m1524 148
## 12853 new_sp_m1524 150
## 12854 new_sp_m1524 202
## 12855 new_sp_m1524 182
## 12856 new_sp_m1524 256
## 12857 new_sp_m1524 246
## 12858 new_sp_m1524 295
## 12859 new_sp_m1524 280
## 12860 new_sp_m1524 335
## 12861 new_sp_m1524 227
## 12862 new_sp_m1524 228
## 12863 new_sp_m1524 NA
## 12864 new_sp_m1524 NA
## 12865 new_sp_m1524 NA
## 12866 new_sp_m1524 NA
## 12867 new_sp_m1524 NA
## 12868 new_sp_m1524 NA
## 12869 new_sp_m1524 NA
## 12870 new_sp_m1524 NA
## 12871 new_sp_m1524 NA
## 12872 new_sp_m1524 NA
## 12873 new_sp_m1524 NA
## 12874 new_sp_m1524 NA
## 12875 new_sp_m1524 NA
## 12876 new_sp_m1524 NA
## 12877 new_sp_m1524 NA
## 12878 new_sp_m1524 NA
## 12879 new_sp_m1524 717
## 12880 new_sp_m1524 773
## 12881 new_sp_m1524 753
## 12882 new_sp_m1524 781
## 12883 new_sp_m1524 721
## 12884 new_sp_m1524 772
## 12885 new_sp_m1524 908
## 12886 new_sp_m1524 815
## 12887 new_sp_m1524 1005
## 12888 new_sp_m1524 1085
## 12889 new_sp_m1524 1050
## 12890 new_sp_m1524 1124
## 12891 new_sp_m1524 1053
## 12892 new_sp_m1524 1274
## 12893 new_sp_m1524 1362
## 12894 new_sp_m1524 1351
## 12895 new_sp_m1524 1264
## 12896 new_sp_m1524 1454
## 12897 new_sp_m1524 NA
## 12898 new_sp_m1524 62
## 12899 new_sp_m1524 87
## 12900 new_sp_m1524 42
## 12901 new_sp_m1524 66
## 12902 new_sp_m1524 76
## 12903 new_sp_m1524 76
## 12904 new_sp_m1524 60
## 12905 new_sp_m1524 70
## 12906 new_sp_m1524 NA
## 12907 new_sp_m1524 NA
## 12908 new_sp_m1524 NA
## 12909 new_sp_m1524 NA
## 12910 new_sp_m1524 NA
## 12911 new_sp_m1524 NA
## 12912 new_sp_m1524 NA
## 12913 new_sp_m1524 NA
## 12914 new_sp_m1524 NA
## 12915 new_sp_m1524 NA
## 12916 new_sp_m1524 NA
## 12917 new_sp_m1524 NA
## 12918 new_sp_m1524 NA
## 12919 new_sp_m1524 NA
## 12920 new_sp_m1524 NA
## 12921 new_sp_m1524 NA
## 12922 new_sp_m1524 108
## 12923 new_sp_m1524 207
## 12924 new_sp_m1524 136
## 12925 new_sp_m1524 NA
## 12926 new_sp_m1524 NA
## 12927 new_sp_m1524 NA
## 12928 new_sp_m1524 52
## 12929 new_sp_m1524 37
## 12930 new_sp_m1524 51
## 12931 new_sp_m1524 61
## 12932 new_sp_m1524 NA
## 12933 new_sp_m1524 NA
## 12934 new_sp_m1524 NA
## 12935 new_sp_m1524 NA
## 12936 new_sp_m1524 NA
## 12937 new_sp_m1524 NA
## 12938 new_sp_m1524 NA
## 12939 new_sp_m1524 NA
## 12940 new_sp_m1524 NA
## 12941 new_sp_m1524 NA
## 12942 new_sp_m1524 NA
## 12943 new_sp_m1524 NA
## 12944 new_sp_m1524 NA
## 12945 new_sp_m1524 NA
## 12946 new_sp_m1524 NA
## 12947 new_sp_m1524 2
## 12948 new_sp_m1524 0
## 12949 new_sp_m1524 1
## 12950 new_sp_m1524 0
## 12951 new_sp_m1524 NA
## 12952 new_sp_m1524 NA
## 12953 new_sp_m1524 0
## 12954 new_sp_m1524 1
## 12955 new_sp_m1524 1
## 12956 new_sp_m1524 0
## 12957 new_sp_m1524 2
## 12958 new_sp_m1524 NA
## 12959 new_sp_m1524 NA
## 12960 new_sp_m1524 0
## 12961 new_sp_m1524 0
## 12962 new_sp_m1524 0
## 12963 new_sp_m1524 0
## 12964 new_sp_m1524 0
## 12965 new_sp_m1524 NA
## 12966 new_sp_m1524 NA
## 12967 new_sp_m1524 NA
## 12968 new_sp_m1524 NA
## 12969 new_sp_m1524 NA
## 12970 new_sp_m1524 NA
## 12971 new_sp_m1524 NA
## 12972 new_sp_m1524 NA
## 12973 new_sp_m1524 NA
## 12974 new_sp_m1524 NA
## 12975 new_sp_m1524 NA
## 12976 new_sp_m1524 NA
## 12977 new_sp_m1524 NA
## 12978 new_sp_m1524 NA
## 12979 new_sp_m1524 NA
## 12980 new_sp_m1524 NA
## 12981 new_sp_m1524 184
## 12982 new_sp_m1524 249
## 12983 new_sp_m1524 230
## 12984 new_sp_m1524 226
## 12985 new_sp_m1524 NA
## 12986 new_sp_m1524 287
## 12987 new_sp_m1524 268
## 12988 new_sp_m1524 317
## 12989 new_sp_m1524 351
## 12990 new_sp_m1524 417
## 12991 new_sp_m1524 490
## 12992 new_sp_m1524 485
## 12993 new_sp_m1524 538
## 12994 new_sp_m1524 625
## 12995 new_sp_m1524 737
## 12996 new_sp_m1524 718
## 12997 new_sp_m1524 825
## 12998 new_sp_m1524 858
## 12999 new_sp_m1524 NA
## 13000 new_sp_m1524 NA
## 13001 new_sp_m1524 NA
## 13002 new_sp_m1524 NA
## 13003 new_sp_m1524 NA
## 13004 new_sp_m1524 NA
## 13005 new_sp_m1524 NA
## 13006 new_sp_m1524 NA
## 13007 new_sp_m1524 NA
## 13008 new_sp_m1524 NA
## 13009 new_sp_m1524 NA
## 13010 new_sp_m1524 NA
## 13011 new_sp_m1524 NA
## 13012 new_sp_m1524 NA
## 13013 new_sp_m1524 NA
## 13014 new_sp_m1524 NA
## 13015 new_sp_m1524 9
## 13016 new_sp_m1524 NA
## 13017 new_sp_m1524 8
## 13018 new_sp_m1524 9
## 13019 new_sp_m1524 18
## 13020 new_sp_m1524 8
## 13021 new_sp_m1524 6
## 13022 new_sp_m1524 14
## 13023 new_sp_m1524 17
## 13024 new_sp_m1524 12
## 13025 new_sp_m1524 8
## 13026 new_sp_m1524 7
## 13027 new_sp_m1524 15
## 13028 new_sp_m1524 10
## 13029 new_sp_m1524 16
## 13030 new_sp_m1524 11
## 13031 new_sp_m1524 21
## 13032 new_sp_m1524 31
## 13033 new_sp_m1524 NA
## 13034 new_sp_m1524 NA
## 13035 new_sp_m1524 1
## 13036 new_sp_m1524 0
## 13037 new_sp_m1524 NA
## 13038 new_sp_m1524 NA
## 13039 new_sp_m1524 NA
## 13040 new_sp_m1524 NA
## 13041 new_sp_m1524 NA
## 13042 new_sp_m1524 NA
## 13043 new_sp_m1524 NA
## 13044 new_sp_m1524 NA
## 13045 new_sp_m1524 NA
## 13046 new_sp_m1524 NA
## 13047 new_sp_m1524 NA
## 13048 new_sp_m1524 NA
## 13049 new_sp_m1524 NA
## 13050 new_sp_m1524 NA
## 13051 new_sp_m1524 NA
## 13052 new_sp_m1524 NA
## 13053 new_sp_m1524 18
## 13054 new_sp_m1524 16
## 13055 new_sp_m1524 2
## 13056 new_sp_m1524 5
## 13057 new_sp_m1524 2
## 13058 new_sp_m1524 6
## 13059 new_sp_m1524 8
## 13060 new_sp_m1524 4
## 13061 new_sp_m1524 6
## 13062 new_sp_m1524 2
## 13063 new_sp_m1524 3
## 13064 new_sp_m1524 8
## 13065 new_sp_m1524 8
## 13066 new_sp_m1524 2
## 13067 new_sp_m1524 3
## 13068 new_sp_m1524 7
## 13069 new_sp_m1524 6
## 13070 new_sp_m1524 2
## 13071 new_sp_m1524 NA
## 13072 new_sp_m1524 NA
## 13073 new_sp_m1524 NA
## 13074 new_sp_m1524 NA
## 13075 new_sp_m1524 NA
## 13076 new_sp_m1524 NA
## 13077 new_sp_m1524 NA
## 13078 new_sp_m1524 NA
## 13079 new_sp_m1524 NA
## 13080 new_sp_m1524 NA
## 13081 new_sp_m1524 NA
## 13082 new_sp_m1524 NA
## 13083 new_sp_m1524 NA
## 13084 new_sp_m1524 NA
## 13085 new_sp_m1524 NA
## 13086 new_sp_m1524 NA
## 13087 new_sp_m1524 13
## 13088 new_sp_m1524 5
## 13089 new_sp_m1524 4
## 13090 new_sp_m1524 5
## 13091 new_sp_m1524 3
## 13092 new_sp_m1524 3
## 13093 new_sp_m1524 4
## 13094 new_sp_m1524 8
## 13095 new_sp_m1524 3
## 13096 new_sp_m1524 5
## 13097 new_sp_m1524 4
## 13098 new_sp_m1524 3
## 13099 new_sp_m1524 0
## 13100 new_sp_m1524 3
## 13101 new_sp_m1524 3
## 13102 new_sp_m1524 4
## 13103 new_sp_m1524 3
## 13104 new_sp_m1524 2
## 13105 new_sp_m1524 NA
## 13106 new_sp_m1524 NA
## 13107 new_sp_m1524 NA
## 13108 new_sp_m1524 NA
## 13109 new_sp_m1524 NA
## 13110 new_sp_m1524 NA
## 13111 new_sp_m1524 NA
## 13112 new_sp_m1524 NA
## 13113 new_sp_m1524 NA
## 13114 new_sp_m1524 NA
## 13115 new_sp_m1524 NA
## 13116 new_sp_m1524 NA
## 13117 new_sp_m1524 NA
## 13118 new_sp_m1524 NA
## 13119 new_sp_m1524 NA
## 13120 new_sp_m1524 NA
## 13121 new_sp_m1524 14
## 13122 new_sp_m1524 9
## 13123 new_sp_m1524 20
## 13124 new_sp_m1524 15
## 13125 new_sp_m1524 NA
## 13126 new_sp_m1524 13
## 13127 new_sp_m1524 NA
## 13128 new_sp_m1524 16
## 13129 new_sp_m1524 14
## 13130 new_sp_m1524 11
## 13131 new_sp_m1524 14
## 13132 new_sp_m1524 13
## 13133 new_sp_m1524 15
## 13134 new_sp_m1524 17
## 13135 new_sp_m1524 11
## 13136 new_sp_m1524 16
## 13137 new_sp_m1524 15
## 13138 new_sp_m1524 20
## 13139 new_sp_m1524 NA
## 13140 new_sp_m1524 NA
## 13141 new_sp_m1524 NA
## 13142 new_sp_m1524 NA
## 13143 new_sp_m1524 NA
## 13144 new_sp_m1524 NA
## 13145 new_sp_m1524 NA
## 13146 new_sp_m1524 NA
## 13147 new_sp_m1524 NA
## 13148 new_sp_m1524 NA
## 13149 new_sp_m1524 NA
## 13150 new_sp_m1524 NA
## 13151 new_sp_m1524 NA
## 13152 new_sp_m1524 NA
## 13153 new_sp_m1524 NA
## 13154 new_sp_m1524 NA
## 13155 new_sp_m1524 334
## 13156 new_sp_m1524 439
## 13157 new_sp_m1524 565
## 13158 new_sp_m1524 541
## 13159 new_sp_m1524 643
## 13160 new_sp_m1524 740
## 13161 new_sp_m1524 899
## 13162 new_sp_m1524 922
## 13163 new_sp_m1524 1054
## 13164 new_sp_m1524 1228
## 13165 new_sp_m1524 1343
## 13166 new_sp_m1524 1377
## 13167 new_sp_m1524 1239
## 13168 new_sp_m1524 1273
## 13169 new_sp_m1524 1118
## 13170 new_sp_m1524 1036
## 13171 new_sp_m1524 1147
## 13172 new_sp_m1524 1147
## 13173 new_sp_m1524 NA
## 13174 new_sp_m1524 NA
## 13175 new_sp_m1524 NA
## 13176 new_sp_m1524 NA
## 13177 new_sp_m1524 NA
## 13178 new_sp_m1524 NA
## 13179 new_sp_m1524 NA
## 13180 new_sp_m1524 NA
## 13181 new_sp_m1524 NA
## 13182 new_sp_m1524 NA
## 13183 new_sp_m1524 NA
## 13184 new_sp_m1524 NA
## 13185 new_sp_m1524 NA
## 13186 new_sp_m1524 NA
## 13187 new_sp_m1524 NA
## 13188 new_sp_m1524 NA
## 13189 new_sp_m1524 NA
## 13190 new_sp_m1524 NA
## 13191 new_sp_m1524 NA
## 13192 new_sp_m1524 NA
## 13193 new_sp_m1524 624
## 13194 new_sp_m1524 723
## 13195 new_sp_m1524 1490
## 13196 new_sp_m1524 5147
## 13197 new_sp_m1524 10107
## 13198 new_sp_m1524 11030
## 13199 new_sp_m1524 10422
## 13200 new_sp_m1524 10498
## 13201 new_sp_m1524 10514
## 13202 new_sp_m1524 10172
## 13203 new_sp_m1524 8609
## 13204 new_sp_m1524 9925
## 13205 new_sp_m1524 9772
## 13206 new_sp_m1524 9074
## 13207 new_sp_m1524 NA
## 13208 new_sp_m1524 251
## 13209 new_sp_m1524 356
## 13210 new_sp_m1524 NA
## 13211 new_sp_m1524 NA
## 13212 new_sp_m1524 NA
## 13213 new_sp_m1524 NA
## 13214 new_sp_m1524 NA
## 13215 new_sp_m1524 NA
## 13216 new_sp_m1524 NA
## 13217 new_sp_m1524 NA
## 13218 new_sp_m1524 NA
## 13219 new_sp_m1524 NA
## 13220 new_sp_m1524 NA
## 13221 new_sp_m1524 NA
## 13222 new_sp_m1524 NA
## 13223 new_sp_m1524 NA
## 13224 new_sp_m1524 NA
## 13225 new_sp_m1524 NA
## 13226 new_sp_m1524 132
## 13227 new_sp_m1524 NA
## 13228 new_sp_m1524 NA
## 13229 new_sp_m1524 186
## 13230 new_sp_m1524 NA
## 13231 new_sp_m1524 NA
## 13232 new_sp_m1524 160
## 13233 new_sp_m1524 189
## 13234 new_sp_m1524 153
## 13235 new_sp_m1524 140
## 13236 new_sp_m1524 166
## 13237 new_sp_m1524 142
## 13238 new_sp_m1524 184
## 13239 new_sp_m1524 179
## 13240 new_sp_m1524 0
## 13241 new_sp_m1524 160
## 13242 new_sp_m1524 136
## 13243 new_sp_m1524 112
## 13244 new_sp_m1524 NA
## 13245 new_sp_m1524 NA
## 13246 new_sp_m1524 NA
## 13247 new_sp_m1524 NA
## 13248 new_sp_m1524 NA
## 13249 new_sp_m1524 NA
## 13250 new_sp_m1524 NA
## 13251 new_sp_m1524 NA
## 13252 new_sp_m1524 NA
## 13253 new_sp_m1524 NA
## 13254 new_sp_m1524 NA
## 13255 new_sp_m1524 NA
## 13256 new_sp_m1524 NA
## 13257 new_sp_m1524 NA
## 13258 new_sp_m1524 NA
## 13259 new_sp_m1524 NA
## 13260 new_sp_m1524 163
## 13261 new_sp_m1524 163
## 13262 new_sp_m1524 215
## 13263 new_sp_m1524 237
## 13264 new_sp_m1524 255
## 13265 new_sp_m1524 266
## 13266 new_sp_m1524 284
## 13267 new_sp_m1524 287
## 13268 new_sp_m1524 311
## 13269 new_sp_m1524 358
## 13270 new_sp_m1524 341
## 13271 new_sp_m1524 342
## 13272 new_sp_m1524 288
## 13273 new_sp_m1524 283
## 13274 new_sp_m1524 328
## 13275 new_sp_m1524 268
## 13276 new_sp_m1524 246
## 13277 new_sp_m1524 243
## 13278 new_sp_m1524 NA
## 13279 new_sp_m1524 NA
## 13280 new_sp_m1524 NA
## 13281 new_sp_m1524 NA
## 13282 new_sp_m1524 NA
## 13283 new_sp_m1524 NA
## 13284 new_sp_m1524 NA
## 13285 new_sp_m1524 NA
## 13286 new_sp_m1524 NA
## 13287 new_sp_m1524 NA
## 13288 new_sp_m1524 NA
## 13289 new_sp_m1524 NA
## 13290 new_sp_m1524 NA
## 13291 new_sp_m1524 NA
## 13292 new_sp_m1524 NA
## 13293 new_sp_m1524 NA
## 13294 new_sp_m1524 604
## 13295 new_sp_m1524 NA
## 13296 new_sp_m1524 NA
## 13297 new_sp_m1524 1079
## 13298 new_sp_m1524 1100
## 13299 new_sp_m1524 1028
## 13300 new_sp_m1524 1018
## 13301 new_sp_m1524 1171
## 13302 new_sp_m1524 1195
## 13303 new_sp_m1524 1377
## 13304 new_sp_m1524 1358
## 13305 new_sp_m1524 1351
## 13306 new_sp_m1524 1355
## 13307 new_sp_m1524 1241
## 13308 new_sp_m1524 1279
## 13309 new_sp_m1524 1185
## 13310 new_sp_m1524 899
## 13311 new_sp_m1524 869
## 13312 new_sp_m1524 NA
## 13313 new_sp_m1524 NA
## 13314 new_sp_m1524 NA
## 13315 new_sp_m1524 NA
## 13316 new_sp_m1524 NA
## 13317 new_sp_m1524 NA
## 13318 new_sp_m1524 NA
## 13319 new_sp_m1524 NA
## 13320 new_sp_m1524 NA
## 13321 new_sp_m1524 NA
## 13322 new_sp_m1524 NA
## 13323 new_sp_m1524 NA
## 13324 new_sp_m1524 NA
## 13325 new_sp_m1524 NA
## 13326 new_sp_m1524 NA
## 13327 new_sp_m1524 NA
## 13328 new_sp_m1524 NA
## 13329 new_sp_m1524 5
## 13330 new_sp_m1524 6
## 13331 new_sp_m1524 NA
## 13332 new_sp_m1524 NA
## 13333 new_sp_m1524 6
## 13334 new_sp_m1524 2
## 13335 new_sp_m1524 1
## 13336 new_sp_m1524 5
## 13337 new_sp_m1524 6
## 13338 new_sp_m1524 7
## 13339 new_sp_m1524 6
## 13340 new_sp_m1524 NA
## 13341 new_sp_m1524 NA
## 13342 new_sp_m1524 11
## 13343 new_sp_m1524 5
## 13344 new_sp_m1524 4
## 13345 new_sp_m1524 6
## 13346 new_sp_m1524 NA
## 13347 new_sp_m1524 NA
## 13348 new_sp_m1524 NA
## 13349 new_sp_m1524 NA
## 13350 new_sp_m1524 NA
## 13351 new_sp_m1524 NA
## 13352 new_sp_m1524 NA
## 13353 new_sp_m1524 NA
## 13354 new_sp_m1524 NA
## 13355 new_sp_m1524 NA
## 13356 new_sp_m1524 NA
## 13357 new_sp_m1524 NA
## 13358 new_sp_m1524 NA
## 13359 new_sp_m1524 NA
## 13360 new_sp_m1524 NA
## 13361 new_sp_m1524 NA
## 13362 new_sp_m1524 59
## 13363 new_sp_m1524 39
## 13364 new_sp_m1524 NA
## 13365 new_sp_m1524 NA
## 13366 new_sp_m1524 NA
## 13367 new_sp_m1524 130
## 13368 new_sp_m1524 180
## 13369 new_sp_m1524 94
## 13370 new_sp_m1524 120
## 13371 new_sp_m1524 152
## 13372 new_sp_m1524 162
## 13373 new_sp_m1524 187
## 13374 new_sp_m1524 223
## 13375 new_sp_m1524 231
## 13376 new_sp_m1524 221
## 13377 new_sp_m1524 207
## 13378 new_sp_m1524 161
## 13379 new_sp_m1524 163
## 13380 new_sp_m1524 NA
## 13381 new_sp_m1524 NA
## 13382 new_sp_m1524 NA
## 13383 new_sp_m1524 NA
## 13384 new_sp_m1524 NA
## 13385 new_sp_m1524 NA
## 13386 new_sp_m1524 NA
## 13387 new_sp_m1524 NA
## 13388 new_sp_m1524 NA
## 13389 new_sp_m1524 NA
## 13390 new_sp_m1524 NA
## 13391 new_sp_m1524 NA
## 13392 new_sp_m1524 NA
## 13393 new_sp_m1524 NA
## 13394 new_sp_m1524 NA
## 13395 new_sp_m1524 NA
## 13396 new_sp_m1524 5
## 13397 new_sp_m1524 11
## 13398 new_sp_m1524 6
## 13399 new_sp_m1524 6
## 13400 new_sp_m1524 13
## 13401 new_sp_m1524 9
## 13402 new_sp_m1524 10
## 13403 new_sp_m1524 6
## 13404 new_sp_m1524 8
## 13405 new_sp_m1524 10
## 13406 new_sp_m1524 7
## 13407 new_sp_m1524 4
## 13408 new_sp_m1524 7
## 13409 new_sp_m1524 14
## 13410 new_sp_m1524 14
## 13411 new_sp_m1524 10
## 13412 new_sp_m1524 14
## 13413 new_sp_m1524 8
## 13414 new_sp_m1524 NA
## 13415 new_sp_m1524 NA
## 13416 new_sp_m1524 NA
## 13417 new_sp_m1524 NA
## 13418 new_sp_m1524 NA
## 13419 new_sp_m1524 NA
## 13420 new_sp_m1524 NA
## 13421 new_sp_m1524 NA
## 13422 new_sp_m1524 NA
## 13423 new_sp_m1524 NA
## 13424 new_sp_m1524 NA
## 13425 new_sp_m1524 NA
## 13426 new_sp_m1524 NA
## 13427 new_sp_m1524 NA
## 13428 new_sp_m1524 NA
## 13429 new_sp_m1524 NA
## 13430 new_sp_m1524 12
## 13431 new_sp_m1524 12
## 13432 new_sp_m1524 16
## 13433 new_sp_m1524 15
## 13434 new_sp_m1524 9
## 13435 new_sp_m1524 5
## 13436 new_sp_m1524 7
## 13437 new_sp_m1524 10
## 13438 new_sp_m1524 10
## 13439 new_sp_m1524 12
## 13440 new_sp_m1524 8
## 13441 new_sp_m1524 7
## 13442 new_sp_m1524 9
## 13443 new_sp_m1524 8
## 13444 new_sp_m1524 11
## 13445 new_sp_m1524 6
## 13446 new_sp_m1524 8
## 13447 new_sp_m1524 3
## 13448 new_sp_m1524 NA
## 13449 new_sp_m1524 NA
## 13450 new_sp_m1524 NA
## 13451 new_sp_m1524 NA
## 13452 new_sp_m1524 NA
## 13453 new_sp_m1524 NA
## 13454 new_sp_m1524 NA
## 13455 new_sp_m1524 NA
## 13456 new_sp_m1524 NA
## 13457 new_sp_m1524 NA
## 13458 new_sp_m1524 NA
## 13459 new_sp_m1524 NA
## 13460 new_sp_m1524 NA
## 13461 new_sp_m1524 NA
## 13462 new_sp_m1524 NA
## 13463 new_sp_m1524 NA
## 13464 new_sp_m1524 332
## 13465 new_sp_m1524 390
## 13466 new_sp_m1524 337
## 13467 new_sp_m1524 335
## 13468 new_sp_m1524 NA
## 13469 new_sp_m1524 359
## 13470 new_sp_m1524 317
## 13471 new_sp_m1524 359
## 13472 new_sp_m1524 343
## 13473 new_sp_m1524 318
## 13474 new_sp_m1524 266
## 13475 new_sp_m1524 225
## 13476 new_sp_m1524 198
## 13477 new_sp_m1524 170
## 13478 new_sp_m1524 172
## 13479 new_sp_m1524 170
## 13480 new_sp_m1524 139
## 13481 new_sp_m1524 91
## 13482 new_sp_m1524 NA
## 13483 new_sp_m1524 NA
## 13484 new_sp_m1524 NA
## 13485 new_sp_m1524 NA
## 13486 new_sp_m1524 NA
## 13487 new_sp_m1524 NA
## 13488 new_sp_m1524 NA
## 13489 new_sp_m1524 NA
## 13490 new_sp_m1524 NA
## 13491 new_sp_m1524 NA
## 13492 new_sp_m1524 NA
## 13493 new_sp_m1524 NA
## 13494 new_sp_m1524 NA
## 13495 new_sp_m1524 NA
## 13496 new_sp_m1524 NA
## 13497 new_sp_m1524 NA
## 13498 new_sp_m1524 NA
## 13499 new_sp_m1524 22
## 13500 new_sp_m1524 16
## 13501 new_sp_m1524 67
## 13502 new_sp_m1524 NA
## 13503 new_sp_m1524 NA
## 13504 new_sp_m1524 129
## 13505 new_sp_m1524 134
## 13506 new_sp_m1524 NA
## 13507 new_sp_m1524 146
## 13508 new_sp_m1524 308
## 13509 new_sp_m1524 NA
## 13510 new_sp_m1524 413
## 13511 new_sp_m1524 437
## 13512 new_sp_m1524 407
## 13513 new_sp_m1524 398
## 13514 new_sp_m1524 343
## 13515 new_sp_m1524 346
## 13516 new_sp_m1524 NA
## 13517 new_sp_m1524 NA
## 13518 new_sp_m1524 NA
## 13519 new_sp_m1524 NA
## 13520 new_sp_m1524 NA
## 13521 new_sp_m1524 NA
## 13522 new_sp_m1524 NA
## 13523 new_sp_m1524 NA
## 13524 new_sp_m1524 NA
## 13525 new_sp_m1524 NA
## 13526 new_sp_m1524 NA
## 13527 new_sp_m1524 NA
## 13528 new_sp_m1524 NA
## 13529 new_sp_m1524 NA
## 13530 new_sp_m1524 NA
## 13531 new_sp_m1524 NA
## 13532 new_sp_m1524 1191
## 13533 new_sp_m1524 1088
## 13534 new_sp_m1524 864
## 13535 new_sp_m1524 427
## 13536 new_sp_m1524 791
## 13537 new_sp_m1524 859
## 13538 new_sp_m1524 1868
## 13539 new_sp_m1524 1352
## 13540 new_sp_m1524 1636
## 13541 new_sp_m1524 1421
## 13542 new_sp_m1524 1344
## 13543 new_sp_m1524 1276
## 13544 new_sp_m1524 1261
## 13545 new_sp_m1524 1222
## 13546 new_sp_m1524 1348
## 13547 new_sp_m1524 1506
## 13548 new_sp_m1524 1546
## 13549 new_sp_m1524 1444
## 13550 new_sp_m1524 NA
## 13551 new_sp_m1524 NA
## 13552 new_sp_m1524 NA
## 13553 new_sp_m1524 NA
## 13554 new_sp_m1524 NA
## 13555 new_sp_m1524 NA
## 13556 new_sp_m1524 NA
## 13557 new_sp_m1524 NA
## 13558 new_sp_m1524 NA
## 13559 new_sp_m1524 NA
## 13560 new_sp_m1524 NA
## 13561 new_sp_m1524 NA
## 13562 new_sp_m1524 NA
## 13563 new_sp_m1524 NA
## 13564 new_sp_m1524 NA
## 13565 new_sp_m1524 NA
## 13566 new_sp_m1524 15
## 13567 new_sp_m1524 17
## 13568 new_sp_m1524 8
## 13569 new_sp_m1524 14
## 13570 new_sp_m1524 11
## 13571 new_sp_m1524 8
## 13572 new_sp_m1524 10
## 13573 new_sp_m1524 20
## 13574 new_sp_m1524 20
## 13575 new_sp_m1524 12
## 13576 new_sp_m1524 14
## 13577 new_sp_m1524 15
## 13578 new_sp_m1524 12
## 13579 new_sp_m1524 18
## 13580 new_sp_m1524 28
## 13581 new_sp_m1524 6
## 13582 new_sp_m1524 17
## 13583 new_sp_m1524 16
## 13584 new_sp_m1524 NA
## 13585 new_sp_m1524 119
## 13586 new_sp_m1524 130
## 13587 new_sp_m1524 133
## 13588 new_sp_m1524 136
## 13589 new_sp_m1524 128
## 13590 new_sp_m1524 128
## 13591 new_sp_m1524 115
## 13592 new_sp_m1524 158
## 13593 new_sp_m1524 NA
## 13594 new_sp_m1524 199
## 13595 new_sp_m1524 196
## 13596 new_sp_m1524 NA
## 13597 new_sp_m1524 NA
## 13598 new_sp_m1524 NA
## 13599 new_sp_m1524 NA
## 13600 new_sp_m1524 NA
## 13601 new_sp_m1524 NA
## 13602 new_sp_m1524 NA
## 13603 new_sp_m1524 NA
## 13604 new_sp_m1524 NA
## 13605 new_sp_m1524 NA
## 13606 new_sp_m1524 NA
## 13607 new_sp_m1524 NA
## 13608 new_sp_m1524 NA
## 13609 new_sp_m1524 NA
## 13610 new_sp_m1524 NA
## 13611 new_sp_m1524 NA
## 13612 new_sp_m1524 95
## 13613 new_sp_m1524 95
## 13614 new_sp_m1524 NA
## 13615 new_sp_m1524 85
## 13616 new_sp_m1524 92
## 13617 new_sp_m1524 101
## 13618 new_sp_m1524 NA
## 13619 new_sp_m1524 140
## 13620 new_sp_m1524 126
## 13621 new_sp_m1524 145
## 13622 new_sp_m1524 177
## 13623 new_sp_m1524 174
## 13624 new_sp_m1524 156
## 13625 new_sp_m1524 194
## 13626 new_sp_m1524 168
## 13627 new_sp_m1524 150
## 13628 new_sp_m1524 169
## 13629 new_sp_m1524 171
## 13630 new_sp_m1524 NA
## 13631 new_sp_m1524 NA
## 13632 new_sp_m1524 NA
## 13633 new_sp_m1524 NA
## 13634 new_sp_m1524 NA
## 13635 new_sp_m1524 NA
## 13636 new_sp_m1524 NA
## 13637 new_sp_m1524 NA
## 13638 new_sp_m1524 NA
## 13639 new_sp_m1524 NA
## 13640 new_sp_m1524 NA
## 13641 new_sp_m1524 NA
## 13642 new_sp_m1524 NA
## 13643 new_sp_m1524 NA
## 13644 new_sp_m1524 NA
## 13645 new_sp_m1524 NA
## 13646 new_sp_m1524 NA
## 13647 new_sp_m1524 NA
## 13648 new_sp_m1524 NA
## 13649 new_sp_m1524 NA
## 13650 new_sp_m1524 NA
## 13651 new_sp_m1524 NA
## 13652 new_sp_m1524 NA
## 13653 new_sp_m1524 NA
## 13654 new_sp_m1524 NA
## 13655 new_sp_m1524 NA
## 13656 new_sp_m1524 NA
## 13657 new_sp_m1524 NA
## 13658 new_sp_m1524 0
## 13659 new_sp_m1524 0
## 13660 new_sp_m1524 NA
## 13661 new_sp_m1524 0
## 13662 new_sp_m1524 NA
## 13663 new_sp_m1524 NA
## 13664 new_sp_m1524 NA
## 13665 new_sp_m1524 NA
## 13666 new_sp_m1524 NA
## 13667 new_sp_m1524 NA
## 13668 new_sp_m1524 NA
## 13669 new_sp_m1524 NA
## 13670 new_sp_m1524 NA
## 13671 new_sp_m1524 NA
## 13672 new_sp_m1524 NA
## 13673 new_sp_m1524 NA
## 13674 new_sp_m1524 NA
## 13675 new_sp_m1524 NA
## 13676 new_sp_m1524 NA
## 13677 new_sp_m1524 NA
## 13678 new_sp_m1524 NA
## 13679 new_sp_m1524 NA
## 13680 new_sp_m1524 1
## 13681 new_sp_m1524 1
## 13682 new_sp_m1524 2
## 13683 new_sp_m1524 2
## 13684 new_sp_m1524 1
## 13685 new_sp_m1524 2
## 13686 new_sp_m1524 0
## 13687 new_sp_m1524 1
## 13688 new_sp_m1524 1
## 13689 new_sp_m1524 NA
## 13690 new_sp_m1524 2
## 13691 new_sp_m1524 1
## 13692 new_sp_m1524 2
## 13693 new_sp_m1524 2
## 13694 new_sp_m1524 0
## 13695 new_sp_m1524 0
## 13696 new_sp_m1524 0
## 13697 new_sp_m1524 0
## 13698 new_sp_m1524 NA
## 13699 new_sp_m1524 NA
## 13700 new_sp_m1524 NA
## 13701 new_sp_m1524 NA
## 13702 new_sp_m1524 NA
## 13703 new_sp_m1524 NA
## 13704 new_sp_m1524 NA
## 13705 new_sp_m1524 NA
## 13706 new_sp_m1524 NA
## 13707 new_sp_m1524 NA
## 13708 new_sp_m1524 NA
## 13709 new_sp_m1524 NA
## 13710 new_sp_m1524 NA
## 13711 new_sp_m1524 NA
## 13712 new_sp_m1524 NA
## 13713 new_sp_m1524 NA
## 13714 new_sp_m1524 6
## 13715 new_sp_m1524 4
## 13716 new_sp_m1524 NA
## 13717 new_sp_m1524 9
## 13718 new_sp_m1524 11
## 13719 new_sp_m1524 7
## 13720 new_sp_m1524 10
## 13721 new_sp_m1524 8
## 13722 new_sp_m1524 9
## 13723 new_sp_m1524 3
## 13724 new_sp_m1524 10
## 13725 new_sp_m1524 7
## 13726 new_sp_m1524 10
## 13727 new_sp_m1524 9
## 13728 new_sp_m1524 6
## 13729 new_sp_m1524 11
## 13730 new_sp_m1524 14
## 13731 new_sp_m1524 7
## 13732 new_sp_m1524 NA
## 13733 new_sp_m1524 NA
## 13734 new_sp_m1524 NA
## 13735 new_sp_m1524 NA
## 13736 new_sp_m1524 NA
## 13737 new_sp_m1524 NA
## 13738 new_sp_m1524 NA
## 13739 new_sp_m1524 NA
## 13740 new_sp_m1524 NA
## 13741 new_sp_m1524 NA
## 13742 new_sp_m1524 NA
## 13743 new_sp_m1524 NA
## 13744 new_sp_m1524 NA
## 13745 new_sp_m1524 NA
## 13746 new_sp_m1524 NA
## 13747 new_sp_m1524 NA
## 13748 new_sp_m1524 NA
## 13749 new_sp_m1524 NA
## 13750 new_sp_m1524 NA
## 13751 new_sp_m1524 134
## 13752 new_sp_m1524 137
## 13753 new_sp_m1524 139
## 13754 new_sp_m1524 141
## 13755 new_sp_m1524 112
## 13756 new_sp_m1524 100
## 13757 new_sp_m1524 100
## 13758 new_sp_m1524 103
## 13759 new_sp_m1524 125
## 13760 new_sp_m1524 124
## 13761 new_sp_m1524 130
## 13762 new_sp_m1524 80
## 13763 new_sp_m1524 115
## 13764 new_sp_m1524 110
## 13765 new_sp_m1524 88
## 13766 new_sp_m1524 NA
## 13767 new_sp_m1524 NA
## 13768 new_sp_m1524 NA
## 13769 new_sp_m1524 NA
## 13770 new_sp_m1524 NA
## 13771 new_sp_m1524 NA
## 13772 new_sp_m1524 NA
## 13773 new_sp_m1524 NA
## 13774 new_sp_m1524 NA
## 13775 new_sp_m1524 NA
## 13776 new_sp_m1524 NA
## 13777 new_sp_m1524 NA
## 13778 new_sp_m1524 NA
## 13779 new_sp_m1524 NA
## 13780 new_sp_m1524 NA
## 13781 new_sp_m1524 NA
## 13782 new_sp_m1524 NA
## 13783 new_sp_m1524 NA
## 13784 new_sp_m1524 NA
## 13785 new_sp_m1524 NA
## 13786 new_sp_m1524 NA
## 13787 new_sp_m1524 NA
## 13788 new_sp_m1524 NA
## 13789 new_sp_m1524 NA
## 13790 new_sp_m1524 NA
## 13791 new_sp_m1524 50
## 13792 new_sp_m1524 1148
## 13793 new_sp_m1524 1212
## 13794 new_sp_m1524 1091
## 13795 new_sp_m1524 940
## 13796 new_sp_m1524 817
## 13797 new_sp_m1524 631
## 13798 new_sp_m1524 550
## 13799 new_sp_m1524 507
## 13800 new_sp_m1524 NA
## 13801 new_sp_m1524 NA
## 13802 new_sp_m1524 NA
## 13803 new_sp_m1524 NA
## 13804 new_sp_m1524 NA
## 13805 new_sp_m1524 NA
## 13806 new_sp_m1524 NA
## 13807 new_sp_m1524 NA
## 13808 new_sp_m1524 NA
## 13809 new_sp_m1524 NA
## 13810 new_sp_m1524 NA
## 13811 new_sp_m1524 NA
## 13812 new_sp_m1524 NA
## 13813 new_sp_m1524 NA
## 13814 new_sp_m1524 NA
## 13815 new_sp_m1524 NA
## 13816 new_sp_m1524 11
## 13817 new_sp_m1524 15
## 13818 new_sp_m1524 14
## 13819 new_sp_m1524 100
## 13820 new_sp_m1524 129
## 13821 new_sp_m1524 103
## 13822 new_sp_m1524 169
## 13823 new_sp_m1524 164
## 13824 new_sp_m1524 148
## 13825 new_sp_m1524 129
## 13826 new_sp_m1524 148
## 13827 new_sp_m1524 140
## 13828 new_sp_m1524 176
## 13829 new_sp_m1524 176
## 13830 new_sp_m1524 178
## 13831 new_sp_m1524 130
## 13832 new_sp_m1524 117
## 13833 new_sp_m1524 111
## 13834 new_sp_m1524 NA
## 13835 new_sp_m1524 NA
## 13836 new_sp_m1524 NA
## 13837 new_sp_m1524 NA
## 13838 new_sp_m1524 NA
## 13839 new_sp_m1524 NA
## 13840 new_sp_m1524 NA
## 13841 new_sp_m1524 NA
## 13842 new_sp_m1524 NA
## 13843 new_sp_m1524 NA
## 13844 new_sp_m1524 NA
## 13845 new_sp_m1524 NA
## 13846 new_sp_m1524 NA
## 13847 new_sp_m1524 NA
## 13848 new_sp_m1524 NA
## 13849 new_sp_m1524 NA
## 13850 new_sp_m1524 NA
## 13851 new_sp_m1524 NA
## 13852 new_sp_m1524 NA
## 13853 new_sp_m1524 NA
## 13854 new_sp_m1524 NA
## 13855 new_sp_m1524 NA
## 13856 new_sp_m1524 NA
## 13857 new_sp_m1524 NA
## 13858 new_sp_m1524 0
## 13859 new_sp_m1524 NA
## 13860 new_sp_m1524 NA
## 13861 new_sp_m1524 1
## 13862 new_sp_m1524 NA
## 13863 new_sp_m1524 NA
## 13864 new_sp_m1524 NA
## 13865 new_sp_m1524 0
## 13866 new_sp_m1524 2
## 13867 new_sp_m1524 0
## 13868 new_sp_m1524 NA
## 13869 new_sp_m1524 NA
## 13870 new_sp_m1524 NA
## 13871 new_sp_m1524 NA
## 13872 new_sp_m1524 NA
## 13873 new_sp_m1524 NA
## 13874 new_sp_m1524 NA
## 13875 new_sp_m1524 NA
## 13876 new_sp_m1524 NA
## 13877 new_sp_m1524 NA
## 13878 new_sp_m1524 NA
## 13879 new_sp_m1524 NA
## 13880 new_sp_m1524 NA
## 13881 new_sp_m1524 NA
## 13882 new_sp_m1524 NA
## 13883 new_sp_m1524 NA
## 13884 new_sp_m1524 0
## 13885 new_sp_m1524 NA
## 13886 new_sp_m1524 NA
## 13887 new_sp_m1524 NA
## 13888 new_sp_m1524 NA
## 13889 new_sp_m1524 NA
## 13890 new_sp_m1524 NA
## 13891 new_sp_m1524 NA
## 13892 new_sp_m1524 2
## 13893 new_sp_m1524 NA
## 13894 new_sp_m1524 NA
## 13895 new_sp_m1524 1
## 13896 new_sp_m1524 1
## 13897 new_sp_m1524 2
## 13898 new_sp_m1524 1
## 13899 new_sp_m1524 1
## 13900 new_sp_m1524 1
## 13901 new_sp_m1524 1
## 13902 new_sp_m1524 NA
## 13903 new_sp_m1524 NA
## 13904 new_sp_m1524 NA
## 13905 new_sp_m1524 NA
## 13906 new_sp_m1524 NA
## 13907 new_sp_m1524 NA
## 13908 new_sp_m1524 NA
## 13909 new_sp_m1524 NA
## 13910 new_sp_m1524 NA
## 13911 new_sp_m1524 NA
## 13912 new_sp_m1524 NA
## 13913 new_sp_m1524 NA
## 13914 new_sp_m1524 NA
## 13915 new_sp_m1524 NA
## 13916 new_sp_m1524 NA
## 13917 new_sp_m1524 NA
## 13918 new_sp_m1524 1193
## 13919 new_sp_m1524 1271
## 13920 new_sp_m1524 1485
## 13921 new_sp_m1524 1512
## 13922 new_sp_m1524 1510
## 13923 new_sp_m1524 1511
## 13924 new_sp_m1524 1461
## 13925 new_sp_m1524 1503
## 13926 new_sp_m1524 1643
## 13927 new_sp_m1524 1803
## 13928 new_sp_m1524 1598
## 13929 new_sp_m1524 1624
## 13930 new_sp_m1524 1741
## 13931 new_sp_m1524 1953
## 13932 new_sp_m1524 1853
## 13933 new_sp_m1524 2055
## 13934 new_sp_m1524 2075
## 13935 new_sp_m1524 2174
## 13936 new_sp_m1524 NA
## 13937 new_sp_m1524 NA
## 13938 new_sp_m1524 NA
## 13939 new_sp_m1524 NA
## 13940 new_sp_m1524 NA
## 13941 new_sp_m1524 NA
## 13942 new_sp_m1524 NA
## 13943 new_sp_m1524 NA
## 13944 new_sp_m1524 NA
## 13945 new_sp_m1524 NA
## 13946 new_sp_m1524 NA
## 13947 new_sp_m1524 NA
## 13948 new_sp_m1524 NA
## 13949 new_sp_m1524 NA
## 13950 new_sp_m1524 NA
## 13951 new_sp_m1524 NA
## 13952 new_sp_m1524 385
## 13953 new_sp_m1524 569
## 13954 new_sp_m1524 623
## 13955 new_sp_m1524 687
## 13956 new_sp_m1524 661
## 13957 new_sp_m1524 693
## 13958 new_sp_m1524 757
## 13959 new_sp_m1524 NA
## 13960 new_sp_m1524 850
## 13961 new_sp_m1524 NA
## 13962 new_sp_m1524 NA
## 13963 new_sp_m1524 926
## 13964 new_sp_m1524 1556
## 13965 new_sp_m1524 901
## 13966 new_sp_m1524 953
## 13967 new_sp_m1524 NA
## 13968 new_sp_m1524 539
## 13969 new_sp_m1524 546
## 13970 new_sp_m1524 NA
## 13971 new_sp_m1524 NA
## 13972 new_sp_m1524 NA
## 13973 new_sp_m1524 NA
## 13974 new_sp_m1524 NA
## 13975 new_sp_m1524 NA
## 13976 new_sp_m1524 NA
## 13977 new_sp_m1524 NA
## 13978 new_sp_m1524 NA
## 13979 new_sp_m1524 NA
## 13980 new_sp_m1524 NA
## 13981 new_sp_m1524 NA
## 13982 new_sp_m1524 NA
## 13983 new_sp_m1524 NA
## 13984 new_sp_m1524 NA
## 13985 new_sp_m1524 NA
## 13986 new_sp_m1524 NA
## 13987 new_sp_m1524 NA
## 13988 new_sp_m1524 NA
## 13989 new_sp_m1524 NA
## 13990 new_sp_m1524 9
## 13991 new_sp_m1524 4
## 13992 new_sp_m1524 NA
## 13993 new_sp_m1524 2
## 13994 new_sp_m1524 10
## 13995 new_sp_m1524 7
## 13996 new_sp_m1524 NA
## 13997 new_sp_m1524 5
## 13998 new_sp_m1524 5
## 13999 new_sp_m1524 6
## 14000 new_sp_m1524 8
## 14001 new_sp_m1524 7
## 14002 new_sp_m1524 3
## 14003 new_sp_m1524 2
## 14004 new_sp_m1524 NA
## 14005 new_sp_m1524 NA
## 14006 new_sp_m1524 NA
## 14007 new_sp_m1524 NA
## 14008 new_sp_m1524 NA
## 14009 new_sp_m1524 NA
## 14010 new_sp_m1524 NA
## 14011 new_sp_m1524 NA
## 14012 new_sp_m1524 NA
## 14013 new_sp_m1524 NA
## 14014 new_sp_m1524 NA
## 14015 new_sp_m1524 NA
## 14016 new_sp_m1524 NA
## 14017 new_sp_m1524 NA
## 14018 new_sp_m1524 NA
## 14019 new_sp_m1524 NA
## 14020 new_sp_m1524 NA
## 14021 new_sp_m1524 NA
## 14022 new_sp_m1524 68
## 14023 new_sp_m1524 103
## 14024 new_sp_m1524 68
## 14025 new_sp_m1524 86
## 14026 new_sp_m1524 99
## 14027 new_sp_m1524 94
## 14028 new_sp_m1524 101
## 14029 new_sp_m1524 118
## 14030 new_sp_m1524 135
## 14031 new_sp_m1524 173
## 14032 new_sp_m1524 183
## 14033 new_sp_m1524 125
## 14034 new_sp_m1524 136
## 14035 new_sp_m1524 132
## 14036 new_sp_m1524 146
## 14037 new_sp_m1524 156
## 14038 new_sp_m1524 NA
## 14039 new_sp_m1524 NA
## 14040 new_sp_m1524 NA
## 14041 new_sp_m1524 NA
## 14042 new_sp_m1524 NA
## 14043 new_sp_m1524 NA
## 14044 new_sp_m1524 NA
## 14045 new_sp_m1524 NA
## 14046 new_sp_m1524 NA
## 14047 new_sp_m1524 NA
## 14048 new_sp_m1524 NA
## 14049 new_sp_m1524 NA
## 14050 new_sp_m1524 NA
## 14051 new_sp_m1524 NA
## 14052 new_sp_m1524 NA
## 14053 new_sp_m1524 NA
## 14054 new_sp_m1524 2108
## 14055 new_sp_m1524 2176
## 14056 new_sp_m1524 2210
## 14057 new_sp_m1524 2528
## 14058 new_sp_m1524 2422
## 14059 new_sp_m1524 2357
## 14060 new_sp_m1524 2302
## 14061 new_sp_m1524 2309
## 14062 new_sp_m1524 2172
## 14063 new_sp_m1524 2216
## 14064 new_sp_m1524 2062
## 14065 new_sp_m1524 2060
## 14066 new_sp_m1524 2021
## 14067 new_sp_m1524 1963
## 14068 new_sp_m1524 2081
## 14069 new_sp_m1524 1975
## 14070 new_sp_m1524 1975
## 14071 new_sp_m1524 2091
## 14072 new_sp_m1524 NA
## 14073 new_sp_m1524 NA
## 14074 new_sp_m1524 NA
## 14075 new_sp_m1524 NA
## 14076 new_sp_m1524 NA
## 14077 new_sp_m1524 NA
## 14078 new_sp_m1524 NA
## 14079 new_sp_m1524 NA
## 14080 new_sp_m1524 NA
## 14081 new_sp_m1524 NA
## 14082 new_sp_m1524 NA
## 14083 new_sp_m1524 NA
## 14084 new_sp_m1524 NA
## 14085 new_sp_m1524 NA
## 14086 new_sp_m1524 NA
## 14087 new_sp_m1524 NA
## 14088 new_sp_m1524 355
## 14089 new_sp_m1524 333
## 14090 new_sp_m1524 330
## 14091 new_sp_m1524 321
## 14092 new_sp_m1524 331
## 14093 new_sp_m1524 365
## 14094 new_sp_m1524 320
## 14095 new_sp_m1524 343
## 14096 new_sp_m1524 365
## 14097 new_sp_m1524 362
## 14098 new_sp_m1524 383
## 14099 new_sp_m1524 388
## 14100 new_sp_m1524 414
## 14101 new_sp_m1524 375
## 14102 new_sp_m1524 299
## 14103 new_sp_m1524 246
## 14104 new_sp_m1524 235
## 14105 new_sp_m1524 239
## 14106 new_sp_m1524 NA
## 14107 new_sp_m1524 NA
## 14108 new_sp_m1524 NA
## 14109 new_sp_m1524 NA
## 14110 new_sp_m1524 NA
## 14111 new_sp_m1524 NA
## 14112 new_sp_m1524 NA
## 14113 new_sp_m1524 NA
## 14114 new_sp_m1524 NA
## 14115 new_sp_m1524 NA
## 14116 new_sp_m1524 NA
## 14117 new_sp_m1524 NA
## 14118 new_sp_m1524 NA
## 14119 new_sp_m1524 NA
## 14120 new_sp_m1524 NA
## 14121 new_sp_m1524 NA
## 14122 new_sp_m1524 28
## 14123 new_sp_m1524 34
## 14124 new_sp_m1524 37
## 14125 new_sp_m1524 30
## 14126 new_sp_m1524 45
## 14127 new_sp_m1524 36
## 14128 new_sp_m1524 33
## 14129 new_sp_m1524 33
## 14130 new_sp_m1524 46
## 14131 new_sp_m1524 38
## 14132 new_sp_m1524 42
## 14133 new_sp_m1524 38
## 14134 new_sp_m1524 39
## 14135 new_sp_m1524 49
## 14136 new_sp_m1524 43
## 14137 new_sp_m1524 46
## 14138 new_sp_m1524 58
## 14139 new_sp_m1524 38
## 14140 new_sp_m1524 NA
## 14141 new_sp_m1524 NA
## 14142 new_sp_m1524 NA
## 14143 new_sp_m1524 NA
## 14144 new_sp_m1524 NA
## 14145 new_sp_m1524 NA
## 14146 new_sp_m1524 NA
## 14147 new_sp_m1524 NA
## 14148 new_sp_m1524 NA
## 14149 new_sp_m1524 NA
## 14150 new_sp_m1524 NA
## 14151 new_sp_m1524 NA
## 14152 new_sp_m1524 NA
## 14153 new_sp_m1524 NA
## 14154 new_sp_m1524 NA
## 14155 new_sp_m1524 NA
## 14156 new_sp_m1524 0
## 14157 new_sp_m1524 0
## 14158 new_sp_m1524 NA
## 14159 new_sp_m1524 NA
## 14160 new_sp_m1524 NA
## 14161 new_sp_m1524 NA
## 14162 new_sp_m1524 NA
## 14163 new_sp_m1524 NA
## 14164 new_sp_m1524 NA
## 14165 new_sp_m1524 NA
## 14166 new_sp_m1524 NA
## 14167 new_sp_m1524 NA
## 14168 new_sp_m1524 NA
## 14169 new_sp_m1524 NA
## 14170 new_sp_m1524 NA
## 14171 new_sp_m1524 NA
## 14172 new_sp_m1524 NA
## 14173 new_sp_m1524 NA
## 14174 new_sp_m1524 NA
## 14175 new_sp_m1524 NA
## 14176 new_sp_m1524 NA
## 14177 new_sp_m1524 NA
## 14178 new_sp_m1524 NA
## 14179 new_sp_m1524 NA
## 14180 new_sp_m1524 NA
## 14181 new_sp_m1524 NA
## 14182 new_sp_m1524 NA
## 14183 new_sp_m1524 NA
## 14184 new_sp_m1524 NA
## 14185 new_sp_m1524 NA
## 14186 new_sp_m1524 NA
## 14187 new_sp_m1524 NA
## 14188 new_sp_m1524 NA
## 14189 new_sp_m1524 NA
## 14190 new_sp_m1524 NA
## 14191 new_sp_m1524 96
## 14192 new_sp_m1524 NA
## 14193 new_sp_m1524 6
## 14194 new_sp_m1524 429
## 14195 new_sp_m1524 351
## 14196 new_sp_m1524 390
## 14197 new_sp_m1524 330
## 14198 new_sp_m1524 487
## 14199 new_sp_m1524 512
## 14200 new_sp_m1524 596
## 14201 new_sp_m1524 568
## 14202 new_sp_m1524 569
## 14203 new_sp_m1524 515
## 14204 new_sp_m1524 541
## 14205 new_sp_m1524 487
## 14206 new_sp_m1524 378
## 14207 new_sp_m1524 360
## 14208 new_sp_m1524 NA
## 14209 new_sp_m1524 NA
## 14210 new_sp_m1524 NA
## 14211 new_sp_m1524 NA
## 14212 new_sp_m1524 NA
## 14213 new_sp_m1524 NA
## 14214 new_sp_m1524 NA
## 14215 new_sp_m1524 NA
## 14216 new_sp_m1524 NA
## 14217 new_sp_m1524 NA
## 14218 new_sp_m1524 NA
## 14219 new_sp_m1524 NA
## 14220 new_sp_m1524 NA
## 14221 new_sp_m1524 NA
## 14222 new_sp_m1524 NA
## 14223 new_sp_m1524 NA
## 14224 new_sp_m1524 6
## 14225 new_sp_m1524 4
## 14226 new_sp_m1524 NA
## 14227 new_sp_m1524 4
## 14228 new_sp_m1524 0
## 14229 new_sp_m1524 7
## 14230 new_sp_m1524 7
## 14231 new_sp_m1524 7
## 14232 new_sp_m1524 2
## 14233 new_sp_m1524 7
## 14234 new_sp_m1524 4
## 14235 new_sp_m1524 5
## 14236 new_sp_m1524 3
## 14237 new_sp_m1524 4
## 14238 new_sp_m1524 6
## 14239 new_sp_m1524 6
## 14240 new_sp_m1524 3
## 14241 new_sp_m1524 4
## 14242 new_sp_m1524 NA
## 14243 new_sp_m1524 NA
## 14244 new_sp_m1524 NA
## 14245 new_sp_m1524 NA
## 14246 new_sp_m1524 NA
## 14247 new_sp_m1524 NA
## 14248 new_sp_m1524 NA
## 14249 new_sp_m1524 NA
## 14250 new_sp_m1524 NA
## 14251 new_sp_m1524 NA
## 14252 new_sp_m1524 NA
## 14253 new_sp_m1524 NA
## 14254 new_sp_m1524 NA
## 14255 new_sp_m1524 NA
## 14256 new_sp_m1524 NA
## 14257 new_sp_m1524 NA
## 14258 new_sp_m1524 NA
## 14259 new_sp_m1524 NA
## 14260 new_sp_m1524 NA
## 14261 new_sp_m1524 NA
## 14262 new_sp_m1524 378
## 14263 new_sp_m1524 NA
## 14264 new_sp_m1524 NA
## 14265 new_sp_m1524 339
## 14266 new_sp_m1524 361
## 14267 new_sp_m1524 373
## 14268 new_sp_m1524 312
## 14269 new_sp_m1524 323
## 14270 new_sp_m1524 324
## 14271 new_sp_m1524 364
## 14272 new_sp_m1524 372
## 14273 new_sp_m1524 320
## 14274 new_sp_m1524 340
## 14275 new_sp_m1524 379
## 14276 new_sp_m1524 NA
## 14277 new_sp_m1524 NA
## 14278 new_sp_m1524 NA
## 14279 new_sp_m1524 NA
## 14280 new_sp_m1524 NA
## 14281 new_sp_m1524 NA
## 14282 new_sp_m1524 NA
## 14283 new_sp_m1524 NA
## 14284 new_sp_m1524 NA
## 14285 new_sp_m1524 NA
## 14286 new_sp_m1524 NA
## 14287 new_sp_m1524 NA
## 14288 new_sp_m1524 NA
## 14289 new_sp_m1524 NA
## 14290 new_sp_m1524 NA
## 14291 new_sp_m1524 NA
## 14292 new_sp_m1524 NA
## 14293 new_sp_m1524 1994
## 14294 new_sp_m1524 2162
## 14295 new_sp_m1524 2441
## 14296 new_sp_m1524 2254
## 14297 new_sp_m1524 2367
## 14298 new_sp_m1524 2756
## 14299 new_sp_m1524 3250
## 14300 new_sp_m1524 3475
## 14301 new_sp_m1524 3486
## 14302 new_sp_m1524 3408
## 14303 new_sp_m1524 3761
## 14304 new_sp_m1524 3587
## 14305 new_sp_m1524 3401
## 14306 new_sp_m1524 3122
## 14307 new_sp_m1524 3205
## 14308 new_sp_m1524 3099
## 14309 new_sp_m1524 2993
## 14310 new_sp_m1524 NA
## 14311 new_sp_m1524 NA
## 14312 new_sp_m1524 NA
## 14313 new_sp_m1524 NA
## 14314 new_sp_m1524 NA
## 14315 new_sp_m1524 NA
## 14316 new_sp_m1524 NA
## 14317 new_sp_m1524 NA
## 14318 new_sp_m1524 NA
## 14319 new_sp_m1524 NA
## 14320 new_sp_m1524 NA
## 14321 new_sp_m1524 NA
## 14322 new_sp_m1524 NA
## 14323 new_sp_m1524 NA
## 14324 new_sp_m1524 NA
## 14325 new_sp_m1524 NA
## 14326 new_sp_m1524 NA
## 14327 new_sp_m1524 1
## 14328 new_sp_m1524 NA
## 14329 new_sp_m1524 NA
## 14330 new_sp_m1524 NA
## 14331 new_sp_m1524 NA
## 14332 new_sp_m1524 NA
## 14333 new_sp_m1524 1
## 14334 new_sp_m1524 0
## 14335 new_sp_m1524 NA
## 14336 new_sp_m1524 NA
## 14337 new_sp_m1524 NA
## 14338 new_sp_m1524 0
## 14339 new_sp_m1524 NA
## 14340 new_sp_m1524 NA
## 14341 new_sp_m1524 NA
## 14342 new_sp_m1524 NA
## 14343 new_sp_m1524 NA
## 14344 new_sp_m1524 NA
## 14345 new_sp_m1524 NA
## 14346 new_sp_m1524 NA
## 14347 new_sp_m1524 NA
## 14348 new_sp_m1524 NA
## 14349 new_sp_m1524 NA
## 14350 new_sp_m1524 NA
## 14351 new_sp_m1524 NA
## 14352 new_sp_m1524 NA
## 14353 new_sp_m1524 NA
## 14354 new_sp_m1524 NA
## 14355 new_sp_m1524 NA
## 14356 new_sp_m1524 NA
## 14357 new_sp_m1524 NA
## 14358 new_sp_m1524 NA
## 14359 new_sp_m1524 NA
## 14360 new_sp_m1524 2
## 14361 new_sp_m1524 2
## 14362 new_sp_m1524 NA
## 14363 new_sp_m1524 1
## 14364 new_sp_m1524 NA
## 14365 new_sp_m1524 NA
## 14366 new_sp_m1524 NA
## 14367 new_sp_m1524 NA
## 14368 new_sp_m1524 1
## 14369 new_sp_m1524 1
## 14370 new_sp_m1524 1
## 14371 new_sp_m1524 1
## 14372 new_sp_m1524 1
## 14373 new_sp_m1524 1
## 14374 new_sp_m1524 1
## 14375 new_sp_m1524 2
## 14376 new_sp_m1524 0
## 14377 new_sp_m1524 2
## 14378 new_sp_m1524 NA
## 14379 new_sp_m1524 NA
## 14380 new_sp_m1524 NA
## 14381 new_sp_m1524 NA
## 14382 new_sp_m1524 NA
## 14383 new_sp_m1524 NA
## 14384 new_sp_m1524 NA
## 14385 new_sp_m1524 NA
## 14386 new_sp_m1524 NA
## 14387 new_sp_m1524 NA
## 14388 new_sp_m1524 NA
## 14389 new_sp_m1524 NA
## 14390 new_sp_m1524 NA
## 14391 new_sp_m1524 NA
## 14392 new_sp_m1524 NA
## 14393 new_sp_m1524 NA
## 14394 new_sp_m1524 400
## 14395 new_sp_m1524 91
## 14396 new_sp_m1524 307
## 14397 new_sp_m1524 718
## 14398 new_sp_m1524 552
## 14399 new_sp_m1524 789
## 14400 new_sp_m1524 695
## 14401 new_sp_m1524 650
## 14402 new_sp_m1524 581
## 14403 new_sp_m1524 571
## 14404 new_sp_m1524 493
## 14405 new_sp_m1524 535
## 14406 new_sp_m1524 488
## 14407 new_sp_m1524 547
## 14408 new_sp_m1524 509
## 14409 new_sp_m1524 507
## 14410 new_sp_m1524 406
## 14411 new_sp_m1524 436
## 14412 new_sp_m1524 NA
## 14413 new_sp_m1524 NA
## 14414 new_sp_m1524 NA
## 14415 new_sp_m1524 NA
## 14416 new_sp_m1524 NA
## 14417 new_sp_m1524 NA
## 14418 new_sp_m1524 NA
## 14419 new_sp_m1524 NA
## 14420 new_sp_m1524 NA
## 14421 new_sp_m1524 NA
## 14422 new_sp_m1524 NA
## 14423 new_sp_m1524 NA
## 14424 new_sp_m1524 NA
## 14425 new_sp_m1524 NA
## 14426 new_sp_m1524 NA
## 14427 new_sp_m1524 NA
## 14428 new_sp_m1524 659
## 14429 new_sp_m1524 NA
## 14430 new_sp_m1524 NA
## 14431 new_sp_m1524 NA
## 14432 new_sp_m1524 NA
## 14433 new_sp_m1524 2175
## 14434 new_sp_m1524 NA
## 14435 new_sp_m1524 1013
## 14436 new_sp_m1524 1733
## 14437 new_sp_m1524 1498
## 14438 new_sp_m1524 1240
## 14439 new_sp_m1524 945
## 14440 new_sp_m1524 1235
## 14441 new_sp_m1524 1120
## 14442 new_sp_m1524 1057
## 14443 new_sp_m1524 NA
## 14444 new_sp_m1524 1033
## 14445 new_sp_m1524 1003
## 14446 new_sp_m1524 NA
## 14447 new_sp_m1524 NA
## 14448 new_sp_m1524 NA
## 14449 new_sp_m1524 NA
## 14450 new_sp_m1524 NA
## 14451 new_sp_m1524 NA
## 14452 new_sp_m1524 NA
## 14453 new_sp_m1524 NA
## 14454 new_sp_m1524 NA
## 14455 new_sp_m1524 NA
## 14456 new_sp_m1524 NA
## 14457 new_sp_m1524 NA
## 14458 new_sp_m1524 NA
## 14459 new_sp_m1524 NA
## 14460 new_sp_m1524 NA
## 14461 new_sp_m1524 NA
## 14462 new_sp_m1524 NA
## 14463 new_sp_m1524 NA
## 14464 new_sp_m1524 NA
## 14465 new_sp_m1524 NA
## 14466 new_sp_m1524 NA
## 14467 new_sp_m1524 NA
## 14468 new_sp_m1524 NA
## 14469 new_sp_m1524 600
## 14470 new_sp_m1524 874
## 14471 new_sp_m1524 833
## 14472 new_sp_m1524 837
## 14473 new_sp_m1524 736
## 14474 new_sp_m1524 500
## 14475 new_sp_m1524 614
## 14476 new_sp_m1524 578
## 14477 new_sp_m1524 710
## 14478 new_sp_m1524 784
## 14479 new_sp_m1524 783
## 14480 new_sp_m1524 NA
## 14481 new_sp_m2534 NA
## 14482 new_sp_m2534 NA
## 14483 new_sp_m2534 NA
## 14484 new_sp_m2534 NA
## 14485 new_sp_m2534 NA
## 14486 new_sp_m2534 NA
## 14487 new_sp_m2534 NA
## 14488 new_sp_m2534 NA
## 14489 new_sp_m2534 NA
## 14490 new_sp_m2534 NA
## 14491 new_sp_m2534 NA
## 14492 new_sp_m2534 NA
## 14493 new_sp_m2534 NA
## 14494 new_sp_m2534 NA
## 14495 new_sp_m2534 NA
## 14496 new_sp_m2534 NA
## 14497 new_sp_m2534 NA
## 14498 new_sp_m2534 6
## 14499 new_sp_m2534 128
## 14500 new_sp_m2534 55
## 14501 new_sp_m2534 183
## 14502 new_sp_m2534 349
## 14503 new_sp_m2534 481
## 14504 new_sp_m2534 436
## 14505 new_sp_m2534 568
## 14506 new_sp_m2534 560
## 14507 new_sp_m2534 791
## 14508 new_sp_m2534 840
## 14509 new_sp_m2534 773
## 14510 new_sp_m2534 705
## 14511 new_sp_m2534 819
## 14512 new_sp_m2534 895
## 14513 new_sp_m2534 801
## 14514 new_sp_m2534 NA
## 14515 new_sp_m2534 NA
## 14516 new_sp_m2534 NA
## 14517 new_sp_m2534 NA
## 14518 new_sp_m2534 NA
## 14519 new_sp_m2534 NA
## 14520 new_sp_m2534 NA
## 14521 new_sp_m2534 NA
## 14522 new_sp_m2534 NA
## 14523 new_sp_m2534 NA
## 14524 new_sp_m2534 NA
## 14525 new_sp_m2534 NA
## 14526 new_sp_m2534 NA
## 14527 new_sp_m2534 NA
## 14528 new_sp_m2534 NA
## 14529 new_sp_m2534 NA
## 14530 new_sp_m2534 0
## 14531 new_sp_m2534 NA
## 14532 new_sp_m2534 43
## 14533 new_sp_m2534 21
## 14534 new_sp_m2534 23
## 14535 new_sp_m2534 21
## 14536 new_sp_m2534 18
## 14537 new_sp_m2534 27
## 14538 new_sp_m2534 19
## 14539 new_sp_m2534 19
## 14540 new_sp_m2534 21
## 14541 new_sp_m2534 19
## 14542 new_sp_m2534 13
## 14543 new_sp_m2534 26
## 14544 new_sp_m2534 21
## 14545 new_sp_m2534 17
## 14546 new_sp_m2534 26
## 14547 new_sp_m2534 34
## 14548 new_sp_m2534 NA
## 14549 new_sp_m2534 NA
## 14550 new_sp_m2534 NA
## 14551 new_sp_m2534 NA
## 14552 new_sp_m2534 NA
## 14553 new_sp_m2534 NA
## 14554 new_sp_m2534 NA
## 14555 new_sp_m2534 NA
## 14556 new_sp_m2534 NA
## 14557 new_sp_m2534 NA
## 14558 new_sp_m2534 NA
## 14559 new_sp_m2534 NA
## 14560 new_sp_m2534 NA
## 14561 new_sp_m2534 NA
## 14562 new_sp_m2534 NA
## 14563 new_sp_m2534 NA
## 14564 new_sp_m2534 NA
## 14565 new_sp_m2534 NA
## 14566 new_sp_m2534 1982
## 14567 new_sp_m2534 NA
## 14568 new_sp_m2534 1344
## 14569 new_sp_m2534 1516
## 14570 new_sp_m2534 1614
## 14571 new_sp_m2534 1580
## 14572 new_sp_m2534 1633
## 14573 new_sp_m2534 1694
## 14574 new_sp_m2534 1841
## 14575 new_sp_m2534 1573
## 14576 new_sp_m2534 1749
## 14577 new_sp_m2534 1786
## 14578 new_sp_m2534 1827
## 14579 new_sp_m2534 1669
## 14580 new_sp_m2534 1513
## 14581 new_sp_m2534 1467
## 14582 new_sp_m2534 NA
## 14583 new_sp_m2534 NA
## 14584 new_sp_m2534 NA
## 14585 new_sp_m2534 NA
## 14586 new_sp_m2534 NA
## 14587 new_sp_m2534 NA
## 14588 new_sp_m2534 NA
## 14589 new_sp_m2534 NA
## 14590 new_sp_m2534 NA
## 14591 new_sp_m2534 NA
## 14592 new_sp_m2534 NA
## 14593 new_sp_m2534 NA
## 14594 new_sp_m2534 NA
## 14595 new_sp_m2534 NA
## 14596 new_sp_m2534 NA
## 14597 new_sp_m2534 NA
## 14598 new_sp_m2534 NA
## 14599 new_sp_m2534 NA
## 14600 new_sp_m2534 0
## 14601 new_sp_m2534 NA
## 14602 new_sp_m2534 NA
## 14603 new_sp_m2534 NA
## 14604 new_sp_m2534 NA
## 14605 new_sp_m2534 NA
## 14606 new_sp_m2534 NA
## 14607 new_sp_m2534 NA
## 14608 new_sp_m2534 NA
## 14609 new_sp_m2534 NA
## 14610 new_sp_m2534 NA
## 14611 new_sp_m2534 0
## 14612 new_sp_m2534 0
## 14613 new_sp_m2534 0
## 14614 new_sp_m2534 NA
## 14615 new_sp_m2534 NA
## 14616 new_sp_m2534 NA
## 14617 new_sp_m2534 NA
## 14618 new_sp_m2534 NA
## 14619 new_sp_m2534 NA
## 14620 new_sp_m2534 NA
## 14621 new_sp_m2534 NA
## 14622 new_sp_m2534 NA
## 14623 new_sp_m2534 NA
## 14624 new_sp_m2534 NA
## 14625 new_sp_m2534 NA
## 14626 new_sp_m2534 NA
## 14627 new_sp_m2534 NA
## 14628 new_sp_m2534 NA
## 14629 new_sp_m2534 NA
## 14630 new_sp_m2534 NA
## 14631 new_sp_m2534 NA
## 14632 new_sp_m2534 NA
## 14633 new_sp_m2534 0
## 14634 new_sp_m2534 1
## 14635 new_sp_m2534 0
## 14636 new_sp_m2534 0
## 14637 new_sp_m2534 1
## 14638 new_sp_m2534 NA
## 14639 new_sp_m2534 0
## 14640 new_sp_m2534 0
## 14641 new_sp_m2534 0
## 14642 new_sp_m2534 1
## 14643 new_sp_m2534 1
## 14644 new_sp_m2534 NA
## 14645 new_sp_m2534 0
## 14646 new_sp_m2534 0
## 14647 new_sp_m2534 0
## 14648 new_sp_m2534 0
## 14649 new_sp_m2534 0
## 14650 new_sp_m2534 NA
## 14651 new_sp_m2534 NA
## 14652 new_sp_m2534 NA
## 14653 new_sp_m2534 NA
## 14654 new_sp_m2534 NA
## 14655 new_sp_m2534 NA
## 14656 new_sp_m2534 NA
## 14657 new_sp_m2534 NA
## 14658 new_sp_m2534 NA
## 14659 new_sp_m2534 NA
## 14660 new_sp_m2534 NA
## 14661 new_sp_m2534 NA
## 14662 new_sp_m2534 NA
## 14663 new_sp_m2534 NA
## 14664 new_sp_m2534 NA
## 14665 new_sp_m2534 NA
## 14666 new_sp_m2534 562
## 14667 new_sp_m2534 926
## 14668 new_sp_m2534 1026
## 14669 new_sp_m2534 950
## 14670 new_sp_m2534 1237
## 14671 new_sp_m2534 1003
## 14672 new_sp_m2534 752
## 14673 new_sp_m2534 2292
## 14674 new_sp_m2534 2598
## 14675 new_sp_m2534 2659
## 14676 new_sp_m2534 2797
## 14677 new_sp_m2534 3049
## 14678 new_sp_m2534 3197
## 14679 new_sp_m2534 3493
## 14680 new_sp_m2534 3600
## 14681 new_sp_m2534 3584
## 14682 new_sp_m2534 3792
## 14683 new_sp_m2534 3627
## 14684 new_sp_m2534 NA
## 14685 new_sp_m2534 NA
## 14686 new_sp_m2534 NA
## 14687 new_sp_m2534 NA
## 14688 new_sp_m2534 NA
## 14689 new_sp_m2534 NA
## 14690 new_sp_m2534 NA
## 14691 new_sp_m2534 NA
## 14692 new_sp_m2534 NA
## 14693 new_sp_m2534 NA
## 14694 new_sp_m2534 NA
## 14695 new_sp_m2534 NA
## 14696 new_sp_m2534 NA
## 14697 new_sp_m2534 NA
## 14698 new_sp_m2534 NA
## 14699 new_sp_m2534 NA
## 14700 new_sp_m2534 NA
## 14701 new_sp_m2534 NA
## 14702 new_sp_m2534 NA
## 14703 new_sp_m2534 NA
## 14704 new_sp_m2534 NA
## 14705 new_sp_m2534 NA
## 14706 new_sp_m2534 NA
## 14707 new_sp_m2534 NA
## 14708 new_sp_m2534 NA
## 14709 new_sp_m2534 0
## 14710 new_sp_m2534 NA
## 14711 new_sp_m2534 NA
## 14712 new_sp_m2534 NA
## 14713 new_sp_m2534 NA
## 14714 new_sp_m2534 NA
## 14715 new_sp_m2534 0
## 14716 new_sp_m2534 0
## 14717 new_sp_m2534 0
## 14718 new_sp_m2534 NA
## 14719 new_sp_m2534 NA
## 14720 new_sp_m2534 NA
## 14721 new_sp_m2534 NA
## 14722 new_sp_m2534 NA
## 14723 new_sp_m2534 NA
## 14724 new_sp_m2534 NA
## 14725 new_sp_m2534 NA
## 14726 new_sp_m2534 NA
## 14727 new_sp_m2534 NA
## 14728 new_sp_m2534 NA
## 14729 new_sp_m2534 NA
## 14730 new_sp_m2534 NA
## 14731 new_sp_m2534 NA
## 14732 new_sp_m2534 NA
## 14733 new_sp_m2534 NA
## 14734 new_sp_m2534 NA
## 14735 new_sp_m2534 0
## 14736 new_sp_m2534 NA
## 14737 new_sp_m2534 NA
## 14738 new_sp_m2534 NA
## 14739 new_sp_m2534 0
## 14740 new_sp_m2534 NA
## 14741 new_sp_m2534 1
## 14742 new_sp_m2534 1
## 14743 new_sp_m2534 NA
## 14744 new_sp_m2534 NA
## 14745 new_sp_m2534 NA
## 14746 new_sp_m2534 0
## 14747 new_sp_m2534 0
## 14748 new_sp_m2534 1
## 14749 new_sp_m2534 2
## 14750 new_sp_m2534 1
## 14751 new_sp_m2534 0
## 14752 new_sp_m2534 NA
## 14753 new_sp_m2534 NA
## 14754 new_sp_m2534 NA
## 14755 new_sp_m2534 NA
## 14756 new_sp_m2534 NA
## 14757 new_sp_m2534 NA
## 14758 new_sp_m2534 NA
## 14759 new_sp_m2534 NA
## 14760 new_sp_m2534 NA
## 14761 new_sp_m2534 NA
## 14762 new_sp_m2534 NA
## 14763 new_sp_m2534 NA
## 14764 new_sp_m2534 NA
## 14765 new_sp_m2534 NA
## 14766 new_sp_m2534 NA
## 14767 new_sp_m2534 NA
## 14768 new_sp_m2534 NA
## 14769 new_sp_m2534 535
## 14770 new_sp_m2534 600
## 14771 new_sp_m2534 571
## 14772 new_sp_m2534 546
## 14773 new_sp_m2534 594
## 14774 new_sp_m2534 611
## 14775 new_sp_m2534 658
## 14776 new_sp_m2534 565
## 14777 new_sp_m2534 543
## 14778 new_sp_m2534 530
## 14779 new_sp_m2534 484
## 14780 new_sp_m2534 623
## 14781 new_sp_m2534 611
## 14782 new_sp_m2534 483
## 14783 new_sp_m2534 491
## 14784 new_sp_m2534 657
## 14785 new_sp_m2534 484
## 14786 new_sp_m2534 NA
## 14787 new_sp_m2534 NA
## 14788 new_sp_m2534 NA
## 14789 new_sp_m2534 NA
## 14790 new_sp_m2534 NA
## 14791 new_sp_m2534 NA
## 14792 new_sp_m2534 NA
## 14793 new_sp_m2534 NA
## 14794 new_sp_m2534 NA
## 14795 new_sp_m2534 NA
## 14796 new_sp_m2534 NA
## 14797 new_sp_m2534 NA
## 14798 new_sp_m2534 NA
## 14799 new_sp_m2534 NA
## 14800 new_sp_m2534 NA
## 14801 new_sp_m2534 NA
## 14802 new_sp_m2534 16
## 14803 new_sp_m2534 100
## 14804 new_sp_m2534 59
## 14805 new_sp_m2534 90
## 14806 new_sp_m2534 88
## 14807 new_sp_m2534 130
## 14808 new_sp_m2534 120
## 14809 new_sp_m2534 63
## 14810 new_sp_m2534 98
## 14811 new_sp_m2534 72
## 14812 new_sp_m2534 104
## 14813 new_sp_m2534 116
## 14814 new_sp_m2534 87
## 14815 new_sp_m2534 103
## 14816 new_sp_m2534 76
## 14817 new_sp_m2534 75
## 14818 new_sp_m2534 65
## 14819 new_sp_m2534 67
## 14820 new_sp_m2534 NA
## 14821 new_sp_m2534 NA
## 14822 new_sp_m2534 NA
## 14823 new_sp_m2534 NA
## 14824 new_sp_m2534 NA
## 14825 new_sp_m2534 NA
## 14826 new_sp_m2534 NA
## 14827 new_sp_m2534 NA
## 14828 new_sp_m2534 NA
## 14829 new_sp_m2534 NA
## 14830 new_sp_m2534 NA
## 14831 new_sp_m2534 NA
## 14832 new_sp_m2534 NA
## 14833 new_sp_m2534 NA
## 14834 new_sp_m2534 NA
## 14835 new_sp_m2534 NA
## 14836 new_sp_m2534 NA
## 14837 new_sp_m2534 NA
## 14838 new_sp_m2534 NA
## 14839 new_sp_m2534 NA
## 14840 new_sp_m2534 NA
## 14841 new_sp_m2534 NA
## 14842 new_sp_m2534 NA
## 14843 new_sp_m2534 NA
## 14844 new_sp_m2534 NA
## 14845 new_sp_m2534 NA
## 14846 new_sp_m2534 NA
## 14847 new_sp_m2534 NA
## 14848 new_sp_m2534 NA
## 14849 new_sp_m2534 NA
## 14850 new_sp_m2534 NA
## 14851 new_sp_m2534 NA
## 14852 new_sp_m2534 NA
## 14853 new_sp_m2534 NA
## 14854 new_sp_m2534 NA
## 14855 new_sp_m2534 NA
## 14856 new_sp_m2534 NA
## 14857 new_sp_m2534 NA
## 14858 new_sp_m2534 NA
## 14859 new_sp_m2534 NA
## 14860 new_sp_m2534 NA
## 14861 new_sp_m2534 NA
## 14862 new_sp_m2534 NA
## 14863 new_sp_m2534 NA
## 14864 new_sp_m2534 NA
## 14865 new_sp_m2534 NA
## 14866 new_sp_m2534 NA
## 14867 new_sp_m2534 NA
## 14868 new_sp_m2534 NA
## 14869 new_sp_m2534 NA
## 14870 new_sp_m2534 NA
## 14871 new_sp_m2534 NA
## 14872 new_sp_m2534 24
## 14873 new_sp_m2534 22
## 14874 new_sp_m2534 40
## 14875 new_sp_m2534 35
## 14876 new_sp_m2534 20
## 14877 new_sp_m2534 20
## 14878 new_sp_m2534 10
## 14879 new_sp_m2534 16
## 14880 new_sp_m2534 27
## 14881 new_sp_m2534 35
## 14882 new_sp_m2534 33
## 14883 new_sp_m2534 33
## 14884 new_sp_m2534 37
## 14885 new_sp_m2534 33
## 14886 new_sp_m2534 44
## 14887 new_sp_m2534 40
## 14888 new_sp_m2534 NA
## 14889 new_sp_m2534 NA
## 14890 new_sp_m2534 NA
## 14891 new_sp_m2534 NA
## 14892 new_sp_m2534 NA
## 14893 new_sp_m2534 NA
## 14894 new_sp_m2534 NA
## 14895 new_sp_m2534 NA
## 14896 new_sp_m2534 NA
## 14897 new_sp_m2534 NA
## 14898 new_sp_m2534 NA
## 14899 new_sp_m2534 NA
## 14900 new_sp_m2534 NA
## 14901 new_sp_m2534 NA
## 14902 new_sp_m2534 NA
## 14903 new_sp_m2534 NA
## 14904 new_sp_m2534 95
## 14905 new_sp_m2534 NA
## 14906 new_sp_m2534 117
## 14907 new_sp_m2534 NA
## 14908 new_sp_m2534 40
## 14909 new_sp_m2534 30
## 14910 new_sp_m2534 27
## 14911 new_sp_m2534 14
## 14912 new_sp_m2534 31
## 14913 new_sp_m2534 19
## 14914 new_sp_m2534 23
## 14915 new_sp_m2534 25
## 14916 new_sp_m2534 15
## 14917 new_sp_m2534 NA
## 14918 new_sp_m2534 10
## 14919 new_sp_m2534 4
## 14920 new_sp_m2534 11
## 14921 new_sp_m2534 8
## 14922 new_sp_m2534 NA
## 14923 new_sp_m2534 NA
## 14924 new_sp_m2534 NA
## 14925 new_sp_m2534 NA
## 14926 new_sp_m2534 NA
## 14927 new_sp_m2534 NA
## 14928 new_sp_m2534 NA
## 14929 new_sp_m2534 NA
## 14930 new_sp_m2534 NA
## 14931 new_sp_m2534 NA
## 14932 new_sp_m2534 NA
## 14933 new_sp_m2534 NA
## 14934 new_sp_m2534 NA
## 14935 new_sp_m2534 NA
## 14936 new_sp_m2534 NA
## 14937 new_sp_m2534 NA
## 14938 new_sp_m2534 29
## 14939 new_sp_m2534 302
## 14940 new_sp_m2534 244
## 14941 new_sp_m2534 47
## 14942 new_sp_m2534 46
## 14943 new_sp_m2534 24
## 14944 new_sp_m2534 3
## 14945 new_sp_m2534 433
## 14946 new_sp_m2534 258
## 14947 new_sp_m2534 311
## 14948 new_sp_m2534 297
## 14949 new_sp_m2534 362
## 14950 new_sp_m2534 NA
## 14951 new_sp_m2534 NA
## 14952 new_sp_m2534 190
## 14953 new_sp_m2534 371
## 14954 new_sp_m2534 NA
## 14955 new_sp_m2534 223
## 14956 new_sp_m2534 NA
## 14957 new_sp_m2534 NA
## 14958 new_sp_m2534 NA
## 14959 new_sp_m2534 NA
## 14960 new_sp_m2534 NA
## 14961 new_sp_m2534 NA
## 14962 new_sp_m2534 NA
## 14963 new_sp_m2534 NA
## 14964 new_sp_m2534 NA
## 14965 new_sp_m2534 NA
## 14966 new_sp_m2534 NA
## 14967 new_sp_m2534 NA
## 14968 new_sp_m2534 NA
## 14969 new_sp_m2534 NA
## 14970 new_sp_m2534 NA
## 14971 new_sp_m2534 NA
## 14972 new_sp_m2534 5
## 14973 new_sp_m2534 4
## 14974 new_sp_m2534 14
## 14975 new_sp_m2534 2
## 14976 new_sp_m2534 10
## 14977 new_sp_m2534 7
## 14978 new_sp_m2534 NA
## 14979 new_sp_m2534 2
## 14980 new_sp_m2534 5
## 14981 new_sp_m2534 6
## 14982 new_sp_m2534 NA
## 14983 new_sp_m2534 NA
## 14984 new_sp_m2534 3
## 14985 new_sp_m2534 6
## 14986 new_sp_m2534 7
## 14987 new_sp_m2534 3
## 14988 new_sp_m2534 3
## 14989 new_sp_m2534 1
## 14990 new_sp_m2534 NA
## 14991 new_sp_m2534 NA
## 14992 new_sp_m2534 NA
## 14993 new_sp_m2534 NA
## 14994 new_sp_m2534 NA
## 14995 new_sp_m2534 NA
## 14996 new_sp_m2534 NA
## 14997 new_sp_m2534 NA
## 14998 new_sp_m2534 NA
## 14999 new_sp_m2534 NA
## 15000 new_sp_m2534 NA
## 15001 new_sp_m2534 NA
## 15002 new_sp_m2534 NA
## 15003 new_sp_m2534 NA
## 15004 new_sp_m2534 NA
## 15005 new_sp_m2534 NA
## 15006 new_sp_m2534 1
## 15007 new_sp_m2534 25
## 15008 new_sp_m2534 32
## 15009 new_sp_m2534 40
## 15010 new_sp_m2534 19
## 15011 new_sp_m2534 3
## 15012 new_sp_m2534 2
## 15013 new_sp_m2534 1
## 15014 new_sp_m2534 2
## 15015 new_sp_m2534 0
## 15016 new_sp_m2534 0
## 15017 new_sp_m2534 25
## 15018 new_sp_m2534 26
## 15019 new_sp_m2534 48
## 15020 new_sp_m2534 37
## 15021 new_sp_m2534 16
## 15022 new_sp_m2534 19
## 15023 new_sp_m2534 28
## 15024 new_sp_m2534 NA
## 15025 new_sp_m2534 NA
## 15026 new_sp_m2534 NA
## 15027 new_sp_m2534 NA
## 15028 new_sp_m2534 NA
## 15029 new_sp_m2534 NA
## 15030 new_sp_m2534 NA
## 15031 new_sp_m2534 NA
## 15032 new_sp_m2534 NA
## 15033 new_sp_m2534 NA
## 15034 new_sp_m2534 NA
## 15035 new_sp_m2534 NA
## 15036 new_sp_m2534 NA
## 15037 new_sp_m2534 NA
## 15038 new_sp_m2534 NA
## 15039 new_sp_m2534 NA
## 15040 new_sp_m2534 983
## 15041 new_sp_m2534 1322
## 15042 new_sp_m2534 5013
## 15043 new_sp_m2534 5988
## 15044 new_sp_m2534 5777
## 15045 new_sp_m2534 5643
## 15046 new_sp_m2534 5834
## 15047 new_sp_m2534 6288
## 15048 new_sp_m2534 7275
## 15049 new_sp_m2534 8281
## 15050 new_sp_m2534 10443
## 15051 new_sp_m2534 12166
## 15052 new_sp_m2534 12442
## 15053 new_sp_m2534 12926
## 15054 new_sp_m2534 NA
## 15055 new_sp_m2534 12535
## 15056 new_sp_m2534 11616
## 15057 new_sp_m2534 12021
## 15058 new_sp_m2534 NA
## 15059 new_sp_m2534 NA
## 15060 new_sp_m2534 NA
## 15061 new_sp_m2534 NA
## 15062 new_sp_m2534 NA
## 15063 new_sp_m2534 NA
## 15064 new_sp_m2534 NA
## 15065 new_sp_m2534 NA
## 15066 new_sp_m2534 NA
## 15067 new_sp_m2534 NA
## 15068 new_sp_m2534 NA
## 15069 new_sp_m2534 NA
## 15070 new_sp_m2534 NA
## 15071 new_sp_m2534 NA
## 15072 new_sp_m2534 NA
## 15073 new_sp_m2534 NA
## 15074 new_sp_m2534 NA
## 15075 new_sp_m2534 1
## 15076 new_sp_m2534 NA
## 15077 new_sp_m2534 NA
## 15078 new_sp_m2534 NA
## 15079 new_sp_m2534 0
## 15080 new_sp_m2534 1
## 15081 new_sp_m2534 NA
## 15082 new_sp_m2534 NA
## 15083 new_sp_m2534 2
## 15084 new_sp_m2534 NA
## 15085 new_sp_m2534 2
## 15086 new_sp_m2534 0
## 15087 new_sp_m2534 1
## 15088 new_sp_m2534 0
## 15089 new_sp_m2534 0
## 15090 new_sp_m2534 0
## 15091 new_sp_m2534 0
## 15092 new_sp_m2534 NA
## 15093 new_sp_m2534 NA
## 15094 new_sp_m2534 NA
## 15095 new_sp_m2534 NA
## 15096 new_sp_m2534 NA
## 15097 new_sp_m2534 NA
## 15098 new_sp_m2534 NA
## 15099 new_sp_m2534 NA
## 15100 new_sp_m2534 NA
## 15101 new_sp_m2534 NA
## 15102 new_sp_m2534 NA
## 15103 new_sp_m2534 NA
## 15104 new_sp_m2534 NA
## 15105 new_sp_m2534 NA
## 15106 new_sp_m2534 NA
## 15107 new_sp_m2534 NA
## 15108 new_sp_m2534 NA
## 15109 new_sp_m2534 NA
## 15110 new_sp_m2534 NA
## 15111 new_sp_m2534 NA
## 15112 new_sp_m2534 NA
## 15113 new_sp_m2534 NA
## 15114 new_sp_m2534 NA
## 15115 new_sp_m2534 133
## 15116 new_sp_m2534 134
## 15117 new_sp_m2534 170
## 15118 new_sp_m2534 180
## 15119 new_sp_m2534 134
## 15120 new_sp_m2534 142
## 15121 new_sp_m2534 149
## 15122 new_sp_m2534 173
## 15123 new_sp_m2534 173
## 15124 new_sp_m2534 156
## 15125 new_sp_m2534 174
## 15126 new_sp_m2534 NA
## 15127 new_sp_m2534 NA
## 15128 new_sp_m2534 NA
## 15129 new_sp_m2534 NA
## 15130 new_sp_m2534 NA
## 15131 new_sp_m2534 NA
## 15132 new_sp_m2534 NA
## 15133 new_sp_m2534 NA
## 15134 new_sp_m2534 NA
## 15135 new_sp_m2534 NA
## 15136 new_sp_m2534 NA
## 15137 new_sp_m2534 NA
## 15138 new_sp_m2534 NA
## 15139 new_sp_m2534 NA
## 15140 new_sp_m2534 NA
## 15141 new_sp_m2534 NA
## 15142 new_sp_m2534 49
## 15143 new_sp_m2534 43
## 15144 new_sp_m2534 45
## 15145 new_sp_m2534 50
## 15146 new_sp_m2534 40
## 15147 new_sp_m2534 57
## 15148 new_sp_m2534 40
## 15149 new_sp_m2534 56
## 15150 new_sp_m2534 33
## 15151 new_sp_m2534 55
## 15152 new_sp_m2534 50
## 15153 new_sp_m2534 52
## 15154 new_sp_m2534 55
## 15155 new_sp_m2534 40
## 15156 new_sp_m2534 33
## 15157 new_sp_m2534 39
## 15158 new_sp_m2534 50
## 15159 new_sp_m2534 33
## 15160 new_sp_m2534 NA
## 15161 new_sp_m2534 NA
## 15162 new_sp_m2534 NA
## 15163 new_sp_m2534 NA
## 15164 new_sp_m2534 NA
## 15165 new_sp_m2534 NA
## 15166 new_sp_m2534 NA
## 15167 new_sp_m2534 NA
## 15168 new_sp_m2534 NA
## 15169 new_sp_m2534 NA
## 15170 new_sp_m2534 NA
## 15171 new_sp_m2534 NA
## 15172 new_sp_m2534 NA
## 15173 new_sp_m2534 NA
## 15174 new_sp_m2534 NA
## 15175 new_sp_m2534 NA
## 15176 new_sp_m2534 2
## 15177 new_sp_m2534 2
## 15178 new_sp_m2534 6
## 15179 new_sp_m2534 NA
## 15180 new_sp_m2534 NA
## 15181 new_sp_m2534 7
## 15182 new_sp_m2534 5
## 15183 new_sp_m2534 5
## 15184 new_sp_m2534 8
## 15185 new_sp_m2534 6
## 15186 new_sp_m2534 8
## 15187 new_sp_m2534 4
## 15188 new_sp_m2534 8
## 15189 new_sp_m2534 12
## 15190 new_sp_m2534 9
## 15191 new_sp_m2534 16
## 15192 new_sp_m2534 14
## 15193 new_sp_m2534 7
## 15194 new_sp_m2534 NA
## 15195 new_sp_m2534 NA
## 15196 new_sp_m2534 NA
## 15197 new_sp_m2534 NA
## 15198 new_sp_m2534 NA
## 15199 new_sp_m2534 NA
## 15200 new_sp_m2534 NA
## 15201 new_sp_m2534 NA
## 15202 new_sp_m2534 NA
## 15203 new_sp_m2534 NA
## 15204 new_sp_m2534 NA
## 15205 new_sp_m2534 NA
## 15206 new_sp_m2534 NA
## 15207 new_sp_m2534 NA
## 15208 new_sp_m2534 NA
## 15209 new_sp_m2534 NA
## 15210 new_sp_m2534 352
## 15211 new_sp_m2534 348
## 15212 new_sp_m2534 376
## 15213 new_sp_m2534 367
## 15214 new_sp_m2534 444
## 15215 new_sp_m2534 428
## 15216 new_sp_m2534 429
## 15217 new_sp_m2534 489
## 15218 new_sp_m2534 504
## 15219 new_sp_m2534 529
## 15220 new_sp_m2534 595
## 15221 new_sp_m2534 624
## 15222 new_sp_m2534 580
## 15223 new_sp_m2534 604
## 15224 new_sp_m2534 575
## 15225 new_sp_m2534 631
## 15226 new_sp_m2534 650
## 15227 new_sp_m2534 595
## 15228 new_sp_m2534 NA
## 15229 new_sp_m2534 NA
## 15230 new_sp_m2534 NA
## 15231 new_sp_m2534 NA
## 15232 new_sp_m2534 NA
## 15233 new_sp_m2534 NA
## 15234 new_sp_m2534 NA
## 15235 new_sp_m2534 NA
## 15236 new_sp_m2534 NA
## 15237 new_sp_m2534 NA
## 15238 new_sp_m2534 NA
## 15239 new_sp_m2534 NA
## 15240 new_sp_m2534 NA
## 15241 new_sp_m2534 NA
## 15242 new_sp_m2534 NA
## 15243 new_sp_m2534 NA
## 15244 new_sp_m2534 NA
## 15245 new_sp_m2534 NA
## 15246 new_sp_m2534 NA
## 15247 new_sp_m2534 NA
## 15248 new_sp_m2534 NA
## 15249 new_sp_m2534 NA
## 15250 new_sp_m2534 NA
## 15251 new_sp_m2534 NA
## 15252 new_sp_m2534 NA
## 15253 new_sp_m2534 0
## 15254 new_sp_m2534 NA
## 15255 new_sp_m2534 NA
## 15256 new_sp_m2534 NA
## 15257 new_sp_m2534 NA
## 15258 new_sp_m2534 NA
## 15259 new_sp_m2534 0
## 15260 new_sp_m2534 0
## 15261 new_sp_m2534 0
## 15262 new_sp_m2534 NA
## 15263 new_sp_m2534 NA
## 15264 new_sp_m2534 NA
## 15265 new_sp_m2534 NA
## 15266 new_sp_m2534 NA
## 15267 new_sp_m2534 NA
## 15268 new_sp_m2534 NA
## 15269 new_sp_m2534 NA
## 15270 new_sp_m2534 NA
## 15271 new_sp_m2534 NA
## 15272 new_sp_m2534 NA
## 15273 new_sp_m2534 NA
## 15274 new_sp_m2534 NA
## 15275 new_sp_m2534 NA
## 15276 new_sp_m2534 NA
## 15277 new_sp_m2534 NA
## 15278 new_sp_m2534 65
## 15279 new_sp_m2534 45
## 15280 new_sp_m2534 42
## 15281 new_sp_m2534 39
## 15282 new_sp_m2534 42
## 15283 new_sp_m2534 41
## 15284 new_sp_m2534 50
## 15285 new_sp_m2534 51
## 15286 new_sp_m2534 50
## 15287 new_sp_m2534 52
## 15288 new_sp_m2534 58
## 15289 new_sp_m2534 55
## 15290 new_sp_m2534 44
## 15291 new_sp_m2534 46
## 15292 new_sp_m2534 53
## 15293 new_sp_m2534 50
## 15294 new_sp_m2534 39
## 15295 new_sp_m2534 56
## 15296 new_sp_m2534 NA
## 15297 new_sp_m2534 NA
## 15298 new_sp_m2534 NA
## 15299 new_sp_m2534 NA
## 15300 new_sp_m2534 NA
## 15301 new_sp_m2534 NA
## 15302 new_sp_m2534 NA
## 15303 new_sp_m2534 NA
## 15304 new_sp_m2534 NA
## 15305 new_sp_m2534 NA
## 15306 new_sp_m2534 NA
## 15307 new_sp_m2534 NA
## 15308 new_sp_m2534 NA
## 15309 new_sp_m2534 NA
## 15310 new_sp_m2534 NA
## 15311 new_sp_m2534 NA
## 15312 new_sp_m2534 NA
## 15313 new_sp_m2534 887
## 15314 new_sp_m2534 792
## 15315 new_sp_m2534 885
## 15316 new_sp_m2534 862
## 15317 new_sp_m2534 797
## 15318 new_sp_m2534 761
## 15319 new_sp_m2534 787
## 15320 new_sp_m2534 742
## 15321 new_sp_m2534 750
## 15322 new_sp_m2534 725
## 15323 new_sp_m2534 699
## 15324 new_sp_m2534 604
## 15325 new_sp_m2534 734
## 15326 new_sp_m2534 703
## 15327 new_sp_m2534 622
## 15328 new_sp_m2534 685
## 15329 new_sp_m2534 672
## 15330 new_sp_m2534 NA
## 15331 new_sp_m2534 0
## 15332 new_sp_m2534 0
## 15333 new_sp_m2534 0
## 15334 new_sp_m2534 NA
## 15335 new_sp_m2534 NA
## 15336 new_sp_m2534 NA
## 15337 new_sp_m2534 NA
## 15338 new_sp_m2534 NA
## 15339 new_sp_m2534 NA
## 15340 new_sp_m2534 NA
## 15341 new_sp_m2534 NA
## 15342 new_sp_m2534 NA
## 15343 new_sp_m2534 NA
## 15344 new_sp_m2534 NA
## 15345 new_sp_m2534 NA
## 15346 new_sp_m2534 NA
## 15347 new_sp_m2534 NA
## 15348 new_sp_m2534 NA
## 15349 new_sp_m2534 NA
## 15350 new_sp_m2534 61
## 15351 new_sp_m2534 48
## 15352 new_sp_m2534 84
## 15353 new_sp_m2534 75
## 15354 new_sp_m2534 76
## 15355 new_sp_m2534 82
## 15356 new_sp_m2534 70
## 15357 new_sp_m2534 48
## 15358 new_sp_m2534 42
## 15359 new_sp_m2534 79
## 15360 new_sp_m2534 58
## 15361 new_sp_m2534 58
## 15362 new_sp_m2534 0
## 15363 new_sp_m2534 35
## 15364 new_sp_m2534 35
## 15365 new_sp_m2534 37
## 15366 new_sp_m2534 32
## 15367 new_sp_m2534 32
## 15368 new_sp_m2534 NA
## 15369 new_sp_m2534 NA
## 15370 new_sp_m2534 NA
## 15371 new_sp_m2534 NA
## 15372 new_sp_m2534 NA
## 15373 new_sp_m2534 NA
## 15374 new_sp_m2534 NA
## 15375 new_sp_m2534 NA
## 15376 new_sp_m2534 NA
## 15377 new_sp_m2534 NA
## 15378 new_sp_m2534 NA
## 15379 new_sp_m2534 NA
## 15380 new_sp_m2534 NA
## 15381 new_sp_m2534 NA
## 15382 new_sp_m2534 NA
## 15383 new_sp_m2534 NA
## 15384 new_sp_m2534 NA
## 15385 new_sp_m2534 NA
## 15386 new_sp_m2534 509
## 15387 new_sp_m2534 NA
## 15388 new_sp_m2534 526
## 15389 new_sp_m2534 605
## 15390 new_sp_m2534 539
## 15391 new_sp_m2534 595
## 15392 new_sp_m2534 552
## 15393 new_sp_m2534 490
## 15394 new_sp_m2534 563
## 15395 new_sp_m2534 577
## 15396 new_sp_m2534 535
## 15397 new_sp_m2534 528
## 15398 new_sp_m2534 539
## 15399 new_sp_m2534 590
## 15400 new_sp_m2534 464
## 15401 new_sp_m2534 394
## 15402 new_sp_m2534 NA
## 15403 new_sp_m2534 NA
## 15404 new_sp_m2534 NA
## 15405 new_sp_m2534 NA
## 15406 new_sp_m2534 NA
## 15407 new_sp_m2534 NA
## 15408 new_sp_m2534 NA
## 15409 new_sp_m2534 NA
## 15410 new_sp_m2534 NA
## 15411 new_sp_m2534 NA
## 15412 new_sp_m2534 NA
## 15413 new_sp_m2534 NA
## 15414 new_sp_m2534 NA
## 15415 new_sp_m2534 NA
## 15416 new_sp_m2534 NA
## 15417 new_sp_m2534 NA
## 15418 new_sp_m2534 NA
## 15419 new_sp_m2534 NA
## 15420 new_sp_m2534 NA
## 15421 new_sp_m2534 NA
## 15422 new_sp_m2534 5401
## 15423 new_sp_m2534 11568
## 15424 new_sp_m2534 5536
## 15425 new_sp_m2534 5890
## 15426 new_sp_m2534 5709
## 15427 new_sp_m2534 6321
## 15428 new_sp_m2534 6119
## 15429 new_sp_m2534 6098
## 15430 new_sp_m2534 5990
## 15431 new_sp_m2534 6173
## 15432 new_sp_m2534 6399
## 15433 new_sp_m2534 6381
## 15434 new_sp_m2534 6755
## 15435 new_sp_m2534 6811
## 15436 new_sp_m2534 NA
## 15437 new_sp_m2534 NA
## 15438 new_sp_m2534 NA
## 15439 new_sp_m2534 NA
## 15440 new_sp_m2534 NA
## 15441 new_sp_m2534 NA
## 15442 new_sp_m2534 NA
## 15443 new_sp_m2534 NA
## 15444 new_sp_m2534 NA
## 15445 new_sp_m2534 NA
## 15446 new_sp_m2534 NA
## 15447 new_sp_m2534 NA
## 15448 new_sp_m2534 NA
## 15449 new_sp_m2534 NA
## 15450 new_sp_m2534 NA
## 15451 new_sp_m2534 NA
## 15452 new_sp_m2534 NA
## 15453 new_sp_m2534 NA
## 15454 new_sp_m2534 NA
## 15455 new_sp_m2534 NA
## 15456 new_sp_m2534 NA
## 15457 new_sp_m2534 NA
## 15458 new_sp_m2534 NA
## 15459 new_sp_m2534 NA
## 15460 new_sp_m2534 NA
## 15461 new_sp_m2534 NA
## 15462 new_sp_m2534 NA
## 15463 new_sp_m2534 NA
## 15464 new_sp_m2534 NA
## 15465 new_sp_m2534 NA
## 15466 new_sp_m2534 NA
## 15467 new_sp_m2534 0
## 15468 new_sp_m2534 0
## 15469 new_sp_m2534 0
## 15470 new_sp_m2534 NA
## 15471 new_sp_m2534 NA
## 15472 new_sp_m2534 NA
## 15473 new_sp_m2534 NA
## 15474 new_sp_m2534 NA
## 15475 new_sp_m2534 NA
## 15476 new_sp_m2534 NA
## 15477 new_sp_m2534 NA
## 15478 new_sp_m2534 NA
## 15479 new_sp_m2534 NA
## 15480 new_sp_m2534 NA
## 15481 new_sp_m2534 NA
## 15482 new_sp_m2534 NA
## 15483 new_sp_m2534 NA
## 15484 new_sp_m2534 NA
## 15485 new_sp_m2534 NA
## 15486 new_sp_m2534 NA
## 15487 new_sp_m2534 NA
## 15488 new_sp_m2534 NA
## 15489 new_sp_m2534 NA
## 15490 new_sp_m2534 42
## 15491 new_sp_m2534 4
## 15492 new_sp_m2534 NA
## 15493 new_sp_m2534 15
## 15494 new_sp_m2534 25
## 15495 new_sp_m2534 13
## 15496 new_sp_m2534 19
## 15497 new_sp_m2534 11
## 15498 new_sp_m2534 10
## 15499 new_sp_m2534 10
## 15500 new_sp_m2534 5
## 15501 new_sp_m2534 15
## 15502 new_sp_m2534 11
## 15503 new_sp_m2534 13
## 15504 new_sp_m2534 NA
## 15505 new_sp_m2534 NA
## 15506 new_sp_m2534 NA
## 15507 new_sp_m2534 NA
## 15508 new_sp_m2534 NA
## 15509 new_sp_m2534 NA
## 15510 new_sp_m2534 NA
## 15511 new_sp_m2534 NA
## 15512 new_sp_m2534 NA
## 15513 new_sp_m2534 NA
## 15514 new_sp_m2534 NA
## 15515 new_sp_m2534 NA
## 15516 new_sp_m2534 NA
## 15517 new_sp_m2534 NA
## 15518 new_sp_m2534 NA
## 15519 new_sp_m2534 NA
## 15520 new_sp_m2534 NA
## 15521 new_sp_m2534 NA
## 15522 new_sp_m2534 NA
## 15523 new_sp_m2534 NA
## 15524 new_sp_m2534 NA
## 15525 new_sp_m2534 16
## 15526 new_sp_m2534 20
## 15527 new_sp_m2534 86
## 15528 new_sp_m2534 169
## 15529 new_sp_m2534 156
## 15530 new_sp_m2534 150
## 15531 new_sp_m2534 146
## 15532 new_sp_m2534 122
## 15533 new_sp_m2534 145
## 15534 new_sp_m2534 93
## 15535 new_sp_m2534 115
## 15536 new_sp_m2534 100
## 15537 new_sp_m2534 89
## 15538 new_sp_m2534 NA
## 15539 new_sp_m2534 NA
## 15540 new_sp_m2534 NA
## 15541 new_sp_m2534 NA
## 15542 new_sp_m2534 NA
## 15543 new_sp_m2534 NA
## 15544 new_sp_m2534 NA
## 15545 new_sp_m2534 NA
## 15546 new_sp_m2534 NA
## 15547 new_sp_m2534 NA
## 15548 new_sp_m2534 NA
## 15549 new_sp_m2534 NA
## 15550 new_sp_m2534 NA
## 15551 new_sp_m2534 NA
## 15552 new_sp_m2534 NA
## 15553 new_sp_m2534 NA
## 15554 new_sp_m2534 133
## 15555 new_sp_m2534 161
## 15556 new_sp_m2534 161
## 15557 new_sp_m2534 270
## 15558 new_sp_m2534 247
## 15559 new_sp_m2534 274
## 15560 new_sp_m2534 283
## 15561 new_sp_m2534 273
## 15562 new_sp_m2534 313
## 15563 new_sp_m2534 375
## 15564 new_sp_m2534 430
## 15565 new_sp_m2534 473
## 15566 new_sp_m2534 442
## 15567 new_sp_m2534 555
## 15568 new_sp_m2534 592
## 15569 new_sp_m2534 620
## 15570 new_sp_m2534 708
## 15571 new_sp_m2534 769
## 15572 new_sp_m2534 NA
## 15573 new_sp_m2534 NA
## 15574 new_sp_m2534 NA
## 15575 new_sp_m2534 NA
## 15576 new_sp_m2534 NA
## 15577 new_sp_m2534 NA
## 15578 new_sp_m2534 NA
## 15579 new_sp_m2534 NA
## 15580 new_sp_m2534 NA
## 15581 new_sp_m2534 NA
## 15582 new_sp_m2534 NA
## 15583 new_sp_m2534 NA
## 15584 new_sp_m2534 NA
## 15585 new_sp_m2534 NA
## 15586 new_sp_m2534 NA
## 15587 new_sp_m2534 NA
## 15588 new_sp_m2534 238
## 15589 new_sp_m2534 283
## 15590 new_sp_m2534 446
## 15591 new_sp_m2534 527
## 15592 new_sp_m2534 566
## 15593 new_sp_m2534 NA
## 15594 new_sp_m2534 559
## 15595 new_sp_m2534 470
## 15596 new_sp_m2534 572
## 15597 new_sp_m2534 674
## 15598 new_sp_m2534 591
## 15599 new_sp_m2534 600
## 15600 new_sp_m2534 637
## 15601 new_sp_m2534 684
## 15602 new_sp_m2534 717
## 15603 new_sp_m2534 773
## 15604 new_sp_m2534 743
## 15605 new_sp_m2534 801
## 15606 new_sp_m2534 NA
## 15607 new_sp_m2534 NA
## 15608 new_sp_m2534 NA
## 15609 new_sp_m2534 NA
## 15610 new_sp_m2534 NA
## 15611 new_sp_m2534 NA
## 15612 new_sp_m2534 NA
## 15613 new_sp_m2534 NA
## 15614 new_sp_m2534 NA
## 15615 new_sp_m2534 NA
## 15616 new_sp_m2534 NA
## 15617 new_sp_m2534 NA
## 15618 new_sp_m2534 NA
## 15619 new_sp_m2534 NA
## 15620 new_sp_m2534 NA
## 15621 new_sp_m2534 NA
## 15622 new_sp_m2534 NA
## 15623 new_sp_m2534 NA
## 15624 new_sp_m2534 16
## 15625 new_sp_m2534 14
## 15626 new_sp_m2534 NA
## 15627 new_sp_m2534 NA
## 15628 new_sp_m2534 15
## 15629 new_sp_m2534 29
## 15630 new_sp_m2534 32
## 15631 new_sp_m2534 33
## 15632 new_sp_m2534 23
## 15633 new_sp_m2534 22
## 15634 new_sp_m2534 30
## 15635 new_sp_m2534 33
## 15636 new_sp_m2534 40
## 15637 new_sp_m2534 NA
## 15638 new_sp_m2534 43
## 15639 new_sp_m2534 36
## 15640 new_sp_m2534 NA
## 15641 new_sp_m2534 NA
## 15642 new_sp_m2534 NA
## 15643 new_sp_m2534 NA
## 15644 new_sp_m2534 NA
## 15645 new_sp_m2534 NA
## 15646 new_sp_m2534 NA
## 15647 new_sp_m2534 NA
## 15648 new_sp_m2534 NA
## 15649 new_sp_m2534 NA
## 15650 new_sp_m2534 NA
## 15651 new_sp_m2534 NA
## 15652 new_sp_m2534 NA
## 15653 new_sp_m2534 NA
## 15654 new_sp_m2534 NA
## 15655 new_sp_m2534 NA
## 15656 new_sp_m2534 1244
## 15657 new_sp_m2534 1272
## 15658 new_sp_m2534 NA
## 15659 new_sp_m2534 1330
## 15660 new_sp_m2534 1389
## 15661 new_sp_m2534 1323
## 15662 new_sp_m2534 1302
## 15663 new_sp_m2534 1449
## 15664 new_sp_m2534 1514
## 15665 new_sp_m2534 1466
## 15666 new_sp_m2534 1600
## 15667 new_sp_m2534 1486
## 15668 new_sp_m2534 1526
## 15669 new_sp_m2534 1570
## 15670 new_sp_m2534 1522
## 15671 new_sp_m2534 1564
## 15672 new_sp_m2534 1469
## 15673 new_sp_m2534 1256
## 15674 new_sp_m2534 NA
## 15675 new_sp_m2534 NA
## 15676 new_sp_m2534 NA
## 15677 new_sp_m2534 NA
## 15678 new_sp_m2534 NA
## 15679 new_sp_m2534 NA
## 15680 new_sp_m2534 NA
## 15681 new_sp_m2534 NA
## 15682 new_sp_m2534 NA
## 15683 new_sp_m2534 NA
## 15684 new_sp_m2534 NA
## 15685 new_sp_m2534 NA
## 15686 new_sp_m2534 NA
## 15687 new_sp_m2534 NA
## 15688 new_sp_m2534 NA
## 15689 new_sp_m2534 NA
## 15690 new_sp_m2534 569
## 15691 new_sp_m2534 735
## 15692 new_sp_m2534 1011
## 15693 new_sp_m2534 1006
## 15694 new_sp_m2534 1595
## 15695 new_sp_m2534 842
## 15696 new_sp_m2534 1000
## 15697 new_sp_m2534 1335
## 15698 new_sp_m2534 2274
## 15699 new_sp_m2534 2147
## 15700 new_sp_m2534 2482
## 15701 new_sp_m2534 2550
## 15702 new_sp_m2534 2613
## 15703 new_sp_m2534 2861
## 15704 new_sp_m2534 2822
## 15705 new_sp_m2534 2750
## 15706 new_sp_m2534 2931
## 15707 new_sp_m2534 2900
## 15708 new_sp_m2534 NA
## 15709 new_sp_m2534 75
## 15710 new_sp_m2534 61
## 15711 new_sp_m2534 66
## 15712 new_sp_m2534 63
## 15713 new_sp_m2534 75
## 15714 new_sp_m2534 70
## 15715 new_sp_m2534 73
## 15716 new_sp_m2534 71
## 15717 new_sp_m2534 73
## 15718 new_sp_m2534 56
## 15719 new_sp_m2534 70
## 15720 new_sp_m2534 79
## 15721 new_sp_m2534 47
## 15722 new_sp_m2534 47
## 15723 new_sp_m2534 54
## 15724 new_sp_m2534 31
## 15725 new_sp_m2534 49
## 15726 new_sp_m2534 55
## 15727 new_sp_m2534 43
## 15728 new_sp_m2534 47
## 15729 new_sp_m2534 45
## 15730 new_sp_m2534 49
## 15731 new_sp_m2534 34
## 15732 new_sp_m2534 36
## 15733 new_sp_m2534 34
## 15734 new_sp_m2534 45
## 15735 new_sp_m2534 34
## 15736 new_sp_m2534 41
## 15737 new_sp_m2534 36
## 15738 new_sp_m2534 41
## 15739 new_sp_m2534 28
## 15740 new_sp_m2534 36
## 15741 new_sp_m2534 32
## 15742 new_sp_m2534 NA
## 15743 new_sp_m2534 NA
## 15744 new_sp_m2534 NA
## 15745 new_sp_m2534 NA
## 15746 new_sp_m2534 NA
## 15747 new_sp_m2534 NA
## 15748 new_sp_m2534 NA
## 15749 new_sp_m2534 NA
## 15750 new_sp_m2534 NA
## 15751 new_sp_m2534 NA
## 15752 new_sp_m2534 NA
## 15753 new_sp_m2534 NA
## 15754 new_sp_m2534 NA
## 15755 new_sp_m2534 NA
## 15756 new_sp_m2534 NA
## 15757 new_sp_m2534 NA
## 15758 new_sp_m2534 NA
## 15759 new_sp_m2534 NA
## 15760 new_sp_m2534 NA
## 15761 new_sp_m2534 0
## 15762 new_sp_m2534 0
## 15763 new_sp_m2534 3
## 15764 new_sp_m2534 1
## 15765 new_sp_m2534 NA
## 15766 new_sp_m2534 0
## 15767 new_sp_m2534 0
## 15768 new_sp_m2534 NA
## 15769 new_sp_m2534 0
## 15770 new_sp_m2534 0
## 15771 new_sp_m2534 NA
## 15772 new_sp_m2534 NA
## 15773 new_sp_m2534 0
## 15774 new_sp_m2534 0
## 15775 new_sp_m2534 2
## 15776 new_sp_m2534 NA
## 15777 new_sp_m2534 NA
## 15778 new_sp_m2534 NA
## 15779 new_sp_m2534 NA
## 15780 new_sp_m2534 NA
## 15781 new_sp_m2534 NA
## 15782 new_sp_m2534 NA
## 15783 new_sp_m2534 NA
## 15784 new_sp_m2534 NA
## 15785 new_sp_m2534 NA
## 15786 new_sp_m2534 NA
## 15787 new_sp_m2534 NA
## 15788 new_sp_m2534 NA
## 15789 new_sp_m2534 NA
## 15790 new_sp_m2534 NA
## 15791 new_sp_m2534 NA
## 15792 new_sp_m2534 356
## 15793 new_sp_m2534 385
## 15794 new_sp_m2534 403
## 15795 new_sp_m2534 482
## 15796 new_sp_m2534 529
## 15797 new_sp_m2534 NA
## 15798 new_sp_m2534 279
## 15799 new_sp_m2534 462
## 15800 new_sp_m2534 NA
## 15801 new_sp_m2534 694
## 15802 new_sp_m2534 1136
## 15803 new_sp_m2534 770
## 15804 new_sp_m2534 NA
## 15805 new_sp_m2534 643
## 15806 new_sp_m2534 850
## 15807 new_sp_m2534 633
## 15808 new_sp_m2534 576
## 15809 new_sp_m2534 799
## 15810 new_sp_m2534 NA
## 15811 new_sp_m2534 NA
## 15812 new_sp_m2534 NA
## 15813 new_sp_m2534 NA
## 15814 new_sp_m2534 NA
## 15815 new_sp_m2534 NA
## 15816 new_sp_m2534 NA
## 15817 new_sp_m2534 NA
## 15818 new_sp_m2534 NA
## 15819 new_sp_m2534 NA
## 15820 new_sp_m2534 NA
## 15821 new_sp_m2534 NA
## 15822 new_sp_m2534 NA
## 15823 new_sp_m2534 NA
## 15824 new_sp_m2534 NA
## 15825 new_sp_m2534 NA
## 15826 new_sp_m2534 NA
## 15827 new_sp_m2534 NA
## 15828 new_sp_m2534 NA
## 15829 new_sp_m2534 NA
## 15830 new_sp_m2534 414
## 15831 new_sp_m2534 NA
## 15832 new_sp_m2534 NA
## 15833 new_sp_m2534 1029
## 15834 new_sp_m2534 428
## 15835 new_sp_m2534 466
## 15836 new_sp_m2534 535
## 15837 new_sp_m2534 NA
## 15838 new_sp_m2534 NA
## 15839 new_sp_m2534 NA
## 15840 new_sp_m2534 808
## 15841 new_sp_m2534 850
## 15842 new_sp_m2534 951
## 15843 new_sp_m2534 842
## 15844 new_sp_m2534 NA
## 15845 new_sp_m2534 NA
## 15846 new_sp_m2534 NA
## 15847 new_sp_m2534 NA
## 15848 new_sp_m2534 NA
## 15849 new_sp_m2534 NA
## 15850 new_sp_m2534 NA
## 15851 new_sp_m2534 NA
## 15852 new_sp_m2534 NA
## 15853 new_sp_m2534 NA
## 15854 new_sp_m2534 NA
## 15855 new_sp_m2534 NA
## 15856 new_sp_m2534 NA
## 15857 new_sp_m2534 NA
## 15858 new_sp_m2534 NA
## 15859 new_sp_m2534 NA
## 15860 new_sp_m2534 182
## 15861 new_sp_m2534 201
## 15862 new_sp_m2534 182
## 15863 new_sp_m2534 NA
## 15864 new_sp_m2534 173
## 15865 new_sp_m2534 160
## 15866 new_sp_m2534 183
## 15867 new_sp_m2534 163
## 15868 new_sp_m2534 131
## 15869 new_sp_m2534 148
## 15870 new_sp_m2534 128
## 15871 new_sp_m2534 140
## 15872 new_sp_m2534 137
## 15873 new_sp_m2534 131
## 15874 new_sp_m2534 141
## 15875 new_sp_m2534 115
## 15876 new_sp_m2534 139
## 15877 new_sp_m2534 122
## 15878 new_sp_m2534 NA
## 15879 new_sp_m2534 NA
## 15880 new_sp_m2534 NA
## 15881 new_sp_m2534 NA
## 15882 new_sp_m2534 NA
## 15883 new_sp_m2534 NA
## 15884 new_sp_m2534 NA
## 15885 new_sp_m2534 NA
## 15886 new_sp_m2534 NA
## 15887 new_sp_m2534 NA
## 15888 new_sp_m2534 NA
## 15889 new_sp_m2534 NA
## 15890 new_sp_m2534 NA
## 15891 new_sp_m2534 NA
## 15892 new_sp_m2534 NA
## 15893 new_sp_m2534 NA
## 15894 new_sp_m2534 18306
## 15895 new_sp_m2534 24057
## 15896 new_sp_m2534 28247
## 15897 new_sp_m2534 30093
## 15898 new_sp_m2534 29328
## 15899 new_sp_m2534 29399
## 15900 new_sp_m2534 28520
## 15901 new_sp_m2534 25242
## 15902 new_sp_m2534 32760
## 15903 new_sp_m2534 43594
## 15904 new_sp_m2534 49558
## 15905 new_sp_m2534 48232
## 15906 new_sp_m2534 46374
## 15907 new_sp_m2534 44651
## 15908 new_sp_m2534 41439
## 15909 new_sp_m2534 38880
## 15910 new_sp_m2534 34597
## 15911 new_sp_m2534 28324
## 15912 new_sp_m2534 NA
## 15913 new_sp_m2534 NA
## 15914 new_sp_m2534 NA
## 15915 new_sp_m2534 NA
## 15916 new_sp_m2534 NA
## 15917 new_sp_m2534 NA
## 15918 new_sp_m2534 NA
## 15919 new_sp_m2534 NA
## 15920 new_sp_m2534 NA
## 15921 new_sp_m2534 NA
## 15922 new_sp_m2534 NA
## 15923 new_sp_m2534 NA
## 15924 new_sp_m2534 NA
## 15925 new_sp_m2534 NA
## 15926 new_sp_m2534 NA
## 15927 new_sp_m2534 NA
## 15928 new_sp_m2534 NA
## 15929 new_sp_m2534 NA
## 15930 new_sp_m2534 122
## 15931 new_sp_m2534 NA
## 15932 new_sp_m2534 121
## 15933 new_sp_m2534 102
## 15934 new_sp_m2534 99
## 15935 new_sp_m2534 105
## 15936 new_sp_m2534 91
## 15937 new_sp_m2534 94
## 15938 new_sp_m2534 84
## 15939 new_sp_m2534 84
## 15940 new_sp_m2534 80
## 15941 new_sp_m2534 79
## 15942 new_sp_m2534 64
## 15943 new_sp_m2534 84
## 15944 new_sp_m2534 52
## 15945 new_sp_m2534 67
## 15946 new_sp_m2534 NA
## 15947 new_sp_m2534 NA
## 15948 new_sp_m2534 NA
## 15949 new_sp_m2534 NA
## 15950 new_sp_m2534 NA
## 15951 new_sp_m2534 NA
## 15952 new_sp_m2534 NA
## 15953 new_sp_m2534 NA
## 15954 new_sp_m2534 NA
## 15955 new_sp_m2534 NA
## 15956 new_sp_m2534 NA
## 15957 new_sp_m2534 NA
## 15958 new_sp_m2534 NA
## 15959 new_sp_m2534 NA
## 15960 new_sp_m2534 NA
## 15961 new_sp_m2534 NA
## 15962 new_sp_m2534 19
## 15963 new_sp_m2534 29
## 15964 new_sp_m2534 38
## 15965 new_sp_m2534 26
## 15966 new_sp_m2534 NA
## 15967 new_sp_m2534 8
## 15968 new_sp_m2534 17
## 15969 new_sp_m2534 8
## 15970 new_sp_m2534 9
## 15971 new_sp_m2534 7
## 15972 new_sp_m2534 9
## 15973 new_sp_m2534 6
## 15974 new_sp_m2534 12
## 15975 new_sp_m2534 12
## 15976 new_sp_m2534 12
## 15977 new_sp_m2534 5
## 15978 new_sp_m2534 22
## 15979 new_sp_m2534 12
## 15980 new_sp_m2534 NA
## 15981 new_sp_m2534 NA
## 15982 new_sp_m2534 NA
## 15983 new_sp_m2534 NA
## 15984 new_sp_m2534 NA
## 15985 new_sp_m2534 NA
## 15986 new_sp_m2534 NA
## 15987 new_sp_m2534 NA
## 15988 new_sp_m2534 NA
## 15989 new_sp_m2534 NA
## 15990 new_sp_m2534 NA
## 15991 new_sp_m2534 NA
## 15992 new_sp_m2534 NA
## 15993 new_sp_m2534 NA
## 15994 new_sp_m2534 NA
## 15995 new_sp_m2534 NA
## 15996 new_sp_m2534 NA
## 15997 new_sp_m2534 NA
## 15998 new_sp_m2534 NA
## 15999 new_sp_m2534 NA
## 16000 new_sp_m2534 1473
## 16001 new_sp_m2534 1030
## 16002 new_sp_m2534 703
## 16003 new_sp_m2534 696
## 16004 new_sp_m2534 816
## 16005 new_sp_m2534 824
## 16006 new_sp_m2534 685
## 16007 new_sp_m2534 713
## 16008 new_sp_m2534 704
## 16009 new_sp_m2534 736
## 16010 new_sp_m2534 754
## 16011 new_sp_m2534 765
## 16012 new_sp_m2534 714
## 16013 new_sp_m2534 744
## 16014 new_sp_m2534 NA
## 16015 new_sp_m2534 NA
## 16016 new_sp_m2534 NA
## 16017 new_sp_m2534 NA
## 16018 new_sp_m2534 NA
## 16019 new_sp_m2534 NA
## 16020 new_sp_m2534 NA
## 16021 new_sp_m2534 NA
## 16022 new_sp_m2534 NA
## 16023 new_sp_m2534 NA
## 16024 new_sp_m2534 NA
## 16025 new_sp_m2534 NA
## 16026 new_sp_m2534 NA
## 16027 new_sp_m2534 NA
## 16028 new_sp_m2534 NA
## 16029 new_sp_m2534 NA
## 16030 new_sp_m2534 13
## 16031 new_sp_m2534 16
## 16032 new_sp_m2534 NA
## 16033 new_sp_m2534 10
## 16034 new_sp_m2534 NA
## 16035 new_sp_m2534 7
## 16036 new_sp_m2534 11
## 16037 new_sp_m2534 9
## 16038 new_sp_m2534 12
## 16039 new_sp_m2534 NA
## 16040 new_sp_m2534 9
## 16041 new_sp_m2534 9
## 16042 new_sp_m2534 NA
## 16043 new_sp_m2534 11
## 16044 new_sp_m2534 12
## 16045 new_sp_m2534 NA
## 16046 new_sp_m2534 13
## 16047 new_sp_m2534 15
## 16048 new_sp_m2534 NA
## 16049 new_sp_m2534 NA
## 16050 new_sp_m2534 NA
## 16051 new_sp_m2534 NA
## 16052 new_sp_m2534 NA
## 16053 new_sp_m2534 NA
## 16054 new_sp_m2534 NA
## 16055 new_sp_m2534 NA
## 16056 new_sp_m2534 NA
## 16057 new_sp_m2534 NA
## 16058 new_sp_m2534 NA
## 16059 new_sp_m2534 NA
## 16060 new_sp_m2534 NA
## 16061 new_sp_m2534 NA
## 16062 new_sp_m2534 NA
## 16063 new_sp_m2534 NA
## 16064 new_sp_m2534 409
## 16065 new_sp_m2534 NA
## 16066 new_sp_m2534 NA
## 16067 new_sp_m2534 NA
## 16068 new_sp_m2534 407
## 16069 new_sp_m2534 NA
## 16070 new_sp_m2534 756
## 16071 new_sp_m2534 NA
## 16072 new_sp_m2534 NA
## 16073 new_sp_m2534 887
## 16074 new_sp_m2534 NA
## 16075 new_sp_m2534 656
## 16076 new_sp_m2534 635
## 16077 new_sp_m2534 606
## 16078 new_sp_m2534 644
## 16079 new_sp_m2534 672
## 16080 new_sp_m2534 705
## 16081 new_sp_m2534 716
## 16082 new_sp_m2534 NA
## 16083 new_sp_m2534 0
## 16084 new_sp_m2534 1
## 16085 new_sp_m2534 0
## 16086 new_sp_m2534 1
## 16087 new_sp_m2534 1
## 16088 new_sp_m2534 0
## 16089 new_sp_m2534 0
## 16090 new_sp_m2534 0
## 16091 new_sp_m2534 NA
## 16092 new_sp_m2534 0
## 16093 new_sp_m2534 NA
## 16094 new_sp_m2534 0
## 16095 new_sp_m2534 0
## 16096 new_sp_m2534 0
## 16097 new_sp_m2534 0
## 16098 new_sp_m2534 0
## 16099 new_sp_m2534 0
## 16100 new_sp_m2534 0
## 16101 new_sp_m2534 0
## 16102 new_sp_m2534 NA
## 16103 new_sp_m2534 0
## 16104 new_sp_m2534 0
## 16105 new_sp_m2534 0
## 16106 new_sp_m2534 0
## 16107 new_sp_m2534 0
## 16108 new_sp_m2534 0
## 16109 new_sp_m2534 0
## 16110 new_sp_m2534 NA
## 16111 new_sp_m2534 NA
## 16112 new_sp_m2534 0
## 16113 new_sp_m2534 0
## 16114 new_sp_m2534 0
## 16115 new_sp_m2534 0
## 16116 new_sp_m2534 NA
## 16117 new_sp_m2534 NA
## 16118 new_sp_m2534 NA
## 16119 new_sp_m2534 NA
## 16120 new_sp_m2534 NA
## 16121 new_sp_m2534 NA
## 16122 new_sp_m2534 NA
## 16123 new_sp_m2534 NA
## 16124 new_sp_m2534 NA
## 16125 new_sp_m2534 NA
## 16126 new_sp_m2534 NA
## 16127 new_sp_m2534 NA
## 16128 new_sp_m2534 NA
## 16129 new_sp_m2534 NA
## 16130 new_sp_m2534 NA
## 16131 new_sp_m2534 NA
## 16132 new_sp_m2534 38
## 16133 new_sp_m2534 11
## 16134 new_sp_m2534 82
## 16135 new_sp_m2534 78
## 16136 new_sp_m2534 63
## 16137 new_sp_m2534 53
## 16138 new_sp_m2534 53
## 16139 new_sp_m2534 45
## 16140 new_sp_m2534 47
## 16141 new_sp_m2534 62
## 16142 new_sp_m2534 38
## 16143 new_sp_m2534 36
## 16144 new_sp_m2534 57
## 16145 new_sp_m2534 39
## 16146 new_sp_m2534 49
## 16147 new_sp_m2534 48
## 16148 new_sp_m2534 24
## 16149 new_sp_m2534 33
## 16150 new_sp_m2534 NA
## 16151 new_sp_m2534 NA
## 16152 new_sp_m2534 NA
## 16153 new_sp_m2534 NA
## 16154 new_sp_m2534 NA
## 16155 new_sp_m2534 NA
## 16156 new_sp_m2534 NA
## 16157 new_sp_m2534 NA
## 16158 new_sp_m2534 NA
## 16159 new_sp_m2534 NA
## 16160 new_sp_m2534 NA
## 16161 new_sp_m2534 NA
## 16162 new_sp_m2534 NA
## 16163 new_sp_m2534 NA
## 16164 new_sp_m2534 NA
## 16165 new_sp_m2534 NA
## 16166 new_sp_m2534 2092
## 16167 new_sp_m2534 1670
## 16168 new_sp_m2534 1850
## 16169 new_sp_m2534 1747
## 16170 new_sp_m2534 1794
## 16171 new_sp_m2534 NA
## 16172 new_sp_m2534 1818
## 16173 new_sp_m2534 2194
## 16174 new_sp_m2534 2075
## 16175 new_sp_m2534 2323
## 16176 new_sp_m2534 2449
## 16177 new_sp_m2534 2476
## 16178 new_sp_m2534 2705
## 16179 new_sp_m2534 2944
## 16180 new_sp_m2534 2886
## 16181 new_sp_m2534 2858
## 16182 new_sp_m2534 3043
## 16183 new_sp_m2534 3087
## 16184 new_sp_m2534 NA
## 16185 new_sp_m2534 NA
## 16186 new_sp_m2534 NA
## 16187 new_sp_m2534 NA
## 16188 new_sp_m2534 NA
## 16189 new_sp_m2534 NA
## 16190 new_sp_m2534 NA
## 16191 new_sp_m2534 NA
## 16192 new_sp_m2534 NA
## 16193 new_sp_m2534 NA
## 16194 new_sp_m2534 NA
## 16195 new_sp_m2534 NA
## 16196 new_sp_m2534 NA
## 16197 new_sp_m2534 NA
## 16198 new_sp_m2534 NA
## 16199 new_sp_m2534 NA
## 16200 new_sp_m2534 97
## 16201 new_sp_m2534 NA
## 16202 new_sp_m2534 88
## 16203 new_sp_m2534 81
## 16204 new_sp_m2534 45
## 16205 new_sp_m2534 NA
## 16206 new_sp_m2534 64
## 16207 new_sp_m2534 40
## 16208 new_sp_m2534 27
## 16209 new_sp_m2534 32
## 16210 new_sp_m2534 27
## 16211 new_sp_m2534 23
## 16212 new_sp_m2534 NA
## 16213 new_sp_m2534 25
## 16214 new_sp_m2534 25
## 16215 new_sp_m2534 19
## 16216 new_sp_m2534 5
## 16217 new_sp_m2534 10
## 16218 new_sp_m2534 NA
## 16219 new_sp_m2534 NA
## 16220 new_sp_m2534 NA
## 16221 new_sp_m2534 NA
## 16222 new_sp_m2534 NA
## 16223 new_sp_m2534 NA
## 16224 new_sp_m2534 NA
## 16225 new_sp_m2534 NA
## 16226 new_sp_m2534 NA
## 16227 new_sp_m2534 NA
## 16228 new_sp_m2534 NA
## 16229 new_sp_m2534 NA
## 16230 new_sp_m2534 NA
## 16231 new_sp_m2534 NA
## 16232 new_sp_m2534 NA
## 16233 new_sp_m2534 NA
## 16234 new_sp_m2534 118
## 16235 new_sp_m2534 136
## 16236 new_sp_m2534 151
## 16237 new_sp_m2534 140
## 16238 new_sp_m2534 163
## 16239 new_sp_m2534 167
## 16240 new_sp_m2534 136
## 16241 new_sp_m2534 104
## 16242 new_sp_m2534 90
## 16243 new_sp_m2534 68
## 16244 new_sp_m2534 73
## 16245 new_sp_m2534 73
## 16246 new_sp_m2534 NA
## 16247 new_sp_m2534 66
## 16248 new_sp_m2534 57
## 16249 new_sp_m2534 61
## 16250 new_sp_m2534 51
## 16251 new_sp_m2534 45
## 16252 new_sp_m2534 NA
## 16253 new_sp_m2534 0
## 16254 new_sp_m2534 0
## 16255 new_sp_m2534 0
## 16256 new_sp_m2534 NA
## 16257 new_sp_m2534 NA
## 16258 new_sp_m2534 NA
## 16259 new_sp_m2534 NA
## 16260 new_sp_m2534 NA
## 16261 new_sp_m2534 NA
## 16262 new_sp_m2534 NA
## 16263 new_sp_m2534 NA
## 16264 new_sp_m2534 NA
## 16265 new_sp_m2534 NA
## 16266 new_sp_m2534 NA
## 16267 new_sp_m2534 NA
## 16268 new_sp_m2534 NA
## 16269 new_sp_m2534 NA
## 16270 new_sp_m2534 NA
## 16271 new_sp_m2534 NA
## 16272 new_sp_m2534 1
## 16273 new_sp_m2534 0
## 16274 new_sp_m2534 NA
## 16275 new_sp_m2534 1
## 16276 new_sp_m2534 6
## 16277 new_sp_m2534 NA
## 16278 new_sp_m2534 NA
## 16279 new_sp_m2534 1
## 16280 new_sp_m2534 4
## 16281 new_sp_m2534 3
## 16282 new_sp_m2534 1
## 16283 new_sp_m2534 1
## 16284 new_sp_m2534 1
## 16285 new_sp_m2534 0
## 16286 new_sp_m2534 4
## 16287 new_sp_m2534 1
## 16288 new_sp_m2534 3
## 16289 new_sp_m2534 4
## 16290 new_sp_m2534 NA
## 16291 new_sp_m2534 NA
## 16292 new_sp_m2534 NA
## 16293 new_sp_m2534 NA
## 16294 new_sp_m2534 NA
## 16295 new_sp_m2534 NA
## 16296 new_sp_m2534 NA
## 16297 new_sp_m2534 NA
## 16298 new_sp_m2534 NA
## 16299 new_sp_m2534 NA
## 16300 new_sp_m2534 NA
## 16301 new_sp_m2534 NA
## 16302 new_sp_m2534 NA
## 16303 new_sp_m2534 NA
## 16304 new_sp_m2534 NA
## 16305 new_sp_m2534 NA
## 16306 new_sp_m2534 22
## 16307 new_sp_m2534 40
## 16308 new_sp_m2534 25
## 16309 new_sp_m2534 37
## 16310 new_sp_m2534 27
## 16311 new_sp_m2534 31
## 16312 new_sp_m2534 39
## 16313 new_sp_m2534 28
## 16314 new_sp_m2534 28
## 16315 new_sp_m2534 28
## 16316 new_sp_m2534 24
## 16317 new_sp_m2534 19
## 16318 new_sp_m2534 26
## 16319 new_sp_m2534 29
## 16320 new_sp_m2534 29
## 16321 new_sp_m2534 19
## 16322 new_sp_m2534 29
## 16323 new_sp_m2534 21
## 16324 new_sp_m2534 NA
## 16325 new_sp_m2534 NA
## 16326 new_sp_m2534 NA
## 16327 new_sp_m2534 NA
## 16328 new_sp_m2534 NA
## 16329 new_sp_m2534 NA
## 16330 new_sp_m2534 NA
## 16331 new_sp_m2534 NA
## 16332 new_sp_m2534 NA
## 16333 new_sp_m2534 NA
## 16334 new_sp_m2534 NA
## 16335 new_sp_m2534 NA
## 16336 new_sp_m2534 NA
## 16337 new_sp_m2534 NA
## 16338 new_sp_m2534 NA
## 16339 new_sp_m2534 NA
## 16340 new_sp_m2534 NA
## 16341 new_sp_m2534 NA
## 16342 new_sp_m2534 430
## 16343 new_sp_m2534 36
## 16344 new_sp_m2534 438
## 16345 new_sp_m2534 1508
## 16346 new_sp_m2534 1593
## 16347 new_sp_m2534 2282
## 16348 new_sp_m2534 2279
## 16349 new_sp_m2534 2559
## 16350 new_sp_m2534 2422
## 16351 new_sp_m2534 2393
## 16352 new_sp_m2534 2748
## 16353 new_sp_m2534 3320
## 16354 new_sp_m2534 3607
## 16355 new_sp_m2534 4046
## 16356 new_sp_m2534 4066
## 16357 new_sp_m2534 4015
## 16358 new_sp_m2534 NA
## 16359 new_sp_m2534 NA
## 16360 new_sp_m2534 NA
## 16361 new_sp_m2534 NA
## 16362 new_sp_m2534 NA
## 16363 new_sp_m2534 NA
## 16364 new_sp_m2534 NA
## 16365 new_sp_m2534 NA
## 16366 new_sp_m2534 NA
## 16367 new_sp_m2534 NA
## 16368 new_sp_m2534 NA
## 16369 new_sp_m2534 NA
## 16370 new_sp_m2534 NA
## 16371 new_sp_m2534 NA
## 16372 new_sp_m2534 NA
## 16373 new_sp_m2534 NA
## 16374 new_sp_m2534 2382
## 16375 new_sp_m2534 1627
## 16376 new_sp_m2534 1996
## 16377 new_sp_m2534 5073
## 16378 new_sp_m2534 5886
## 16379 new_sp_m2534 5833
## 16380 new_sp_m2534 6794
## 16381 new_sp_m2534 7414
## 16382 new_sp_m2534 8427
## 16383 new_sp_m2534 9467
## 16384 new_sp_m2534 9808
## 16385 new_sp_m2534 9486
## 16386 new_sp_m2534 9548
## 16387 new_sp_m2534 9988
## 16388 new_sp_m2534 9964
## 16389 new_sp_m2534 10412
## 16390 new_sp_m2534 9872
## 16391 new_sp_m2534 10274
## 16392 new_sp_m2534 NA
## 16393 new_sp_m2534 NA
## 16394 new_sp_m2534 NA
## 16395 new_sp_m2534 NA
## 16396 new_sp_m2534 NA
## 16397 new_sp_m2534 NA
## 16398 new_sp_m2534 NA
## 16399 new_sp_m2534 NA
## 16400 new_sp_m2534 NA
## 16401 new_sp_m2534 NA
## 16402 new_sp_m2534 NA
## 16403 new_sp_m2534 NA
## 16404 new_sp_m2534 NA
## 16405 new_sp_m2534 NA
## 16406 new_sp_m2534 NA
## 16407 new_sp_m2534 NA
## 16408 new_sp_m2534 16
## 16409 new_sp_m2534 16
## 16410 new_sp_m2534 19
## 16411 new_sp_m2534 20
## 16412 new_sp_m2534 29
## 16413 new_sp_m2534 20
## 16414 new_sp_m2534 15
## 16415 new_sp_m2534 8
## 16416 new_sp_m2534 20
## 16417 new_sp_m2534 12
## 16418 new_sp_m2534 12
## 16419 new_sp_m2534 13
## 16420 new_sp_m2534 12
## 16421 new_sp_m2534 15
## 16422 new_sp_m2534 7
## 16423 new_sp_m2534 22
## 16424 new_sp_m2534 14
## 16425 new_sp_m2534 9
## 16426 new_sp_m2534 NA
## 16427 new_sp_m2534 NA
## 16428 new_sp_m2534 NA
## 16429 new_sp_m2534 NA
## 16430 new_sp_m2534 NA
## 16431 new_sp_m2534 NA
## 16432 new_sp_m2534 NA
## 16433 new_sp_m2534 NA
## 16434 new_sp_m2534 NA
## 16435 new_sp_m2534 NA
## 16436 new_sp_m2534 NA
## 16437 new_sp_m2534 NA
## 16438 new_sp_m2534 NA
## 16439 new_sp_m2534 NA
## 16440 new_sp_m2534 NA
## 16441 new_sp_m2534 NA
## 16442 new_sp_m2534 NA
## 16443 new_sp_m2534 429
## 16444 new_sp_m2534 442
## 16445 new_sp_m2534 396
## 16446 new_sp_m2534 371
## 16447 new_sp_m2534 347
## 16448 new_sp_m2534 331
## 16449 new_sp_m2534 320
## 16450 new_sp_m2534 288
## 16451 new_sp_m2534 225
## 16452 new_sp_m2534 252
## 16453 new_sp_m2534 246
## 16454 new_sp_m2534 264
## 16455 new_sp_m2534 275
## 16456 new_sp_m2534 295
## 16457 new_sp_m2534 243
## 16458 new_sp_m2534 265
## 16459 new_sp_m2534 240
## 16460 new_sp_m2534 NA
## 16461 new_sp_m2534 NA
## 16462 new_sp_m2534 NA
## 16463 new_sp_m2534 NA
## 16464 new_sp_m2534 NA
## 16465 new_sp_m2534 NA
## 16466 new_sp_m2534 NA
## 16467 new_sp_m2534 NA
## 16468 new_sp_m2534 NA
## 16469 new_sp_m2534 NA
## 16470 new_sp_m2534 NA
## 16471 new_sp_m2534 NA
## 16472 new_sp_m2534 NA
## 16473 new_sp_m2534 NA
## 16474 new_sp_m2534 NA
## 16475 new_sp_m2534 NA
## 16476 new_sp_m2534 NA
## 16477 new_sp_m2534 1
## 16478 new_sp_m2534 0
## 16479 new_sp_m2534 0
## 16480 new_sp_m2534 NA
## 16481 new_sp_m2534 NA
## 16482 new_sp_m2534 NA
## 16483 new_sp_m2534 NA
## 16484 new_sp_m2534 NA
## 16485 new_sp_m2534 NA
## 16486 new_sp_m2534 NA
## 16487 new_sp_m2534 1
## 16488 new_sp_m2534 0
## 16489 new_sp_m2534 0
## 16490 new_sp_m2534 1
## 16491 new_sp_m2534 0
## 16492 new_sp_m2534 NA
## 16493 new_sp_m2534 0
## 16494 new_sp_m2534 NA
## 16495 new_sp_m2534 NA
## 16496 new_sp_m2534 NA
## 16497 new_sp_m2534 NA
## 16498 new_sp_m2534 NA
## 16499 new_sp_m2534 NA
## 16500 new_sp_m2534 NA
## 16501 new_sp_m2534 NA
## 16502 new_sp_m2534 NA
## 16503 new_sp_m2534 NA
## 16504 new_sp_m2534 NA
## 16505 new_sp_m2534 NA
## 16506 new_sp_m2534 NA
## 16507 new_sp_m2534 NA
## 16508 new_sp_m2534 NA
## 16509 new_sp_m2534 NA
## 16510 new_sp_m2534 NA
## 16511 new_sp_m2534 262
## 16512 new_sp_m2534 471
## 16513 new_sp_m2534 416
## 16514 new_sp_m2534 485
## 16515 new_sp_m2534 481
## 16516 new_sp_m2534 NA
## 16517 new_sp_m2534 417
## 16518 new_sp_m2534 518
## 16519 new_sp_m2534 502
## 16520 new_sp_m2534 483
## 16521 new_sp_m2534 480
## 16522 new_sp_m2534 403
## 16523 new_sp_m2534 398
## 16524 new_sp_m2534 428
## 16525 new_sp_m2534 346
## 16526 new_sp_m2534 406
## 16527 new_sp_m2534 489
## 16528 new_sp_m2534 NA
## 16529 new_sp_m2534 NA
## 16530 new_sp_m2534 NA
## 16531 new_sp_m2534 NA
## 16532 new_sp_m2534 NA
## 16533 new_sp_m2534 NA
## 16534 new_sp_m2534 NA
## 16535 new_sp_m2534 NA
## 16536 new_sp_m2534 NA
## 16537 new_sp_m2534 NA
## 16538 new_sp_m2534 NA
## 16539 new_sp_m2534 NA
## 16540 new_sp_m2534 NA
## 16541 new_sp_m2534 NA
## 16542 new_sp_m2534 NA
## 16543 new_sp_m2534 NA
## 16544 new_sp_m2534 NA
## 16545 new_sp_m2534 NA
## 16546 new_sp_m2534 NA
## 16547 new_sp_m2534 286
## 16548 new_sp_m2534 NA
## 16549 new_sp_m2534 NA
## 16550 new_sp_m2534 832
## 16551 new_sp_m2534 NA
## 16552 new_sp_m2534 266
## 16553 new_sp_m2534 537
## 16554 new_sp_m2534 468
## 16555 new_sp_m2534 496
## 16556 new_sp_m2534 486
## 16557 new_sp_m2534 518
## 16558 new_sp_m2534 519
## 16559 new_sp_m2534 529
## 16560 new_sp_m2534 547
## 16561 new_sp_m2534 567
## 16562 new_sp_m2534 NA
## 16563 new_sp_m2534 NA
## 16564 new_sp_m2534 NA
## 16565 new_sp_m2534 NA
## 16566 new_sp_m2534 NA
## 16567 new_sp_m2534 NA
## 16568 new_sp_m2534 NA
## 16569 new_sp_m2534 NA
## 16570 new_sp_m2534 NA
## 16571 new_sp_m2534 NA
## 16572 new_sp_m2534 NA
## 16573 new_sp_m2534 NA
## 16574 new_sp_m2534 NA
## 16575 new_sp_m2534 NA
## 16576 new_sp_m2534 NA
## 16577 new_sp_m2534 NA
## 16578 new_sp_m2534 665
## 16579 new_sp_m2534 1056
## 16580 new_sp_m2534 1033
## 16581 new_sp_m2534 943
## 16582 new_sp_m2534 889
## 16583 new_sp_m2534 827
## 16584 new_sp_m2534 879
## 16585 new_sp_m2534 774
## 16586 new_sp_m2534 814
## 16587 new_sp_m2534 763
## 16588 new_sp_m2534 606
## 16589 new_sp_m2534 728
## 16590 new_sp_m2534 853
## 16591 new_sp_m2534 640
## 16592 new_sp_m2534 599
## 16593 new_sp_m2534 617
## 16594 new_sp_m2534 611
## 16595 new_sp_m2534 597
## 16596 new_sp_m2534 NA
## 16597 new_sp_m2534 NA
## 16598 new_sp_m2534 NA
## 16599 new_sp_m2534 NA
## 16600 new_sp_m2534 NA
## 16601 new_sp_m2534 NA
## 16602 new_sp_m2534 NA
## 16603 new_sp_m2534 NA
## 16604 new_sp_m2534 NA
## 16605 new_sp_m2534 NA
## 16606 new_sp_m2534 NA
## 16607 new_sp_m2534 NA
## 16608 new_sp_m2534 NA
## 16609 new_sp_m2534 NA
## 16610 new_sp_m2534 NA
## 16611 new_sp_m2534 NA
## 16612 new_sp_m2534 NA
## 16613 new_sp_m2534 76
## 16614 new_sp_m2534 110
## 16615 new_sp_m2534 131
## 16616 new_sp_m2534 128
## 16617 new_sp_m2534 124
## 16618 new_sp_m2534 144
## 16619 new_sp_m2534 127
## 16620 new_sp_m2534 105
## 16621 new_sp_m2534 121
## 16622 new_sp_m2534 140
## 16623 new_sp_m2534 124
## 16624 new_sp_m2534 179
## 16625 new_sp_m2534 168
## 16626 new_sp_m2534 147
## 16627 new_sp_m2534 170
## 16628 new_sp_m2534 183
## 16629 new_sp_m2534 194
## 16630 new_sp_m2534 NA
## 16631 new_sp_m2534 NA
## 16632 new_sp_m2534 NA
## 16633 new_sp_m2534 NA
## 16634 new_sp_m2534 NA
## 16635 new_sp_m2534 NA
## 16636 new_sp_m2534 NA
## 16637 new_sp_m2534 NA
## 16638 new_sp_m2534 NA
## 16639 new_sp_m2534 NA
## 16640 new_sp_m2534 NA
## 16641 new_sp_m2534 NA
## 16642 new_sp_m2534 NA
## 16643 new_sp_m2534 NA
## 16644 new_sp_m2534 NA
## 16645 new_sp_m2534 NA
## 16646 new_sp_m2534 45
## 16647 new_sp_m2534 NA
## 16648 new_sp_m2534 40
## 16649 new_sp_m2534 46
## 16650 new_sp_m2534 NA
## 16651 new_sp_m2534 NA
## 16652 new_sp_m2534 NA
## 16653 new_sp_m2534 NA
## 16654 new_sp_m2534 NA
## 16655 new_sp_m2534 63
## 16656 new_sp_m2534 NA
## 16657 new_sp_m2534 NA
## 16658 new_sp_m2534 NA
## 16659 new_sp_m2534 95
## 16660 new_sp_m2534 79
## 16661 new_sp_m2534 80
## 16662 new_sp_m2534 90
## 16663 new_sp_m2534 NA
## 16664 new_sp_m2534 NA
## 16665 new_sp_m2534 NA
## 16666 new_sp_m2534 NA
## [ reached 'max' / getOption("max.print") -- omitted 26774 rows ]
airquality ## In wide format; You convert it to long format;
## Ozone Solar.R Wind Temp Month Day
## 1 41 190 7.4 67 5 1
## 2 36 118 8.0 72 5 2
## 3 12 149 12.6 74 5 3
## 4 18 313 11.5 62 5 4
## 5 NA NA 14.3 56 5 5
## 6 28 NA 14.9 66 5 6
## 7 23 299 8.6 65 5 7
## 8 19 99 13.8 59 5 8
## 9 8 19 20.1 61 5 9
## 10 NA 194 8.6 69 5 10
## 11 7 NA 6.9 74 5 11
## 12 16 256 9.7 69 5 12
## 13 11 290 9.2 66 5 13
## 14 14 274 10.9 68 5 14
## 15 18 65 13.2 58 5 15
## 16 14 334 11.5 64 5 16
## 17 34 307 12.0 66 5 17
## 18 6 78 18.4 57 5 18
## 19 30 322 11.5 68 5 19
## 20 11 44 9.7 62 5 20
## 21 1 8 9.7 59 5 21
## 22 11 320 16.6 73 5 22
## 23 4 25 9.7 61 5 23
## 24 32 92 12.0 61 5 24
## 25 NA 66 16.6 57 5 25
## 26 NA 266 14.9 58 5 26
## 27 NA NA 8.0 57 5 27
## 28 23 13 12.0 67 5 28
## 29 45 252 14.9 81 5 29
## 30 115 223 5.7 79 5 30
## 31 37 279 7.4 76 5 31
## 32 NA 286 8.6 78 6 1
## 33 NA 287 9.7 74 6 2
## 34 NA 242 16.1 67 6 3
## 35 NA 186 9.2 84 6 4
## 36 NA 220 8.6 85 6 5
## 37 NA 264 14.3 79 6 6
## 38 29 127 9.7 82 6 7
## 39 NA 273 6.9 87 6 8
## 40 71 291 13.8 90 6 9
## 41 39 323 11.5 87 6 10
## 42 NA 259 10.9 93 6 11
## 43 NA 250 9.2 92 6 12
## 44 23 148 8.0 82 6 13
## 45 NA 332 13.8 80 6 14
## 46 NA 322 11.5 79 6 15
## 47 21 191 14.9 77 6 16
## 48 37 284 20.7 72 6 17
## 49 20 37 9.2 65 6 18
## 50 12 120 11.5 73 6 19
## 51 13 137 10.3 76 6 20
## 52 NA 150 6.3 77 6 21
## 53 NA 59 1.7 76 6 22
## 54 NA 91 4.6 76 6 23
## 55 NA 250 6.3 76 6 24
## 56 NA 135 8.0 75 6 25
## 57 NA 127 8.0 78 6 26
## 58 NA 47 10.3 73 6 27
## 59 NA 98 11.5 80 6 28
## 60 NA 31 14.9 77 6 29
## 61 NA 138 8.0 83 6 30
## 62 135 269 4.1 84 7 1
## 63 49 248 9.2 85 7 2
## 64 32 236 9.2 81 7 3
## 65 NA 101 10.9 84 7 4
## 66 64 175 4.6 83 7 5
## 67 40 314 10.9 83 7 6
## 68 77 276 5.1 88 7 7
## 69 97 267 6.3 92 7 8
## 70 97 272 5.7 92 7 9
## 71 85 175 7.4 89 7 10
## 72 NA 139 8.6 82 7 11
## 73 10 264 14.3 73 7 12
## 74 27 175 14.9 81 7 13
## 75 NA 291 14.9 91 7 14
## 76 7 48 14.3 80 7 15
## 77 48 260 6.9 81 7 16
## 78 35 274 10.3 82 7 17
## 79 61 285 6.3 84 7 18
## 80 79 187 5.1 87 7 19
## 81 63 220 11.5 85 7 20
## 82 16 7 6.9 74 7 21
## 83 NA 258 9.7 81 7 22
## 84 NA 295 11.5 82 7 23
## 85 80 294 8.6 86 7 24
## 86 108 223 8.0 85 7 25
## 87 20 81 8.6 82 7 26
## 88 52 82 12.0 86 7 27
## 89 82 213 7.4 88 7 28
## 90 50 275 7.4 86 7 29
## 91 64 253 7.4 83 7 30
## 92 59 254 9.2 81 7 31
## 93 39 83 6.9 81 8 1
## 94 9 24 13.8 81 8 2
## 95 16 77 7.4 82 8 3
## 96 78 NA 6.9 86 8 4
## 97 35 NA 7.4 85 8 5
## 98 66 NA 4.6 87 8 6
## 99 122 255 4.0 89 8 7
## 100 89 229 10.3 90 8 8
## 101 110 207 8.0 90 8 9
## 102 NA 222 8.6 92 8 10
## 103 NA 137 11.5 86 8 11
## 104 44 192 11.5 86 8 12
## 105 28 273 11.5 82 8 13
## 106 65 157 9.7 80 8 14
## 107 NA 64 11.5 79 8 15
## 108 22 71 10.3 77 8 16
## 109 59 51 6.3 79 8 17
## 110 23 115 7.4 76 8 18
## 111 31 244 10.9 78 8 19
## 112 44 190 10.3 78 8 20
## 113 21 259 15.5 77 8 21
## 114 9 36 14.3 72 8 22
## 115 NA 255 12.6 75 8 23
## 116 45 212 9.7 79 8 24
## 117 168 238 3.4 81 8 25
## 118 73 215 8.0 86 8 26
## 119 NA 153 5.7 88 8 27
## 120 76 203 9.7 97 8 28
## 121 118 225 2.3 94 8 29
## 122 84 237 6.3 96 8 30
## 123 85 188 6.3 94 8 31
## 124 96 167 6.9 91 9 1
## 125 78 197 5.1 92 9 2
## 126 73 183 2.8 93 9 3
## 127 91 189 4.6 93 9 4
## 128 47 95 7.4 87 9 5
## 129 32 92 15.5 84 9 6
## 130 20 252 10.9 80 9 7
## 131 23 220 10.3 78 9 8
## 132 21 230 10.9 75 9 9
## 133 24 259 9.7 73 9 10
## 134 44 236 14.9 81 9 11
## 135 21 259 15.5 76 9 12
## 136 28 238 6.3 77 9 13
## 137 9 24 10.9 71 9 14
## 138 13 112 11.5 71 9 15
## 139 46 237 6.9 78 9 16
## 140 18 224 13.8 67 9 17
## 141 13 27 10.3 76 9 18
## 142 24 238 10.3 68 9 19
## 143 16 201 8.0 82 9 20
## 144 13 238 12.6 64 9 21
## 145 23 14 9.2 71 9 22
## 146 36 139 10.3 81 9 23
## 147 7 49 10.3 69 9 24
## 148 14 20 16.6 63 9 25
## 149 30 193 6.9 70 9 26
## 150 NA 145 13.2 77 9 27
## 151 14 191 14.3 75 9 28
## 152 18 131 8.0 76 9 29
## 153 20 223 11.5 68 9 30
## you can type ?airquality on the console to study the details of the data
y = airquality %>% melt(id.vars=c("Month", "Day"), variable.names=c(Ozone, Solar.R, Wind, Temp))
y
## Month Day variable value
## 1 5 1 Ozone 41.0
## 2 5 2 Ozone 36.0
## 3 5 3 Ozone 12.0
## 4 5 4 Ozone 18.0
## 5 5 5 Ozone NA
## 6 5 6 Ozone 28.0
## 7 5 7 Ozone 23.0
## 8 5 8 Ozone 19.0
## 9 5 9 Ozone 8.0
## 10 5 10 Ozone NA
## 11 5 11 Ozone 7.0
## 12 5 12 Ozone 16.0
## 13 5 13 Ozone 11.0
## 14 5 14 Ozone 14.0
## 15 5 15 Ozone 18.0
## 16 5 16 Ozone 14.0
## 17 5 17 Ozone 34.0
## 18 5 18 Ozone 6.0
## 19 5 19 Ozone 30.0
## 20 5 20 Ozone 11.0
## 21 5 21 Ozone 1.0
## 22 5 22 Ozone 11.0
## 23 5 23 Ozone 4.0
## 24 5 24 Ozone 32.0
## 25 5 25 Ozone NA
## 26 5 26 Ozone NA
## 27 5 27 Ozone NA
## 28 5 28 Ozone 23.0
## 29 5 29 Ozone 45.0
## 30 5 30 Ozone 115.0
## 31 5 31 Ozone 37.0
## 32 6 1 Ozone NA
## 33 6 2 Ozone NA
## 34 6 3 Ozone NA
## 35 6 4 Ozone NA
## 36 6 5 Ozone NA
## 37 6 6 Ozone NA
## 38 6 7 Ozone 29.0
## 39 6 8 Ozone NA
## 40 6 9 Ozone 71.0
## 41 6 10 Ozone 39.0
## 42 6 11 Ozone NA
## 43 6 12 Ozone NA
## 44 6 13 Ozone 23.0
## 45 6 14 Ozone NA
## 46 6 15 Ozone NA
## 47 6 16 Ozone 21.0
## 48 6 17 Ozone 37.0
## 49 6 18 Ozone 20.0
## 50 6 19 Ozone 12.0
## 51 6 20 Ozone 13.0
## 52 6 21 Ozone NA
## 53 6 22 Ozone NA
## 54 6 23 Ozone NA
## 55 6 24 Ozone NA
## 56 6 25 Ozone NA
## 57 6 26 Ozone NA
## 58 6 27 Ozone NA
## 59 6 28 Ozone NA
## 60 6 29 Ozone NA
## 61 6 30 Ozone NA
## 62 7 1 Ozone 135.0
## 63 7 2 Ozone 49.0
## 64 7 3 Ozone 32.0
## 65 7 4 Ozone NA
## 66 7 5 Ozone 64.0
## 67 7 6 Ozone 40.0
## 68 7 7 Ozone 77.0
## 69 7 8 Ozone 97.0
## 70 7 9 Ozone 97.0
## 71 7 10 Ozone 85.0
## 72 7 11 Ozone NA
## 73 7 12 Ozone 10.0
## 74 7 13 Ozone 27.0
## 75 7 14 Ozone NA
## 76 7 15 Ozone 7.0
## 77 7 16 Ozone 48.0
## 78 7 17 Ozone 35.0
## 79 7 18 Ozone 61.0
## 80 7 19 Ozone 79.0
## 81 7 20 Ozone 63.0
## 82 7 21 Ozone 16.0
## 83 7 22 Ozone NA
## 84 7 23 Ozone NA
## 85 7 24 Ozone 80.0
## 86 7 25 Ozone 108.0
## 87 7 26 Ozone 20.0
## 88 7 27 Ozone 52.0
## 89 7 28 Ozone 82.0
## 90 7 29 Ozone 50.0
## 91 7 30 Ozone 64.0
## 92 7 31 Ozone 59.0
## 93 8 1 Ozone 39.0
## 94 8 2 Ozone 9.0
## 95 8 3 Ozone 16.0
## 96 8 4 Ozone 78.0
## 97 8 5 Ozone 35.0
## 98 8 6 Ozone 66.0
## 99 8 7 Ozone 122.0
## 100 8 8 Ozone 89.0
## 101 8 9 Ozone 110.0
## 102 8 10 Ozone NA
## 103 8 11 Ozone NA
## 104 8 12 Ozone 44.0
## 105 8 13 Ozone 28.0
## 106 8 14 Ozone 65.0
## 107 8 15 Ozone NA
## 108 8 16 Ozone 22.0
## 109 8 17 Ozone 59.0
## 110 8 18 Ozone 23.0
## 111 8 19 Ozone 31.0
## 112 8 20 Ozone 44.0
## 113 8 21 Ozone 21.0
## 114 8 22 Ozone 9.0
## 115 8 23 Ozone NA
## 116 8 24 Ozone 45.0
## 117 8 25 Ozone 168.0
## 118 8 26 Ozone 73.0
## 119 8 27 Ozone NA
## 120 8 28 Ozone 76.0
## 121 8 29 Ozone 118.0
## 122 8 30 Ozone 84.0
## 123 8 31 Ozone 85.0
## 124 9 1 Ozone 96.0
## 125 9 2 Ozone 78.0
## 126 9 3 Ozone 73.0
## 127 9 4 Ozone 91.0
## 128 9 5 Ozone 47.0
## 129 9 6 Ozone 32.0
## 130 9 7 Ozone 20.0
## 131 9 8 Ozone 23.0
## 132 9 9 Ozone 21.0
## 133 9 10 Ozone 24.0
## 134 9 11 Ozone 44.0
## 135 9 12 Ozone 21.0
## 136 9 13 Ozone 28.0
## 137 9 14 Ozone 9.0
## 138 9 15 Ozone 13.0
## 139 9 16 Ozone 46.0
## 140 9 17 Ozone 18.0
## 141 9 18 Ozone 13.0
## 142 9 19 Ozone 24.0
## 143 9 20 Ozone 16.0
## 144 9 21 Ozone 13.0
## 145 9 22 Ozone 23.0
## 146 9 23 Ozone 36.0
## 147 9 24 Ozone 7.0
## 148 9 25 Ozone 14.0
## 149 9 26 Ozone 30.0
## 150 9 27 Ozone NA
## 151 9 28 Ozone 14.0
## 152 9 29 Ozone 18.0
## 153 9 30 Ozone 20.0
## 154 5 1 Solar.R 190.0
## 155 5 2 Solar.R 118.0
## 156 5 3 Solar.R 149.0
## 157 5 4 Solar.R 313.0
## 158 5 5 Solar.R NA
## 159 5 6 Solar.R NA
## 160 5 7 Solar.R 299.0
## 161 5 8 Solar.R 99.0
## 162 5 9 Solar.R 19.0
## 163 5 10 Solar.R 194.0
## 164 5 11 Solar.R NA
## 165 5 12 Solar.R 256.0
## 166 5 13 Solar.R 290.0
## 167 5 14 Solar.R 274.0
## 168 5 15 Solar.R 65.0
## 169 5 16 Solar.R 334.0
## 170 5 17 Solar.R 307.0
## 171 5 18 Solar.R 78.0
## 172 5 19 Solar.R 322.0
## 173 5 20 Solar.R 44.0
## 174 5 21 Solar.R 8.0
## 175 5 22 Solar.R 320.0
## 176 5 23 Solar.R 25.0
## 177 5 24 Solar.R 92.0
## 178 5 25 Solar.R 66.0
## 179 5 26 Solar.R 266.0
## 180 5 27 Solar.R NA
## 181 5 28 Solar.R 13.0
## 182 5 29 Solar.R 252.0
## 183 5 30 Solar.R 223.0
## 184 5 31 Solar.R 279.0
## 185 6 1 Solar.R 286.0
## 186 6 2 Solar.R 287.0
## 187 6 3 Solar.R 242.0
## 188 6 4 Solar.R 186.0
## 189 6 5 Solar.R 220.0
## 190 6 6 Solar.R 264.0
## 191 6 7 Solar.R 127.0
## 192 6 8 Solar.R 273.0
## 193 6 9 Solar.R 291.0
## 194 6 10 Solar.R 323.0
## 195 6 11 Solar.R 259.0
## 196 6 12 Solar.R 250.0
## 197 6 13 Solar.R 148.0
## 198 6 14 Solar.R 332.0
## 199 6 15 Solar.R 322.0
## 200 6 16 Solar.R 191.0
## 201 6 17 Solar.R 284.0
## 202 6 18 Solar.R 37.0
## 203 6 19 Solar.R 120.0
## 204 6 20 Solar.R 137.0
## 205 6 21 Solar.R 150.0
## 206 6 22 Solar.R 59.0
## 207 6 23 Solar.R 91.0
## 208 6 24 Solar.R 250.0
## 209 6 25 Solar.R 135.0
## 210 6 26 Solar.R 127.0
## 211 6 27 Solar.R 47.0
## 212 6 28 Solar.R 98.0
## 213 6 29 Solar.R 31.0
## 214 6 30 Solar.R 138.0
## 215 7 1 Solar.R 269.0
## 216 7 2 Solar.R 248.0
## 217 7 3 Solar.R 236.0
## 218 7 4 Solar.R 101.0
## 219 7 5 Solar.R 175.0
## 220 7 6 Solar.R 314.0
## 221 7 7 Solar.R 276.0
## 222 7 8 Solar.R 267.0
## 223 7 9 Solar.R 272.0
## 224 7 10 Solar.R 175.0
## 225 7 11 Solar.R 139.0
## 226 7 12 Solar.R 264.0
## 227 7 13 Solar.R 175.0
## 228 7 14 Solar.R 291.0
## 229 7 15 Solar.R 48.0
## 230 7 16 Solar.R 260.0
## 231 7 17 Solar.R 274.0
## 232 7 18 Solar.R 285.0
## 233 7 19 Solar.R 187.0
## 234 7 20 Solar.R 220.0
## 235 7 21 Solar.R 7.0
## 236 7 22 Solar.R 258.0
## 237 7 23 Solar.R 295.0
## 238 7 24 Solar.R 294.0
## 239 7 25 Solar.R 223.0
## 240 7 26 Solar.R 81.0
## 241 7 27 Solar.R 82.0
## 242 7 28 Solar.R 213.0
## 243 7 29 Solar.R 275.0
## 244 7 30 Solar.R 253.0
## 245 7 31 Solar.R 254.0
## 246 8 1 Solar.R 83.0
## 247 8 2 Solar.R 24.0
## 248 8 3 Solar.R 77.0
## 249 8 4 Solar.R NA
## 250 8 5 Solar.R NA
## 251 8 6 Solar.R NA
## 252 8 7 Solar.R 255.0
## 253 8 8 Solar.R 229.0
## 254 8 9 Solar.R 207.0
## 255 8 10 Solar.R 222.0
## 256 8 11 Solar.R 137.0
## 257 8 12 Solar.R 192.0
## 258 8 13 Solar.R 273.0
## 259 8 14 Solar.R 157.0
## 260 8 15 Solar.R 64.0
## 261 8 16 Solar.R 71.0
## 262 8 17 Solar.R 51.0
## 263 8 18 Solar.R 115.0
## 264 8 19 Solar.R 244.0
## 265 8 20 Solar.R 190.0
## 266 8 21 Solar.R 259.0
## 267 8 22 Solar.R 36.0
## 268 8 23 Solar.R 255.0
## 269 8 24 Solar.R 212.0
## 270 8 25 Solar.R 238.0
## 271 8 26 Solar.R 215.0
## 272 8 27 Solar.R 153.0
## 273 8 28 Solar.R 203.0
## 274 8 29 Solar.R 225.0
## 275 8 30 Solar.R 237.0
## 276 8 31 Solar.R 188.0
## 277 9 1 Solar.R 167.0
## 278 9 2 Solar.R 197.0
## 279 9 3 Solar.R 183.0
## 280 9 4 Solar.R 189.0
## 281 9 5 Solar.R 95.0
## 282 9 6 Solar.R 92.0
## 283 9 7 Solar.R 252.0
## 284 9 8 Solar.R 220.0
## 285 9 9 Solar.R 230.0
## 286 9 10 Solar.R 259.0
## 287 9 11 Solar.R 236.0
## 288 9 12 Solar.R 259.0
## 289 9 13 Solar.R 238.0
## 290 9 14 Solar.R 24.0
## 291 9 15 Solar.R 112.0
## 292 9 16 Solar.R 237.0
## 293 9 17 Solar.R 224.0
## 294 9 18 Solar.R 27.0
## 295 9 19 Solar.R 238.0
## 296 9 20 Solar.R 201.0
## 297 9 21 Solar.R 238.0
## 298 9 22 Solar.R 14.0
## 299 9 23 Solar.R 139.0
## 300 9 24 Solar.R 49.0
## 301 9 25 Solar.R 20.0
## 302 9 26 Solar.R 193.0
## 303 9 27 Solar.R 145.0
## 304 9 28 Solar.R 191.0
## 305 9 29 Solar.R 131.0
## 306 9 30 Solar.R 223.0
## 307 5 1 Wind 7.4
## 308 5 2 Wind 8.0
## 309 5 3 Wind 12.6
## 310 5 4 Wind 11.5
## 311 5 5 Wind 14.3
## 312 5 6 Wind 14.9
## 313 5 7 Wind 8.6
## 314 5 8 Wind 13.8
## 315 5 9 Wind 20.1
## 316 5 10 Wind 8.6
## 317 5 11 Wind 6.9
## 318 5 12 Wind 9.7
## 319 5 13 Wind 9.2
## 320 5 14 Wind 10.9
## 321 5 15 Wind 13.2
## 322 5 16 Wind 11.5
## 323 5 17 Wind 12.0
## 324 5 18 Wind 18.4
## 325 5 19 Wind 11.5
## 326 5 20 Wind 9.7
## 327 5 21 Wind 9.7
## 328 5 22 Wind 16.6
## 329 5 23 Wind 9.7
## 330 5 24 Wind 12.0
## 331 5 25 Wind 16.6
## 332 5 26 Wind 14.9
## 333 5 27 Wind 8.0
## 334 5 28 Wind 12.0
## 335 5 29 Wind 14.9
## 336 5 30 Wind 5.7
## 337 5 31 Wind 7.4
## 338 6 1 Wind 8.6
## 339 6 2 Wind 9.7
## 340 6 3 Wind 16.1
## 341 6 4 Wind 9.2
## 342 6 5 Wind 8.6
## 343 6 6 Wind 14.3
## 344 6 7 Wind 9.7
## 345 6 8 Wind 6.9
## 346 6 9 Wind 13.8
## 347 6 10 Wind 11.5
## 348 6 11 Wind 10.9
## 349 6 12 Wind 9.2
## 350 6 13 Wind 8.0
## 351 6 14 Wind 13.8
## 352 6 15 Wind 11.5
## 353 6 16 Wind 14.9
## 354 6 17 Wind 20.7
## 355 6 18 Wind 9.2
## 356 6 19 Wind 11.5
## 357 6 20 Wind 10.3
## 358 6 21 Wind 6.3
## 359 6 22 Wind 1.7
## 360 6 23 Wind 4.6
## 361 6 24 Wind 6.3
## 362 6 25 Wind 8.0
## 363 6 26 Wind 8.0
## 364 6 27 Wind 10.3
## 365 6 28 Wind 11.5
## 366 6 29 Wind 14.9
## 367 6 30 Wind 8.0
## 368 7 1 Wind 4.1
## 369 7 2 Wind 9.2
## 370 7 3 Wind 9.2
## 371 7 4 Wind 10.9
## 372 7 5 Wind 4.6
## 373 7 6 Wind 10.9
## 374 7 7 Wind 5.1
## 375 7 8 Wind 6.3
## 376 7 9 Wind 5.7
## 377 7 10 Wind 7.4
## 378 7 11 Wind 8.6
## 379 7 12 Wind 14.3
## 380 7 13 Wind 14.9
## 381 7 14 Wind 14.9
## 382 7 15 Wind 14.3
## 383 7 16 Wind 6.9
## 384 7 17 Wind 10.3
## 385 7 18 Wind 6.3
## 386 7 19 Wind 5.1
## 387 7 20 Wind 11.5
## 388 7 21 Wind 6.9
## 389 7 22 Wind 9.7
## 390 7 23 Wind 11.5
## 391 7 24 Wind 8.6
## 392 7 25 Wind 8.0
## 393 7 26 Wind 8.6
## 394 7 27 Wind 12.0
## 395 7 28 Wind 7.4
## 396 7 29 Wind 7.4
## 397 7 30 Wind 7.4
## 398 7 31 Wind 9.2
## 399 8 1 Wind 6.9
## 400 8 2 Wind 13.8
## 401 8 3 Wind 7.4
## 402 8 4 Wind 6.9
## 403 8 5 Wind 7.4
## 404 8 6 Wind 4.6
## 405 8 7 Wind 4.0
## 406 8 8 Wind 10.3
## 407 8 9 Wind 8.0
## 408 8 10 Wind 8.6
## 409 8 11 Wind 11.5
## 410 8 12 Wind 11.5
## 411 8 13 Wind 11.5
## 412 8 14 Wind 9.7
## 413 8 15 Wind 11.5
## 414 8 16 Wind 10.3
## 415 8 17 Wind 6.3
## 416 8 18 Wind 7.4
## 417 8 19 Wind 10.9
## 418 8 20 Wind 10.3
## 419 8 21 Wind 15.5
## 420 8 22 Wind 14.3
## 421 8 23 Wind 12.6
## 422 8 24 Wind 9.7
## 423 8 25 Wind 3.4
## 424 8 26 Wind 8.0
## 425 8 27 Wind 5.7
## 426 8 28 Wind 9.7
## 427 8 29 Wind 2.3
## 428 8 30 Wind 6.3
## 429 8 31 Wind 6.3
## 430 9 1 Wind 6.9
## 431 9 2 Wind 5.1
## 432 9 3 Wind 2.8
## 433 9 4 Wind 4.6
## 434 9 5 Wind 7.4
## 435 9 6 Wind 15.5
## 436 9 7 Wind 10.9
## 437 9 8 Wind 10.3
## 438 9 9 Wind 10.9
## 439 9 10 Wind 9.7
## 440 9 11 Wind 14.9
## 441 9 12 Wind 15.5
## 442 9 13 Wind 6.3
## 443 9 14 Wind 10.9
## 444 9 15 Wind 11.5
## 445 9 16 Wind 6.9
## 446 9 17 Wind 13.8
## 447 9 18 Wind 10.3
## 448 9 19 Wind 10.3
## 449 9 20 Wind 8.0
## 450 9 21 Wind 12.6
## 451 9 22 Wind 9.2
## 452 9 23 Wind 10.3
## 453 9 24 Wind 10.3
## 454 9 25 Wind 16.6
## 455 9 26 Wind 6.9
## 456 9 27 Wind 13.2
## 457 9 28 Wind 14.3
## 458 9 29 Wind 8.0
## 459 9 30 Wind 11.5
## 460 5 1 Temp 67.0
## 461 5 2 Temp 72.0
## 462 5 3 Temp 74.0
## 463 5 4 Temp 62.0
## 464 5 5 Temp 56.0
## 465 5 6 Temp 66.0
## 466 5 7 Temp 65.0
## 467 5 8 Temp 59.0
## 468 5 9 Temp 61.0
## 469 5 10 Temp 69.0
## 470 5 11 Temp 74.0
## 471 5 12 Temp 69.0
## 472 5 13 Temp 66.0
## 473 5 14 Temp 68.0
## 474 5 15 Temp 58.0
## 475 5 16 Temp 64.0
## 476 5 17 Temp 66.0
## 477 5 18 Temp 57.0
## 478 5 19 Temp 68.0
## 479 5 20 Temp 62.0
## 480 5 21 Temp 59.0
## 481 5 22 Temp 73.0
## 482 5 23 Temp 61.0
## 483 5 24 Temp 61.0
## 484 5 25 Temp 57.0
## 485 5 26 Temp 58.0
## 486 5 27 Temp 57.0
## 487 5 28 Temp 67.0
## 488 5 29 Temp 81.0
## 489 5 30 Temp 79.0
## 490 5 31 Temp 76.0
## 491 6 1 Temp 78.0
## 492 6 2 Temp 74.0
## 493 6 3 Temp 67.0
## 494 6 4 Temp 84.0
## 495 6 5 Temp 85.0
## 496 6 6 Temp 79.0
## 497 6 7 Temp 82.0
## 498 6 8 Temp 87.0
## 499 6 9 Temp 90.0
## 500 6 10 Temp 87.0
## 501 6 11 Temp 93.0
## 502 6 12 Temp 92.0
## 503 6 13 Temp 82.0
## 504 6 14 Temp 80.0
## 505 6 15 Temp 79.0
## 506 6 16 Temp 77.0
## 507 6 17 Temp 72.0
## 508 6 18 Temp 65.0
## 509 6 19 Temp 73.0
## 510 6 20 Temp 76.0
## 511 6 21 Temp 77.0
## 512 6 22 Temp 76.0
## 513 6 23 Temp 76.0
## 514 6 24 Temp 76.0
## 515 6 25 Temp 75.0
## 516 6 26 Temp 78.0
## 517 6 27 Temp 73.0
## 518 6 28 Temp 80.0
## 519 6 29 Temp 77.0
## 520 6 30 Temp 83.0
## 521 7 1 Temp 84.0
## 522 7 2 Temp 85.0
## 523 7 3 Temp 81.0
## 524 7 4 Temp 84.0
## 525 7 5 Temp 83.0
## 526 7 6 Temp 83.0
## 527 7 7 Temp 88.0
## 528 7 8 Temp 92.0
## 529 7 9 Temp 92.0
## 530 7 10 Temp 89.0
## 531 7 11 Temp 82.0
## 532 7 12 Temp 73.0
## 533 7 13 Temp 81.0
## 534 7 14 Temp 91.0
## 535 7 15 Temp 80.0
## 536 7 16 Temp 81.0
## 537 7 17 Temp 82.0
## 538 7 18 Temp 84.0
## 539 7 19 Temp 87.0
## 540 7 20 Temp 85.0
## 541 7 21 Temp 74.0
## 542 7 22 Temp 81.0
## 543 7 23 Temp 82.0
## 544 7 24 Temp 86.0
## 545 7 25 Temp 85.0
## 546 7 26 Temp 82.0
## 547 7 27 Temp 86.0
## 548 7 28 Temp 88.0
## 549 7 29 Temp 86.0
## 550 7 30 Temp 83.0
## 551 7 31 Temp 81.0
## 552 8 1 Temp 81.0
## 553 8 2 Temp 81.0
## 554 8 3 Temp 82.0
## 555 8 4 Temp 86.0
## 556 8 5 Temp 85.0
## 557 8 6 Temp 87.0
## 558 8 7 Temp 89.0
## 559 8 8 Temp 90.0
## 560 8 9 Temp 90.0
## 561 8 10 Temp 92.0
## 562 8 11 Temp 86.0
## 563 8 12 Temp 86.0
## 564 8 13 Temp 82.0
## 565 8 14 Temp 80.0
## 566 8 15 Temp 79.0
## 567 8 16 Temp 77.0
## 568 8 17 Temp 79.0
## 569 8 18 Temp 76.0
## 570 8 19 Temp 78.0
## 571 8 20 Temp 78.0
## 572 8 21 Temp 77.0
## 573 8 22 Temp 72.0
## 574 8 23 Temp 75.0
## 575 8 24 Temp 79.0
## 576 8 25 Temp 81.0
## 577 8 26 Temp 86.0
## 578 8 27 Temp 88.0
## 579 8 28 Temp 97.0
## 580 8 29 Temp 94.0
## 581 8 30 Temp 96.0
## 582 8 31 Temp 94.0
## 583 9 1 Temp 91.0
## 584 9 2 Temp 92.0
## 585 9 3 Temp 93.0
## 586 9 4 Temp 93.0
## 587 9 5 Temp 87.0
## 588 9 6 Temp 84.0
## 589 9 7 Temp 80.0
## 590 9 8 Temp 78.0
## 591 9 9 Temp 75.0
## 592 9 10 Temp 73.0
## 593 9 11 Temp 81.0
## 594 9 12 Temp 76.0
## 595 9 13 Temp 77.0
## 596 9 14 Temp 71.0
## 597 9 15 Temp 71.0
## 598 9 16 Temp 78.0
## 599 9 17 Temp 67.0
## 600 9 18 Temp 76.0
## 601 9 19 Temp 68.0
## 602 9 20 Temp 82.0
## 603 9 21 Temp 64.0
## 604 9 22 Temp 71.0
## 605 9 23 Temp 81.0
## 606 9 24 Temp 69.0
## 607 9 25 Temp 63.0
## 608 9 26 Temp 70.0
## 609 9 27 Temp 77.0
## 610 9 28 Temp 75.0
## 611 9 29 Temp 76.0
## 612 9 30 Temp 68.0
Reference: https://dept.stat.lsa.umich.edu/~jerrick/courses/stat701/notes/sql.html
SQL is a database query language - a language designed specifically for interacting with a database.
library(sqldf) # Load the package
## Loading required package: gsubfn
## Loading required package: proto
## Warning in system2("/usr/bin/otool", c("-L", shQuote(DSO)), stdout = TRUE):
## running command ''/usr/bin/otool' -L '/Library/Frameworks/R.framework/Resources/
## library/tcltk/libs//tcltk.so'' had status 1
## Loading required package: RSQLite
library(RSQLite)
sqldf('SELECT mpg FROM mtcars')
## mpg
## 1 21.0
## 2 21.0
## 3 22.8
## 4 21.4
## 5 18.7
## 6 18.1
## 7 14.3
## 8 24.4
## 9 22.8
## 10 19.2
## 11 17.8
## 12 16.4
## 13 17.3
## 14 15.2
## 15 10.4
## 16 10.4
## 17 14.7
## 18 32.4
## 19 30.4
## 20 33.9
## 21 21.5
## 22 15.5
## 23 15.2
## 24 13.3
## 25 19.2
## 26 27.3
## 27 26.0
## 28 30.4
## 29 15.8
## 30 19.7
## 31 15.0
## 32 21.4
sqldf('SELECT mpg, disp FROM mtcars')
## mpg disp
## 1 21.0 160.0
## 2 21.0 160.0
## 3 22.8 108.0
## 4 21.4 258.0
## 5 18.7 360.0
## 6 18.1 225.0
## 7 14.3 360.0
## 8 24.4 146.7
## 9 22.8 140.8
## 10 19.2 167.6
## 11 17.8 167.6
## 12 16.4 275.8
## 13 17.3 275.8
## 14 15.2 275.8
## 15 10.4 472.0
## 16 10.4 460.0
## 17 14.7 440.0
## 18 32.4 78.7
## 19 30.4 75.7
## 20 33.9 71.1
## 21 21.5 120.1
## 22 15.5 318.0
## 23 15.2 304.0
## 24 13.3 350.0
## 25 19.2 400.0
## 26 27.3 79.0
## 27 26.0 120.3
## 28 30.4 95.1
## 29 15.8 351.0
## 30 19.7 145.0
## 31 15.0 301.0
## 32 21.4 121.0
sqldf('SELECT mpg, disp FROM mtcars WHERE am = 1 ORDER BY mpg ASC')
## mpg disp
## 1 15.0 301.0
## 2 15.8 351.0
## 3 19.7 145.0
## 4 21.0 160.0
## 5 21.0 160.0
## 6 21.4 121.0
## 7 22.8 108.0
## 8 26.0 120.3
## 9 27.3 79.0
## 10 30.4 75.7
## 11 30.4 95.1
## 12 32.4 78.7
## 13 33.9 71.1
sqldf('SELECT * FROM mtcars WHERE (mpg > 20 AND disp < 95) OR carb > 1000')
## mpg cyl disp hp drat wt qsec vs am gear carb
## 1 32.4 4 78.7 66 4.08 2.200 19.47 1 1 4 1
## 2 30.4 4 75.7 52 4.93 1.615 18.52 1 1 4 2
## 3 33.9 4 71.1 65 4.22 1.835 19.90 1 1 4 1
## 4 27.3 4 79.0 66 4.08 1.935 18.90 1 1 4 1
sqldf('SELECT * FROM mtcars WHERE carb NOT IN (1, 2)')
## mpg cyl disp hp drat wt qsec vs am gear carb
## 1 21.0 6 160.0 110 3.90 2.620 16.46 0 1 4 4
## 2 21.0 6 160.0 110 3.90 2.875 17.02 0 1 4 4
## 3 14.3 8 360.0 245 3.21 3.570 15.84 0 0 3 4
## 4 19.2 6 167.6 123 3.92 3.440 18.30 1 0 4 4
## 5 17.8 6 167.6 123 3.92 3.440 18.90 1 0 4 4
## 6 16.4 8 275.8 180 3.07 4.070 17.40 0 0 3 3
## 7 17.3 8 275.8 180 3.07 3.730 17.60 0 0 3 3
## 8 15.2 8 275.8 180 3.07 3.780 18.00 0 0 3 3
## 9 10.4 8 472.0 205 2.93 5.250 17.98 0 0 3 4
## 10 10.4 8 460.0 215 3.00 5.424 17.82 0 0 3 4
## 11 14.7 8 440.0 230 3.23 5.345 17.42 0 0 3 4
## 12 13.3 8 350.0 245 3.73 3.840 15.41 0 0 3 4
## 13 15.8 8 351.0 264 4.22 3.170 14.50 0 1 5 4
## 14 19.7 6 145.0 175 3.62 2.770 15.50 0 1 5 6
## 15 15.0 8 301.0 335 3.54 3.570 14.60 0 1 5 8
sqldf("SELECT am, AVG(mpg) AS Avgmpg FROM mtcars GROUP BY am")
## am Avgmpg
## 1 0 17.14737
## 2 1 24.39231
sqldf("SELECT am, COUNT() as count FROM mtcars GROUP BY am")
## am count
## 1 0 19
## 2 1 13
When you scrape webpages to get data, you will need to manipulate your data.
Here is ta RStudio cheatsheet for regular expressions: https://rstudio.com/wp-content/uploads/2016/09/RegExCheatsheet.pdf
library(stringr)
y = c("2,345", "34,156", "6,571,089", "89,071")
y1 = str_replace_all(string=y, pattern=",", replacement="") ## Replace all commas by ""; i.e., remove all commas
y2 = as.numeric(y1)
mean(y2)
## [1] 1674165
y %>% str_replace_all(pattern=",", replacement="") %>% as.numeric() %>% mean()
## [1] 1674165
z = c("Hello World!", "How are you?", "I'm sorry.")
str_split(z, " ") ## Split each string in the x vector by a single space
## [[1]]
## [1] "Hello" "World!"
##
## [[2]]
## [1] "How" "are" "you?"
##
## [[3]]
## [1] "I'm" "sorry."
strsplit(z, " ") ## Split each string in the x vector by a single space. Available from the base package
## [[1]]
## [1] "Hello" "World!"
##
## [[2]]
## [1] "How" "are" "you?"
##
## [[3]]
## [1] "I'm" "sorry."
# More examples: can be skipped
x=c("$56,987.00", "f6 8h$7 h", "8j% #2,%f &* ^j-5$d")
x
## [1] "$56,987.00" "f6 8h$7 h"
## [3] "8j% #2,%f &* ^j-5$d"
str_replace_all(string=x, pattern="\\$|\\%", replacement="") ## Replace all "$" or "%" signs by "", i.e., remove all "$" or "%" signs
## [1] "56,987.00" "f6 8h7 h" "8j #2,f &* ^j-5d"
str_replace_all(string=x, pattern="\\D", replacement="") ## Replace all non-digits by "", i.e., remove all non-digits
## [1] "5698700" "687" "825"
str_replace_all(string=x, pattern="\\d", replacement="") ## Replace all digits by "", i.e., remove all digits
## [1] "$,." "f h$ h" "j% #,%f &* ^j-$d"
str_replace_all(string=x, pattern="\\W", replacement="") ## Replace all non-word characters by "", i.e., remove non-word characters
## [1] "5698700" "f68h7h" "8j2fj5d"
str_replace_all(string=x, pattern="\\s", replacement="") ## Replace all spaces by "", i.e., remove non-word characters
## [1] "$56,987.00" "f68h$7h" "8j%#2,%f&*^j-5$d"
## The following replaces all spaces, dollar signs or (|) commas by "", i.e., remove non-word characters
str_replace_all(string=x, pattern="\\s|\\$|,", replacement="")
## [1] "56987.00" "f68h7h" "8j%#2%f&*^j-5d"
## Date Formats ##
# Y=year in 4 digits
# M=no such thing
# D=no such thing
# y=tricky
# m=month in two digits
# d=day in a month
x <- c("01-01-1960", "01-02-1960", "1-3-1960", "1-4-1960", "01-05-1960", "01-06-1960", "1-7-1960", "1-8-1960")
z <- as.Date(x = x, format = "%m-%d-%Y") # m=month in number
z
## [1] "1960-01-01" "1960-01-02" "1960-01-03" "1960-01-04" "1960-01-05"
## [6] "1960-01-06" "1960-01-07" "1960-01-08"
stockPrice = c(56, 64, 67, 71, 84, 91, 95, 97)
plot(stockPrice ~ z) # Does not show x-values as dates
plot(stockPrice ~ z, xaxt = "n", xlab = "") # Setting xaxt = "n" removes x-values; Setting xlab = "" removes x-axis title
axis(side = 1, at = z,labels = x, las = 2) # Adding labels on the x-axis at designated positions and displaying labels perpendicularly
par(mar=c(b=7,l=4,t=4,r=4))
plot(stockPrice ~ z, xaxt = "n", xlab = "") # Setting xaxt = "n" removes x-values; Setting xlab = "" removes x-axis title
axis(1, at = z, labels = x, las = 2) # Adding labels on the x-axis at designated positions and displaying labels perpendicularly
ggplot(NULL, aes(x=z, y = stockPrice)) +
geom_point() +
scale_x_date(date_breaks = "day", date_labels = "%a \n %b %d, %Y") + # Formatting x-values
labs(x="")
x <- c("1960-01-01", "1960-01-02", "1960-03-31", "1960-07-30")
z <- as.Date(x, "%Y-%m-%d") # m=month in number
z
## [1] "1960-01-01" "1960-01-02" "1960-03-31" "1960-07-30"
## More examples: can be skipped
x <- c("1jan1960", "2jan1960", "31mar1960", "30jul1960")
z <- as.Date(x, format="%d%b%Y") # b=month in abb, d=day in a month, Y=year in 4 digits
z
## [1] "1960-01-01" "1960-01-02" "1960-03-31" "1960-07-30"
x <- c("1jan60", "2jan60", "31mar60", "30jul60")
z <- as.Date(x, "%d%b%y") # b=month in abb, Y=year in 4 digits
z
## [1] "2060-01-01" "2060-01-02" "2060-03-31" "2060-07-30"
x <- c("jan11960", "jan21960", "mar311960", "jul301960")
z <- as.Date(x, "%b%d%Y") ## Wrong
z
## [1] "0960-01-11" "0960-01-21" "1960-03-31" "1960-07-30"
x <- c("jan11960", "jan21960", "mar311960", "jul301960")
z <- as.Date(x, "%b%D%Y") ## Wrong
z
## [1] NA NA NA NA
x <- c("jan011960", "jan021960", "mar311960", "jul301960")
z <- as.Date(x, "%b%d%Y")
z
## [1] "1960-01-01" "1960-01-02" "1960-03-31" "1960-07-30"
x <- c("1960jan1", "1960jan2", "1960mar31", "1960jul30")
z <- as.Date(x, "%Y%b%d")
z
## [1] "1960-01-01" "1960-01-02" "1960-03-31" "1960-07-30"
x <- c("01011960", "01021960", "03311960", "07301960")
z <- as.Date(x, "%m%d%Y") # m=month in number
z
## [1] "1960-01-01" "1960-01-02" "1960-03-31" "1960-07-30"
x <- c("01/01/1960", "01/02/1960", "03/31/1960", "07/30/1960")
z <- as.Date(x, "%m/%d/%Y") # m=month in number
z
## [1] "1960-01-01" "1960-01-02" "1960-03-31" "1960-07-30"
x <- c("1/1/1960", "1/2/1960", "3/31/1960", "7/30/1960")
z <- as.Date(x, "%m/%d/%Y") # Leading 0 ignored
z
## [1] "1960-01-01" "1960-01-02" "1960-03-31" "1960-07-30"
y <- c("01011960", "01021960", "03311960", "07301960")
z <- as.Date(y, "%m%d%y") # Wrong in year
z
## [1] "2019-01-01" "2019-01-02" "2019-03-31" "2019-07-30"
str_replace_all(z, "-", "/") # Replace "-" in all dates by "/"
## [1] "2019/01/01" "2019/01/02" "2019/03/31" "2019/07/30"
z
## [1] "2019-01-01" "2019-01-02" "2019-03-31" "2019-07-30"
y <- c("196001011", "19600102", "19600331", "19600730")
z <- as.Date(y, "%Y/%m/%d") # m=month in number
z
## [1] NA NA NA NA
y <- c("1960Jan011", "1960Jan02", "1960Mar31", "1960Jul30")
z <- as.Date(y, "%Y%B%d") # m=month in number
z
## [1] "1960-01-01" "1960-01-02" "1960-03-31" "1960-07-30"
format(z, "%a %b %d %X %Y %Z") # a=day in a week
## [1] "Fri Jan 01 00:00:00 1960 UTC" "Sat Jan 02 00:00:00 1960 UTC"
## [3] "Thu Mar 31 00:00:00 1960 UTC" "Sat Jul 30 00:00:00 1960 UTC"
x <- c("1/1/1960", "1/2/1960", "3/31/1960", "7/30/1960")
z <- as.Date(x, "%m/%d/%Y") # Leading 0 ignored
z
## [1] "1960-01-01" "1960-01-02" "1960-03-31" "1960-07-30"
format(z, "%B %d,%Y")
## [1] "January 01,1960" "January 02,1960" "March 31,1960" "July 30,1960"
format(z, "%Y-%B-%d")
## [1] "1960-January-01" "1960-January-02" "1960-March-31" "1960-July-30"
library(DT)
datatable(iris)
x=5:9
x
## [1] 5 6 7 8 9
rm(x) # Remove the R object x
## print(x) would result in an error!
ls() ## A vector that holds all R objects in memory
## [1] "a" "b" "by_cyl" "D" "D1"
## [6] "D2" "df" "DF" "i" "L"
## [11] "m" "M" "M2" "myData" "myfun"
## [16] "Names" "popData" "s" "s1" "s2"
## [21] "stockPrice" "Summary" "temp" "u" "w"
## [26] "X" "x1" "x2" "y" "y1"
## [31] "y2" "z" "z1" "z2"
rm(list = ls()) ## Remove all
Reserved words in R programming are a set of words that have special meaning and cannot be used as an identifier (variable name, function name etc.).
Here is a list of reserved words in the R’s parser.
if, else, repeat, while, function, for, in, next, break, TRUE, FALSE, NULL, Inf, NaN, NA
This list can be viewed by typing help(reserved) or ?reserved at the R command prompt.
You are strongly suggested to read this: https://www.quora.com/?pa_story=MTA5ODAwNzM5NTgzODE1NTE4MXwyMTExMDYyMzQ5ODA4MDh8MA**