Polynomials and Bootstrapping

Annoucements/reminders

  • HW #3 due on Friday (9am)
  • Final project due next Friday (9am)
  • Final quiz on Thursday

Thursday

  • Review
    • Send in questions by 12pm tomorrow!
  • Machine Learning

Non-linear relationships

Linear lines often make bad predictions – very few processes that we study actually have linear relationships. For example, effort had diminishing returns (e.g., log functions), or small advantages early in life can have significant effects on mid-life outcones (e.g., exponentional functions). In cases where the direction of the effect is constant but changing in magnitude, the best way to handle the data is to transform a variable (usually the outcome) and run linear analyses.

log_y = ln(y)
lm(log_y ~ x)

Polynomial relationships

Other processes represent changes in the direction of relationship – for example, it is believed that a small amount of anxiety is beneficial for performance on some tasks (positive direction) but too much is detrimental (negative direction). When the shape of the effect includes change(s) in direction, then a polynomial term(s) may be more appropriate.

Warning: It should be noted that polynomials are often a poor approximation for a non-linear effect of X on Y. However, correctly testing for non-linear effects usually requires (a) a lot of data and (b) making a number of assumptions about the data. Polynomial regression can be a useful tool for exploratory analysis and in cases when data are limited in terms of quantity and/or quality.

Polynomial regression

Polynomial regression is most often a form of hierarchical regressoin that systematically tests a series of higher order functions for a single variable.

\[ \begin{aligned} \large \textbf{Linear: } \hat{Y} &= b_0 + b_1X \\ \large \textbf{Quadtratic: } \hat{Y} &= b_0 + b_1X + b_2X^2 \\ \large \textbf{Cubic: } \hat{Y} &= b_0 + b_1X + b_2X^2 + b_3X^3\\ \end{aligned} \]

Example

Can a team have too much talent? Researchers hypothesized that teams with too many talented players have poor intrateam coordination and therefore perform worse than teams with a moderate amount of talent. To test this hypothesis, they looked at 208 international football teams. Talent was the percentage of players during the 2010 and 2014 World Cup Qualifications phases who also had contracts with elite club teams. Performance was the number of points the team earned during these same qualification phases.

football = read.csv("https://raw.githubusercontent.com/uopsych/psy612/master/data/swaab.csv")

Swaab, R.I., Schaerer, M, Anicich, E.M., Ronay, R., and Galinsky, A.D. (2014). The too-much-talent effect: Team interdependence determines when more talent is too much or not enough. Psychological Science 25(8), 1581-1591.

head(football)
      country points talent
1       Spain   1485     85
2     Germany   1300     76
3      Brazil   1242     48
4    Portugal   1189     16
5   Argentina   1175     35
6 Switzerland   1149      9
psych::describe(football)
         vars   n   mean     sd median trimmed    mad min  max range skew
country*    1 208 103.94  59.76  103.5  103.92  76.35   1  207   206 0.00
points      2 208 389.48 321.25  320.0  351.28 323.21   0 1485  1485 0.96
talent      3 208   3.22  12.35    0.0    0.49   0.00   0   85    85 5.18
         kurtosis    se
country*    -1.21  4.14
points       0.32 22.27
talent      27.03  0.86

We can fit a linear regression model to these data…

mod1 = lm(points ~ talent, data = football)

… but we seem to have violated an assumption.

Fit a polynomial term using I() – this way, R will recognize this as a transformation of a variable already in the model.

mod2 = lm(points ~ talent + I(talent^2), data = football)
summary(mod2)

Call:
lm(formula = points ~ talent + I(talent^2), data = football)

Residuals:
    Min      1Q  Median      3Q     Max 
-384.66 -193.82  -35.34  152.11  729.66 

Coefficients:
             Estimate Std. Error t value             Pr(>|t|)    
(Intercept) 305.34402   17.62668  17.323 < 0.0000000000000002 ***
talent       54.89787    5.46864  10.039 < 0.0000000000000002 ***
I(talent^2)  -0.57022    0.07499  -7.604     0.00000000000101 ***
---
Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1

Residual standard error: 236.3 on 205 degrees of freedom
Multiple R-squared:  0.4644,    Adjusted R-squared:  0.4592 
F-statistic: 88.87 on 2 and 205 DF,  p-value: < 0.00000000000000022
library(sjPlot)
plot_model(mod2, type = "pred", 
           terms = c("talent"))

Interpretation

The intercept is the predicted value of Y when x = 0 – this is always the interpretation of the intercept, no matter what kind of regression model you’re running.

The \(b_1\) coefficient is the tangent to the curve when X=0. In other words, this is the rate of change when X is equal to 0.

Interpretation – Centering

If 0 is not a meaningful value on your X, you may want to center, as this will tell you the rate of change at the mean of X.

football$talent_c50 = football$talent - 50
mod2_50 = lm(points ~ talent_c50 + I(talent_c50^2), data = football)
summary(mod2_50)

Call:
lm(formula = points ~ talent_c50 + I(talent_c50^2), data = football)

Residuals:
    Min      1Q  Median      3Q     Max 
-384.66 -193.82  -35.34  152.11  729.66 

Coefficients:
                  Estimate Std. Error t value             Pr(>|t|)    
(Intercept)     1624.68872   97.18998  16.717 < 0.0000000000000002 ***
talent_c50        -2.12408    2.56568  -0.828                0.409    
I(talent_c50^2)   -0.57022    0.07499  -7.604     0.00000000000101 ***
---
Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1

Residual standard error: 236.3 on 205 degrees of freedom
Multiple R-squared:  0.4644,    Adjusted R-squared:  0.4592 
F-statistic: 88.87 on 2 and 205 DF,  p-value: < 0.00000000000000022

Or you can choose another value to center your predictor on, if there’s a value that has a particular meaning or interpretation.

football$talent_c = football$talent - mean(football$talent)
mod2_c = lm(points ~ talent_c + I(talent_c^2), data = football)
mean(football$talent)
[1] 3.216346
summary(mod2_c)

Call:
lm(formula = points ~ talent_c + I(talent_c^2), data = football)

Residuals:
    Min      1Q  Median      3Q     Max 
-384.66 -193.82  -35.34  152.11  729.66 

Coefficients:
               Estimate Std. Error t value             Pr(>|t|)    
(Intercept)   476.01572   19.94656  23.865 < 0.0000000000000002 ***
talent_c       51.22982    5.00212  10.242 < 0.0000000000000002 ***
I(talent_c^2)  -0.57022    0.07499  -7.604     0.00000000000101 ***
---
Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1

Residual standard error: 236.3 on 205 degrees of freedom
Multiple R-squared:  0.4644,    Adjusted R-squared:  0.4592 
F-statistic: 88.87 on 2 and 205 DF,  p-value: < 0.00000000000000022

Interpretation

The \(b_2\) coefficient indexes the acceleration, which is how much the slope is going to change. More specifically, \(2 \times b_2\) is the acceleration: the rate of change in \(b_1\) for a 1-unit change in X.

You can use this to calculate the slope of the tangent line at any value of X you’re interested in:

\[\large b_1 + (2\times b_2\times X)\]

coef(summary(mod2))
               Estimate  Std. Error  t value
(Intercept) 305.3440239 17.62668012 17.32283
talent       54.8978682  5.46863589 10.03868
I(talent^2)  -0.5702195  0.07498714 -7.60423
                                                      Pr(>|t|)
(Intercept) 0.000000000000000000000000000000000000000005217717
talent      0.000000000000000000152564285381377318016786647345
I(talent^2) 0.000000000001014419915974000228226072683179861738

At X = 10

54.9 + (2*-.570*10)
[1] 43.5

At X = 70

54.9 + (2*-.570*70)
[1] -24.9

Polynomials are interactions

An term for \(X^2\) is a term for \(X \times X\) or the multiplication of two independent variables holding the same values.

football = football %>% 
  # create interaction term
  mutate(talent_2 = talent*talent)

#fit model
lm(points ~ talent + talent_2, data = football) %>% 
    summary %>% coef #print summary and then just coefficients
               Estimate  Std. Error  t value
(Intercept) 305.3440239 17.62668012 17.32283
talent       54.8978682  5.46863589 10.03868
talent_2     -0.5702195  0.07498714 -7.60423
                                                      Pr(>|t|)
(Intercept) 0.000000000000000000000000000000000000000005217717
talent      0.000000000000000000152564285381377318016786647345
talent_2    0.000000000001014419915974000228226072683179861738

Polynomials are interactions

Put another way:

\[\large \hat{Y} = b_0 + b_1X + b_2X^2\]

\[\large \hat{Y} = b_0 + \frac{b_1}{2}X + \frac{b_1}{2}X + b_2(X \times X)\]

The interaction term in another model would be interpreted as “how does the slope of X change as I move up in Z?” – here, we ask “how does the slope of X change as we move up in X?”

When should you use polynomial terms?

You may choose to fit a polynomial term after looking at a scatterplot of the data or looking at residual plots. A U-shaped curve may be indicative that you need to fit a quadratic form – although, as we discussed before, you may actually be measuring a different kind of non-linear relationship.

When should you use polynomial terms?

Polynomial terms should mostly be dictated by theory – if you don’t have a good reason for thinking there will be a change in sign, then a polynomial is not right for you.

And, of course, if you fit a polynomial regression, be sure to once again check your diagnostics before interpreting the coefficients.

aug2 = augment(mod2)
ggplot(aug2, aes(x = .fitted, y = .resid)) +
  geom_point() + 
  geom_smooth(se = F) +
  theme_bw(base_size = 20)
plot_model(mod2, type = "pred", terms = c("talent"), show.data = T)

Bootstrapping

In bootstrapping, the theoretical sampling distribution is assumed to be unknown or unverifiable. Under the weak assumption that the sample in hand is representative of some population, then that population sampling distribution can be built empirically by randomly sampling with replacement from the sample.

The resulting empirical sampling distribution can be used to construct confidence intervals and make inferences.

Illustration

Imagine you had a sample of 6 people: Rachel, Monica, Phoebe, Joey, Chandler, and Ross. To bootstrap their heights, you would draw from this group many samples of 6 people with replacement, each time calculating the average height of the sample.

[1] "Joey"     "Chandler" "Phoebe"   "Phoebe"   "Ross"     "Ross"    
[1] 70.66667
[1] "Rachel"   "Chandler" "Chandler" "Phoebe"   "Joey"     "Monica"  
[1] 68.66667
[1] "Chandler" "Rachel"   "Chandler" "Monica"   "Joey"     "Joey"    
[1] 69
[1] "Rachel"   "Monica"   "Phoebe"   "Phoebe"   "Phoebe"   "Chandler"
[1] 67.66667
[1] "Phoebe"   "Phoebe"   "Chandler" "Chandler" "Phoebe"   "Rachel"  
[1] 68.83333
[1] "Joey"   "Phoebe" "Rachel" "Joey"   "Monica" "Monica"
[1] 67.16667
[1] "Phoebe" "Ross"   "Ross"   "Monica" "Ross"   "Phoebe"
[1] 70
[1] "Chandler" "Rachel"   "Phoebe"   "Monica"   "Ross"     "Joey"    
[1] 68.83333

Illustration

boot = 10000 # number of bootstraps
# make named vector (names not necessary)
heights = c("Rachel" = 65, "Monica" = 65, "Phoebe" = 68, 
            "Joey" = 70, "Chandler" = 72, "Ross" = 73)
heights
  Rachel   Monica   Phoebe     Joey Chandler     Ross 
      65       65       68       70       72       73 
#a vector to store values
sample_means = numeric(length = boot)

for(i in 1:boot){ #loop through bootstraps
  # draw new sample with replacement
  this_sample = sample(heights, size = length(heights), replace = T)
  # store mean in empty vector
  sample_means[i] = mean(this_sample)
}

sample_means
    [1] 67.66667 68.83333 69.50000 68.83333 68.33333 70.66667 68.83333 69.16667
    [9] 68.00000 70.00000 69.50000 71.33333 70.00000 70.16667 67.50000 68.00000
   [17] 65.83333 69.16667 71.33333 69.66667 68.83333 69.16667 69.83333 69.83333
   [25] 69.83333 67.50000 68.83333 70.16667 69.16667 69.33333 70.83333 68.00000
   [33] 69.00000 68.16667 68.16667 70.50000 68.66667 66.66667 71.33333 69.66667
   [41] 66.16667 70.16667 69.50000 66.83333 69.66667 66.33333 70.50000 71.50000
   [49] 70.00000 67.66667 69.33333 68.16667 69.83333 69.16667 67.66667 66.83333
   [57] 68.33333 70.16667 68.66667 70.33333 68.50000 68.00000 68.50000 70.00000
   [65] 67.00000 68.16667 69.16667 68.33333 69.50000 69.00000 69.33333 68.00000
   [73] 69.50000 68.83333 68.16667 71.66667 69.66667 69.00000 67.66667 70.00000
   [81] 70.50000 69.16667 67.66667 69.50000 69.16667 69.66667 68.00000 68.33333
   [89] 66.33333 69.50000 68.00000 71.16667 68.00000 68.00000 70.50000 69.16667
   [97] 67.50000 68.66667 67.50000 69.50000 70.50000 68.83333 66.83333 67.16667
  [105] 66.83333 67.66667 69.50000 68.33333 67.16667 70.66667 68.50000 69.66667
  [113] 69.00000 70.83333 68.16667 67.50000 68.33333 70.33333 68.00000 71.16667
  [121] 70.83333 70.00000 68.83333 67.50000 69.33333 67.33333 70.50000 68.00000
  [129] 69.66667 69.33333 65.83333 68.16667 68.83333 67.66667 69.16667 67.66667
  [137] 70.66667 68.33333 70.16667 69.00000 70.50000 68.83333 70.00000 68.33333
  [145] 71.16667 65.83333 68.50000 69.33333 69.00000 68.33333 67.33333 68.83333
  [153] 71.00000 66.66667 69.00000 70.00000 70.83333 68.50000 70.66667 70.16667
  [161] 67.66667 69.66667 71.16667 69.50000 69.50000 68.00000 68.16667 67.66667
  [169] 70.50000 70.16667 70.16667 66.66667 70.00000 67.33333 70.66667 68.83333
  [177] 67.50000 67.50000 68.50000 68.83333 69.16667 70.50000 69.66667 70.16667
  [185] 66.33333 65.50000 68.83333 69.83333 67.16667 70.00000 70.16667 68.33333
  [193] 68.50000 65.83333 65.83333 68.16667 69.00000 68.33333 69.00000 68.50000
  [201] 70.16667 69.00000 67.50000 70.66667 70.16667 68.16667 68.83333 70.00000
  [209] 69.16667 70.00000 67.50000 68.66667 71.16667 67.50000 68.83333 70.50000
  [217] 69.33333 69.83333 67.83333 68.00000 68.83333 69.00000 68.33333 69.33333
  [225] 69.50000 68.50000 69.66667 70.50000 69.83333 68.16667 70.16667 67.16667
  [233] 67.66667 67.66667 69.66667 69.33333 68.00000 69.00000 71.16667 68.00000
  [241] 67.16667 67.50000 67.50000 68.66667 69.50000 66.83333 68.83333 66.33333
  [249] 71.00000 68.00000 67.16667 69.66667 69.00000 69.66667 70.16667 68.50000
  [257] 71.83333 66.50000 68.33333 69.33333 67.83333 69.16667 68.66667 72.00000
  [265] 68.00000 67.16667 69.16667 69.00000 68.66667 69.00000 70.83333 70.16667
  [273] 69.33333 67.50000 68.83333 67.83333 69.16667 70.50000 69.83333 67.66667
  [281] 66.00000 67.83333 69.66667 69.33333 66.66667 70.66667 68.33333 69.16667
  [289] 71.33333 70.83333 68.00000 71.50000 68.00000 69.33333 70.50000 70.00000
  [297] 66.83333 68.50000 69.00000 70.00000 67.83333 70.33333 68.33333 70.16667
  [305] 71.33333 70.33333 67.66667 69.33333 68.00000 67.50000 69.66667 69.83333
  [313] 68.33333 68.33333 71.33333 67.50000 68.66667 68.00000 69.33333 68.00000
  [321] 68.66667 70.50000 69.00000 70.83333 67.50000 69.66667 66.83333 65.83333
  [329] 68.16667 67.16667 67.33333 67.66667 68.33333 68.33333 69.33333 68.50000
  [337] 69.33333 69.33333 69.16667 70.16667 69.83333 69.00000 71.33333 68.83333
  [345] 70.33333 67.50000 68.16667 69.50000 66.83333 69.50000 68.16667 69.66667
  [353] 70.16667 71.50000 69.16667 67.66667 67.16667 67.16667 67.50000 68.50000
  [361] 69.16667 69.16667 69.66667 67.50000 69.83333 69.00000 70.00000 69.16667
  [369] 69.83333 68.00000 68.83333 68.83333 66.66667 70.83333 69.00000 70.66667
  [377] 71.00000 67.83333 67.83333 69.50000 67.66667 68.00000 68.83333 69.50000
  [385] 67.66667 69.16667 68.00000 66.33333 70.00000 68.66667 67.33333 71.00000
  [393] 67.50000 66.83333 69.00000 72.00000 69.83333 68.33333 68.00000 68.83333
  [401] 69.66667 69.83333 66.83333 71.16667 67.16667 68.83333 69.83333 68.16667
  [409] 65.83333 68.83333 69.16667 68.83333 68.00000 67.83333 68.33333 69.33333
  [417] 67.00000 68.33333 67.66667 69.00000 69.33333 69.33333 69.66667 69.50000
  [425] 68.50000 70.16667 69.00000 69.66667 69.50000 65.83333 71.33333 70.66667
  [433] 66.33333 70.00000 69.50000 69.33333 69.16667 67.16667 68.16667 68.50000
  [441] 68.16667 68.16667 69.33333 70.33333 70.33333 68.66667 70.16667 67.16667
  [449] 68.66667 69.33333 67.33333 68.50000 68.16667 69.33333 68.16667 67.83333
  [457] 68.33333 69.33333 68.00000 66.66667 70.50000 69.33333 68.16667 68.00000
  [465] 68.66667 67.83333 66.66667 70.16667 69.66667 70.00000 67.83333 67.00000
  [473] 72.16667 68.33333 68.50000 68.83333 67.50000 70.00000 67.16667 69.00000
  [481] 67.16667 68.16667 69.66667 70.33333 68.33333 68.33333 68.50000 68.50000
  [489] 67.66667 68.33333 68.83333 71.66667 69.16667 68.83333 69.66667 69.66667
  [497] 68.66667 67.50000 67.00000 68.83333 67.66667 67.50000 68.50000 69.83333
  [505] 66.33333 69.00000 68.33333 67.50000 68.50000 68.50000 70.00000 68.66667
  [513] 67.16667 69.83333 69.50000 67.66667 69.16667 70.66667 69.50000 68.66667
  [521] 67.66667 68.33333 66.83333 67.16667 69.50000 66.83333 66.66667 67.83333
  [529] 68.66667 69.33333 67.00000 68.33333 68.83333 67.50000 68.00000 69.16667
  [537] 68.16667 68.00000 68.66667 69.16667 70.00000 69.00000 69.66667 68.66667
  [545] 71.33333 67.83333 68.33333 68.16667 68.83333 67.16667 70.16667 70.83333
  [553] 67.16667 67.83333 67.33333 67.00000 67.66667 67.83333 68.16667 68.00000
  [561] 68.50000 71.16667 68.00000 68.83333 69.83333 70.66667 70.50000 66.83333
  [569] 68.33333 68.83333 68.00000 68.33333 68.16667 68.66667 67.16667 67.83333
  [577] 66.33333 66.83333 69.50000 68.83333 68.00000 69.16667 67.66667 69.33333
  [585] 70.16667 70.50000 68.16667 68.50000 68.33333 69.50000 69.50000 67.50000
  [593] 67.16667 66.66667 68.66667 67.66667 67.50000 69.00000 67.50000 68.00000
  [601] 70.00000 68.33333 70.00000 68.83333 67.66667 69.33333 69.16667 69.16667
  [609] 70.66667 69.00000 68.00000 68.33333 70.00000 69.33333 65.83333 69.00000
  [617] 68.50000 70.00000 70.33333 70.33333 66.83333 69.00000 69.16667 68.16667
  [625] 68.16667 69.33333 68.33333 70.33333 67.66667 70.33333 67.83333 68.00000
  [633] 69.66667 69.16667 69.00000 68.00000 70.50000 72.50000 70.33333 67.66667
  [641] 69.50000 70.16667 70.00000 69.33333 69.50000 68.50000 68.00000 68.00000
  [649] 69.50000 69.00000 69.50000 69.33333 67.33333 69.66667 69.00000 70.50000
  [657] 69.33333 69.66667 70.50000 65.50000 68.16667 69.33333 67.00000 68.00000
  [665] 68.66667 70.66667 66.83333 70.00000 69.00000 70.16667 69.83333 68.16667
  [673] 65.83333 67.33333 69.33333 66.83333 68.00000 67.66667 70.66667 67.66667
  [681] 69.16667 69.00000 67.33333 68.00000 68.00000 66.66667 68.66667 69.83333
  [689] 69.16667 69.50000 69.33333 66.00000 67.33333 68.83333 67.50000 68.50000
  [697] 70.33333 69.00000 68.50000 68.16667 68.66667 69.83333 67.83333 71.33333
  [705] 69.16667 70.50000 68.33333 68.16667 70.83333 67.66667 66.33333 68.50000
  [713] 70.16667 69.16667 68.83333 68.33333 66.66667 71.50000 69.50000 68.33333
  [721] 68.66667 69.83333 72.50000 69.83333 69.33333 69.16667 66.66667 69.83333
  [729] 69.66667 67.33333 68.33333 68.33333 68.00000 69.16667 68.50000 66.83333
  [737] 69.83333 68.50000 68.50000 70.00000 68.33333 68.50000 69.66667 68.33333
  [745] 69.33333 69.00000 68.66667 67.50000 69.16667 69.50000 68.00000 69.33333
  [753] 70.66667 68.50000 71.16667 67.66667 66.66667 68.00000 69.16667 70.66667
  [761] 70.50000 68.50000 67.50000 71.83333 69.66667 71.00000 69.66667 70.16667
  [769] 69.16667 70.50000 70.00000 68.66667 67.16667 66.66667 70.16667 68.83333
  [777] 68.33333 69.33333 69.00000 70.00000 68.00000 68.33333 68.83333 68.83333
  [785] 68.33333 68.33333 69.66667 70.16667 70.33333 70.00000 68.50000 71.50000
  [793] 68.16667 66.33333 68.00000 70.50000 69.83333 69.33333 67.00000 70.00000
  [801] 70.33333 69.50000 67.83333 67.50000 69.16667 66.33333 68.50000 69.33333
  [809] 70.83333 67.50000 68.66667 67.16667 68.66667 70.83333 70.00000 68.00000
  [817] 68.83333 68.83333 68.83333 69.33333 68.50000 69.33333 69.83333 68.00000
  [825] 68.00000 68.00000 71.50000 69.50000 68.83333 67.83333 66.83333 69.33333
  [833] 69.50000 68.83333 67.66667 67.16667 70.16667 69.00000 67.83333 69.00000
  [841] 69.16667 70.83333 69.00000 71.83333 68.66667 71.00000 69.00000 69.16667
  [849] 68.33333 66.83333 69.50000 69.16667 67.16667 67.83333 68.16667 66.33333
  [857] 68.33333 70.16667 70.83333 69.66667 69.66667 66.83333 68.00000 69.33333
  [865] 70.33333 69.66667 69.00000 70.50000 69.50000 68.66667 66.66667 70.16667
  [873] 69.66667 70.16667 70.83333 66.66667 71.00000 68.50000 68.83333 69.33333
  [881] 69.50000 67.16667 68.66667 68.33333 71.00000 67.33333 68.83333 68.83333
  [889] 68.50000 66.33333 68.16667 68.66667 68.00000 68.50000 70.66667 67.66667
  [897] 67.16667 66.00000 70.16667 69.66667 68.33333 69.83333 70.16667 71.16667
  [905] 69.83333 70.66667 72.16667 67.66667 69.33333 67.33333 66.83333 69.66667
  [913] 71.00000 67.50000 69.00000 69.66667 69.33333 68.33333 67.66667 68.83333
  [921] 68.00000 68.50000 68.33333 70.66667 65.50000 69.16667 68.83333 69.00000
  [929] 68.83333 69.50000 68.50000 67.66667 69.00000 69.16667 67.16667 71.16667
  [937] 70.50000 69.50000 68.66667 69.83333 68.83333 70.50000 69.83333 68.00000
  [945] 69.50000 65.50000 69.16667 69.50000 67.50000 69.16667 69.16667 71.33333
  [953] 68.00000 67.83333 68.33333 68.83333 70.33333 68.83333 71.33333 69.66667
  [961] 69.66667 68.50000 67.50000 70.16667 68.66667 70.66667 70.16667 69.16667
  [969] 71.00000 70.16667 70.66667 68.00000 69.33333 72.16667 68.66667 70.00000
  [977] 70.66667 68.00000 71.16667 70.66667 68.00000 68.50000 67.33333 65.83333
  [985] 68.33333 68.33333 68.66667 69.16667 67.00000 69.00000 69.50000 69.83333
  [993] 69.16667 67.50000 71.16667 68.83333 66.33333 67.00000 68.50000 67.83333
 [1001] 70.16667 67.50000 67.16667 68.16667 68.50000 68.66667 67.83333 69.16667
 [1009] 67.83333 67.16667 69.33333 67.16667 69.33333 67.16667 66.83333 66.00000
 [1017] 68.16667 67.33333 69.33333 68.00000 70.33333 67.83333 67.66667 70.83333
 [1025] 69.83333 67.16667 67.16667 72.16667 67.50000 68.83333 68.50000 69.00000
 [1033] 70.16667 66.83333 71.83333 69.66667 69.50000 68.83333 67.16667 68.66667
 [1041] 68.33333 69.16667 68.66667 69.50000 69.33333 69.50000 68.16667 66.33333
 [1049] 69.50000 67.00000 66.16667 68.66667 67.33333 69.33333 66.66667 69.66667
 [1057] 67.83333 68.66667 68.83333 70.33333 70.00000 68.16667 66.33333 69.50000
 [1065] 68.33333 69.33333 68.66667 67.33333 66.00000 69.33333 69.16667 68.50000
 [1073] 67.66667 70.66667 67.83333 71.33333 70.66667 70.33333 70.00000 68.33333
 [1081] 68.50000 69.33333 68.00000 68.50000 69.83333 69.16667 69.50000 71.16667
 [1089] 68.50000 67.33333 70.00000 68.50000 69.50000 70.83333 68.16667 70.16667
 [1097] 69.66667 68.16667 68.83333 68.33333 68.16667 69.16667 68.00000 67.66667
 [1105] 68.66667 70.16667 69.50000 66.66667 66.33333 68.66667 70.33333 68.00000
 [1113] 69.66667 67.16667 67.66667 67.50000 69.66667 68.83333 67.83333 70.50000
 [1121] 69.00000 70.50000 70.00000 66.33333 66.33333 70.83333 67.83333 71.33333
 [1129] 67.66667 67.33333 70.00000 70.50000 66.33333 70.16667 67.16667 67.16667
 [1137] 70.16667 69.50000 68.83333 69.33333 70.33333 69.33333 71.33333 68.16667
 [1145] 68.00000 70.50000 67.33333 69.83333 68.83333 66.83333 67.50000 67.66667
 [1153] 66.66667 68.00000 70.33333 69.33333 68.00000 66.33333 68.16667 68.83333
 [1161] 68.50000 69.16667 71.16667 66.33333 70.00000 69.50000 69.66667 66.66667
 [1169] 69.50000 68.66667 71.33333 68.16667 69.66667 71.66667 68.66667 68.83333
 [1177] 67.83333 69.16667 70.00000 67.50000 69.16667 70.33333 68.50000 69.66667
 [1185] 68.33333 68.50000 70.00000 67.16667 66.16667 68.16667 66.83333 70.33333
 [1193] 68.50000 68.00000 67.66667 67.83333 72.33333 70.83333 67.66667 69.16667
 [1201] 70.16667 68.33333 68.66667 70.16667 69.66667 69.33333 65.83333 67.50000
 [1209] 66.66667 69.66667 66.83333 70.83333 68.66667 68.83333 67.66667 68.83333
 [1217] 68.33333 67.16667 68.16667 66.83333 68.33333 70.83333 65.83333 68.16667
 [1225] 67.33333 70.66667 68.83333 67.33333 67.83333 68.50000 70.16667 70.16667
 [1233] 70.00000 68.33333 66.33333 68.66667 67.16667 68.16667 68.83333 67.66667
 [1241] 69.83333 70.50000 70.16667 70.00000 68.00000 66.66667 66.83333 68.83333
 [1249] 70.83333 68.83333 68.00000 69.00000 68.00000 68.33333 68.83333 68.50000
 [1257] 70.50000 67.66667 66.33333 68.33333 67.66667 69.33333 68.33333 68.83333
 [1265] 69.00000 67.33333 70.00000 67.16667 66.33333 68.83333 70.66667 70.00000
 [1273] 66.66667 70.33333 68.50000 69.00000 71.00000 68.00000 69.66667 68.50000
 [1281] 69.00000 66.16667 68.83333 66.66667 71.00000 69.16667 69.83333 67.33333
 [1289] 68.33333 67.33333 69.66667 70.50000 69.66667 70.00000 69.00000 71.50000
 [1297] 70.33333 66.83333 68.83333 69.66667 69.50000 70.33333 69.33333 67.50000
 [1305] 68.16667 72.00000 68.50000 71.16667 70.00000 67.33333 67.66667 69.00000
 [1313] 66.66667 68.50000 66.66667 70.00000 68.66667 69.33333 68.66667 69.33333
 [1321] 67.50000 70.00000 69.66667 70.16667 70.33333 70.00000 68.00000 69.16667
 [1329] 69.66667 69.33333 68.00000 71.50000 69.33333 69.00000 71.33333 68.00000
 [1337] 69.50000 69.33333 70.00000 68.16667 69.50000 68.33333 70.50000 68.50000
 [1345] 67.83333 71.66667 68.33333 68.16667 69.83333 67.50000 69.83333 69.66667
 [1353] 68.50000 67.50000 69.66667 68.16667 70.83333 69.66667 68.00000 68.00000
 [1361] 68.66667 69.66667 67.16667 68.66667 67.50000 69.00000 70.16667 68.50000
 [1369] 72.50000 70.00000 68.16667 68.16667 68.83333 68.66667 68.66667 68.16667
 [1377] 70.66667 68.50000 69.66667 72.16667 67.50000 72.66667 69.00000 70.33333
 [1385] 69.33333 69.50000 70.16667 68.00000 68.33333 68.83333 66.66667 70.83333
 [1393] 71.16667 68.50000 69.33333 69.00000 67.66667 69.33333 66.00000 70.00000
 [1401] 67.50000 67.50000 67.16667 69.00000 69.33333 68.33333 68.50000 72.16667
 [1409] 67.33333 70.83333 70.16667 68.50000 69.33333 68.83333 68.33333 69.66667
 [1417] 70.50000 67.66667 69.00000 69.66667 66.00000 70.16667 68.83333 68.00000
 [1425] 67.00000 69.83333 69.33333 68.16667 69.66667 67.00000 67.00000 68.50000
 [1433] 68.33333 69.16667 69.83333 68.00000 69.33333 68.66667 70.16667 71.33333
 [1441] 71.16667 68.50000 69.33333 70.16667 69.83333 68.00000 67.66667 69.16667
 [1449] 71.50000 70.16667 70.16667 68.16667 68.00000 68.50000 68.83333 70.00000
 [1457] 69.50000 69.00000 69.66667 71.00000 68.83333 67.66667 66.83333 68.00000
 [1465] 71.50000 70.33333 66.00000 68.66667 69.33333 70.16667 70.66667 70.00000
 [1473] 68.66667 69.50000 70.50000 69.33333 68.33333 68.33333 66.83333 69.33333
 [1481] 69.16667 69.00000 68.00000 70.33333 68.50000 70.50000 65.50000 68.50000
 [1489] 68.16667 67.66667 69.50000 69.16667 68.00000 67.16667 69.50000 67.66667
 [1497] 69.83333 69.66667 69.00000 69.50000 67.50000 69.16667 67.33333 70.66667
 [1505] 67.16667 68.83333 68.66667 70.00000 69.33333 68.00000 70.66667 70.50000
 [1513] 68.50000 67.00000 70.66667 68.33333 70.16667 67.50000 68.50000 69.33333
 [1521] 68.83333 67.33333 67.50000 69.33333 68.16667 67.83333 68.33333 71.33333
 [1529] 70.00000 68.66667 69.83333 67.50000 68.83333 70.00000 69.00000 66.66667
 [1537] 69.50000 69.00000 68.50000 69.50000 71.16667 67.83333 67.50000 69.50000
 [1545] 66.00000 69.16667 69.50000 66.33333 69.66667 68.66667 70.16667 70.16667
 [1553] 70.16667 66.50000 68.83333 67.00000 69.33333 67.33333 69.16667 70.50000
 [1561] 68.16667 69.33333 70.50000 68.16667 70.50000 67.83333 68.50000 67.16667
 [1569] 68.16667 70.00000 68.00000 68.16667 67.83333 69.50000 66.00000 68.00000
 [1577] 68.66667 66.83333 68.83333 70.83333 68.66667 67.66667 68.16667 68.50000
 [1585] 70.00000 68.66667 68.50000 66.83333 68.66667 69.00000 68.83333 66.66667
 [1593] 69.00000 68.66667 66.33333 69.66667 68.66667 69.66667 70.16667 68.16667
 [1601] 69.83333 69.33333 70.00000 67.83333 67.50000 68.83333 70.66667 69.83333
 [1609] 69.50000 68.83333 65.83333 67.33333 67.33333 70.33333 70.66667 67.66667
 [1617] 68.50000 69.66667 68.83333 68.00000 68.33333 66.66667 69.33333 70.33333
 [1625] 68.16667 68.00000 67.33333 67.00000 68.50000 68.50000 70.00000 70.00000
 [1633] 70.16667 68.33333 67.50000 69.50000 66.66667 68.66667 69.50000 70.33333
 [1641] 70.16667 68.66667 68.33333 69.50000 69.16667 68.83333 71.00000 69.33333
 [1649] 66.83333 66.33333 68.66667 68.66667 70.16667 65.00000 68.00000 66.83333
 [1657] 70.50000 70.00000 69.33333 70.00000 68.00000 70.33333 68.83333 69.83333
 [1665] 68.16667 70.50000 66.66667 68.66667 69.83333 68.33333 68.83333 67.83333
 [1673] 68.33333 70.16667 69.83333 66.33333 67.16667 69.16667 67.50000 68.66667
 [1681] 70.00000 69.66667 68.00000 69.16667 68.16667 69.83333 68.83333 68.66667
 [1689] 70.16667 69.00000 69.50000 67.16667 66.83333 68.50000 69.66667 70.83333
 [1697] 68.83333 68.33333 70.50000 69.33333 67.66667 68.50000 66.00000 69.50000
 [1705] 69.50000 71.66667 66.33333 70.83333 67.66667 70.33333 67.50000 68.83333
 [1713] 68.83333 68.33333 67.66667 69.33333 67.33333 67.16667 68.50000 67.83333
 [1721] 66.83333 68.66667 68.33333 69.16667 69.00000 71.00000 68.66667 69.16667
 [1729] 68.00000 70.50000 67.83333 68.50000 69.00000 67.83333 66.83333 68.66667
 [1737] 69.16667 67.16667 69.33333 70.00000 68.50000 65.50000 68.16667 68.16667
 [1745] 67.33333 70.16667 69.16667 66.00000 70.00000 71.33333 67.66667 68.50000
 [1753] 69.83333 68.16667 68.66667 67.33333 68.50000 70.83333 68.83333 70.00000
 [1761] 66.33333 67.33333 66.83333 70.33333 70.16667 69.66667 68.00000 70.83333
 [1769] 69.33333 70.50000 68.33333 65.50000 70.66667 67.16667 69.50000 70.83333
 [1777] 68.83333 69.33333 67.66667 67.83333 69.16667 69.83333 68.83333 66.83333
 [1785] 67.83333 67.66667 69.83333 69.16667 67.66667 67.50000 69.33333 71.33333
 [1793] 69.50000 70.00000 67.83333 71.33333 72.33333 69.50000 68.00000 68.83333
 [1801] 68.66667 68.50000 67.16667 68.83333 69.83333 71.16667 68.00000 68.33333
 [1809] 69.83333 68.50000 68.66667 69.66667 67.16667 69.83333 68.00000 69.00000
 [1817] 69.33333 67.00000 70.16667 68.83333 68.66667 69.33333 68.33333 71.83333
 [1825] 69.50000 68.00000 67.83333 69.66667 68.00000 66.66667 67.16667 68.33333
 [1833] 69.83333 69.16667 67.50000 71.33333 71.33333 68.83333 69.16667 69.50000
 [1841] 68.33333 68.50000 70.00000 70.50000 68.33333 67.66667 68.16667 70.50000
 [1849] 68.33333 67.50000 68.00000 68.66667 69.66667 70.16667 68.83333 71.50000
 [1857] 69.16667 68.66667 68.33333 66.66667 69.83333 67.33333 68.33333 70.66667
 [1865] 68.00000 69.16667 68.66667 71.50000 70.33333 68.66667 69.66667 69.66667
 [1873] 70.66667 70.00000 69.66667 67.83333 69.33333 69.50000 68.66667 69.00000
 [1881] 68.16667 70.00000 69.33333 67.00000 68.16667 69.33333 66.50000 68.00000
 [1889] 67.00000 68.50000 70.16667 68.00000 67.16667 68.66667 66.66667 68.83333
 [1897] 69.50000 69.66667 68.33333 70.00000 67.33333 69.33333 70.00000 70.33333
 [1905] 68.50000 68.33333 69.16667 65.83333 70.83333 68.50000 69.16667 68.66667
 [1913] 67.50000 69.50000 66.83333 68.50000 70.50000 67.16667 70.66667 68.83333
 [1921] 66.66667 68.50000 67.50000 66.33333 69.66667 68.50000 67.83333 70.50000
 [1929] 69.33333 67.66667 68.33333 69.16667 70.66667 69.16667 68.00000 68.83333
 [1937] 67.50000 70.66667 69.00000 68.16667 69.00000 69.00000 68.00000 68.50000
 [1945] 68.16667 68.33333 66.16667 67.83333 68.16667 67.83333 67.83333 65.00000
 [1953] 68.33333 70.33333 68.33333 70.66667 68.83333 68.83333 69.66667 69.00000
 [1961] 68.50000 70.66667 69.16667 69.33333 68.83333 68.66667 69.50000 68.33333
 [1969] 68.00000 67.16667 69.33333 70.16667 69.66667 69.33333 69.16667 68.16667
 [1977] 68.50000 68.00000 70.16667 66.33333 68.00000 67.83333 68.00000 70.00000
 [1985] 68.83333 67.66667 67.50000 68.66667 68.16667 68.66667 69.16667 69.16667
 [1993] 70.66667 68.00000 71.33333 68.83333 69.16667 68.83333 66.66667 68.16667
 [2001] 68.33333 69.33333 67.16667 67.33333 67.83333 68.50000 70.50000 68.66667
 [2009] 67.16667 68.50000 67.16667 65.83333 69.83333 67.16667 69.33333 70.16667
 [2017] 70.83333 67.66667 68.00000 68.33333 68.83333 68.50000 68.16667 68.83333
 [2025] 67.16667 68.50000 69.33333 69.33333 68.00000 70.16667 71.50000 67.83333
 [2033] 67.66667 68.16667 67.66667 67.33333 68.50000 67.50000 67.33333 67.00000
 [2041] 68.83333 70.83333 69.50000 68.50000 67.83333 66.00000 67.66667 68.00000
 [2049] 69.33333 68.66667 70.66667 69.33333 70.66667 68.50000 68.66667 69.16667
 [2057] 68.66667 69.33333 70.00000 67.16667 70.16667 70.16667 71.00000 68.66667
 [2065] 69.83333 68.00000 68.00000 69.33333 72.16667 69.33333 67.50000 67.50000
 [2073] 69.00000 68.66667 66.50000 68.50000 70.00000 69.16667 67.83333 68.66667
 [2081] 69.50000 69.00000 67.16667 68.83333 71.16667 69.50000 70.00000 69.50000
 [2089] 69.66667 67.33333 69.33333 68.83333 66.83333 68.00000 70.00000 69.66667
 [2097] 68.00000 68.33333 69.33333 68.50000 70.16667 69.00000 69.83333 69.33333
 [2105] 68.83333 71.33333 69.50000 70.00000 68.66667 69.83333 68.50000 66.33333
 [2113] 67.66667 69.66667 69.66667 70.16667 68.00000 68.33333 70.33333 70.50000
 [2121] 69.50000 68.00000 67.50000 68.16667 68.50000 68.50000 68.00000 68.00000
 [2129] 69.50000 69.66667 69.16667 67.16667 68.66667 70.66667 67.50000 68.66667
 [2137] 65.00000 69.50000 68.33333 67.16667 67.00000 69.50000 70.00000 69.66667
 [2145] 68.50000 68.00000 68.83333 68.16667 68.83333 71.00000 69.33333 67.83333
 [2153] 66.66667 68.50000 69.33333 67.00000 69.33333 69.33333 68.50000 71.00000
 [2161] 67.66667 69.83333 71.33333 68.83333 67.50000 67.66667 70.16667 69.50000
 [2169] 66.33333 69.50000 69.16667 65.83333 68.33333 68.66667 69.00000 66.83333
 [2177] 67.16667 68.16667 69.33333 68.66667 68.00000 69.16667 69.66667 68.00000
 [2185] 68.83333 67.50000 66.83333 68.16667 66.66667 67.16667 68.00000 68.83333
 [2193] 67.16667 67.66667 69.83333 68.00000 67.50000 67.66667 69.33333 67.50000
 [2201] 68.83333 69.00000 68.33333 68.83333 69.16667 68.83333 69.33333 66.66667
 [2209] 68.50000 71.00000 65.50000 68.83333 71.00000 68.00000 66.83333 67.83333
 [2217] 70.33333 68.50000 69.66667 69.33333 69.00000 69.50000 67.16667 70.33333
 [2225] 69.00000 68.33333 68.66667 70.83333 67.83333 68.83333 67.66667 67.33333
 [2233] 70.66667 66.83333 69.16667 68.00000 68.50000 68.66667 68.00000 68.83333
 [2241] 70.33333 66.33333 68.16667 67.16667 71.66667 68.16667 70.50000 71.33333
 [2249] 68.00000 69.83333 69.83333 70.33333 68.83333 68.66667 68.66667 69.50000
 [2257] 69.66667 69.66667 68.00000 69.66667 68.66667 71.50000 66.66667 69.50000
 [2265] 68.50000 70.50000 71.16667 67.83333 67.33333 68.66667 70.00000 70.50000
 [2273] 70.33333 69.33333 69.00000 69.83333 70.33333 67.33333 69.83333 69.33333
 [2281] 69.00000 68.66667 69.00000 69.33333 68.00000 67.50000 68.83333 68.83333
 [2289] 68.83333 67.50000 68.83333 70.16667 70.00000 68.50000 68.50000 67.16667
 [2297] 67.33333 69.33333 67.83333 67.16667 68.83333 70.50000 72.16667 69.83333
 [2305] 66.66667 67.16667 70.33333 69.66667 69.16667 68.33333 69.16667 68.50000
 [2313] 70.00000 70.16667 68.66667 68.50000 66.83333 68.83333 69.16667 67.50000
 [2321] 67.33333 69.33333 70.83333 68.00000 68.66667 69.66667 69.16667 65.83333
 [2329] 69.66667 69.33333 68.50000 69.83333 67.33333 70.83333 70.16667 67.66667
 [2337] 69.50000 67.83333 67.66667 70.16667 69.66667 66.33333 68.33333 70.16667
 [2345] 70.83333 67.66667 70.66667 68.50000 69.66667 69.50000 68.00000 69.16667
 [2353] 68.16667 70.33333 69.33333 66.83333 69.33333 69.66667 71.00000 68.00000
 [2361] 69.00000 67.50000 68.50000 68.83333 68.33333 69.66667 69.00000 68.83333
 [2369] 68.50000 67.00000 67.83333 69.50000 69.66667 69.50000 67.50000 69.16667
 [2377] 69.00000 70.33333 68.33333 70.33333 69.16667 67.33333 68.00000 68.00000
 [2385] 70.00000 69.83333 68.66667 67.83333 68.66667 69.66667 69.50000 68.66667
 [2393] 69.33333 68.00000 69.83333 67.33333 69.66667 70.33333 68.66667 67.33333
 [2401] 69.00000 68.33333 66.33333 67.83333 68.00000 67.33333 68.50000 71.33333
 [2409] 66.33333 69.00000 69.50000 69.50000 66.66667 66.83333 70.00000 68.50000
 [2417] 68.00000 66.83333 68.33333 71.83333 70.50000 70.16667 71.66667 69.16667
 [2425] 68.16667 69.50000 70.00000 70.83333 70.66667 68.50000 69.33333 70.16667
 [2433] 66.33333 67.50000 68.33333 69.66667 67.16667 66.00000 68.33333 68.16667
 [2441] 66.66667 67.33333 68.66667 67.83333 69.83333 68.83333 68.33333 68.83333
 [2449] 69.33333 68.00000 68.83333 68.16667 68.16667 70.00000 68.00000 67.16667
 [2457] 66.83333 68.50000 69.50000 68.83333 68.00000 69.83333 68.33333 67.83333
 [2465] 69.16667 68.00000 69.50000 67.66667 68.83333 70.00000 70.50000 69.33333
 [2473] 68.66667 69.50000 69.33333 67.66667 69.50000 69.50000 67.66667 69.83333
 [2481] 66.00000 68.33333 69.00000 70.50000 68.66667 69.66667 69.33333 69.33333
 [2489] 67.83333 70.33333 70.83333 66.33333 68.00000 68.50000 66.33333 69.16667
 [2497] 71.66667 69.66667 68.00000 69.16667 70.33333 68.16667 68.83333 67.16667
 [2505] 66.83333 69.50000 66.66667 70.66667 68.50000 68.33333 69.83333 68.00000
 [2513] 67.66667 68.83333 69.33333 69.33333 69.33333 70.00000 69.66667 70.66667
 [2521] 70.00000 71.16667 68.33333 69.33333 69.16667 69.50000 70.00000 69.50000
 [2529] 69.33333 68.50000 67.50000 67.50000 71.33333 68.33333 69.16667 71.00000
 [2537] 66.50000 71.16667 69.50000 69.16667 69.16667 67.16667 66.66667 70.66667
 [2545] 69.16667 68.66667 69.33333 69.50000 66.66667 68.83333 67.83333 69.50000
 [2553] 67.00000 68.83333 69.83333 70.16667 67.50000 68.83333 68.33333 69.16667
 [2561] 67.50000 69.33333 70.16667 68.50000 70.00000 69.16667 69.33333 69.83333
 [2569] 67.16667 66.16667 69.33333 69.33333 69.33333 66.33333 67.66667 68.33333
 [2577] 70.33333 70.66667 70.00000 68.00000 67.66667 68.50000 69.66667 66.33333
 [2585] 69.00000 70.16667 70.50000 69.83333 70.00000 71.00000 70.16667 69.00000
 [2593] 68.00000 68.16667 70.50000 70.66667 69.16667 68.50000 69.16667 67.83333
 [2601] 66.83333 68.00000 68.83333 70.83333 69.16667 67.66667 69.50000 69.50000
 [2609] 68.83333 71.16667 67.50000 69.50000 68.16667 68.00000 68.16667 69.33333
 [2617] 70.83333 66.83333 69.66667 68.33333 69.16667 68.50000 68.33333 69.16667
 [2625] 69.33333 69.33333 71.50000 68.83333 66.66667 68.00000 70.66667 69.83333
 [2633] 66.66667 68.33333 67.50000 70.16667 66.33333 65.50000 69.50000 70.16667
 [2641] 70.00000 69.33333 70.00000 66.33333 68.83333 68.50000 67.66667 68.83333
 [2649] 67.83333 67.33333 70.50000 70.50000 67.16667 67.66667 68.00000 66.66667
 [2657] 70.33333 70.33333 70.16667 68.00000 69.00000 70.33333 66.83333 69.83333
 [2665] 68.00000 71.00000 67.00000 71.66667 68.66667 67.16667 69.50000 70.50000
 [2673] 67.33333 68.00000 71.16667 69.16667 69.50000 67.16667 66.66667 67.83333
 [2681] 67.66667 68.83333 68.33333 69.16667 66.83333 71.50000 69.33333 68.33333
 [2689] 69.16667 65.83333 68.66667 65.50000 68.50000 68.66667 70.50000 71.50000
 [2697] 71.16667 71.66667 68.00000 71.16667 67.00000 69.16667 67.83333 67.66667
 [2705] 69.16667 66.66667 69.50000 67.83333 69.00000 67.00000 67.66667 67.33333
 [2713] 69.16667 70.66667 68.83333 69.16667 70.16667 68.66667 68.16667 70.33333
 [2721] 69.16667 68.83333 67.00000 68.16667 68.33333 68.83333 67.50000 68.50000
 [2729] 67.66667 67.33333 68.16667 69.16667 68.00000 69.66667 71.00000 68.33333
 [2737] 67.83333 70.00000 70.50000 71.00000 69.00000 69.00000 69.33333 70.50000
 [2745] 69.33333 68.16667 69.66667 68.50000 70.16667 68.33333 66.66667 69.00000
 [2753] 70.00000 68.83333 68.00000 71.50000 67.83333 67.83333 66.50000 70.66667
 [2761] 65.50000 71.16667 69.00000 68.50000 68.16667 69.66667 66.00000 71.83333
 [2769] 70.50000 67.66667 70.33333 69.16667 68.00000 69.00000 67.50000 69.50000
 [2777] 67.50000 69.66667 69.83333 67.16667 69.66667 69.66667 69.16667 69.83333
 [2785] 67.16667 68.00000 69.33333 66.66667 70.83333 69.66667 69.66667 67.66667
 [2793] 70.00000 67.66667 67.66667 70.00000 70.83333 68.50000 69.33333 67.83333
 [2801] 68.50000 69.33333 70.33333 71.33333 72.66667 66.33333 67.66667 69.66667
 [2809] 69.33333 70.00000 69.16667 67.00000 69.66667 66.33333 70.83333 67.83333
 [2817] 70.66667 68.50000 69.33333 67.66667 68.33333 68.83333 67.50000 70.00000
 [2825] 70.00000 70.16667 70.33333 70.66667 68.50000 69.50000 70.50000 67.50000
 [2833] 67.50000 66.00000 68.50000 67.16667 68.83333 67.16667 69.83333 68.66667
 [2841] 72.00000 69.16667 65.50000 70.33333 67.50000 66.16667 68.16667 68.33333
 [2849] 68.33333 70.33333 67.83333 69.50000 66.33333 69.66667 68.00000 67.50000
 [2857] 70.16667 67.16667 69.16667 70.33333 71.16667 67.33333 66.66667 69.33333
 [2865] 68.83333 68.66667 68.50000 67.00000 68.66667 69.33333 69.66667 71.33333
 [2873] 69.66667 68.83333 69.16667 69.33333 68.66667 70.16667 69.33333 69.16667
 [2881] 69.00000 70.50000 68.66667 67.66667 69.33333 69.50000 68.33333 69.00000
 [2889] 70.66667 68.50000 68.00000 69.66667 70.00000 68.33333 69.16667 67.50000
 [2897] 70.33333 69.16667 68.00000 67.83333 68.16667 69.83333 69.00000 67.50000
 [2905] 67.50000 67.50000 71.16667 69.83333 71.50000 67.66667 67.66667 70.16667
 [2913] 70.16667 67.16667 69.33333 69.16667 70.00000 66.66667 68.16667 67.50000
 [2921] 70.83333 69.16667 68.66667 69.00000 68.66667 69.83333 69.33333 69.33333
 [2929] 70.83333 68.00000 69.16667 68.16667 70.66667 69.16667 68.00000 70.16667
 [2937] 68.83333 66.83333 67.00000 68.83333 69.33333 67.83333 68.50000 70.83333
 [2945] 68.00000 67.00000 69.66667 71.00000 66.66667 67.50000 68.33333 69.66667
 [2953] 72.66667 70.66667 69.00000 69.50000 65.50000 68.33333 71.16667 68.83333
 [2961] 69.33333 69.50000 67.16667 68.00000 68.00000 67.16667 69.33333 69.83333
 [2969] 69.33333 68.83333 69.00000 69.33333 70.33333 68.16667 69.66667 68.50000
 [2977] 68.50000 67.16667 68.66667 70.83333 70.50000 67.33333 69.33333 68.00000
 [2985] 66.66667 68.66667 72.16667 70.83333 67.83333 69.00000 69.50000 69.33333
 [2993] 67.16667 69.00000 67.50000 67.16667 67.16667 69.16667 70.50000 67.83333
 [3001] 70.50000 69.00000 68.50000 67.83333 70.50000 69.16667 67.16667 70.83333
 [3009] 68.00000 69.16667 68.33333 68.83333 69.83333 71.33333 71.33333 69.83333
 [3017] 68.83333 69.16667 68.33333 71.66667 68.83333 68.50000 67.33333 67.83333
 [3025] 69.66667 67.33333 70.66667 69.33333 69.66667 66.33333 69.16667 68.00000
 [3033] 68.33333 70.33333 69.50000 67.66667 69.00000 67.33333 70.33333 69.00000
 [3041] 70.00000 69.16667 68.83333 68.50000 68.16667 66.83333 67.66667 69.83333
 [3049] 69.33333 68.83333 69.00000 69.83333 66.83333 70.66667 69.33333 66.83333
 [3057] 69.33333 69.16667 66.16667 66.83333 70.50000 70.00000 68.00000 69.66667
 [3065] 70.33333 69.50000 67.16667 70.00000 69.33333 71.00000 69.66667 70.50000
 [3073] 70.16667 69.00000 68.16667 68.50000 65.50000 68.50000 70.83333 66.83333
 [3081] 68.00000 66.00000 67.50000 65.83333 70.66667 67.33333 67.16667 69.83333
 [3089] 68.50000 69.83333 71.16667 69.33333 70.50000 68.00000 69.16667 67.66667
 [3097] 66.83333 69.50000 67.00000 69.83333 69.66667 70.33333 68.83333 69.33333
 [3105] 69.66667 68.16667 67.50000 69.33333 68.50000 66.33333 69.16667 69.83333
 [3113] 69.50000 68.00000 68.83333 68.83333 68.83333 69.50000 69.00000 70.16667
 [3121] 68.66667 69.00000 67.50000 70.50000 69.50000 70.50000 69.16667 69.83333
 [3129] 68.50000 69.83333 70.16667 68.66667 69.33333 70.00000 66.33333 70.83333
 [3137] 69.50000 69.00000 69.83333 68.16667 70.00000 70.00000 67.66667 70.00000
 [3145] 68.66667 69.16667 65.50000 69.33333 69.00000 69.66667 70.00000 69.33333
 [3153] 71.16667 69.16667 68.16667 67.16667 69.66667 69.33333 69.83333 68.33333
 [3161] 67.66667 69.83333 69.33333 67.50000 66.66667 69.16667 68.83333 67.66667
 [3169] 71.66667 68.33333 69.66667 70.83333 69.66667 71.16667 67.83333 69.50000
 [3177] 71.33333 68.83333 70.16667 66.33333 70.16667 69.33333 70.50000 66.83333
 [3185] 68.50000 71.00000 70.00000 66.83333 68.83333 67.50000 67.16667 68.50000
 [3193] 70.66667 67.00000 70.50000 68.66667 69.83333 69.00000 66.66667 68.83333
 [3201] 68.66667 70.00000 70.33333 68.00000 69.00000 67.66667 67.33333 68.50000
 [3209] 69.50000 68.66667 70.33333 67.33333 68.00000 66.83333 69.00000 67.50000
 [3217] 68.66667 68.33333 66.33333 70.16667 67.50000 68.16667 69.50000 69.16667
 [3225] 68.66667 68.00000 69.83333 67.83333 66.50000 67.66667 68.50000 71.00000
 [3233] 70.16667 70.66667 68.66667 69.16667 70.00000 68.33333 70.33333 68.66667
 [3241] 70.50000 69.83333 70.83333 68.50000 66.33333 69.00000 69.00000 69.16667
 [3249] 66.50000 69.33333 68.00000 69.83333 67.50000 70.16667 67.33333 67.66667
 [3257] 67.16667 70.33333 68.00000 68.66667 66.83333 69.16667 69.83333 68.83333
 [3265] 68.33333 69.66667 69.33333 68.66667 69.00000 69.16667 68.16667 68.50000
 [3273] 67.50000 68.66667 68.33333 66.16667 67.83333 69.83333 67.83333 68.83333
 [3281] 68.83333 70.66667 71.16667 69.33333 68.50000 69.33333 68.16667 69.50000
 [3289] 68.66667 67.16667 68.16667 68.66667 70.00000 70.00000 66.33333 71.00000
 [3297] 69.66667 68.83333 67.83333 68.33333 68.00000 71.83333 71.33333 68.00000
 [3305] 67.66667 69.00000 69.33333 68.66667 69.33333 68.33333 70.66667 69.16667
 [3313] 69.50000 69.50000 70.66667 66.83333 68.50000 70.16667 69.00000 68.00000
 [3321] 69.00000 68.66667 66.33333 67.50000 70.83333 70.33333 69.33333 69.33333
 [3329] 68.50000 68.83333 68.83333 71.00000 68.50000 70.83333 69.00000 68.33333
 [3337] 67.66667 70.83333 70.50000 69.33333 69.33333 69.16667 67.50000 68.33333
 [3345] 66.33333 69.16667 68.00000 68.00000 70.16667 68.50000 68.83333 68.66667
 [3353] 68.50000 65.50000 69.50000 67.83333 70.33333 67.83333 69.66667 69.33333
 [3361] 70.00000 70.16667 68.00000 71.33333 67.16667 68.33333 68.00000 69.33333
 [3369] 68.00000 69.66667 69.50000 69.50000 70.16667 71.16667 70.16667 68.00000
 [3377] 70.66667 67.33333 68.83333 69.50000 70.16667 69.50000 70.33333 67.66667
 [3385] 71.00000 70.16667 67.50000 69.83333 68.66667 67.50000 67.83333 70.00000
 [3393] 68.16667 70.16667 68.16667 69.00000 69.83333 69.83333 69.33333 70.16667
 [3401] 69.00000 68.33333 70.50000 68.16667 67.83333 69.33333 69.66667 70.00000
 [3409] 67.16667 69.16667 67.00000 69.66667 70.16667 68.00000 68.00000 70.50000
 [3417] 70.16667 66.83333 67.83333 70.16667 67.16667 70.66667 69.66667 67.16667
 [3425] 68.50000 69.83333 70.50000 69.33333 67.66667 70.16667 67.16667 69.00000
 [3433] 69.00000 68.83333 70.33333 70.33333 67.66667 67.16667 69.33333 69.83333
 [3441] 67.16667 70.16667 68.83333 68.83333 68.33333 69.66667 67.66667 69.33333
 [3449] 70.16667 68.33333 69.83333 70.00000 70.00000 69.33333 71.00000 72.00000
 [3457] 67.33333 69.16667 70.00000 67.83333 67.66667 67.33333 70.33333 70.16667
 [3465] 69.16667 70.33333 71.66667 68.33333 71.66667 68.83333 65.83333 68.16667
 [3473] 70.00000 68.50000 69.50000 68.33333 67.50000 69.66667 67.83333 68.33333
 [3481] 68.00000 68.66667 69.00000 68.00000 69.83333 69.00000 65.50000 67.66667
 [3489] 70.66667 68.16667 66.66667 69.83333 70.66667 67.66667 69.33333 69.16667
 [3497] 68.00000 69.50000 70.00000 66.83333 67.66667 70.16667 67.66667 70.16667
 [3505] 69.16667 66.33333 68.16667 69.83333 69.66667 69.00000 70.50000 67.00000
 [3513] 70.33333 69.16667 69.66667 68.66667 67.83333 68.16667 68.00000 67.66667
 [3521] 69.66667 69.50000 69.16667 67.66667 67.50000 69.83333 66.66667 67.66667
 [3529] 65.83333 70.00000 68.33333 69.66667 72.33333 68.66667 69.16667 70.16667
 [3537] 68.83333 69.33333 68.50000 71.33333 68.00000 70.33333 69.00000 70.16667
 [3545] 69.33333 67.50000 69.00000 69.16667 70.00000 70.33333 67.16667 70.66667
 [3553] 67.83333 71.33333 68.33333 69.66667 69.50000 68.16667 69.33333 70.16667
 [3561] 69.66667 69.33333 67.16667 70.00000 68.33333 69.00000 68.00000 69.83333
 [3569] 66.83333 68.50000 70.16667 66.33333 70.33333 68.00000 71.66667 69.83333
 [3577] 71.83333 70.00000 69.50000 68.16667 69.66667 69.50000 70.00000 69.00000
 [3585] 67.66667 68.83333 71.16667 69.66667 69.16667 69.33333 69.50000 66.83333
 [3593] 68.83333 69.33333 69.66667 66.33333 70.50000 67.83333 67.50000 67.16667
 [3601] 71.16667 68.66667 68.16667 68.00000 68.66667 69.66667 69.50000 67.66667
 [3609] 67.66667 70.16667 69.33333 68.66667 69.33333 68.83333 67.00000 67.16667
 [3617] 67.50000 71.00000 67.16667 67.50000 68.33333 66.83333 70.16667 68.66667
 [3625] 67.33333 69.50000 68.16667 68.83333 67.16667 68.50000 68.16667 69.16667
 [3633] 67.00000 67.66667 69.33333 68.66667 67.50000 66.83333 69.00000 68.66667
 [3641] 70.33333 67.83333 68.16667 70.33333 70.16667 67.50000 68.33333 66.66667
 [3649] 70.83333 69.66667 67.16667 69.00000 70.66667 67.33333 69.50000 66.83333
 [3657] 68.16667 68.16667 69.66667 71.00000 67.66667 69.83333 68.83333 68.66667
 [3665] 68.16667 69.83333 68.16667 67.66667 70.50000 69.50000 70.66667 67.00000
 [3673] 68.50000 68.00000 68.00000 69.83333 67.66667 70.00000 70.16667 68.16667
 [3681] 69.50000 68.16667 70.83333 67.33333 66.66667 68.50000 67.50000 66.83333
 [3689] 68.83333 68.50000 69.66667 69.50000 70.66667 68.00000 70.66667 69.50000
 [3697] 70.33333 66.83333 66.66667 68.66667 68.83333 68.16667 69.66667 69.16667
 [3705] 68.50000 66.33333 70.00000 68.50000 67.66667 69.16667 68.33333 69.16667
 [3713] 72.50000 72.00000 69.33333 70.16667 70.33333 68.00000 69.00000 68.83333
 [3721] 67.83333 68.00000 68.33333 67.50000 69.50000 68.33333 70.66667 68.00000
 [3729] 69.16667 67.16667 68.50000 67.66667 67.16667 70.66667 67.50000 71.66667
 [3737] 70.33333 67.50000 68.50000 69.00000 69.16667 67.83333 67.50000 68.50000
 [3745] 70.33333 69.00000 70.16667 70.50000 66.66667 68.00000 68.16667 70.16667
 [3753] 70.16667 66.66667 68.00000 69.50000 68.00000 69.66667 71.83333 68.16667
 [3761] 68.16667 66.83333 69.66667 66.83333 68.00000 68.16667 67.50000 68.50000
 [3769] 69.33333 68.33333 69.33333 72.16667 69.00000 68.33333 68.16667 70.33333
 [3777] 68.50000 69.83333 70.50000 70.00000 68.66667 66.66667 69.00000 67.33333
 [3785] 71.00000 68.66667 69.16667 69.66667 68.33333 68.83333 68.16667 68.83333
 [3793] 68.33333 67.50000 70.50000 67.00000 69.66667 68.00000 67.66667 69.33333
 [3801] 67.66667 70.33333 68.66667 70.16667 69.66667 70.16667 68.50000 68.83333
 [3809] 68.16667 68.66667 67.50000 68.16667 68.83333 68.16667 68.00000 68.33333
 [3817] 69.50000 66.33333 68.33333 69.16667 70.83333 70.66667 70.33333 67.16667
 [3825] 68.16667 68.50000 71.00000 69.66667 70.00000 70.83333 70.83333 66.66667
 [3833] 67.50000 65.83333 68.83333 68.00000 67.33333 67.00000 68.66667 70.83333
 [3841] 69.16667 67.00000 71.16667 71.33333 71.16667 65.50000 72.33333 71.83333
 [3849] 70.00000 71.50000 68.50000 69.33333 69.83333 68.83333 69.33333 67.83333
 [3857] 68.66667 67.66667 68.66667 69.33333 68.83333 67.16667 69.33333 68.50000
 [3865] 68.33333 68.50000 70.16667 68.50000 70.33333 68.33333 69.50000 67.50000
 [3873] 67.50000 69.66667 69.33333 70.33333 68.16667 69.16667 70.16667 69.33333
 [3881] 67.83333 69.50000 67.50000 69.00000 67.83333 70.00000 67.33333 71.00000
 [3889] 67.83333 68.16667 68.66667 67.50000 68.66667 66.33333 69.83333 68.50000
 [3897] 69.83333 68.16667 69.16667 69.16667 68.33333 69.00000 69.50000 70.00000
 [3905] 69.16667 70.33333 70.16667 69.66667 68.16667 68.50000 68.33333 68.33333
 [3913] 67.83333 70.66667 68.33333 69.33333 70.00000 69.16667 68.50000 69.66667
 [3921] 68.16667 67.33333 66.83333 67.16667 67.83333 68.33333 71.00000 68.00000
 [3929] 68.50000 68.83333 69.66667 70.33333 69.33333 68.33333 70.16667 69.33333
 [3937] 66.33333 69.00000 71.00000 67.83333 68.00000 68.83333 68.00000 68.00000
 [3945] 69.50000 70.50000 70.16667 68.16667 69.66667 70.00000 70.00000 69.00000
 [3953] 68.50000 67.83333 71.16667 70.00000 68.33333 71.00000 68.00000 69.16667
 [3961] 67.66667 68.50000 68.16667 69.50000 67.33333 68.66667 69.66667 67.66667
 [3969] 69.00000 67.00000 68.83333 69.50000 69.16667 68.33333 68.50000 70.16667
 [3977] 69.16667 67.50000 68.66667 69.33333 69.33333 68.00000 69.50000 70.50000
 [3985] 68.50000 67.00000 70.33333 69.66667 69.00000 67.83333 69.66667 68.83333
 [3993] 66.66667 70.16667 70.00000 67.66667 69.33333 68.33333 68.66667 70.33333
 [4001] 67.16667 67.16667 69.83333 68.83333 69.00000 67.83333 66.66667 68.83333
 [4009] 70.66667 70.33333 69.50000 68.83333 66.83333 69.16667 69.83333 69.16667
 [4017] 68.50000 68.33333 66.66667 69.33333 69.16667 68.83333 67.50000 67.83333
 [4025] 70.16667 68.66667 69.66667 69.16667 71.00000 71.50000 68.00000 71.16667
 [4033] 71.50000 68.00000 68.00000 70.83333 68.00000 66.66667 69.16667 68.83333
 [4041] 69.50000 68.50000 70.33333 67.16667 69.16667 70.16667 70.66667 70.00000
 [4049] 66.33333 71.33333 69.16667 67.16667 70.50000 67.66667 67.50000 67.83333
 [4057] 70.66667 66.00000 68.00000 68.50000 69.33333 69.66667 66.16667 69.00000
 [4065] 68.50000 70.16667 68.00000 70.50000 68.50000 67.00000 68.50000 68.33333
 [4073] 68.50000 68.50000 69.83333 69.50000 69.83333 68.00000 70.16667 68.16667
 [4081] 66.33333 69.16667 68.83333 70.50000 68.66667 66.83333 70.50000 69.16667
 [4089] 69.16667 69.50000 68.50000 69.33333 68.83333 69.66667 68.83333 69.50000
 [4097] 68.00000 70.00000 70.50000 69.33333 70.00000 69.50000 71.00000 69.66667
 [4105] 66.66667 69.50000 69.66667 68.66667 68.33333 70.66667 69.00000 66.66667
 [4113] 70.16667 68.33333 69.33333 67.66667 67.16667 69.00000 69.00000 68.83333
 [4121] 66.83333 71.50000 70.00000 69.16667 66.00000 70.00000 66.83333 67.16667
 [4129] 68.83333 68.33333 67.83333 70.00000 67.50000 68.83333 65.50000 66.33333
 [4137] 67.66667 71.83333 67.16667 66.16667 69.66667 69.00000 69.33333 69.00000
 [4145] 70.50000 71.16667 67.50000 67.83333 67.66667 69.33333 66.66667 70.16667
 [4153] 67.00000 68.16667 65.50000 69.50000 69.50000 69.00000 67.66667 67.16667
 [4161] 68.16667 67.00000 71.50000 67.66667 69.83333 68.66667 68.83333 69.00000
 [4169] 70.00000 69.33333 67.16667 68.16667 67.66667 70.00000 68.66667 68.66667
 [4177] 67.16667 71.66667 69.16667 67.00000 69.50000 69.33333 68.16667 68.33333
 [4185] 71.83333 70.50000 70.00000 69.00000 67.66667 67.16667 70.50000 66.83333
 [4193] 70.16667 70.66667 69.66667 68.33333 69.16667 68.83333 69.50000 69.33333
 [4201] 67.50000 66.33333 69.00000 67.66667 68.66667 69.33333 70.66667 68.50000
 [4209] 68.16667 69.83333 67.16667 66.66667 66.66667 68.00000 67.66667 67.66667
 [4217] 67.83333 69.50000 69.00000 69.66667 68.50000 67.66667 68.00000 68.66667
 [4225] 66.33333 67.16667 72.00000 69.33333 71.16667 66.33333 70.16667 68.66667
 [4233] 67.66667 68.66667 69.83333 69.00000 70.16667 67.83333 67.00000 72.00000
 [4241] 68.83333 67.66667 70.16667 70.83333 68.50000 68.66667 69.83333 69.33333
 [4249] 68.66667 67.16667 70.33333 67.00000 69.00000 71.16667 69.83333 69.33333
 [4257] 69.66667 71.16667 68.00000 68.00000 69.83333 65.50000 68.50000 70.00000
 [4265] 70.50000 69.16667 66.83333 68.33333 69.50000 70.00000 68.83333 69.33333
 [4273] 70.83333 68.00000 70.33333 68.83333 67.33333 67.16667 72.66667 69.50000
 [4281] 68.83333 70.16667 67.50000 69.33333 70.16667 70.16667 66.33333 68.00000
 [4289] 69.50000 67.50000 68.00000 67.50000 67.16667 68.66667 70.83333 66.16667
 [4297] 69.16667 69.00000 71.66667 69.33333 70.16667 68.33333 69.00000 69.16667
 [4305] 68.00000 69.66667 68.33333 67.50000 71.83333 68.66667 70.33333 69.16667
 [4313] 69.50000 70.50000 68.16667 69.33333 70.33333 68.00000 68.66667 69.33333
 [4321] 70.00000 71.16667 69.50000 69.16667 68.50000 69.66667 69.50000 69.66667
 [4329] 69.33333 70.83333 69.00000 69.33333 70.00000 69.66667 68.66667 69.00000
 [4337] 68.33333 69.83333 68.50000 68.16667 70.50000 69.50000 70.66667 67.00000
 [4345] 67.66667 68.00000 69.16667 67.16667 68.33333 66.00000 68.16667 67.66667
 [4353] 69.16667 67.16667 67.66667 67.50000 70.83333 68.00000 68.83333 69.33333
 [4361] 65.00000 67.66667 68.83333 68.83333 70.16667 68.33333 68.16667 68.83333
 [4369] 68.83333 67.33333 69.50000 68.66667 67.83333 68.83333 70.50000 70.33333
 [4377] 68.33333 70.50000 70.33333 70.00000 68.33333 69.66667 68.83333 69.66667
 [4385] 69.83333 69.33333 68.83333 68.83333 70.16667 68.16667 69.33333 66.66667
 [4393] 66.83333 69.00000 69.16667 66.33333 69.50000 69.33333 70.16667 70.83333
 [4401] 67.00000 68.66667 68.16667 70.16667 69.66667 69.50000 69.00000 68.66667
 [4409] 67.66667 68.50000 68.83333 69.83333 70.50000 69.16667 67.16667 69.00000
 [4417] 69.00000 68.00000 68.66667 66.33333 66.16667 66.83333 69.33333 68.83333
 [4425] 68.50000 69.00000 68.16667 68.83333 69.50000 69.33333 66.83333 70.00000
 [4433] 71.00000 67.50000 68.00000 68.50000 68.83333 66.33333 67.66667 69.00000
 [4441] 66.83333 68.00000 69.16667 67.16667 68.00000 68.33333 68.50000 67.33333
 [4449] 66.83333 70.50000 66.83333 71.50000 67.83333 68.16667 70.00000 66.33333
 [4457] 68.16667 68.33333 69.16667 69.16667 68.50000 68.50000 66.33333 72.16667
 [4465] 68.50000 69.00000 69.00000 69.00000 68.33333 69.50000 68.66667 68.50000
 [4473] 69.00000 71.83333 69.33333 71.00000 69.00000 68.83333 69.50000 70.50000
 [4481] 68.83333 70.00000 71.00000 69.33333 68.83333 68.33333 67.83333 69.50000
 [4489] 71.33333 69.16667 69.33333 68.16667 69.66667 68.83333 68.16667 67.50000
 [4497] 67.33333 69.50000 69.33333 71.50000 68.50000 68.66667 66.33333 68.00000
 [4505] 70.00000 71.00000 66.00000 67.50000 69.33333 70.00000 68.00000 68.33333
 [4513] 68.00000 67.66667 66.83333 68.16667 68.16667 67.50000 68.16667 68.83333
 [4521] 69.33333 68.83333 69.83333 67.66667 67.33333 68.00000 70.83333 68.50000
 [4529] 67.50000 70.00000 68.50000 70.66667 68.50000 65.83333 69.00000 66.33333
 [4537] 67.16667 70.16667 68.83333 70.33333 71.50000 68.33333 70.33333 70.66667
 [4545] 69.00000 67.66667 69.66667 71.83333 68.83333 67.00000 70.00000 69.33333
 [4553] 68.83333 66.83333 69.33333 66.66667 67.50000 71.00000 68.33333 68.33333
 [4561] 69.50000 68.00000 68.83333 69.00000 70.33333 68.33333 68.66667 67.50000
 [4569] 67.50000 68.00000 71.16667 67.50000 69.50000 67.83333 71.00000 71.16667
 [4577] 68.00000 68.83333 68.50000 68.16667 65.83333 71.50000 67.66667 66.83333
 [4585] 67.16667 70.33333 68.16667 66.83333 69.00000 68.50000 68.00000 71.00000
 [4593] 67.83333 68.00000 69.50000 66.50000 68.66667 71.00000 70.00000 68.33333
 [4601] 68.16667 69.00000 68.16667 70.00000 67.83333 68.83333 68.83333 70.16667
 [4609] 70.83333 70.00000 70.66667 69.66667 71.00000 68.50000 67.66667 69.66667
 [4617] 68.66667 69.16667 69.33333 68.00000 68.16667 68.33333 68.83333 70.16667
 [4625] 66.83333 68.83333 68.50000 69.66667 69.33333 68.00000 68.66667 69.66667
 [4633] 66.66667 67.66667 67.50000 66.83333 69.66667 70.00000 69.50000 69.50000
 [4641] 67.33333 68.83333 67.16667 70.66667 66.16667 67.66667 71.66667 67.50000
 [4649] 66.50000 69.66667 68.00000 68.50000 67.66667 67.50000 68.66667 70.66667
 [4657] 68.50000 69.00000 67.16667 68.83333 70.66667 70.83333 67.50000 69.66667
 [4665] 69.66667 69.50000 68.83333 67.83333 69.66667 67.33333 68.00000 69.66667
 [4673] 69.50000 65.00000 68.33333 68.50000 68.16667 68.50000 70.16667 70.16667
 [4681] 68.16667 70.00000 66.83333 68.50000 70.83333 66.83333 69.66667 68.33333
 [4689] 69.66667 71.33333 70.00000 69.66667 70.33333 66.33333 69.83333 68.66667
 [4697] 70.16667 68.66667 68.83333 68.83333 69.16667 67.16667 68.50000 70.16667
 [4705] 67.33333 69.33333 69.16667 69.33333 70.00000 66.50000 67.50000 70.50000
 [4713] 67.83333 68.83333 68.33333 69.16667 70.50000 69.16667 67.83333 67.33333
 [4721] 69.16667 71.33333 70.66667 69.83333 69.00000 69.66667 70.66667 69.66667
 [4729] 69.16667 68.83333 70.16667 68.83333 69.16667 67.16667 69.50000 68.66667
 [4737] 65.50000 67.66667 68.33333 70.33333 68.66667 69.16667 69.83333 68.83333
 [4745] 70.00000 69.66667 69.50000 68.83333 69.50000 68.66667 70.16667 67.00000
 [4753] 67.83333 70.50000 68.00000 67.33333 69.50000 69.66667 70.50000 70.00000
 [4761] 70.83333 69.66667 69.66667 70.33333 69.83333 69.00000 70.50000 67.50000
 [4769] 69.00000 67.00000 68.33333 71.00000 70.00000 68.66667 68.16667 69.33333
 [4777] 66.66667 67.33333 68.66667 70.33333 70.83333 68.66667 69.16667 67.66667
 [4785] 69.83333 69.00000 69.33333 68.66667 69.16667 67.50000 69.83333 69.50000
 [4793] 69.50000 69.33333 68.50000 71.50000 70.00000 67.33333 66.16667 69.16667
 [4801] 68.50000 69.00000 67.83333 71.00000 72.16667 68.16667 69.33333 68.66667
 [4809] 68.16667 68.00000 70.66667 68.16667 71.33333 69.83333 68.66667 68.83333
 [4817] 67.50000 70.50000 68.00000 70.16667 69.00000 66.66667 67.50000 69.50000
 [4825] 70.66667 68.83333 66.83333 70.66667 69.83333 68.83333 68.66667 69.16667
 [4833] 69.16667 67.83333 66.83333 66.16667 68.33333 69.33333 68.16667 67.50000
 [4841] 67.83333 68.33333 65.83333 71.66667 69.33333 70.16667 67.83333 67.66667
 [4849] 68.00000 69.66667 71.33333 68.50000 67.83333 69.16667 67.00000 66.83333
 [4857] 69.33333 68.33333 67.50000 70.16667 69.00000 69.66667 68.50000 68.00000
 [4865] 68.83333 70.66667 70.00000 68.33333 67.33333 68.00000 69.83333 66.00000
 [4873] 68.16667 70.16667 70.66667 72.00000 69.00000 68.66667 69.83333 69.66667
 [4881] 70.00000 71.33333 68.00000 69.33333 69.00000 70.50000 70.66667 67.16667
 [4889] 66.66667 71.33333 67.50000 68.00000 67.16667 68.16667 67.50000 68.16667
 [4897] 68.83333 68.83333 68.00000 67.50000 70.33333 68.00000 68.66667 69.83333
 [4905] 69.33333 70.66667 69.83333 68.83333 67.66667 68.16667 66.83333 71.50000
 [4913] 66.33333 71.00000 69.66667 70.16667 67.83333 68.83333 67.33333 67.16667
 [4921] 67.50000 69.33333 68.83333 69.16667 69.83333 68.50000 68.33333 66.83333
 [4929] 69.50000 68.33333 69.83333 68.16667 67.83333 70.00000 70.66667 68.83333
 [4937] 68.50000 70.16667 68.50000 70.33333 67.16667 68.33333 69.33333 69.16667
 [4945] 70.00000 68.33333 70.00000 68.00000 69.16667 67.50000 68.66667 69.33333
 [4953] 69.00000 69.16667 69.16667 70.00000 67.83333 68.33333 70.83333 68.00000
 [4961] 66.50000 69.66667 69.50000 69.66667 69.66667 69.00000 69.66667 67.33333
 [4969] 68.66667 68.00000 69.66667 69.16667 70.83333 66.66667 69.33333 68.00000
 [4977] 69.16667 69.50000 67.16667 69.33333 68.00000 69.50000 68.66667 71.00000
 [4985] 69.50000 68.00000 67.66667 70.83333 69.66667 69.00000 68.33333 70.33333
 [4993] 71.00000 67.50000 69.66667 68.33333 70.16667 70.66667 69.66667 70.33333
 [5001] 69.33333 70.33333 68.00000 67.83333 67.66667 68.50000 70.00000 69.00000
 [5009] 69.50000 71.33333 69.50000 68.50000 68.50000 68.66667 67.16667 67.00000
 [5017] 69.66667 70.83333 66.83333 68.66667 68.16667 70.50000 67.66667 70.16667
 [5025] 69.83333 69.00000 70.66667 68.00000 69.83333 71.00000 69.16667 70.33333
 [5033] 70.33333 68.66667 69.00000 68.83333 68.50000 70.50000 68.83333 69.00000
 [5041] 65.00000 68.50000 68.83333 70.33333 70.33333 69.00000 69.66667 68.33333
 [5049] 68.16667 69.66667 69.33333 68.00000 67.33333 68.00000 69.33333 68.66667
 [5057] 67.66667 70.33333 67.16667 69.66667 69.00000 70.33333 69.00000 69.66667
 [5065] 66.66667 65.83333 68.00000 69.50000 68.66667 67.66667 68.83333 67.33333
 [5073] 71.50000 70.83333 68.83333 67.83333 67.16667 68.83333 68.83333 70.83333
 [5081] 68.16667 68.00000 69.83333 69.16667 69.33333 69.66667 68.00000 66.00000
 [5089] 68.33333 67.50000 67.16667 69.33333 65.50000 70.66667 67.16667 70.50000
 [5097] 72.50000 67.83333 71.00000 67.83333 70.33333 69.50000 70.83333 68.83333
 [5105] 68.16667 68.83333 68.16667 68.66667 68.00000 70.33333 68.00000 68.16667
 [5113] 67.66667 69.50000 66.83333 70.16667 70.33333 70.66667 69.00000 67.16667
 [5121] 68.50000 67.83333 68.33333 69.00000 67.83333 66.66667 68.33333 68.66667
 [5129] 68.33333 67.50000 67.83333 67.66667 66.33333 70.83333 69.16667 68.66667
 [5137] 68.66667 69.33333 70.33333 68.50000 68.83333 68.16667 68.66667 68.66667
 [5145] 67.00000 65.83333 67.33333 68.66667 67.66667 68.00000 69.16667 72.50000
 [5153] 70.00000 69.00000 70.00000 68.00000 69.33333 70.00000 65.50000 70.00000
 [5161] 69.83333 70.66667 70.66667 66.83333 66.66667 66.66667 69.66667 69.16667
 [5169] 68.50000 66.66667 68.83333 69.16667 67.50000 69.83333 68.00000 68.33333
 [5177] 69.50000 68.16667 68.50000 68.50000 70.33333 68.83333 69.00000 68.66667
 [5185] 69.16667 67.50000 68.50000 66.83333 70.00000 68.16667 67.16667 67.33333
 [5193] 68.83333 68.33333 68.00000 70.33333 69.50000 68.83333 69.00000 70.83333
 [5201] 69.16667 67.00000 67.16667 69.50000 69.66667 67.33333 68.33333 69.16667
 [5209] 69.33333 71.66667 69.16667 68.50000 66.33333 68.33333 71.16667 69.33333
 [5217] 70.00000 70.16667 70.33333 68.83333 68.00000 71.33333 68.33333 68.83333
 [5225] 69.00000 65.50000 68.33333 66.33333 68.33333 69.83333 71.50000 71.00000
 [5233] 68.16667 70.66667 67.00000 68.66667 70.16667 67.16667 69.33333 68.83333
 [5241] 69.83333 70.16667 68.33333 68.16667 68.50000 68.16667 70.83333 69.16667
 [5249] 69.66667 70.66667 71.16667 70.83333 68.33333 67.83333 69.16667 68.00000
 [5257] 70.50000 68.16667 69.16667 68.00000 70.83333 67.83333 67.50000 70.00000
 [5265] 70.16667 70.83333 67.16667 68.33333 68.66667 66.66667 68.83333 69.16667
 [5273] 71.66667 70.66667 66.83333 68.00000 69.33333 67.16667 69.00000 70.16667
 [5281] 68.83333 67.16667 67.66667 70.50000 71.16667 69.83333 68.00000 66.66667
 [5289] 69.16667 70.16667 68.50000 69.66667 66.33333 70.00000 68.50000 68.00000
 [5297] 69.66667 68.83333 68.33333 68.83333 69.16667 66.33333 70.83333 69.00000
 [5305] 68.00000 69.83333 69.50000 70.66667 68.50000 69.83333 68.16667 67.66667
 [5313] 68.50000 68.83333 68.66667 70.83333 69.33333 68.83333 70.00000 68.33333
 [5321] 66.33333 70.00000 69.66667 68.50000 68.16667 68.00000 68.16667 67.66667
 [5329] 70.16667 69.33333 69.83333 72.16667 68.00000 68.33333 67.83333 68.66667
 [5337] 71.16667 67.66667 67.16667 69.66667 68.33333 68.66667 67.83333 69.16667
 [5345] 70.66667 69.33333 68.50000 69.16667 69.50000 68.50000 69.16667 71.33333
 [5353] 66.16667 67.50000 69.66667 66.83333 69.00000 68.66667 69.33333 68.16667
 [5361] 69.16667 66.83333 68.00000 67.66667 68.00000 69.33333 67.33333 68.66667
 [5369] 69.33333 70.50000 69.66667 70.00000 70.33333 69.00000 68.16667 69.83333
 [5377] 67.83333 70.66667 68.00000 69.33333 69.83333 67.83333 68.83333 71.33333
 [5385] 70.00000 72.00000 68.33333 68.66667 68.83333 68.33333 65.83333 68.33333
 [5393] 70.00000 68.33333 68.16667 66.33333 67.66667 68.16667 67.16667 68.00000
 [5401] 70.50000 69.00000 68.83333 71.16667 68.50000 69.33333 68.50000 68.16667
 [5409] 68.16667 69.66667 70.33333 70.33333 68.16667 68.16667 69.50000 68.66667
 [5417] 68.00000 67.83333 67.33333 67.33333 70.00000 67.16667 69.50000 69.66667
 [5425] 68.16667 71.16667 69.50000 68.83333 69.66667 67.50000 69.16667 68.50000
 [5433] 67.66667 68.50000 68.50000 68.83333 70.50000 70.16667 67.16667 69.00000
 [5441] 69.66667 68.66667 67.50000 69.33333 68.33333 68.16667 68.00000 66.83333
 [5449] 68.66667 67.83333 68.00000 70.33333 69.16667 65.83333 68.83333 70.33333
 [5457] 67.83333 68.50000 70.33333 69.83333 68.33333 66.66667 69.83333 68.83333
 [5465] 68.00000 68.50000 68.33333 69.83333 69.00000 68.00000 69.66667 69.00000
 [5473] 69.00000 69.83333 68.00000 69.00000 69.83333 69.33333 69.50000 69.83333
 [5481] 68.16667 70.66667 70.33333 70.50000 69.66667 69.66667 68.50000 69.66667
 [5489] 68.00000 68.50000 68.50000 70.83333 72.00000 68.83333 68.00000 70.33333
 [5497] 69.00000 66.83333 71.16667 68.66667 70.66667 69.00000 71.00000 69.16667
 [5505] 68.66667 67.16667 70.66667 67.66667 71.16667 67.83333 68.83333 67.16667
 [5513] 69.00000 71.16667 67.83333 68.00000 69.50000 67.33333 66.83333 68.83333
 [5521] 69.00000 67.83333 69.50000 70.50000 68.66667 68.50000 69.00000 69.50000
 [5529] 69.33333 68.83333 69.50000 71.16667 68.66667 68.33333 69.66667 68.50000
 [5537] 69.33333 67.16667 70.50000 69.66667 71.16667 68.66667 67.83333 68.33333
 [5545] 70.33333 69.33333 68.16667 70.00000 69.66667 72.16667 69.00000 68.50000
 [5553] 69.00000 68.83333 68.50000 67.16667 69.00000 68.66667 66.33333 67.16667
 [5561] 68.50000 66.83333 69.66667 68.16667 67.33333 67.50000 66.83333 68.66667
 [5569] 66.33333 68.50000 69.16667 68.83333 68.16667 69.16667 66.33333 69.83333
 [5577] 68.83333 70.16667 69.50000 68.16667 70.00000 69.33333 69.00000 67.16667
 [5585] 69.00000 68.50000 69.00000 67.16667 70.50000 66.33333 68.83333 70.50000
 [5593] 70.00000 68.83333 68.00000 67.83333 65.83333 68.83333 71.16667 71.33333
 [5601] 71.00000 68.66667 71.16667 66.83333 68.83333 68.16667 69.66667 71.16667
 [5609] 66.33333 67.50000 68.33333 69.50000 70.16667 68.00000 71.00000 69.66667
 [5617] 66.00000 70.66667 69.16667 69.00000 69.50000 69.66667 67.66667 69.00000
 [5625] 70.66667 67.50000 70.66667 68.33333 67.16667 68.50000 68.66667 68.83333
 [5633] 67.83333 66.66667 68.83333 69.50000 66.33333 68.83333 69.00000 66.00000
 [5641] 71.00000 69.00000 68.33333 69.00000 69.66667 67.50000 68.16667 69.50000
 [5649] 68.66667 69.83333 71.50000 70.50000 68.66667 70.66667 67.66667 67.16667
 [5657] 68.66667 69.16667 69.33333 68.16667 67.66667 69.50000 70.50000 69.33333
 [5665] 67.66667 67.66667 66.66667 69.16667 68.00000 70.50000 67.66667 71.33333
 [5673] 68.00000 68.50000 69.16667 70.16667 68.00000 68.16667 68.00000 68.00000
 [5681] 70.33333 69.16667 67.33333 68.66667 70.66667 70.00000 70.33333 69.16667
 [5689] 67.00000 69.16667 68.66667 68.00000 68.33333 68.50000 69.00000 69.00000
 [5697] 70.50000 69.16667 69.83333 69.00000 70.16667 68.00000 66.33333 68.83333
 [5705] 70.83333 70.33333 69.66667 70.83333 69.16667 69.16667 68.16667 69.00000
 [5713] 70.83333 69.00000 69.50000 68.16667 68.33333 67.66667 69.33333 68.50000
 [5721] 68.00000 68.50000 66.33333 68.33333 71.00000 68.66667 68.50000 67.33333
 [5729] 67.83333 69.50000 70.00000 71.50000 70.66667 68.16667 68.00000 69.50000
 [5737] 68.66667 66.00000 69.66667 67.00000 69.16667 68.00000 69.33333 70.16667
 [5745] 70.33333 70.16667 68.00000 67.66667 69.83333 69.50000 69.66667 67.66667
 [5753] 68.66667 68.50000 68.33333 70.33333 66.33333 69.66667 68.50000 70.50000
 [5761] 68.50000 69.33333 68.16667 69.33333 68.83333 70.00000 68.16667 69.33333
 [5769] 68.83333 68.50000 67.16667 68.00000 69.00000 71.33333 70.33333 67.83333
 [5777] 70.33333 68.33333 67.50000 67.00000 66.33333 67.66667 70.50000 71.66667
 [5785] 70.00000 69.66667 65.50000 70.83333 68.83333 70.66667 68.66667 66.16667
 [5793] 68.66667 68.66667 67.66667 69.16667 69.50000 71.66667 70.50000 70.00000
 [5801] 70.00000 68.00000 69.33333 71.33333 68.16667 68.50000 69.00000 67.83333
 [5809] 68.33333 67.33333 68.50000 66.66667 67.83333 68.00000 68.33333 68.83333
 [5817] 70.50000 65.50000 68.16667 71.33333 67.33333 66.66667 68.00000 68.50000
 [5825] 70.00000 68.33333 68.00000 68.33333 70.83333 69.33333 66.33333 68.16667
 [5833] 68.83333 69.00000 69.83333 70.16667 69.16667 70.66667 66.66667 68.83333
 [5841] 68.50000 68.50000 69.33333 67.50000 68.16667 68.83333 70.50000 67.50000
 [5849] 69.50000 67.83333 67.66667 69.00000 71.16667 65.00000 66.33333 68.50000
 [5857] 68.33333 66.83333 69.33333 68.50000 71.00000 71.16667 68.83333 68.50000
 [5865] 70.50000 68.83333 68.00000 68.00000 69.50000 70.33333 67.16667 70.33333
 [5873] 67.83333 67.83333 65.50000 69.16667 65.50000 69.66667 69.33333 70.66667
 [5881] 70.66667 69.66667 66.83333 69.50000 67.16667 70.83333 67.66667 68.33333
 [5889] 68.66667 69.33333 69.33333 70.00000 69.33333 69.66667 68.50000 71.33333
 [5897] 67.50000 67.50000 70.50000 68.00000 67.66667 69.83333 67.00000 68.16667
 [5905] 69.66667 68.50000 69.83333 68.00000 70.83333 69.33333 68.83333 69.33333
 [5913] 68.33333 69.16667 69.66667 69.16667 67.66667 67.50000 65.83333 66.33333
 [5921] 67.50000 68.16667 70.66667 69.83333 68.83333 68.50000 67.50000 72.33333
 [5929] 66.83333 67.16667 70.00000 68.83333 69.16667 68.50000 66.66667 68.83333
 [5937] 70.83333 65.50000 68.50000 69.16667 67.16667 69.83333 67.66667 68.00000
 [5945] 69.50000 68.50000 68.66667 68.00000 68.33333 67.33333 68.83333 67.50000
 [5953] 69.00000 69.50000 68.33333 67.50000 66.50000 70.83333 69.00000 69.66667
 [5961] 69.00000 68.66667 66.83333 68.83333 70.16667 69.16667 71.83333 69.66667
 [5969] 68.00000 68.66667 67.66667 67.33333 69.50000 70.50000 68.33333 68.33333
 [5977] 69.33333 69.00000 66.00000 70.50000 72.33333 70.00000 69.00000 67.33333
 [5985] 66.66667 71.33333 66.83333 67.50000 67.16667 68.66667 68.66667 70.83333
 [5993] 70.16667 68.50000 70.16667 67.66667 68.50000 69.83333 68.83333 68.00000
 [6001] 70.66667 70.50000 69.16667 70.83333 71.33333 71.16667 71.33333 68.83333
 [6009] 67.33333 70.00000 68.33333 67.33333 68.66667 67.00000 70.00000 68.16667
 [6017] 69.33333 68.50000 68.83333 71.00000 70.00000 67.50000 70.83333 71.66667
 [6025] 68.33333 69.00000 68.00000 69.66667 67.83333 68.66667 69.66667 67.33333
 [6033] 69.33333 69.00000 69.66667 69.33333 71.33333 71.66667 68.83333 69.50000
 [6041] 71.33333 69.00000 68.50000 68.83333 68.50000 69.33333 66.33333 69.16667
 [6049] 68.83333 69.00000 68.16667 67.33333 71.50000 69.50000 70.16667 69.33333
 [6057] 68.16667 69.00000 69.50000 68.50000 70.00000 68.16667 67.66667 69.16667
 [6065] 68.83333 67.50000 70.50000 67.66667 70.33333 69.16667 70.16667 69.16667
 [6073] 68.50000 66.66667 69.16667 68.33333 70.16667 68.00000 70.50000 69.50000
 [6081] 69.33333 68.00000 69.00000 68.66667 66.83333 69.83333 68.50000 70.83333
 [6089] 71.50000 69.66667 67.50000 67.83333 68.00000 69.00000 66.33333 69.66667
 [6097] 68.33333 66.33333 65.83333 67.16667 67.33333 67.50000 70.33333 71.16667
 [6105] 69.66667 67.66667 68.50000 69.33333 67.16667 67.66667 69.16667 69.50000
 [6113] 70.00000 65.83333 67.66667 68.83333 67.16667 67.16667 72.16667 69.00000
 [6121] 69.83333 70.16667 67.66667 66.33333 68.33333 67.66667 67.66667 68.83333
 [6129] 70.66667 70.66667 69.50000 70.50000 67.16667 69.50000 68.00000 69.83333
 [6137] 68.16667 69.66667 66.33333 69.83333 70.50000 69.66667 70.00000 68.66667
 [6145] 67.50000 70.33333 67.50000 68.83333 69.33333 69.00000 68.16667 68.00000
 [6153] 69.33333 68.50000 67.50000 68.16667 67.83333 68.83333 70.16667 70.33333
 [6161] 68.00000 69.33333 69.00000 69.83333 67.50000 70.33333 68.50000 69.66667
 [6169] 67.50000 69.83333 68.83333 68.00000 67.83333 67.66667 71.00000 70.66667
 [6177] 68.16667 66.00000 68.16667 71.50000 69.00000 66.83333 71.00000 67.16667
 [6185] 70.66667 69.33333 68.83333 69.66667 69.66667 68.16667 68.83333 69.50000
 [6193] 68.16667 70.16667 68.33333 68.83333 69.33333 67.33333 66.00000 67.16667
 [6201] 67.66667 70.83333 67.50000 68.33333 66.83333 68.50000 66.66667 69.16667
 [6209] 68.66667 70.83333 68.00000 66.66667 69.83333 67.00000 67.16667 67.00000
 [6217] 67.83333 69.16667 71.00000 71.16667 66.83333 69.83333 69.33333 69.83333
 [6225] 69.33333 68.66667 69.33333 68.83333 69.50000 69.16667 69.50000 69.83333
 [6233] 70.66667 69.00000 71.50000 66.66667 69.66667 66.33333 69.66667 66.33333
 [6241] 66.00000 70.00000 69.33333 66.83333 68.83333 68.00000 70.50000 69.33333
 [6249] 66.83333 69.50000 68.33333 69.16667 69.33333 72.33333 68.33333 67.66667
 [6257] 66.33333 68.50000 70.50000 67.66667 67.33333 69.00000 67.83333 69.66667
 [6265] 68.00000 68.50000 69.83333 69.50000 68.16667 70.66667 69.50000 70.00000
 [6273] 68.50000 70.50000 69.66667 71.16667 67.00000 69.66667 70.16667 71.16667
 [6281] 67.66667 69.50000 67.33333 70.33333 69.16667 69.50000 69.33333 67.50000
 [6289] 69.66667 68.00000 66.83333 68.50000 69.50000 69.33333 70.16667 68.33333
 [6297] 68.66667 68.83333 67.00000 69.33333 70.00000 70.50000 68.83333 70.16667
 [6305] 67.66667 68.00000 70.66667 67.33333 71.16667 67.33333 66.66667 67.50000
 [6313] 66.83333 66.00000 69.50000 68.50000 70.16667 67.66667 70.33333 69.66667
 [6321] 69.16667 70.00000 70.33333 66.66667 68.50000 67.16667 68.66667 68.00000
 [6329] 71.66667 69.66667 71.00000 69.00000 67.50000 68.50000 71.83333 68.83333
 [6337] 69.33333 68.16667 69.33333 67.50000 68.66667 66.33333 69.33333 71.16667
 [6345] 69.16667 68.83333 72.00000 68.66667 70.50000 69.83333 70.33333 68.83333
 [6353] 69.33333 69.50000 68.66667 69.83333 71.33333 70.33333 68.50000 70.66667
 [6361] 69.16667 68.33333 68.83333 68.33333 70.66667 71.16667 70.33333 68.66667
 [6369] 67.50000 68.50000 68.00000 69.00000 66.00000 68.16667 67.00000 67.66667
 [6377] 69.16667 68.33333 68.83333 70.16667 68.33333 68.33333 68.00000 67.83333
 [6385] 68.66667 68.66667 67.50000 69.33333 68.83333 67.16667 69.00000 68.00000
 [6393] 69.66667 67.00000 66.83333 67.83333 68.00000 71.66667 71.00000 66.83333
 [6401] 70.83333 67.33333 67.16667 68.16667 67.33333 69.50000 66.83333 68.83333
 [6409] 69.83333 69.00000 69.00000 67.00000 69.50000 69.66667 70.16667 70.83333
 [6417] 68.16667 68.00000 67.66667 70.66667 71.00000 67.33333 67.83333 70.83333
 [6425] 67.66667 70.66667 69.66667 66.66667 68.66667 71.00000 68.83333 67.50000
 [6433] 68.50000 70.83333 68.83333 70.16667 70.50000 69.33333 68.33333 68.50000
 [6441] 70.50000 71.00000 67.66667 68.33333 68.33333 68.33333 69.50000 68.00000
 [6449] 68.83333 68.66667 67.83333 69.50000 68.00000 68.50000 67.66667 70.33333
 [6457] 70.16667 68.33333 68.66667 68.50000 70.33333 67.16667 68.16667 70.50000
 [6465] 69.00000 69.33333 69.50000 66.66667 70.00000 67.66667 69.83333 70.00000
 [6473] 68.83333 69.00000 70.16667 69.83333 69.33333 69.66667 67.83333 68.33333
 [6481] 67.66667 67.00000 66.66667 68.66667 68.83333 69.33333 67.33333 69.16667
 [6489] 69.83333 70.16667 66.00000 68.83333 69.00000 69.00000 68.83333 67.33333
 [6497] 70.83333 71.66667 67.66667 69.50000 68.16667 70.00000 68.83333 68.50000
 [6505] 68.50000 68.16667 68.33333 65.00000 70.33333 66.16667 70.00000 66.66667
 [6513] 70.33333 70.50000 67.50000 68.66667 69.50000 67.33333 68.00000 68.16667
 [6521] 69.16667 68.66667 69.33333 72.16667 68.83333 68.50000 66.33333 68.33333
 [6529] 70.66667 68.33333 65.83333 69.50000 66.66667 69.83333 69.16667 65.50000
 [6537] 70.83333 69.83333 68.33333 70.16667 69.16667 68.83333 69.33333 68.16667
 [6545] 69.00000 71.50000 71.16667 67.50000 70.00000 68.00000 67.66667 70.66667
 [6553] 67.00000 65.00000 69.00000 68.33333 68.33333 67.00000 69.00000 70.00000
 [6561] 69.33333 70.00000 67.50000 68.83333 65.50000 68.50000 70.00000 69.50000
 [6569] 70.33333 68.00000 69.66667 68.83333 67.33333 67.66667 67.83333 70.33333
 [6577] 71.00000 66.00000 70.66667 68.33333 70.83333 68.16667 68.33333 68.50000
 [6585] 67.50000 67.33333 67.66667 70.16667 68.33333 69.50000 68.16667 66.66667
 [6593] 69.16667 69.66667 68.50000 69.16667 70.16667 66.66667 68.00000 68.33333
 [6601] 69.66667 69.00000 68.16667 67.66667 66.83333 66.16667 69.50000 68.66667
 [6609] 68.66667 67.66667 67.50000 70.33333 69.16667 70.50000 70.66667 71.00000
 [6617] 69.66667 67.83333 68.83333 70.16667 68.83333 67.83333 70.33333 68.50000
 [6625] 69.00000 68.83333 67.33333 68.16667 67.16667 68.33333 69.83333 68.33333
 [6633] 68.50000 68.83333 68.16667 67.16667 68.16667 68.00000 69.50000 66.83333
 [6641] 70.16667 68.16667 69.83333 68.66667 67.33333 68.83333 70.16667 67.83333
 [6649] 67.83333 69.33333 68.50000 71.00000 68.16667 69.83333 67.50000 71.50000
 [6657] 68.33333 68.66667 66.66667 68.83333 69.83333 69.33333 69.83333 68.16667
 [6665] 70.33333 66.33333 69.33333 70.66667 69.83333 68.50000 70.00000 69.66667
 [6673] 70.16667 70.00000 68.33333 68.00000 68.50000 70.00000 70.66667 69.33333
 [6681] 69.16667 67.83333 68.83333 67.16667 68.00000 68.00000 68.16667 67.83333
 [6689] 71.00000 69.33333 70.16667 67.16667 66.33333 67.16667 67.50000 69.83333
 [6697] 67.50000 71.16667 69.16667 68.16667 70.00000 69.33333 67.83333 69.00000
 [6705] 68.00000 70.50000 69.00000 69.50000 69.66667 70.50000 67.33333 68.50000
 [6713] 69.66667 69.00000 69.16667 70.16667 68.00000 71.33333 69.66667 68.66667
 [6721] 67.50000 70.00000 71.00000 68.00000 67.16667 67.66667 67.16667 68.33333
 [6729] 69.33333 67.33333 67.16667 66.83333 69.83333 67.50000 67.66667 68.33333
 [6737] 68.83333 69.00000 67.50000 69.83333 68.16667 67.50000 69.50000 68.00000
 [6745] 70.16667 70.16667 70.50000 69.33333 70.66667 67.50000 70.16667 69.00000
 [6753] 66.83333 67.66667 67.66667 69.16667 69.50000 68.00000 71.50000 66.83333
 [6761] 68.16667 67.00000 68.50000 70.33333 69.50000 67.50000 68.66667 70.00000
 [6769] 69.50000 68.00000 69.16667 66.83333 67.33333 68.50000 68.66667 69.66667
 [6777] 67.83333 69.16667 68.00000 68.16667 70.00000 69.33333 68.50000 69.16667
 [6785] 72.33333 68.33333 67.83333 68.66667 68.83333 69.66667 68.66667 69.00000
 [6793] 71.00000 69.16667 70.16667 67.50000 67.66667 68.16667 69.83333 67.33333
 [6801] 69.00000 68.16667 68.00000 70.33333 68.33333 70.16667 69.16667 67.66667
 [6809] 67.50000 69.00000 69.50000 69.16667 69.83333 68.00000 70.50000 68.66667
 [6817] 69.16667 69.00000 69.16667 69.50000 68.50000 71.33333 67.50000 66.83333
 [6825] 68.83333 68.00000 68.00000 69.66667 68.83333 70.16667 67.66667 69.00000
 [6833] 69.66667 70.00000 69.33333 71.00000 69.00000 66.33333 67.00000 66.83333
 [6841] 70.50000 68.00000 69.50000 67.50000 70.50000 69.00000 71.33333 68.66667
 [6849] 70.33333 68.83333 69.50000 68.83333 70.00000 68.00000 67.50000 68.00000
 [6857] 67.50000 67.66667 69.83333 70.66667 70.33333 70.50000 68.83333 72.00000
 [6865] 67.66667 69.16667 68.00000 68.83333 70.83333 69.33333 67.66667 68.16667
 [6873] 68.33333 69.00000 70.33333 68.83333 66.66667 67.50000 67.33333 68.00000
 [6881] 71.00000 70.33333 68.66667 69.00000 67.33333 69.33333 70.33333 69.16667
 [6889] 68.50000 69.50000 66.66667 68.66667 67.50000 67.33333 69.50000 69.16667
 [6897] 68.00000 66.50000 69.16667 69.50000 69.33333 69.33333 69.16667 69.33333
 [6905] 68.00000 67.00000 66.66667 71.16667 68.83333 70.16667 68.83333 69.00000
 [6913] 67.66667 67.16667 68.83333 70.50000 68.83333 67.66667 67.50000 68.33333
 [6921] 69.66667 70.00000 70.33333 68.83333 67.83333 70.16667 69.00000 67.66667
 [6929] 71.66667 69.16667 68.66667 67.00000 68.33333 70.16667 68.00000 67.50000
 [6937] 69.66667 69.33333 68.66667 68.16667 67.83333 68.66667 68.66667 70.66667
 [6945] 69.83333 68.66667 69.83333 69.50000 69.00000 67.83333 67.83333 70.16667
 [6953] 69.00000 67.33333 67.50000 70.50000 68.66667 67.66667 68.66667 68.83333
 [6961] 69.16667 67.66667 71.33333 68.66667 68.83333 69.83333 69.50000 68.50000
 [6969] 69.33333 68.50000 67.50000 68.66667 67.66667 69.16667 68.16667 66.66667
 [6977] 68.83333 69.00000 71.50000 68.83333 68.83333 68.33333 66.33333 68.00000
 [6985] 68.00000 67.33333 69.16667 68.50000 68.83333 68.00000 69.00000 68.66667
 [6993] 71.16667 67.50000 68.50000 68.83333 68.83333 69.00000 67.83333 66.83333
 [7001] 68.00000 70.00000 70.50000 67.66667 69.83333 67.50000 69.50000 70.66667
 [7009] 68.33333 70.66667 69.33333 69.83333 68.00000 68.50000 65.83333 69.00000
 [7017] 68.33333 69.50000 66.83333 66.00000 69.83333 68.66667 68.50000 68.66667
 [7025] 68.66667 67.50000 67.33333 69.66667 67.66667 68.33333 68.50000 68.50000
 [7033] 71.00000 68.50000 69.33333 67.83333 69.33333 67.66667 68.16667 69.33333
 [7041] 69.00000 70.00000 69.16667 68.00000 66.33333 67.00000 69.33333 68.83333
 [7049] 66.66667 68.16667 68.50000 69.33333 69.50000 70.16667 69.83333 67.00000
 [7057] 68.83333 67.16667 69.16667 70.16667 68.66667 68.83333 68.16667 70.33333
 [7065] 69.50000 67.50000 69.66667 67.50000 68.83333 67.33333 68.00000 67.66667
 [7073] 68.83333 71.50000 69.33333 67.50000 68.33333 70.00000 70.00000 67.83333
 [7081] 68.66667 68.16667 68.50000 68.33333 68.16667 69.33333 69.16667 69.50000
 [7089] 68.66667 68.66667 68.66667 67.50000 68.00000 71.00000 68.16667 68.83333
 [7097] 68.16667 67.16667 67.33333 67.66667 68.50000 68.50000 68.66667 67.83333
 [7105] 68.33333 71.33333 69.16667 69.00000 66.83333 70.16667 69.16667 71.83333
 [7113] 68.00000 68.66667 69.16667 69.33333 69.00000 69.33333 68.33333 69.33333
 [7121] 69.33333 67.00000 67.33333 67.50000 68.50000 68.83333 68.50000 69.16667
 [7129] 71.16667 69.66667 71.16667 68.83333 67.33333 67.83333 68.33333 69.33333
 [7137] 69.16667 69.83333 70.33333 68.50000 71.33333 68.66667 67.33333 67.66667
 [7145] 69.83333 68.66667 66.66667 68.50000 68.50000 69.50000 69.33333 69.83333
 [7153] 68.00000 69.66667 69.83333 68.83333 68.83333 69.50000 68.66667 67.66667
 [7161] 70.00000 68.50000 69.66667 71.00000 69.66667 68.33333 68.33333 69.16667
 [7169] 65.83333 66.66667 68.50000 70.00000 67.33333 68.66667 69.00000 68.33333
 [7177] 70.16667 68.83333 68.50000 67.50000 69.50000 68.83333 69.83333 68.83333
 [7185] 68.16667 71.16667 69.16667 67.50000 67.50000 68.50000 67.66667 67.66667
 [7193] 69.33333 68.66667 69.00000 67.66667 68.83333 66.33333 70.00000 70.16667
 [7201] 68.00000 68.83333 66.33333 66.33333 68.16667 70.00000 68.83333 69.66667
 [7209] 71.00000 66.83333 70.16667 68.00000 69.66667 67.50000 68.00000 68.50000
 [7217] 69.50000 67.16667 68.66667 68.16667 71.00000 71.00000 68.50000 67.00000
 [7225] 68.00000 68.83333 68.83333 70.66667 68.66667 70.83333 69.50000 69.83333
 [7233] 69.00000 70.00000 68.00000 68.83333 70.33333 67.66667 69.83333 68.50000
 [7241] 68.00000 71.00000 68.50000 70.50000 69.66667 67.00000 70.33333 70.16667
 [7249] 67.33333 69.66667 67.83333 69.83333 70.00000 67.50000 66.83333 68.33333
 [7257] 67.66667 72.66667 69.83333 68.83333 67.66667 68.50000 67.83333 69.16667
 [7265] 68.33333 66.33333 69.83333 66.66667 66.83333 67.16667 69.33333 68.50000
 [7273] 69.66667 68.83333 70.16667 69.16667 69.00000 70.16667 69.00000 67.83333
 [7281] 69.00000 66.66667 70.50000 67.50000 69.16667 69.00000 69.00000 68.33333
 [7289] 70.00000 69.00000 69.33333 68.33333 69.33333 70.33333 66.16667 71.33333
 [7297] 70.33333 66.83333 71.66667 70.33333 70.33333 70.66667 69.16667 69.66667
 [7305] 67.00000 68.16667 68.83333 67.50000 68.50000 69.66667 70.00000 69.83333
 [7313] 68.83333 69.16667 68.83333 69.66667 69.33333 68.50000 67.33333 68.83333
 [7321] 65.00000 68.83333 67.16667 69.83333 69.50000 68.33333 69.33333 69.33333
 [7329] 71.83333 68.00000 69.00000 67.50000 66.83333 68.00000 67.66667 70.16667
 [7337] 70.00000 70.00000 68.33333 69.50000 69.16667 68.16667 70.00000 70.16667
 [7345] 66.33333 69.33333 69.50000 71.50000 67.33333 68.83333 67.16667 70.83333
 [7353] 68.16667 68.83333 67.16667 70.66667 69.33333 70.66667 68.66667 67.50000
 [7361] 68.83333 67.66667 70.16667 69.66667 70.66667 69.33333 70.33333 69.16667
 [7369] 68.50000 67.66667 67.50000 68.16667 66.33333 67.16667 71.33333 68.83333
 [7377] 69.33333 69.33333 69.50000 68.33333 69.66667 70.83333 69.00000 67.66667
 [7385] 68.83333 69.66667 67.66667 68.83333 70.00000 68.33333 70.66667 68.00000
 [7393] 71.50000 68.50000 69.16667 69.83333 68.66667 70.16667 69.83333 67.83333
 [7401] 68.33333 67.83333 68.00000 70.66667 68.16667 68.83333 67.83333 67.50000
 [7409] 67.50000 71.33333 66.66667 68.00000 70.83333 70.00000 68.66667 69.33333
 [7417] 69.00000 68.83333 69.00000 69.50000 66.33333 68.66667 70.33333 69.16667
 [7425] 70.33333 70.66667 69.16667 68.33333 68.66667 69.83333 67.66667 68.83333
 [7433] 68.33333 67.83333 66.66667 67.83333 67.66667 69.83333 70.00000 67.50000
 [7441] 66.33333 66.50000 67.00000 69.33333 67.16667 67.00000 68.33333 67.16667
 [7449] 67.16667 68.50000 69.66667 66.66667 69.00000 69.66667 68.83333 69.33333
 [7457] 68.00000 68.33333 67.66667 69.16667 70.16667 68.83333 67.16667 68.50000
 [7465] 67.66667 70.16667 70.33333 68.00000 69.00000 68.83333 68.83333 67.50000
 [7473] 70.00000 69.00000 69.83333 68.33333 69.33333 68.83333 70.16667 69.50000
 [7481] 69.16667 67.66667 67.33333 69.66667 68.00000 69.16667 69.66667 69.83333
 [7489] 65.00000 67.16667 69.00000 71.00000 69.50000 68.66667 69.50000 69.50000
 [7497] 68.66667 69.83333 69.16667 67.16667 70.16667 69.50000 66.16667 65.50000
 [7505] 69.83333 69.00000 69.66667 69.83333 68.00000 67.33333 69.16667 71.00000
 [7513] 69.50000 67.83333 69.16667 68.33333 67.66667 68.16667 68.33333 65.83333
 [7521] 68.83333 71.00000 70.83333 69.83333 71.50000 68.33333 67.50000 66.66667
 [7529] 68.50000 69.33333 70.83333 69.66667 68.66667 68.50000 68.50000 69.16667
 [7537] 69.66667 66.33333 71.50000 69.66667 69.83333 68.16667 70.66667 69.66667
 [7545] 68.00000 69.83333 69.33333 67.33333 67.00000 68.00000 68.50000 69.00000
 [7553] 67.00000 68.00000 67.66667 70.00000 69.00000 68.00000 69.16667 69.50000
 [7561] 68.50000 68.00000 70.00000 69.33333 71.16667 68.50000 68.00000 68.00000
 [7569] 68.50000 69.33333 70.33333 67.50000 68.66667 70.16667 69.66667 70.00000
 [7577] 68.66667 68.66667 67.33333 70.00000 68.50000 70.33333 69.50000 69.50000
 [7585] 70.00000 68.00000 66.33333 70.83333 69.33333 70.16667 71.50000 70.50000
 [7593] 68.00000 68.33333 67.00000 67.16667 67.16667 67.33333 67.50000 68.16667
 [7601] 68.50000 67.00000 70.00000 69.16667 68.33333 69.83333 68.33333 68.83333
 [7609] 68.83333 68.50000 70.50000 69.83333 68.00000 71.33333 69.50000 66.83333
 [7617] 70.50000 68.83333 65.50000 71.83333 67.66667 67.83333 67.66667 69.50000
 [7625] 70.33333 66.83333 67.33333 68.00000 69.33333 67.66667 70.66667 67.66667
 [7633] 70.16667 69.16667 69.33333 70.16667 66.83333 67.66667 68.50000 65.00000
 [7641] 71.66667 68.33333 71.33333 67.16667 69.66667 69.16667 67.33333 69.66667
 [7649] 67.33333 68.66667 68.66667 68.33333 67.16667 68.00000 69.00000 67.66667
 [7657] 68.33333 70.66667 71.00000 68.00000 68.33333 72.66667 69.16667 68.16667
 [7665] 68.00000 67.16667 68.00000 68.00000 71.00000 67.16667 68.83333 67.50000
 [7673] 70.00000 69.66667 70.00000 70.66667 67.66667 69.16667 69.50000 70.00000
 [7681] 68.33333 69.33333 70.50000 68.50000 67.83333 66.33333 70.16667 66.83333
 [7689] 69.33333 69.00000 67.50000 69.66667 68.50000 69.00000 70.16667 70.16667
 [7697] 67.83333 70.00000 66.83333 68.83333 70.16667 66.50000 68.16667 69.33333
 [7705] 68.16667 68.83333 71.66667 67.50000 68.83333 70.66667 70.16667 71.33333
 [7713] 68.66667 68.66667 68.66667 69.66667 66.66667 69.33333 69.83333 68.00000
 [7721] 68.83333 70.00000 67.83333 68.83333 68.50000 68.83333 68.66667 70.66667
 [7729] 68.00000 68.00000 67.66667 69.33333 69.50000 68.33333 68.50000 68.83333
 [7737] 68.16667 68.33333 70.50000 70.00000 69.66667 71.50000 70.50000 68.00000
 [7745] 69.83333 70.33333 70.50000 67.16667 67.66667 69.00000 69.83333 66.33333
 [7753] 69.83333 71.16667 71.00000 68.16667 67.50000 71.33333 71.33333 69.50000
 [7761] 69.00000 69.83333 68.66667 70.00000 66.66667 68.00000 67.50000 68.16667
 [7769] 68.66667 66.00000 69.50000 68.66667 67.66667 70.33333 67.50000 68.83333
 [7777] 67.66667 69.66667 70.00000 68.16667 68.16667 67.66667 69.66667 68.66667
 [7785] 71.16667 68.00000 67.50000 66.33333 70.00000 69.66667 67.33333 68.00000
 [7793] 67.50000 66.66667 66.66667 66.83333 67.50000 69.66667 67.00000 67.50000
 [7801] 68.50000 68.00000 69.33333 68.83333 69.16667 67.66667 68.16667 68.00000
 [7809] 68.00000 69.50000 69.66667 69.33333 68.66667 68.16667 68.50000 71.00000
 [7817] 68.33333 68.83333 66.66667 68.00000 68.33333 66.66667 70.66667 69.33333
 [7825] 70.83333 70.00000 66.33333 68.50000 70.83333 68.83333 68.33333 66.66667
 [7833] 70.16667 70.66667 67.83333 70.66667 69.00000 70.50000 67.66667 70.00000
 [7841] 68.50000 66.50000 69.16667 68.00000 68.50000 68.66667 70.00000 69.16667
 [7849] 67.83333 70.33333 68.00000 68.50000 69.50000 69.50000 70.00000 69.50000
 [7857] 69.00000 67.83333 68.33333 69.50000 67.83333 70.33333 69.50000 69.00000
 [7865] 69.50000 69.83333 69.66667 71.16667 67.33333 69.33333 70.50000 69.66667
 [7873] 69.33333 68.83333 70.00000 69.83333 70.16667 66.50000 70.66667 69.66667
 [7881] 71.16667 68.50000 70.33333 67.16667 68.83333 68.00000 70.66667 68.50000
 [7889] 67.66667 68.33333 67.66667 72.33333 68.50000 69.50000 67.00000 66.83333
 [7897] 69.16667 69.16667 69.66667 70.83333 66.33333 71.33333 68.33333 69.16667
 [7905] 67.00000 68.66667 67.50000 69.83333 70.66667 70.33333 68.66667 68.83333
 [7913] 68.16667 69.66667 70.16667 68.66667 67.50000 66.33333 68.00000 69.00000
 [7921] 70.00000 68.83333 69.83333 66.83333 69.83333 67.33333 68.33333 71.83333
 [7929] 68.16667 69.00000 66.16667 68.33333 70.33333 67.16667 66.83333 69.33333
 [7937] 67.50000 67.16667 66.33333 69.16667 69.00000 71.00000 67.50000 68.00000
 [7945] 69.83333 68.33333 69.00000 66.83333 67.16667 68.16667 70.16667 67.66667
 [7953] 68.66667 66.83333 68.00000 69.16667 68.66667 69.33333 69.00000 69.66667
 [7961] 69.33333 69.33333 70.50000 68.50000 69.33333 66.66667 69.83333 69.33333
 [7969] 71.16667 68.16667 67.66667 68.50000 68.00000 69.50000 69.00000 66.83333
 [7977] 70.00000 67.66667 66.83333 68.33333 71.33333 68.00000 69.66667 70.16667
 [7985] 67.50000 69.83333 71.33333 69.33333 67.33333 71.66667 70.33333 65.83333
 [7993] 70.16667 67.33333 68.66667 69.50000 69.33333 68.33333 67.50000 69.66667
 [8001] 68.66667 70.33333 69.16667 68.33333 70.33333 71.00000 67.33333 67.66667
 [8009] 69.83333 70.50000 67.16667 68.33333 68.33333 70.33333 70.00000 68.16667
 [8017] 69.00000 71.50000 69.33333 69.00000 69.33333 68.16667 68.50000 70.00000
 [8025] 68.16667 68.83333 67.83333 70.00000 67.66667 69.33333 67.66667 68.83333
 [8033] 68.33333 68.16667 69.83333 70.16667 66.83333 69.66667 69.66667 66.66667
 [8041] 69.16667 68.66667 68.00000 70.66667 67.50000 69.33333 68.66667 70.50000
 [8049] 69.66667 71.16667 69.33333 69.50000 70.50000 66.83333 67.00000 70.16667
 [8057] 68.00000 66.00000 69.00000 67.16667 71.16667 68.66667 70.00000 67.83333
 [8065] 71.16667 69.66667 71.33333 69.66667 69.66667 69.50000 71.00000 68.00000
 [8073] 70.50000 69.66667 69.50000 67.33333 69.33333 68.83333 67.16667 67.33333
 [8081] 68.83333 69.16667 69.16667 70.00000 68.00000 69.00000 69.66667 69.16667
 [8089] 71.66667 68.16667 70.33333 66.83333 69.66667 70.16667 69.33333 68.83333
 [8097] 69.33333 67.16667 69.50000 69.33333 67.66667 67.66667 69.16667 68.50000
 [8105] 70.00000 69.66667 67.16667 68.66667 67.66667 69.33333 66.83333 70.33333
 [8113] 69.16667 69.66667 71.83333 67.66667 68.16667 70.50000 70.16667 69.16667
 [8121] 71.16667 68.16667 70.50000 67.83333 68.00000 71.83333 69.66667 68.50000
 [8129] 70.66667 69.50000 69.50000 68.00000 69.00000 68.33333 69.50000 65.83333
 [8137] 67.83333 68.50000 67.83333 67.83333 70.33333 68.83333 69.66667 67.66667
 [8145] 68.50000 67.66667 69.33333 69.00000 67.16667 69.66667 68.83333 71.00000
 [8153] 67.66667 68.83333 68.83333 70.00000 69.33333 66.50000 66.66667 70.33333
 [8161] 69.16667 70.16667 70.33333 69.83333 69.66667 69.16667 70.16667 69.16667
 [8169] 70.66667 70.50000 69.83333 66.66667 70.16667 67.00000 67.66667 69.00000
 [8177] 67.83333 67.33333 71.00000 67.83333 68.83333 69.50000 68.33333 70.66667
 [8185] 69.33333 66.00000 68.66667 68.00000 69.00000 67.50000 69.50000 68.16667
 [8193] 68.16667 69.83333 68.83333 69.16667 69.33333 70.33333 67.83333 68.00000
 [8201] 68.66667 69.00000 69.66667 70.00000 67.33333 66.66667 69.66667 69.33333
 [8209] 67.83333 67.50000 67.50000 70.50000 70.83333 68.00000 70.83333 66.66667
 [8217] 67.00000 69.33333 71.16667 67.83333 70.16667 70.50000 71.16667 68.16667
 [8225] 68.33333 69.00000 71.16667 69.33333 69.16667 68.00000 69.83333 69.00000
 [8233] 69.83333 68.33333 69.33333 66.66667 72.00000 69.50000 67.50000 69.16667
 [8241] 67.50000 69.00000 68.50000 67.16667 67.16667 71.16667 71.33333 70.16667
 [8249] 67.50000 70.66667 68.33333 69.50000 66.33333 68.83333 68.16667 67.66667
 [8257] 66.83333 68.83333 69.50000 70.00000 68.50000 70.00000 68.00000 68.66667
 [8265] 70.00000 68.00000 68.00000 69.66667 68.83333 66.83333 68.16667 68.00000
 [8273] 70.16667 67.50000 69.00000 66.66667 67.83333 67.66667 67.33333 70.16667
 [8281] 67.66667 69.50000 70.50000 68.33333 68.16667 70.00000 66.16667 68.83333
 [8289] 68.00000 68.83333 69.83333 67.33333 69.50000 68.00000 68.16667 69.66667
 [8297] 69.50000 67.16667 68.50000 68.33333 71.00000 68.00000 69.00000 70.83333
 [8305] 71.83333 70.00000 69.66667 69.50000 69.66667 67.66667 69.00000 69.33333
 [8313] 67.16667 69.50000 68.16667 68.00000 67.50000 67.50000 68.66667 67.66667
 [8321] 68.16667 68.16667 70.66667 69.33333 67.83333 70.33333 67.33333 69.66667
 [8329] 68.50000 70.66667 70.00000 68.50000 68.50000 68.33333 68.50000 69.66667
 [8337] 66.33333 69.83333 69.00000 68.50000 68.50000 68.83333 70.50000 68.83333
 [8345] 69.33333 66.33333 69.16667 67.16667 70.16667 68.50000 70.00000 68.33333
 [8353] 68.33333 68.00000 66.66667 67.16667 67.83333 67.83333 67.50000 68.33333
 [8361] 72.16667 68.50000 67.66667 70.00000 70.00000 70.00000 67.16667 70.83333
 [8369] 68.16667 69.50000 68.50000 66.83333 67.33333 68.50000 68.83333 67.00000
 [8377] 67.66667 67.66667 68.83333 69.00000 70.16667 68.00000 70.16667 67.50000
 [8385] 69.50000 68.33333 70.00000 68.50000 68.00000 71.16667 68.16667 69.50000
 [8393] 68.33333 68.33333 70.16667 69.50000 67.66667 68.00000 67.83333 67.66667
 [8401] 69.16667 67.33333 69.00000 68.66667 70.00000 67.66667 66.83333 68.66667
 [8409] 69.00000 69.83333 68.00000 69.50000 68.66667 67.83333 68.66667 67.50000
 [8417] 68.83333 69.33333 69.83333 68.16667 68.66667 68.00000 69.83333 70.50000
 [8425] 68.66667 69.00000 68.16667 70.00000 68.33333 69.33333 68.50000 67.66667
 [8433] 68.00000 68.00000 69.33333 66.00000 69.16667 68.16667 68.33333 68.50000
 [8441] 69.83333 69.33333 68.50000 68.00000 69.16667 69.00000 68.50000 70.66667
 [8449] 68.00000 68.66667 68.33333 68.66667 68.50000 66.66667 68.00000 69.66667
 [8457] 71.16667 68.16667 70.33333 67.33333 68.33333 69.33333 67.50000 70.50000
 [8465] 69.50000 67.16667 68.66667 66.33333 69.66667 67.83333 66.33333 70.16667
 [8473] 68.66667 71.00000 66.83333 68.33333 70.33333 67.66667 71.00000 68.66667
 [8481] 68.66667 68.00000 67.50000 69.16667 67.66667 69.66667 69.16667 67.66667
 [8489] 67.83333 68.33333 67.16667 66.66667 70.00000 70.33333 68.50000 68.83333
 [8497] 68.33333 69.33333 69.66667 67.66667 67.66667 68.83333 68.00000 69.83333
 [8505] 70.33333 69.16667 68.00000 70.50000 70.00000 68.33333 70.33333 68.66667
 [8513] 69.16667 69.16667 68.83333 67.33333 70.16667 70.50000 68.66667 68.00000
 [8521] 69.83333 68.16667 69.33333 69.33333 70.66667 68.66667 68.50000 68.16667
 [8529] 68.50000 69.66667 69.33333 69.16667 67.16667 68.83333 72.00000 69.83333
 [8537] 68.00000 68.16667 66.83333 69.66667 69.16667 67.00000 68.16667 69.66667
 [8545] 70.33333 70.66667 67.83333 69.50000 71.16667 71.00000 68.83333 69.33333
 [8553] 71.00000 66.16667 69.66667 69.16667 69.00000 70.16667 68.16667 67.50000
 [8561] 66.00000 67.33333 68.00000 67.50000 69.50000 69.16667 69.33333 68.83333
 [8569] 69.50000 68.66667 69.33333 70.50000 68.16667 67.00000 69.50000 69.00000
 [8577] 67.33333 70.00000 68.00000 67.66667 67.66667 67.66667 68.33333 70.16667
 [8585] 67.16667 68.66667 67.50000 70.16667 67.50000 68.83333 67.33333 68.00000
 [8593] 71.33333 69.33333 69.66667 70.33333 68.83333 70.00000 67.00000 67.00000
 [8601] 69.16667 67.33333 71.66667 69.16667 68.83333 69.83333 67.66667 67.66667
 [8609] 70.00000 67.33333 68.83333 67.66667 67.66667 69.83333 68.33333 68.16667
 [8617] 69.50000 68.66667 68.00000 69.33333 68.66667 68.00000 68.16667 70.00000
 [8625] 68.83333 70.83333 69.66667 69.16667 71.00000 66.66667 69.33333 67.16667
 [8633] 69.83333 68.00000 70.33333 71.33333 69.83333 68.50000 69.66667 68.83333
 [8641] 68.83333 67.16667 68.16667 68.33333 70.16667 68.00000 68.16667 69.66667
 [8649] 68.50000 68.83333 69.66667 69.66667 68.33333 66.50000 70.33333 67.83333
 [8657] 70.66667 70.33333 70.00000 67.16667 68.00000 69.83333 66.83333 68.83333
 [8665] 68.66667 69.33333 68.50000 70.16667 70.00000 70.50000 68.66667 68.33333
 [8673] 71.16667 68.66667 69.00000 71.33333 68.16667 70.66667 67.66667 67.83333
 [8681] 66.00000 69.00000 67.50000 71.33333 68.83333 68.66667 68.66667 69.66667
 [8689] 68.83333 70.66667 68.83333 69.66667 66.83333 70.66667 70.83333 69.83333
 [8697] 69.33333 70.33333 66.33333 68.33333 67.33333 69.83333 68.66667 68.00000
 [8705] 69.66667 69.50000 67.33333 70.00000 69.33333 66.33333 68.50000 70.33333
 [8713] 67.33333 69.66667 69.16667 70.33333 69.16667 67.66667 65.50000 67.83333
 [8721] 66.66667 69.83333 70.16667 70.16667 70.50000 69.83333 69.33333 68.00000
 [8729] 69.16667 69.83333 70.33333 67.66667 69.00000 71.33333 67.83333 70.00000
 [8737] 68.00000 68.50000 69.16667 70.83333 68.50000 69.50000 70.83333 70.16667
 [8745] 68.50000 71.00000 68.00000 68.16667 69.16667 70.00000 66.00000 71.33333
 [8753] 70.33333 68.83333 69.33333 69.16667 70.33333 68.83333 69.33333 70.83333
 [8761] 70.00000 69.66667 67.16667 70.50000 67.83333 66.33333 66.66667 69.33333
 [8769] 68.16667 70.66667 70.50000 68.00000 70.50000 68.33333 69.83333 67.66667
 [8777] 69.00000 69.33333 66.66667 67.66667 67.00000 68.33333 68.83333 68.83333
 [8785] 67.50000 67.83333 68.50000 69.50000 68.16667 67.66667 68.66667 69.33333
 [8793] 66.16667 68.33333 70.50000 67.66667 70.00000 67.16667 69.33333 70.50000
 [8801] 70.66667 67.33333 69.66667 69.83333 67.16667 69.50000 68.16667 68.83333
 [8809] 68.50000 68.00000 67.50000 66.66667 68.50000 69.83333 69.33333 68.66667
 [8817] 69.33333 68.16667 68.66667 68.66667 70.66667 68.00000 69.00000 68.66667
 [8825] 69.00000 71.33333 69.66667 69.66667 71.16667 72.16667 67.66667 65.50000
 [8833] 69.66667 69.50000 70.50000 71.00000 70.83333 70.50000 70.50000 69.33333
 [8841] 71.16667 68.66667 67.50000 69.16667 68.83333 68.66667 67.66667 68.50000
 [8849] 70.66667 70.50000 69.16667 68.83333 70.66667 67.50000 68.50000 71.50000
 [8857] 66.33333 67.66667 68.33333 68.16667 68.66667 70.83333 67.66667 67.16667
 [8865] 69.83333 68.83333 71.00000 71.00000 69.00000 70.33333 70.33333 70.83333
 [8873] 66.66667 68.83333 71.66667 70.00000 67.50000 69.00000 69.66667 68.00000
 [8881] 70.33333 68.33333 69.66667 68.66667 66.83333 70.33333 65.50000 70.83333
 [8889] 71.00000 69.00000 69.16667 68.83333 69.83333 69.00000 71.50000 67.16667
 [8897] 69.00000 69.00000 71.16667 70.33333 68.83333 71.00000 67.00000 69.00000
 [8905] 69.33333 70.00000 66.33333 67.16667 70.16667 69.16667 70.16667 69.16667
 [8913] 68.50000 70.83333 70.66667 69.50000 70.00000 70.66667 66.33333 69.33333
 [8921] 69.16667 70.16667 69.66667 67.00000 69.16667 67.66667 69.33333 67.16667
 [8929] 69.83333 68.00000 68.00000 68.00000 69.66667 68.33333 68.00000 65.50000
 [8937] 69.00000 68.66667 68.83333 70.00000 68.00000 69.33333 68.00000 72.16667
 [8945] 70.50000 68.16667 69.33333 68.50000 69.00000 68.16667 71.16667 67.66667
 [8953] 70.16667 70.83333 70.33333 69.66667 68.00000 68.83333 70.16667 67.50000
 [8961] 69.00000 69.66667 68.00000 68.33333 67.66667 69.16667 71.00000 69.66667
 [8969] 69.16667 69.83333 70.00000 67.66667 69.16667 69.50000 71.00000 70.16667
 [8977] 69.50000 71.16667 68.83333 70.00000 68.33333 71.16667 69.16667 69.00000
 [8985] 68.83333 69.66667 66.00000 72.33333 68.83333 67.66667 70.33333 68.83333
 [8993] 66.66667 67.16667 66.00000 70.50000 69.83333 69.00000 67.16667 67.66667
 [9001] 68.50000 68.16667 70.00000 69.16667 65.00000 67.83333 68.50000 70.00000
 [9009] 68.00000 70.00000 69.33333 71.16667 68.16667 71.66667 70.16667 70.00000
 [9017] 69.66667 68.50000 71.33333 68.00000 69.00000 70.33333 71.33333 69.33333
 [9025] 66.33333 70.16667 69.16667 67.00000 68.50000 69.33333 70.66667 70.00000
 [9033] 69.00000 69.33333 68.33333 68.33333 70.16667 68.50000 71.00000 67.83333
 [9041] 70.16667 68.50000 68.83333 69.16667 69.50000 68.66667 68.66667 68.50000
 [9049] 66.83333 71.00000 68.66667 68.66667 68.50000 70.50000 70.66667 71.00000
 [9057] 69.66667 69.83333 69.33333 70.83333 70.33333 69.50000 66.83333 68.33333
 [9065] 67.00000 68.33333 68.16667 68.83333 68.83333 66.66667 67.83333 66.83333
 [9073] 68.50000 67.50000 67.50000 68.66667 69.00000 68.00000 67.66667 71.00000
 [9081] 69.50000 68.66667 67.66667 67.83333 68.16667 70.33333 69.66667 69.16667
 [9089] 70.66667 68.33333 68.00000 68.16667 69.16667 70.16667 69.16667 66.50000
 [9097] 71.33333 67.66667 69.83333 67.83333 67.16667 68.83333 67.33333 71.33333
 [9105] 68.00000 68.50000 69.66667 69.00000 68.66667 70.00000 69.00000 68.16667
 [9113] 69.16667 68.00000 69.00000 69.16667 66.83333 67.50000 68.33333 69.00000
 [9121] 68.33333 68.50000 66.33333 68.00000 66.33333 66.66667 70.33333 67.83333
 [9129] 68.83333 67.66667 68.66667 66.16667 69.16667 69.83333 67.16667 68.16667
 [9137] 69.16667 68.50000 68.33333 70.00000 69.83333 68.00000 69.00000 70.83333
 [9145] 70.16667 69.66667 70.16667 67.66667 70.33333 68.50000 66.66667 70.50000
 [9153] 68.50000 67.00000 67.16667 68.33333 66.33333 69.16667 67.83333 66.33333
 [9161] 68.50000 71.00000 68.33333 68.50000 67.83333 69.66667 68.83333 69.66667
 [9169] 67.83333 68.66667 65.50000 70.33333 70.00000 70.00000 67.83333 67.50000
 [9177] 67.83333 67.00000 68.50000 67.66667 66.83333 69.00000 70.33333 67.00000
 [9185] 70.83333 69.50000 69.33333 66.33333 70.50000 69.16667 68.00000 69.66667
 [9193] 69.66667 69.33333 70.50000 71.33333 66.66667 69.66667 67.50000 70.00000
 [9201] 68.83333 67.50000 68.16667 69.50000 67.50000 67.50000 66.83333 67.33333
 [9209] 66.83333 70.50000 67.16667 69.83333 68.16667 69.66667 69.50000 68.00000
 [9217] 67.16667 70.66667 70.66667 70.00000 69.16667 70.16667 69.50000 66.83333
 [9225] 69.33333 69.66667 67.50000 67.83333 69.33333 68.83333 68.83333 67.50000
 [9233] 68.16667 70.00000 68.00000 67.50000 71.50000 69.33333 69.50000 69.50000
 [9241] 67.00000 68.33333 68.66667 72.00000 69.66667 68.16667 67.16667 69.33333
 [9249] 69.33333 70.33333 70.16667 68.83333 66.33333 68.00000 67.33333 68.00000
 [9257] 69.16667 68.83333 69.33333 70.00000 69.00000 68.50000 67.66667 70.00000
 [9265] 70.50000 68.33333 66.00000 69.33333 69.33333 68.00000 67.50000 67.83333
 [9273] 68.16667 70.00000 65.83333 69.50000 71.33333 68.66667 68.50000 68.00000
 [9281] 68.83333 68.66667 69.16667 69.16667 68.33333 71.00000 67.16667 68.83333
 [9289] 71.00000 68.16667 68.00000 67.16667 67.50000 71.33333 69.00000 66.16667
 [9297] 67.16667 69.33333 68.83333 70.16667 68.33333 68.00000 68.66667 69.66667
 [9305] 69.00000 68.50000 66.33333 68.50000 70.66667 68.50000 71.16667 68.33333
 [9313] 69.83333 69.00000 68.16667 70.66667 67.33333 69.00000 69.66667 68.50000
 [9321] 68.33333 67.66667 69.16667 68.83333 66.83333 68.16667 70.33333 70.16667
 [9329] 68.50000 66.83333 68.16667 68.66667 69.66667 69.50000 67.66667 68.33333
 [9337] 70.00000 69.83333 68.83333 71.00000 67.33333 66.50000 69.33333 68.66667
 [9345] 66.33333 69.83333 67.33333 69.33333 67.50000 70.50000 66.16667 70.50000
 [9353] 68.33333 69.66667 69.66667 68.33333 66.83333 68.50000 70.83333 70.66667
 [9361] 69.50000 68.66667 69.66667 68.66667 66.33333 67.33333 69.66667 69.83333
 [9369] 65.00000 68.66667 68.83333 69.33333 67.50000 66.66667 69.66667 65.00000
 [9377] 68.83333 70.00000 68.83333 69.16667 70.50000 68.33333 67.66667 70.33333
 [9385] 69.33333 67.66667 68.66667 70.50000 68.50000 68.66667 69.00000 67.33333
 [9393] 70.16667 69.00000 69.00000 68.33333 67.50000 67.50000 70.66667 70.00000
 [9401] 69.33333 69.66667 70.50000 67.83333 68.33333 71.50000 67.83333 66.33333
 [9409] 69.00000 71.83333 69.83333 69.83333 68.00000 69.33333 69.50000 68.33333
 [9417] 69.50000 67.33333 68.83333 67.66667 70.00000 70.16667 68.33333 71.00000
 [9425] 67.66667 69.50000 69.83333 70.66667 66.66667 69.33333 67.83333 68.16667
 [9433] 70.16667 69.00000 68.83333 68.00000 66.33333 67.16667 68.50000 70.00000
 [9441] 69.16667 69.33333 67.00000 68.83333 70.66667 68.66667 67.16667 67.50000
 [9449] 66.83333 70.16667 69.16667 68.83333 69.16667 70.33333 67.33333 67.83333
 [9457] 68.16667 69.66667 68.16667 69.33333 67.50000 71.16667 68.00000 69.16667
 [9465] 67.50000 68.33333 69.50000 70.16667 68.00000 68.83333 68.16667 69.16667
 [9473] 68.66667 67.33333 69.33333 68.66667 69.33333 69.16667 70.00000 68.66667
 [9481] 70.66667 67.83333 69.00000 68.50000 68.83333 67.16667 69.66667 70.33333
 [9489] 67.50000 67.83333 66.33333 68.66667 68.33333 68.66667 68.33333 69.00000
 [9497] 69.50000 67.00000 70.00000 69.66667 67.66667 67.50000 69.16667 68.16667
 [9505] 68.66667 70.16667 68.83333 67.66667 69.33333 67.50000 68.83333 69.33333
 [9513] 68.00000 68.66667 67.66667 68.83333 70.16667 69.33333 71.00000 68.50000
 [9521] 71.16667 72.33333 69.83333 68.66667 66.33333 69.16667 65.50000 71.00000
 [9529] 69.00000 70.16667 69.83333 70.50000 68.00000 68.00000 69.16667 69.50000
 [9537] 69.16667 69.50000 67.66667 71.66667 68.16667 69.66667 71.50000 69.66667
 [9545] 67.83333 69.83333 71.00000 69.50000 69.66667 68.83333 69.33333 69.16667
 [9553] 69.00000 68.16667 69.66667 68.00000 65.50000 68.33333 69.00000 69.66667
 [9561] 68.33333 69.00000 67.66667 68.33333 68.33333 69.16667 69.33333 68.16667
 [9569] 70.16667 67.66667 68.33333 69.66667 69.00000 67.66667 68.50000 70.16667
 [9577] 67.00000 68.00000 69.00000 67.16667 69.66667 69.50000 69.16667 69.00000
 [9585] 68.66667 66.33333 66.33333 69.33333 70.00000 68.83333 69.00000 69.50000
 [9593] 71.50000 69.00000 70.50000 66.66667 69.50000 70.83333 71.16667 70.00000
 [9601] 70.16667 71.50000 69.16667 68.00000 68.33333 69.33333 69.33333 67.83333
 [9609] 65.50000 66.16667 68.83333 70.50000 67.50000 69.00000 67.66667 67.66667
 [9617] 70.16667 68.83333 68.50000 68.50000 67.66667 68.83333 66.33333 70.16667
 [9625] 68.00000 69.83333 68.83333 67.50000 69.16667 69.83333 70.00000 68.00000
 [9633] 69.83333 67.83333 69.00000 67.83333 67.00000 68.83333 69.00000 67.50000
 [9641] 68.33333 68.33333 66.66667 68.16667 68.00000 68.16667 70.66667 70.00000
 [9649] 68.83333 67.16667 68.16667 68.16667 69.16667 68.50000 67.16667 68.00000
 [9657] 68.50000 66.83333 69.50000 68.00000 69.33333 69.83333 69.66667 67.50000
 [9665] 66.33333 67.66667 69.00000 68.50000 67.66667 67.33333 68.50000 66.83333
 [9673] 67.00000 69.83333 68.00000 67.16667 69.00000 68.16667 69.00000 67.66667
 [9681] 69.16667 71.00000 67.83333 68.16667 69.33333 67.16667 70.66667 68.33333
 [9689] 68.83333 68.83333 67.16667 70.00000 68.33333 67.50000 68.50000 68.66667
 [9697] 68.16667 67.50000 70.16667 68.83333 70.50000 67.16667 66.83333 67.50000
 [9705] 68.16667 68.33333 69.33333 69.83333 68.16667 68.00000 69.83333 69.33333
 [9713] 68.16667 68.83333 71.33333 68.00000 70.16667 70.83333 69.66667 67.83333
 [9721] 69.66667 68.50000 68.16667 69.16667 69.33333 70.50000 67.33333 70.50000
 [9729] 66.00000 67.66667 69.50000 69.33333 70.50000 68.66667 71.50000 68.33333
 [9737] 67.66667 68.83333 67.83333 68.83333 70.33333 69.50000 69.00000 69.50000
 [9745] 66.83333 71.83333 66.83333 69.16667 69.33333 70.33333 69.00000 69.83333
 [9753] 70.00000 68.00000 68.33333 65.50000 67.33333 67.83333 68.66667 68.50000
 [9761] 70.00000 71.00000 68.50000 68.16667 68.66667 69.16667 66.83333 66.33333
 [9769] 68.00000 69.83333 66.00000 69.83333 69.16667 67.50000 68.83333 70.83333
 [9777] 68.16667 68.50000 68.33333 68.00000 71.66667 67.16667 71.50000 69.16667
 [9785] 66.66667 68.83333 70.33333 67.50000 68.33333 69.16667 69.83333 68.00000
 [9793] 68.66667 69.50000 70.50000 69.33333 67.83333 68.50000 68.00000 68.83333
 [9801] 67.50000 66.33333 70.83333 69.83333 68.00000 67.16667 69.66667 68.50000
 [9809] 67.33333 66.83333 66.33333 70.50000 69.33333 67.33333 68.33333 70.16667
 [9817] 69.66667 69.66667 71.16667 68.00000 69.00000 68.83333 67.83333 68.50000
 [9825] 68.83333 67.50000 70.33333 67.66667 69.16667 68.33333 67.33333 66.50000
 [9833] 69.83333 68.00000 66.66667 67.16667 68.16667 66.66667 70.83333 69.00000
 [9841] 68.66667 70.83333 69.83333 71.16667 69.00000 68.00000 71.33333 65.83333
 [9849] 70.00000 70.66667 66.66667 71.16667 70.00000 71.50000 68.83333 66.33333
 [9857] 69.50000 68.16667 67.00000 69.33333 69.66667 68.66667 67.00000 69.83333
 [9865] 69.33333 66.33333 68.33333 69.83333 70.83333 68.50000 70.50000 66.66667
 [9873] 70.16667 68.00000 69.66667 67.00000 67.16667 68.16667 68.00000 70.16667
 [9881] 69.33333 66.00000 70.83333 69.16667 69.00000 67.66667 68.16667 66.83333
 [9889] 67.66667 69.16667 68.33333 70.50000 67.66667 69.00000 66.50000 70.00000
 [9897] 69.66667 68.00000 69.33333 68.66667 70.50000 69.16667 68.00000 69.50000
 [9905] 70.00000 69.33333 68.50000 69.50000 70.50000 71.50000 69.50000 68.83333
 [9913] 68.16667 68.66667 70.50000 71.33333 69.16667 68.66667 70.00000 70.50000
 [9921] 70.66667 70.00000 66.33333 69.33333 68.66667 69.16667 67.16667 69.16667
 [9929] 67.50000 69.00000 68.16667 70.33333 67.33333 68.16667 66.33333 67.83333
 [9937] 71.33333 68.33333 67.66667 67.16667 69.00000 71.50000 67.16667 67.66667
 [9945] 68.16667 70.83333 68.50000 70.16667 68.00000 68.50000 69.33333 67.33333
 [9953] 68.50000 68.50000 69.16667 68.50000 70.33333 68.66667 68.83333 68.83333
 [9961] 70.00000 69.33333 67.00000 68.83333 68.00000 70.16667 69.83333 68.66667
 [9969] 67.16667 68.66667 68.66667 68.16667 70.50000 68.50000 71.00000 68.83333
 [9977] 70.00000 68.83333 68.16667 68.00000 69.33333 69.00000 71.33333 69.00000
 [9985] 68.50000 68.16667 67.33333 67.16667 68.66667 68.00000 70.16667 70.50000
 [9993] 69.50000 69.66667 69.16667 70.16667 70.66667 68.00000 69.33333 69.33333

Illustration

Code
library(ggpubr)
mu = mean(heights)
sem = sd(heights)/sqrt(length(heights))
cv_t = qt(p = .975, df = length(heights)-1)

bootstrapped = data.frame(means = sample_means) %>%
  ggplot(aes(x = means)) + 
  geom_histogram(color = "white") +
  geom_density() +
  geom_vline(aes(xintercept = mean(sample_means), color = "mean"), size = 2) +
  geom_vline(aes(xintercept = median(sample_means), color = "median"), size = 2) +
  geom_vline(aes(xintercept = quantile(sample_means, probs = .025), color = "Lower 2.5%"), size = 2) +
    geom_vline(aes(xintercept = quantile(sample_means, probs = .975), color = "Upper 2.5%"), size = 2) +
  scale_x_continuous(limits = c(mu-3*sem, mu+3*sem))+
  ggtitle("Bootstrapped sampling distribution") +
  cowplot::theme_cowplot()


from_prob = data.frame(means = seq(from = min(sample_means), to = max(sample_means))) %>%
  ggplot(aes(x = means)) +
  stat_function(fun = function(x) dnorm(x, m = mu, sd = sem)) + 
  geom_vline(aes(xintercept = mean(heights), color = "mean"), size = 2) +
  geom_vline(aes(xintercept = mean(heights), color = "median"), size = 2) +
  geom_vline(aes(xintercept = mu-cv_t*sem, color = "Lower 2.5%"), size = 2) +
  geom_vline(aes(xintercept = mu+cv_t*sem, color = "Upper 2.5%"), size = 2) +scale_x_continuous(limits = c(mu-3*sem, mu+3*sem))+  
  ggtitle("Theoretical sampling distribution") +
  cowplot::theme_cowplot()

ggarrange(bootstrapped, from_prob, ncol = 1)

Example

A sample of 54 response times. What is their central tendency and variability?

There are several candidates for central tendency (e.g., mean, median) and for variability (e.g., standard deviation, interquartile range). Some of these do not have well understood theoretical sampling distributions.

For the mean and standard deviation, we have theoretical sampling distributions to help us, provided we think the mean and standard deviation are the best indices. For the others, we can use bootstrapping.

Code
library(tidyverse)
set.seed(03102020)
response = rf(n = N, 2, 50) 
response = response + rchisq(n = N, df = 2)*20

values = quantile(response, 
                  probs = c(.025, .5, .975))
mean_res = mean(response)

data.frame(x = response) %>%
  ggplot(aes(x)) +
  geom_histogram(aes(y = ..density..), bins = 10, fill = "lightgrey", color = 
                   "black")+
  geom_density()+
  geom_vline(aes(xintercept = values[1], 
                 color = "Lower 2.5%"), size = 2)+
  geom_vline(aes(xintercept = values[2], 
                 color = "Median"), size = 2)+
  geom_vline(aes(xintercept = values[3], 
                 color = "Upper 2.5%"), size = 2)+
  geom_vline(aes(xintercept = mean_res, 
                 color = "Mean"), size = 2)+
  labs(x = "Reponse time (ms)", title = "Response Time Distribution") + cowplot::theme_cowplot(font_size = 20)

Bootstrapping

Before now, if we wanted to estimate the mean and the 95% confidence interval around the mean, we would find the theoretical sampling distribution by scaling a t-distribution to be centered on the mean of our sample and have a standard deviation equal to \(\frac{s}{\sqrt{N}}.\) But we have to make many assumptions to use this sampling distribution, and we may have good reason not to.

Instead, we can build a population sampling distribution empirically by randomly sampling with replacement from the sample.

Response time example

boot = 10000
response_means = numeric(length = boot)
for(i in 1:boot){
  sample_response = sample(response, size = N, replace = T)
  response_means[i] = mean(sample_response)
}

Bootstrapped distribution

mean(response_means); median(response_means)
[1] 39.83271
[1] 39.72699
#95%CI
quantile(response_means, 
         probs = c(.025, .975))
    2.5%    97.5% 
31.60493 48.64927 

Theoretical distribution

mean(response)
[1] 39.80251
#95% CI
sem = sd(response/sqrt(N))
cv = qt(.975,df = N-1)
mean(response)-(cv*sem); mean(response)+(cv*sem)
[1] 30.99646
[1] 48.60857

What about something like the median?

bootstrapped distribution of the median

boot = 10000
response_med = numeric(length = boot)
for(i in 1:boot){
  sample_response = sample(response, size = N, replace = T)
  response_med[i] = median(sample_response)
}

mean(response_med)
[1] 34.30266
median(response_med)
[1] 33.61076
quantile(response_med, 
         probs = c(.025, .975))
    2.5%    97.5% 
20.90189 49.80362 

bootstrapped distribution of the standard deviation

boot = 10000
response_sd = numeric(length = boot)
for(i in 1:boot){
  sample_response = sample(response, size = N, replace = T)
  response_sd[i] = sd(sample_response)
}

mean(response_sd)
[1] 31.6349
median(response_sd)
[1] 31.483
quantile(response_sd, 
         probs = c(.025, .975))
    2.5%    97.5% 
24.24056 39.86871 

You can bootstrap estimates and 95% confidence intervals for any statistics you’ll need to estimate.

The boot function provides some functions to speed this process along.

library(boot)

# function to obtain R-Squared from the data
rsq <- function(data, indices) {
  d <- data[indices,] # allows boot to select sample
  
  fit <- lm(mpg~wt+disp, data=d) # this is the code you would have run
  
  return(summary(fit)$r.square)
}

# bootstrapping with 10000 replications
results <- boot(data=mtcars, 
                statistic=rsq, # this is the function we created above
                R=10000)
data.frame(rsq = results$t) %>%
  ggplot(aes(x = rsq)) +
  geom_histogram(color = "white", bins = 30) 

median(results$t)
[1] 0.7969258
boot.ci(results, type = "perc")
BOOTSTRAP CONFIDENCE INTERVAL CALCULATIONS
Based on 10000 bootstrap replicates

CALL : 
boot.ci(boot.out = results, type = "perc")

Intervals : 
Level     Percentile     
95%   ( 0.6848,  0.8765 )  
Calculations and Intervals on Original Scale

Example 2

Samples of service waiting times for Verizon’s (ILEC) versus other carriers (CLEC) customers. In this district, Verizon must provide line service to all customers or else face a fine. The question is whether the non-Verizon customers are getting ignored or facing greater variability in waiting times.

Verizon = read.csv("https://raw.githubusercontent.com/uopsych/psy612/master/data/Verizon.csv")

CLEC ILEC 
  23 1664 

There’s no world in which these data meet the typical assumptions of an independent samples t-test. To estimate mean differences we can use boostrapping. Here, we’ll resample with replacement separately from the two samples.

boot = 10000
difference = numeric(length = boot)

subsample_CLEC = Verizon %>% filter(Group == "CLEC")
subsample_ILEC = Verizon %>% filter(Group == "ILEC")

for(i in 1:boot){
  sample_CLEC = sample(subsample_CLEC$Time, 
                       size = nrow(subsample_CLEC), 
                       replace = T)
  sample_ILEC = sample(subsample_ILEC$Time, 
                       size = nrow(subsample_ILEC), 
                       replace = T)
  
  difference[i] = mean(sample_CLEC) - mean(sample_ILEC)
}
Code
data.frame(differences = difference) %>%
  ggplot(aes(x = differences)) + 
  geom_histogram(aes(y = ..density..),color = "white", fill = "grey") +
  geom_density() +
  geom_vline(aes(xintercept = mean(differences), color = "mean"), size = 2) +
  geom_vline(aes(xintercept = median(differences), color = "median"), size = 2) +
  geom_vline(aes(xintercept = quantile(differences, probs = .025), color = "Lower 2.5%"), size = 2) +
    geom_vline(aes(xintercept = quantile(differences, probs = .975), color = "Upper 2.5%"), size = 2) +
  cowplot::theme_cowplot()

The difference in means is 7.68 \([1.62,16.77]\).

Bootstrapping Summary

Bootstrapping can be a useful tool to estimate parameters when

  1. you’ve violated assumptions of the test (i.e., normality, homoskedasticity)

  2. you have good reason to believe the sampling distribution is not normal, but don’t know what it is

  3. there are other oddities in your data, like very unbalanced samples

Bootstrapping Summary

This allows you to create a confidence interval around any statistic you want – Cronbach’s alpha, ICC, Mahalanobis Distance, \(R^2\), AUC, etc.

  • You can test whether these statistics are significantly different from any other value – how?

Bootstrapping Summary

Bootstrapping will NOT help you deal with:

  • dependence between observations – for this, you’ll need to explicit model dependence (e.g., multilevel model, repeated measures ANOVA)

  • improperly specified models or forms – use theory to guide you here

  • measurement error – why bother?

Next time…

  • Machine learning
  • Wrap up
    • Send in questions