Skip to content

Instantly share code, notes, and snippets.

@briandconnelly
Last active March 28, 2016 20:28
Show Gist options
  • Save briandconnelly/8b1d1da2d83ef5ec1d92 to your computer and use it in GitHub Desktop.
Save briandconnelly/8b1d1da2d83ef5ec1d92 to your computer and use it in GitHub Desktop.
Analyzing growth curves
library(dplyr)
library(ggplot2)
library(growthcurve)
library(magrittr)
library(tidyr)
raw <- read.csv("PETrawdata.csv")
platemap <- read.csv("PETrawdataPlateNA.csv")
annotated <- raw %>% # Start with your raw data
select(-Temperature) %>% # Remove the Temperature column
gather(Well, OD600, -Time) %>% # Reshape it using A1..H12 as Well and their values as OD600
inner_join(platemap, by="Well") %>% # Add in the experimental info from the plate map
arrange(Time, Environment, Strain) # Sort the data first by Time, then by Environment, then by Strain
# Make the Wells a factor instead of string
annotated$Well <- as.factor(annotated$Well)
# Plot the Growth Data ----------------------------------------------------
p1 <- ggplot(data = annotated, aes(x = Time, y = OD600, color = Strain,
fill = Strain)) +
facet_grid(Environment ~ .) +
stat_summary(fun.data = "mean_cl_boot", geom = "ribbon", color = NA,
alpha = 0.3) +
stat_summary(fun.y = "mean", geom = "line") +
scale_y_log10() +
labs(x="Time (Hours)", y="Absorbance at 600 nm")
ggsave(filename = "growthcurves.png", plot = p1, dpi = 150)
# Fit Growth Curves -------------------------------------------------------
# This is a little function that fits a growth curve using for a subset
# of the data and returns a data frame. If there's a problem, it just returns
# NAs.
# You can replace fit_growth_gompertz with fit_growth_logistic or
# fit_growth_spline to see different types of fits. If you do fit_growth_spline,
# remove the [["Estimate"]] stuff.
fit_curve <- function(d) {
fit <- fit_growth_gompertz(d, Time, OD600)
#fit <- fit_growth_spline(d, Time, OD600)
if (is.na(fit$integral)) {
data.frame(MaxGrowth = NA,
MaxRate = NA,
LagLength = NA)
}
else{
data.frame(MaxGrowth = fit$max_growth[["Estimate"]],
MaxRate = fit$max_rate[["Estimate"]],
LagLength = fit$lag_length[["Estimate"]])
# data.frame(MaxGrowth = fit$max_growth,
# MaxRate = fit$max_rate,
# LagLength = fit$lag_length)
}
}
# This is pretty damn hardcore.
growthfit <- annotated %>% # Take the annotated data
group_by(Well) %>% # Group the data by Well
do(fit_curve(.)) %>% # For each Well, fit a growth curve
gather(Metric, Value, -Well) %>% # Rearrange the data so that there aren't three different columns for the fit parameters, but two (param, value)
inner_join(platemap, by="Well") # Add back the plate map info, which was lost in the mix.
# This version adds Strain and Environment in the group_by, which keeps them in the results
growthfit <- annotated %>%
group_by(Well, Strain, Environment) %>%
do(fit_curve(.)) %>%
gather(Metric, Value, -Well, -Strain, -Environment)
# Plot the Growth Curve Data ----------------------------------------------
p2 <- ggplot(data = filter(growthfit, Metric == "MaxRate"),
aes(x = Strain, y = Value, color = Strain)) +
facet_grid(Environment ~ .) +
geom_boxplot() +
scale_y_log10() +
labs(x = "Strain", y = "Growth Rate (AU/s)",
title = "Maximum Growth Rate by Environment")
ggsave(filename = "max_growth_rate_env.png", plot = p2, dpi = 150)
p3 <- ggplot(data = filter(growthfit, Metric == "MaxRate"),
aes(x = Environment, y = Value, color = Strain)) +
facet_grid(. ~ Strain) +
geom_boxplot() +
scale_y_log10() +
labs(x = "Strain", y = "Growth Rate (AU/s)",
title = "Maximum Growth Rate by Strain") +
theme(axis.text.x = element_text(angle = 45, vjust = 1, hjust = 1))
ggsave(filename = "max_growth_rate_strain.png", plot = p3, dpi = 150)
p4 <- ggplot(data = filter(growthfit, Metric == "MaxGrowth"),
aes(x = Strain, y = Value, color = Strain)) +
facet_grid(Environment ~ .) +
geom_boxplot() +
scale_y_log10() +
labs(x = "Strain", y = "Density (OD600)",
title = "Maximum Density by Environment")
ggsave(filename = "max_density_env.png", plot = p4, dpi = 150)
p5 <- ggplot(data = filter(growthfit, Metric == "MaxGrowth"),
aes(x = Environment, y = Value, color = Strain)) +
facet_grid(. ~ Strain) +
geom_boxplot() +
scale_y_log10() +
labs(x = "Strain", y = "Density (OD600)",
title = "Maximum Density by Strain") +
theme(axis.text.x = element_text(angle = 45, vjust = 1, hjust = 1))
ggsave(filename = "max_density_strain.png", plot = p5, dpi = 150)
We can't make this file beautiful and searchable because it's too large.
Time,Temperature,A1,A2,A3,A4,A5,A6,A7,A8,A9,A10,A11,A12,B1,B2,B3,B4,B5,B6,B7,B8,B9,B10,B11,B12,C1,C2,C3,C4,C5,C6,C7,C8,C9,C10,C11,C12,D1,D2,D3,D4,D5,D6,D7,D8,D9,D10,D11,D12,E1,E2,E3,E4,E5,E6,E7,E8,E9,E10,E11,E12,F1,F2,F3,F4,F5,F6,F7,F8,F9,F10,F11,F12,G1,G2,G3,G4,G5,G6,G7,G8,G9,G10,G11,G12,H1,H2,H3,H4,H5,H6,H7,H8,H9,H10,H11,H12
0,35.5,0.0754,0.0751,0.0744,0.0724,0.0703,0.0724,0.0633,0.0726,0.0679,0.0708,0.0713,0.0677,0.0679,0.0993,0.098,0.0878,0.0845,0.0861,0.0741,0.0845,0.0788,0.081,0.0849,0.0734,0.0621,0.0856,0.0893,0.0899,0.0869,0.0891,0.0728,0.0935,0.0809,0.0857,0.0896,0.0836,0.0697,0.0869,0.0898,0.0939,0.0892,0.0898,0.0877,0.0943,0.1091,0.091,0.0917,0.0681,0.0635,0.0849,0.0871,0.0896,0.0864,0.0872,0.0769,0.0894,0.0879,0.0939,0.0964,0.0809,0.0658,0.0838,0.0857,0.0862,0.0845,0.0891,0.0824,0.0878,0.0932,0.0879,0.0905,0.0644,0.062,0.0851,0.0854,0.0843,0.0846,0.0854,0.073,0.0859,0.0817,0.085,0.0858,0.0669,0.068,0.0699,0.0701,0.0728,0.0698,0.0726,0.0593,0.0725,0.0683,0.0703,0.0718,0.0663
90,37.5,0.0739,0.071,0.0739,0.0719,0.0702,0.0719,0.0622,0.0726,0.0682,0.0707,0.0717,0.068,0.0726,0.0805,0.0852,0.0788,0.0728,0.0728,0.0643,0.0727,0.0693,0.0714,0.073,0.0646,0.0675,0.0763,0.0848,0.0853,0.0823,0.0849,0.0692,0.0858,0.0736,0.0794,0.0864,0.0758,0.0695,0.078,0.0858,0.0895,0.0853,0.0868,0.079,0.0887,0.1025,0.0863,0.0897,0.0656,0.0636,0.0768,0.0828,0.0856,0.0828,0.0836,0.0729,0.0829,0.0818,0.0906,0.0935,0.0597,0.0627,0.0729,0.0798,0.0818,0.0787,0.0825,0.0664,0.0816,0.0883,0.0843,0.0878,0.0653,0.0604,0.0693,0.0723,0.0723,0.0724,0.0721,0.0688,0.0724,0.07,0.076,0.0771,0.0615,0.066,0.07,0.0708,0.0737,0.0696,0.0724,0.062,0.072,0.0678,0.0708,0.0723,0.0685
180,37,0.0735,0.0716,0.0744,0.0724,0.0706,0.073,0.0589,0.073,0.0688,0.0721,0.0724,0.0708,0.0703,0.0801,0.0758,0.072,0.0702,0.0732,0.0677,0.0735,0.0705,0.0724,0.0724,0.0629,0.0663,0.0695,0.0732,0.0707,0.0692,0.0734,0.0655,0.074,0.0688,0.072,0.0713,0.067,0.0662,0.0695,0.0736,0.0735,0.072,0.0757,0.0623,0.0784,0.0924,0.0725,0.0727,0.0639,0.0629,0.0705,0.0732,0.0748,0.0717,0.0733,0.0698,0.0736,0.0713,0.074,0.074,0.0614,0.0625,0.0681,0.072,0.0742,0.0702,0.0734,0.0592,0.0738,0.0762,0.0714,0.0729,0.0648,0.0615,0.07,0.0735,0.0728,0.0727,0.0725,0.0687,0.073,0.0682,0.071,0.0715,0.0652,0.0651,0.0706,0.071,0.0748,0.0704,0.0729,0.0618,0.073,0.0697,0.0711,0.0727,0.0662
270,37,0.0726,0.0714,0.0745,0.0723,0.0706,0.0729,0.0613,0.074,0.0697,0.0725,0.0728,0.0685,0.0668,0.08,0.0725,0.072,0.0703,0.0737,0.0708,0.0739,0.0697,0.0725,0.0727,0.0649,0.0624,0.0688,0.0732,0.0707,0.0692,0.0738,0.0669,0.074,0.0689,0.0723,0.0714,0.0664,0.0665,0.0693,0.075,0.0725,0.0718,0.0758,0.0642,0.078,0.0912,0.0727,0.0726,0.0622,0.0625,0.0702,0.0733,0.0746,0.0717,0.0734,0.0713,0.0739,0.0712,0.0734,0.074,0.063,0.0609,0.0681,0.0718,0.073,0.0703,0.0731,0.0658,0.0737,0.0774,0.0718,0.073,0.0615,0.0657,0.07,0.073,0.0718,0.0717,0.0722,0.0671,0.0727,0.0686,0.072,0.0712,0.0674,0.0677,0.0707,0.0708,0.0735,0.0702,0.0728,0.0705,0.0738,0.0693,0.072,0.0734,0.0626
360,37,0.0705,0.0693,0.0731,0.0716,0.0694,0.0724,0.063,0.074,0.0696,0.0721,0.0723,0.0678,0.0662,0.0789,0.0729,0.071,0.0697,0.0736,0.0684,0.0734,0.0695,0.0713,0.0719,0.0616,0.0638,0.0683,0.0725,0.071,0.0698,0.0728,0.0696,0.0731,0.0678,0.0709,0.071,0.0633,0.065,0.0703,0.0753,0.0724,0.0712,0.0751,0.0624,0.0772,0.0908,0.0714,0.0722,0.0678,0.0639,0.0705,0.0724,0.0733,0.0711,0.0724,0.0643,0.0731,0.0704,0.0732,0.0735,0.0641,0.0633,0.069,0.0713,0.0726,0.0695,0.0727,0.0638,0.0731,0.0766,0.0711,0.0729,0.0626,0.0635,0.0697,0.0726,0.0721,0.0719,0.0723,0.0687,0.0724,0.0682,0.0714,0.0711,0.066,0.0675,0.0709,0.0704,0.073,0.0696,0.0726,0.067,0.0732,0.0686,0.0711,0.0727,0.0667
450,37,0.072,0.0705,0.074,0.0724,0.0706,0.0732,0.0632,0.0743,0.0698,0.0722,0.0724,0.0632,0.0666,0.0799,0.0734,0.0718,0.0705,0.0739,0.0665,0.0739,0.0702,0.0721,0.0722,0.0686,0.0622,0.0688,0.0729,0.0716,0.0704,0.0739,0.0749,0.0739,0.0691,0.0716,0.0711,0.0624,0.0643,0.0701,0.0754,0.0735,0.072,0.0759,0.0597,0.0776,0.0915,0.0724,0.0725,0.0677,0.0638,0.0708,0.0735,0.075,0.072,0.0734,0.0715,0.0736,0.0712,0.0737,0.074,0.0622,0.0628,0.069,0.0722,0.0734,0.0705,0.0737,0.0618,0.0735,0.0761,0.0717,0.0731,0.061,0.0642,0.0699,0.0732,0.0729,0.0727,0.0727,0.0686,0.0733,0.0692,0.0723,0.0718,0.0696,0.0657,0.0707,0.0713,0.0746,0.0703,0.0732,0.0645,0.0737,0.0696,0.0717,0.0732,0.0624
540,37,0.0743,0.0714,0.0769,0.0725,0.0703,0.0735,0.0681,0.075,0.0702,0.0725,0.0726,0.0649,0.0653,0.0787,0.0761,0.0724,0.0703,0.0744,0.0656,0.074,0.07,0.0724,0.0729,0.0667,0.0618,0.0695,0.0737,0.0724,0.0705,0.0733,0.072,0.0744,0.0681,0.0714,0.0717,0.064,0.0646,0.0702,0.0755,0.073,0.0723,0.0762,0.0631,0.078,0.0915,0.0728,0.0729,0.061,0.0641,0.071,0.0733,0.0744,0.0711,0.0728,0.061,0.0746,0.072,0.0741,0.0749,0.0724,0.0647,0.0692,0.0713,0.0719,0.0704,0.0735,0.0715,0.0744,0.0777,0.0724,0.0735,0.059,0.0655,0.0694,0.0716,0.0711,0.0711,0.0719,0.0589,0.0737,0.0702,0.073,0.072,0.07,0.0687,0.0698,0.0707,0.0738,0.071,0.0743,0.0675,0.074,0.0693,0.0722,0.0734,0.0646
630,37,0.0726,0.0698,0.0743,0.0729,0.0709,0.0728,0.0641,0.074,0.0687,0.0717,0.072,0.0627,0.0682,0.0792,0.0752,0.0724,0.07,0.0737,0.0601,0.0733,0.069,0.0715,0.0727,0.0628,0.067,0.0689,0.0725,0.0709,0.0692,0.0725,0.0595,0.074,0.0678,0.0714,0.0718,0.0719,0.0674,0.0704,0.0751,0.0727,0.0712,0.0746,0.0697,0.0769,0.091,0.0722,0.0729,0.0649,0.068,0.0698,0.0714,0.0726,0.07,0.0723,0.0607,0.0748,0.0718,0.0743,0.074,0.0723,0.0668,0.0691,0.0706,0.0714,0.0698,0.0727,0.0707,0.0742,0.069,0.0715,0.0733,0.0608,0.0635,0.0685,0.0713,0.0718,0.0719,0.0722,0.061,0.0737,0.0691,0.0718,0.071,0.0645,0.067,0.0701,0.0706,0.0738,0.0701,0.073,0.0588,0.0733,0.0685,0.0709,0.0731,0.0688
720,37,0.0729,0.0718,0.0744,0.0728,0.0711,0.0732,0.0628,0.0737,0.0685,0.0717,0.0722,0.0643,0.0719,0.0802,0.0752,0.0718,0.0707,0.0736,0.0616,0.0733,0.0687,0.0717,0.0728,0.0656,0.0667,0.0692,0.0726,0.0711,0.0693,0.0727,0.0594,0.0741,0.0681,0.0718,0.0721,0.0726,0.0674,0.0706,0.0752,0.0725,0.0711,0.0756,0.0688,0.0775,0.0916,0.0724,0.0728,0.0661,0.0633,0.0699,0.0722,0.0738,0.0709,0.073,0.0656,0.0746,0.0716,0.0742,0.0731,0.0638,0.0628,0.0686,0.0709,0.072,0.0702,0.0733,0.0631,0.0735,0.0696,0.0709,0.0729,0.063,0.0608,0.0684,0.0721,0.0729,0.0727,0.0726,0.0648,0.074,0.0687,0.071,0.0714,0.0617,0.0643,0.0702,0.0716,0.0753,0.07,0.0735,0.0606,0.0728,0.0673,0.0715,0.0733,0.0676
810,37,0.0721,0.0709,0.0748,0.0726,0.0707,0.0733,0.0627,0.0748,0.0694,0.0728,0.0738,0.0661,0.0686,0.08,0.0782,0.0724,0.0706,0.0744,0.0681,0.0742,0.0693,0.0727,0.0736,0.0641,0.0654,0.0685,0.0735,0.0711,0.0695,0.0744,0.0677,0.0751,0.0694,0.0727,0.0719,0.0652,0.0639,0.0701,0.0753,0.0731,0.0722,0.0764,0.0648,0.0784,0.0917,0.0728,0.0731,0.0633,0.0617,0.0696,0.0738,0.0752,0.0721,0.0738,0.0691,0.0752,0.0717,0.074,0.0739,0.0616,0.0604,0.0682,0.0719,0.0728,0.0706,0.0738,0.0633,0.074,0.0775,0.0714,0.0739,0.0651,0.0633,0.0696,0.0733,0.0733,0.0725,0.073,0.0684,0.0738,0.0687,0.0718,0.0716,0.0684,0.0661,0.0705,0.0713,0.0744,0.0707,0.0736,0.0708,0.0742,0.0697,0.072,0.0738,0.065
900,37,0.0686,0.0701,0.0743,0.0725,0.07,0.0732,0.0626,0.0754,0.0699,0.0731,0.0737,0.0692,0.0678,0.0799,0.0741,0.0717,0.0706,0.0738,0.0715,0.0745,0.0702,0.072,0.0739,0.0609,0.064,0.0684,0.0733,0.0713,0.0697,0.0739,0.0645,0.0751,0.069,0.0722,0.0719,0.0627,0.0642,0.0704,0.0755,0.073,0.0717,0.077,0.0648,0.0779,0.091,0.0724,0.0732,0.0636,0.063,0.0702,0.0733,0.0751,0.0717,0.0735,0.0692,0.0745,0.0712,0.0737,0.0739,0.062,0.0624,0.0688,0.0725,0.0733,0.0703,0.0743,0.065,0.0744,0.0779,0.0721,0.0742,0.0615,0.0693,0.0702,0.0734,0.0729,0.0722,0.073,0.067,0.0733,0.0689,0.072,0.0714,0.0652,0.0699,0.0712,0.0712,0.0742,0.0704,0.0739,0.0689,0.0741,0.0682,0.0719,0.0739,0.0659
990,37,0.0732,0.0702,0.0742,0.0722,0.0698,0.0728,0.0615,0.0744,0.0693,0.0717,0.0721,0.0629,0.0653,0.08,0.075,0.0717,0.0699,0.0736,0.0668,0.074,0.0693,0.0714,0.0734,0.0647,0.0615,0.0685,0.0733,0.0716,0.0697,0.0738,0.0701,0.0742,0.068,0.0714,0.0711,0.0608,0.0636,0.07,0.0755,0.0731,0.0714,0.076,0.0593,0.0777,0.091,0.0716,0.0725,0.0674,0.0639,0.0706,0.0735,0.075,0.0718,0.0736,0.0712,0.0739,0.0703,0.0733,0.0736,0.0611,0.0628,0.0687,0.0724,0.0736,0.0696,0.0732,0.0616,0.0738,0.0762,0.0712,0.0735,0.0611,0.0624,0.0698,0.0736,0.0736,0.0724,0.0727,0.0688,0.0731,0.0681,0.0715,0.0716,0.0667,0.0666,0.0707,0.0707,0.0741,0.0699,0.0737,0.0673,0.0737,0.0681,0.0716,0.0738,0.0644
1080,37,0.0729,0.071,0.0752,0.0734,0.0714,0.074,0.0656,0.0757,0.0704,0.0734,0.0738,0.0657,0.066,0.0799,0.0789,0.0722,0.0705,0.0746,0.0693,0.0747,0.0693,0.0727,0.0736,0.064,0.0649,0.0688,0.074,0.0719,0.07,0.0745,0.0672,0.0753,0.0692,0.0724,0.0718,0.0652,0.0635,0.0699,0.076,0.0728,0.0722,0.0766,0.061,0.0783,0.0917,0.0726,0.0732,0.0641,0.0618,0.0706,0.0742,0.0758,0.0721,0.074,0.0707,0.0748,0.0712,0.074,0.0743,0.0602,0.0617,0.0685,0.0724,0.073,0.0706,0.0738,0.0602,0.0743,0.0692,0.0719,0.0739,0.0605,0.0639,0.07,0.0735,0.0736,0.0726,0.0728,0.0682,0.0741,0.0687,0.0722,0.0726,0.0697,0.0673,0.0706,0.0715,0.0746,0.0706,0.0741,0.0698,0.0745,0.0687,0.0729,0.0744,0.0657
1170,37,0.071,0.0705,0.0752,0.0726,0.0699,0.0733,0.0626,0.0755,0.0701,0.0731,0.074,0.0698,0.0668,0.0846,0.0763,0.0718,0.0701,0.0744,0.0724,0.0752,0.0695,0.0723,0.0742,0.0608,0.0635,0.0685,0.0738,0.0716,0.0696,0.0745,0.0649,0.0754,0.0692,0.0723,0.0721,0.065,0.0651,0.0703,0.0757,0.0732,0.0718,0.0764,0.0642,0.0791,0.092,0.0739,0.0735,0.0623,0.0621,0.0703,0.0739,0.0755,0.0719,0.0738,0.0699,0.0747,0.071,0.074,0.0743,0.063,0.0635,0.0693,0.072,0.0734,0.0701,0.0741,0.0633,0.0747,0.0778,0.0722,0.0744,0.0606,0.0667,0.0703,0.0739,0.0732,0.0724,0.0733,0.0684,0.0737,0.0684,0.0721,0.0719,0.0653,0.0705,0.0716,0.072,0.0743,0.0705,0.0742,0.0666,0.0745,0.0685,0.0724,0.0745,0.0652
1260,37,0.073,0.0708,0.0744,0.0724,0.0702,0.0729,0.0617,0.0747,0.0694,0.0724,0.0733,0.0695,0.0667,0.0796,0.0752,0.0717,0.0698,0.0742,0.068,0.0744,0.0694,0.0717,0.0733,0.0646,0.0684,0.0686,0.0737,0.0714,0.0692,0.0738,0.0631,0.0745,0.0685,0.0718,0.0717,0.0625,0.0654,0.07,0.0758,0.073,0.0716,0.076,0.0626,0.0787,0.091,0.072,0.0728,0.066,0.0642,0.0707,0.0738,0.0754,0.0718,0.0736,0.0713,0.0739,0.0705,0.0734,0.0735,0.0627,0.0622,0.0685,0.0726,0.0735,0.0697,0.0741,0.0616,0.0741,0.0684,0.0714,0.0738,0.0628,0.0615,0.0702,0.0739,0.0734,0.0722,0.0728,0.0679,0.0735,0.0679,0.0717,0.072,0.0667,0.0694,0.0711,0.0707,0.0745,0.07,0.0738,0.0669,0.0741,0.0691,0.0719,0.0739,0.0622
1350,37,0.0722,0.0704,0.0759,0.0729,0.0701,0.0736,0.067,0.0754,0.0694,0.0726,0.0735,0.0657,0.0701,0.0825,0.0759,0.0724,0.0699,0.0748,0.0646,0.0749,0.0683,0.0724,0.0732,0.0658,0.0623,0.0693,0.0747,0.0727,0.0703,0.0741,0.0738,0.0744,0.0677,0.0714,0.072,0.0623,0.0622,0.0698,0.0765,0.0738,0.0715,0.0761,0.0599,0.0788,0.0916,0.0726,0.0731,0.0669,0.0627,0.0711,0.074,0.0748,0.0712,0.0731,0.0592,0.0747,0.0708,0.074,0.0748,0.0702,0.0658,0.0689,0.0722,0.0723,0.0699,0.074,0.0691,0.0748,0.0686,0.0724,0.0738,0.059,0.064,0.0702,0.073,0.0722,0.0711,0.0725,0.0593,0.0739,0.0689,0.0725,0.072,0.0695,0.0715,0.0709,0.0704,0.0734,0.0701,0.0738,0.0711,0.0746,0.0693,0.0718,0.0739,0.0631
1440,37,0.072,0.0706,0.0754,0.0735,0.0704,0.074,0.0651,0.076,0.0697,0.0731,0.0735,0.0651,0.0674,0.0793,0.0774,0.0731,0.0706,0.075,0.066,0.0755,0.0697,0.0727,0.074,0.066,0.0608,0.0693,0.0746,0.0725,0.0705,0.0743,0.0694,0.0748,0.0682,0.072,0.0728,0.066,0.0618,0.0701,0.0764,0.0745,0.0718,0.0769,0.064,0.0784,0.0915,0.073,0.0738,0.0634,0.0639,0.0716,0.0741,0.0746,0.0709,0.0727,0.0615,0.0748,0.0715,0.0742,0.0758,0.0685,0.0654,0.0693,0.0724,0.0734,0.0702,0.074,0.0671,0.0753,0.0692,0.0733,0.0746,0.0606,0.0718,0.0708,0.0736,0.0723,0.0714,0.0732,0.061,0.0741,0.0693,0.0728,0.0723,0.0698,0.0708,0.0714,0.0711,0.0741,0.0707,0.0745,0.0673,0.0752,0.0687,0.0724,0.0746,0.0653
1530,37,0.0723,0.0703,0.0753,0.0733,0.0707,0.074,0.0686,0.0749,0.069,0.072,0.0727,0.062,0.0675,0.0786,0.076,0.0728,0.07,0.0748,0.0577,0.0746,0.069,0.0723,0.0731,0.069,0.0623,0.07,0.0742,0.0723,0.0698,0.0732,0.0602,0.0748,0.0678,0.0721,0.0728,0.0723,0.0672,0.0705,0.0761,0.073,0.0717,0.0756,0.0672,0.0784,0.0916,0.0729,0.0734,0.0642,0.0642,0.0708,0.0732,0.074,0.0703,0.0733,0.0607,0.0755,0.0716,0.0748,0.0744,0.0689,0.0636,0.0687,0.0719,0.0724,0.0699,0.0743,0.0648,0.0751,0.0694,0.0717,0.0741,0.0621,0.0653,0.0694,0.0729,0.0732,0.0721,0.073,0.0626,0.075,0.0692,0.0722,0.0725,0.0648,0.0675,0.07,0.0714,0.0755,0.0704,0.0748,0.0619,0.0744,0.0684,0.0716,0.0734,0.0691
1620,37,0.0726,0.0724,0.0764,0.0741,0.0712,0.0747,0.0633,0.0753,0.0692,0.0729,0.074,0.0643,0.0695,0.0799,0.0761,0.0738,0.0708,0.0752,0.0623,0.0752,0.0697,0.0732,0.0742,0.0613,0.065,0.0704,0.0751,0.0728,0.0701,0.0738,0.059,0.076,0.0688,0.073,0.0734,0.0759,0.0651,0.0703,0.0772,0.0736,0.0723,0.0765,0.0702,0.0793,0.0919,0.0738,0.0742,0.0595,0.0624,0.0707,0.0736,0.0747,0.0706,0.0736,0.0621,0.0765,0.0725,0.0753,0.0755,0.0712,0.063,0.0687,0.0719,0.0731,0.0708,0.0744,0.0671,0.0759,0.0781,0.0727,0.0746,0.0601,0.0637,0.0698,0.0732,0.0733,0.0724,0.0736,0.0616,0.0757,0.0702,0.0735,0.0733,0.0697,0.0691,0.0701,0.0721,0.0758,0.0712,0.075,0.0603,0.0755,0.0695,0.0726,0.0742,0.0677
1710,37,0.0732,0.0707,0.076,0.0739,0.0706,0.0738,0.0598,0.0751,0.0689,0.0723,0.0736,0.0676,0.0671,0.0792,0.076,0.0732,0.0702,0.0743,0.0648,0.0748,0.0698,0.0729,0.0738,0.0596,0.0661,0.0696,0.0743,0.0717,0.0692,0.0735,0.0593,0.0751,0.0681,0.0723,0.0736,0.0758,0.0678,0.0705,0.0765,0.0721,0.0716,0.0756,0.0709,0.0786,0.0913,0.0732,0.0741,0.0598,0.0645,0.0706,0.0721,0.0735,0.0699,0.0731,0.061,0.0761,0.072,0.075,0.0748,0.0739,0.0659,0.0694,0.0715,0.0722,0.0699,0.0736,0.0692,0.0752,0.0767,0.0724,0.0745,0.0596,0.065,0.0693,0.0726,0.0725,0.0715,0.0731,0.0596,0.0747,0.0694,0.0729,0.0723,0.0666,0.0706,0.0704,0.071,0.0748,0.0705,0.0743,0.059,0.0747,0.0685,0.0719,0.0739,0.065
1800,37,0.0729,0.0712,0.076,0.0741,0.0712,0.0743,0.0628,0.075,0.069,0.0723,0.0736,0.0656,0.0698,0.0793,0.0764,0.0734,0.0703,0.0742,0.0628,0.0748,0.0694,0.0724,0.0738,0.0643,0.0645,0.0708,0.0737,0.0722,0.0697,0.0736,0.0599,0.0752,0.0679,0.0725,0.0734,0.0742,0.0666,0.0704,0.0767,0.0733,0.072,0.0762,0.0683,0.0789,0.0918,0.073,0.0739,0.0604,0.0651,0.0706,0.0732,0.0744,0.0705,0.0734,0.0598,0.076,0.0715,0.075,0.0747,0.0716,0.0633,0.0688,0.0719,0.0732,0.0701,0.0744,0.0664,0.0753,0.0777,0.0722,0.0744,0.0606,0.06,0.0689,0.0732,0.0738,0.0725,0.0735,0.0647,0.0754,0.0691,0.0724,0.0727,0.0637,0.0661,0.0701,0.072,0.0764,0.0702,0.0745,0.0606,0.0747,0.0686,0.0718,0.0746,0.0702
1890,37,0.0747,0.0713,0.0767,0.0743,0.071,0.0744,0.0645,0.0754,0.0686,0.0728,0.0739,0.068,0.0677,0.0793,0.0768,0.0735,0.0704,0.0749,0.0634,0.0752,0.0692,0.0726,0.0743,0.0623,0.0652,0.0697,0.0751,0.0728,0.0696,0.0738,0.0596,0.0762,0.0686,0.0729,0.0737,0.0752,0.0654,0.0701,0.0765,0.0735,0.0718,0.0766,0.071,0.0794,0.0915,0.0733,0.0744,0.062,0.0645,0.0703,0.0729,0.0746,0.0705,0.0733,0.0619,0.0766,0.0723,0.0754,0.0753,0.0721,0.0639,0.0689,0.0715,0.0725,0.0704,0.0744,0.0698,0.0761,0.0699,0.0722,0.0745,0.0595,0.0616,0.0688,0.0728,0.0732,0.0718,0.0732,0.0609,0.076,0.0698,0.0728,0.0729,0.0666,0.066,0.0694,0.072,0.0753,0.0704,0.0748,0.0649,0.0751,0.0688,0.072,0.0745,0.0677
1980,37,0.0734,0.071,0.076,0.0741,0.0706,0.0738,0.0593,0.0757,0.069,0.0725,0.0741,0.0692,0.0716,0.0793,0.0779,0.0727,0.0701,0.0748,0.0647,0.0751,0.0695,0.0724,0.0746,0.0617,0.0678,0.0693,0.0743,0.0723,0.0692,0.0738,0.0597,0.0763,0.0686,0.0728,0.0736,0.0756,0.0676,0.0709,0.0764,0.0733,0.0718,0.0761,0.0722,0.0798,0.0917,0.0729,0.0748,0.061,0.0645,0.07,0.0732,0.0741,0.0704,0.0736,0.0616,0.077,0.0722,0.0752,0.0744,0.0687,0.0617,0.0688,0.0723,0.0732,0.0703,0.0745,0.0674,0.0759,0.0772,0.0723,0.0747,0.0611,0.0632,0.0689,0.0738,0.0743,0.0724,0.0738,0.0655,0.0756,0.0689,0.072,0.0724,0.0608,0.0669,0.0703,0.0728,0.0758,0.0703,0.0744,0.0586,0.0746,0.0679,0.0721,0.0745,0.0695
2070,37,0.0741,0.071,0.0761,0.0741,0.0707,0.0735,0.0612,0.076,0.0693,0.0725,0.0739,0.0688,0.0695,0.08,0.0767,0.0729,0.0704,0.0745,0.0647,0.0752,0.0697,0.0727,0.0747,0.0617,0.0685,0.0693,0.0746,0.0723,0.0693,0.074,0.0608,0.0759,0.0688,0.0731,0.0729,0.0699,0.069,0.0704,0.0763,0.073,0.072,0.0759,0.0692,0.0793,0.0913,0.073,0.0742,0.0637,0.0617,0.0699,0.0746,0.0758,0.0717,0.0744,0.0686,0.0761,0.0714,0.0746,0.074,0.061,0.061,0.0684,0.073,0.0742,0.0704,0.0742,0.0579,0.0753,0.0775,0.0722,0.0746,0.0625,0.0594,0.0693,0.0746,0.0754,0.0738,0.074,0.0675,0.0754,0.0686,0.072,0.0724,0.0634,0.065,0.0705,0.0727,0.0765,0.0701,0.0745,0.0604,0.075,0.0682,0.073,0.0749,0.0663
2160,37,0.073,0.072,0.0768,0.0744,0.0708,0.0744,0.0611,0.0768,0.0698,0.0737,0.076,0.0703,0.0655,0.0802,0.0771,0.0735,0.0709,0.0752,0.0709,0.0762,0.0702,0.0735,0.0755,0.0637,0.0625,0.0691,0.0756,0.0728,0.0697,0.0754,0.0662,0.0769,0.0695,0.0733,0.0731,0.0645,0.0643,0.07,0.0771,0.0738,0.0721,0.0776,0.0646,0.0801,0.0917,0.0739,0.0744,0.0633,0.0624,0.0706,0.0753,0.0768,0.072,0.0746,0.0695,0.0768,0.0718,0.0747,0.0754,0.0608,0.0607,0.0684,0.0734,0.0748,0.0709,0.0746,0.0615,0.0761,0.0769,0.073,0.0756,0.0604,0.062,0.0701,0.0747,0.0749,0.0734,0.0741,0.0688,0.0757,0.0693,0.0729,0.0733,0.0682,0.066,0.0707,0.0728,0.0762,0.0708,0.075,0.0689,0.0759,0.0688,0.0731,0.0754,0.0631
2250,37,0.0736,0.0703,0.0763,0.0735,0.0699,0.0739,0.0621,0.0768,0.0698,0.0734,0.0752,0.0707,0.0664,0.0798,0.0759,0.073,0.0703,0.0747,0.0726,0.076,0.0699,0.0732,0.075,0.0619,0.0677,0.0681,0.0752,0.0722,0.069,0.075,0.0629,0.0765,0.0691,0.0731,0.073,0.0675,0.0633,0.07,0.0762,0.0735,0.0716,0.077,0.0682,0.0799,0.0915,0.0732,0.0744,0.0631,0.0623,0.0698,0.0743,0.0758,0.0715,0.0742,0.0665,0.0763,0.0714,0.0745,0.0745,0.06,0.0629,0.069,0.0728,0.0743,0.0701,0.0749,0.0608,0.0761,0.0767,0.0721,0.0754,0.0621,0.0604,0.0696,0.0746,0.075,0.0733,0.0742,0.0697,0.0753,0.0684,0.0721,0.0727,0.0646,0.067,0.0709,0.0724,0.0758,0.0704,0.0747,0.0627,0.0751,0.0682,0.0727,0.0751,0.0688
2340,37,0.0753,0.0716,0.0765,0.0742,0.0708,0.0745,0.0622,0.077,0.0699,0.0734,0.0746,0.0666,0.0696,0.08,0.0765,0.0732,0.0707,0.0757,0.0678,0.0764,0.0698,0.0732,0.0755,0.0626,0.068,0.0692,0.0759,0.0734,0.0699,0.0754,0.0633,0.0773,0.0692,0.0733,0.0731,0.0635,0.0654,0.0707,0.0779,0.0744,0.0724,0.0775,0.0632,0.0804,0.0915,0.0737,0.0748,0.064,0.0634,0.0707,0.0751,0.0771,0.0724,0.0753,0.0705,0.0767,0.0717,0.075,0.0747,0.0627,0.0608,0.0692,0.0734,0.0754,0.0706,0.0751,0.0596,0.0763,0.0763,0.0727,0.0752,0.0638,0.0629,0.0702,0.0755,0.0758,0.074,0.0745,0.069,0.0761,0.0687,0.0726,0.0732,0.0648,0.065,0.0713,0.0733,0.0771,0.0707,0.0754,0.0616,0.0755,0.0689,0.073,0.0762,0.0675
2430,37,0.0731,0.0722,0.0775,0.0746,0.0707,0.0746,0.0613,0.077,0.0696,0.0737,0.0757,0.0719,0.0702,0.08,0.0765,0.0733,0.0707,0.0756,0.0713,0.0767,0.0699,0.074,0.0757,0.0612,0.0667,0.0693,0.0761,0.0731,0.0696,0.0754,0.063,0.0779,0.0697,0.0737,0.0741,0.0678,0.0653,0.0702,0.0771,0.0741,0.0721,0.0776,0.0684,0.0808,0.0916,0.0742,0.075,0.0613,0.0616,0.0703,0.0752,0.0767,0.0719,0.0752,0.0658,0.0775,0.0718,0.0752,0.0753,0.0617,0.0628,0.069,0.0732,0.0749,0.071,0.0752,0.0627,0.0766,0.0781,0.0731,0.0757,0.0613,0.0635,0.0701,0.075,0.0749,0.0734,0.0744,0.0668,0.0761,0.0692,0.0725,0.0733,0.0654,0.0677,0.0706,0.0728,0.076,0.0709,0.0752,0.0667,0.0761,0.069,0.0735,0.0758,0.0627
2520,37,0.0726,0.0713,0.0769,0.0742,0.0703,0.0745,0.0648,0.0774,0.0702,0.0738,0.0757,0.0741,0.0668,0.0801,0.079,0.0735,0.0706,0.0753,0.0724,0.0768,0.0705,0.0734,0.076,0.0611,0.0648,0.0692,0.0763,0.0731,0.0697,0.0758,0.0629,0.0773,0.0693,0.0734,0.0734,0.064,0.0644,0.0704,0.0777,0.0745,0.0722,0.0778,0.0642,0.0809,0.0922,0.074,0.0748,0.0627,0.0632,0.0707,0.0753,0.0771,0.0721,0.0754,0.0705,0.0766,0.0711,0.0748,0.0753,0.0625,0.0612,0.0687,0.0744,0.0758,0.0704,0.0754,0.0625,0.0764,0.0768,0.0731,0.0762,0.0629,0.0667,0.0711,0.0762,0.0757,0.0734,0.0746,0.0675,0.0759,0.0691,0.0733,0.0732,0.0668,0.0695,0.0718,0.0721,0.0761,0.071,0.0755,0.0679,0.0762,0.0688,0.0733,0.0759,0.0644
2610,37,0.0737,0.0708,0.0772,0.0745,0.0711,0.0756,0.0681,0.0778,0.0701,0.0736,0.0749,0.0617,0.0668,0.0797,0.0776,0.0742,0.0706,0.0762,0.0636,0.0768,0.0699,0.0739,0.0749,0.0642,0.0614,0.0695,0.0768,0.0743,0.0709,0.0759,0.0732,0.0769,0.0688,0.073,0.073,0.0609,0.0656,0.0707,0.0783,0.0753,0.0727,0.078,0.0599,0.081,0.0917,0.0738,0.0748,0.0662,0.0644,0.0716,0.0765,0.0778,0.0726,0.0754,0.0718,0.0767,0.0709,0.075,0.0758,0.0635,0.0623,0.0695,0.0742,0.0752,0.0705,0.0751,0.0625,0.0768,0.0698,0.0733,0.0765,0.0626,0.0676,0.071,0.0759,0.0753,0.0732,0.0742,0.0657,0.0763,0.069,0.0736,0.0741,0.0717,0.0682,0.071,0.0728,0.0764,0.0707,0.0755,0.0687,0.0769,0.0696,0.0732,0.0763,0.0646
2700,37,0.0727,0.071,0.0771,0.0745,0.0708,0.0755,0.0665,0.0784,0.0709,0.0742,0.0754,0.066,0.0683,0.079,0.0808,0.0744,0.0709,0.0765,0.0673,0.077,0.07,0.0739,0.0752,0.0652,0.0613,0.0693,0.077,0.0741,0.0706,0.0761,0.073,0.0771,0.0686,0.0733,0.0738,0.0615,0.0632,0.0704,0.0785,0.0746,0.0723,0.0779,0.061,0.081,0.0918,0.0744,0.0752,0.0635,0.0628,0.0714,0.0759,0.0774,0.0722,0.0753,0.0691,0.0771,0.0715,0.0754,0.0764,0.0663,0.0639,0.07,0.074,0.0757,0.0706,0.0755,0.0658,0.0774,0.0701,0.074,0.076,0.0596,0.0674,0.0706,0.0757,0.0749,0.0727,0.0744,0.0672,0.0763,0.069,0.0735,0.0741,0.0674,0.0682,0.0712,0.0732,0.0767,0.0708,0.0756,0.07,0.0771,0.0696,0.0738,0.076,0.0643
2790,37,0.0735,0.0707,0.0769,0.0742,0.0706,0.0753,0.0631,0.0782,0.0707,0.0739,0.0754,0.0658,0.0671,0.0792,0.0812,0.074,0.0707,0.0762,0.0676,0.0771,0.0709,0.0741,0.0756,0.0644,0.0652,0.0692,0.0768,0.0742,0.0706,0.0757,0.0686,0.0771,0.0693,0.0734,0.0736,0.0617,0.0656,0.0707,0.0786,0.0755,0.0725,0.0781,0.0598,0.0814,0.0913,0.0739,0.0749,0.0679,0.0641,0.0713,0.0757,0.0775,0.0723,0.0756,0.07,0.077,0.0711,0.0751,0.0756,0.063,0.0639,0.0693,0.0748,0.0758,0.0705,0.0755,0.0602,0.0772,0.0692,0.0733,0.076,0.063,0.0627,0.0708,0.0764,0.0762,0.0738,0.0752,0.0695,0.0766,0.0686,0.0733,0.074,0.0655,0.0669,0.0718,0.0732,0.0775,0.0708,0.0757,0.0612,0.0768,0.069,0.0736,0.0762,0.0671
2880,37,0.0726,0.0712,0.0775,0.0748,0.0709,0.0757,0.0634,0.0783,0.0703,0.074,0.0756,0.0648,0.0672,0.0796,0.0786,0.0749,0.0707,0.0769,0.0669,0.0779,0.07,0.0738,0.0757,0.0652,0.0612,0.0693,0.0773,0.0745,0.0706,0.0763,0.0731,0.0776,0.0696,0.0734,0.0732,0.0627,0.0645,0.0708,0.079,0.0758,0.0729,0.0785,0.0591,0.0813,0.0915,0.0741,0.075,0.067,0.0637,0.0717,0.0767,0.0782,0.0724,0.0754,0.0698,0.0779,0.0714,0.0755,0.0763,0.064,0.0639,0.0695,0.0745,0.076,0.0707,0.0756,0.063,0.0775,0.0706,0.0737,0.0762,0.0626,0.0715,0.0707,0.0759,0.0754,0.073,0.0749,0.0634,0.077,0.0696,0.0742,0.0746,0.0717,0.0652,0.0712,0.0735,0.0767,0.071,0.0762,0.0658,0.0776,0.0698,0.0735,0.0768,0.0616
2970,37,0.0704,0.0706,0.0775,0.075,0.0705,0.0759,0.0672,0.0789,0.071,0.0743,0.0758,0.0654,0.0694,0.0791,0.0776,0.0746,0.0708,0.0768,0.0675,0.078,0.0699,0.0744,0.0756,0.0625,0.0608,0.069,0.0772,0.0748,0.0709,0.0764,0.0732,0.0776,0.0689,0.0735,0.0742,0.0631,0.0628,0.0706,0.0791,0.0757,0.0728,0.0783,0.0624,0.081,0.0917,0.0745,0.0758,0.0633,0.063,0.0714,0.0759,0.0774,0.0718,0.0752,0.0636,0.078,0.0718,0.0756,0.0767,0.0685,0.0638,0.07,0.074,0.076,0.0709,0.0761,0.0684,0.0781,0.0698,0.074,0.0766,0.0595,0.0676,0.0706,0.0759,0.0748,0.0722,0.0748,0.0633,0.0772,0.07,0.0743,0.0747,0.0692,0.0689,0.0712,0.0732,0.0767,0.071,0.076,0.0686,0.0777,0.069,0.0737,0.0763,0.0624
3060,37,0.0707,0.0708,0.0778,0.075,0.0709,0.0761,0.066,0.0792,0.0711,0.0742,0.0758,0.0615,0.0653,0.0793,0.0816,0.075,0.0708,0.0768,0.0634,0.0778,0.0696,0.0742,0.0759,0.0656,0.065,0.0692,0.0768,0.0747,0.0709,0.0764,0.071,0.0778,0.069,0.0736,0.0741,0.0626,0.0637,0.0709,0.0793,0.0756,0.0726,0.0783,0.0598,0.0815,0.092,0.0742,0.0756,0.0682,0.064,0.0718,0.0761,0.0779,0.0723,0.0756,0.0677,0.0778,0.0716,0.0756,0.0762,0.063,0.0627,0.0696,0.0748,0.0765,0.0706,0.0761,0.0614,0.0778,0.0695,0.074,0.0764,0.063,0.0649,0.071,0.0768,0.0774,0.0741,0.0756,0.0692,0.0775,0.0696,0.0742,0.0747,0.068,0.0666,0.0717,0.0737,0.0771,0.0707,0.0762,0.0668,0.0776,0.0693,0.0736,0.0766,0.0666
3150,37,0.0717,0.0707,0.0779,0.0755,0.0714,0.0765,0.0697,0.0792,0.0707,0.0743,0.0757,0.0626,0.0653,0.0793,0.0796,0.0753,0.0707,0.077,0.0648,0.0785,0.07,0.0742,0.0758,0.0639,0.0625,0.0698,0.0775,0.0751,0.0711,0.0766,0.0758,0.0783,0.0693,0.0737,0.0739,0.0626,0.0638,0.0706,0.0795,0.076,0.073,0.0785,0.0592,0.0814,0.0918,0.0741,0.0756,0.0666,0.0636,0.0717,0.0768,0.0784,0.0726,0.076,0.0684,0.0783,0.0718,0.0758,0.077,0.0681,0.0616,0.0695,0.075,0.0767,0.0709,0.0764,0.0688,0.0782,0.0785,0.0742,0.0767,0.0605,0.0663,0.0706,0.0763,0.0759,0.0732,0.075,0.0625,0.0776,0.0698,0.0749,0.0752,0.0716,0.068,0.0714,0.0735,0.0776,0.071,0.0765,0.0667,0.0782,0.0703,0.0737,0.0766,0.0659
3240,37,0.0721,0.0704,0.078,0.0751,0.0704,0.0758,0.0689,0.0791,0.0702,0.0743,0.0755,0.0637,0.0679,0.0794,0.0812,0.0748,0.0704,0.0765,0.0668,0.0771,0.0702,0.0741,0.0755,0.0669,0.0598,0.0693,0.0772,0.0748,0.0707,0.0758,0.0728,0.0777,0.0684,0.0733,0.0746,0.0675,0.0636,0.0702,0.0788,0.0757,0.0722,0.0782,0.0664,0.0818,0.092,0.0744,0.0757,0.0596,0.0639,0.0711,0.0755,0.0767,0.071,0.0748,0.0597,0.0782,0.0717,0.0758,0.0769,0.0721,0.0647,0.0697,0.0741,0.0746,0.0704,0.0759,0.071,0.0784,0.0694,0.074,0.0769,0.0585,0.0673,0.0698,0.0748,0.0743,0.0719,0.0745,0.0588,0.0776,0.0699,0.0745,0.0745,0.0721,0.0703,0.0706,0.0724,0.0764,0.0705,0.076,0.0711,0.0779,0.0697,0.0735,0.0764,0.0615
3330,37,0.072,0.0701,0.0776,0.0747,0.0702,0.0753,0.0638,0.079,0.0699,0.0739,0.0757,0.0613,0.0643,0.0786,0.0793,0.0748,0.0707,0.0764,0.0621,0.0776,0.07,0.0737,0.0758,0.0664,0.0658,0.0694,0.077,0.0748,0.0707,0.0756,0.0627,0.0779,0.0682,0.0733,0.0744,0.0662,0.0622,0.0705,0.0802,0.0756,0.0723,0.0774,0.0644,0.0818,0.0925,0.074,0.0758,0.0628,0.0651,0.0715,0.0754,0.0771,0.0715,0.0749,0.0615,0.0784,0.0716,0.0757,0.0762,0.0675,0.0655,0.0698,0.0742,0.0754,0.0702,0.0755,0.069,0.0783,0.0777,0.074,0.0769,0.0611,0.0634,0.0702,0.0757,0.0754,0.0726,0.075,0.059,0.0778,0.0696,0.0743,0.0743,0.07,0.0696,0.0711,0.0726,0.0768,0.0706,0.0763,0.0678,0.0777,0.069,0.0735,0.0763,0.0626
3420,37,0.0732,0.0709,0.0787,0.0759,0.0712,0.076,0.0697,0.0791,0.0696,0.0735,0.0751,0.0611,0.0661,0.0781,0.0786,0.0756,0.0705,0.0766,0.0583,0.0775,0.0692,0.0735,0.076,0.068,0.0632,0.0701,0.078,0.0756,0.0707,0.0756,0.0686,0.0779,0.0679,0.0732,0.0743,0.0671,0.0638,0.0706,0.0802,0.0755,0.0722,0.0781,0.0637,0.0816,0.0925,0.0741,0.0756,0.0634,0.0654,0.0716,0.0763,0.0776,0.0716,0.075,0.0625,0.0788,0.0718,0.0759,0.0766,0.0698,0.0661,0.0692,0.0746,0.075,0.0704,0.0766,0.0693,0.0783,0.0769,0.0739,0.0765,0.0593,0.0636,0.0702,0.076,0.0757,0.0726,0.0745,0.0586,0.0783,0.0698,0.0745,0.0759,0.0713,0.0677,0.0703,0.0731,0.0772,0.0708,0.0765,0.0704,0.0779,0.0695,0.0737,0.0766,0.062
3510,37,0.0734,0.0711,0.081,0.0761,0.071,0.0762,0.0696,0.0796,0.0704,0.0742,0.0761,0.0636,0.0649,0.0795,0.0809,0.0755,0.0708,0.0776,0.0675,0.0785,0.0706,0.0746,0.0762,0.0645,0.0612,0.0702,0.0784,0.0758,0.0709,0.0761,0.0671,0.0788,0.0686,0.074,0.0753,0.0693,0.0658,0.0711,0.0802,0.0762,0.0728,0.0788,0.069,0.0827,0.0929,0.0751,0.0768,0.0592,0.0659,0.0714,0.076,0.0774,0.0713,0.0752,0.0599,0.0804,0.0725,0.0767,0.0779,0.0754,0.0672,0.0701,0.0744,0.0749,0.071,0.0766,0.0717,0.0796,0.0783,0.0747,0.0777,0.0601,0.068,0.0701,0.0758,0.0756,0.0727,0.0752,0.0596,0.079,0.0705,0.0748,0.0753,0.0706,0.0692,0.0708,0.0738,0.0777,0.0715,0.0774,0.0709,0.0786,0.0696,0.0743,0.0773,0.0639
3600,37,0.073,0.072,0.0794,0.0763,0.0713,0.0764,0.062,0.0791,0.07,0.0741,0.0762,0.0661,0.0694,0.0799,0.0792,0.0758,0.0708,0.0771,0.0637,0.0783,0.07,0.0746,0.0772,0.0638,0.0675,0.071,0.0784,0.0756,0.0707,0.076,0.0606,0.0796,0.0688,0.0744,0.0758,0.0727,0.0684,0.0716,0.0801,0.076,0.073,0.0783,0.0709,0.0826,0.0934,0.075,0.077,0.0611,0.0654,0.0714,0.0761,0.0774,0.0713,0.0758,0.0606,0.0803,0.0726,0.0767,0.0773,0.0747,0.0667,0.0704,0.0745,0.0755,0.071,0.0768,0.0685,0.0797,0.0701,0.0744,0.0775,0.0632,0.0652,0.0698,0.0764,0.0767,0.0736,0.0759,0.0623,0.0793,0.0699,0.0746,0.0746,0.0648,0.0677,0.0711,0.0741,0.0783,0.0711,0.0773,0.0594,0.0783,0.0688,0.0739,0.0774,0.0707
3690,37,0.0745,0.0716,0.0794,0.0766,0.0715,0.0759,0.0632,0.0788,0.0688,0.0737,0.0759,0.064,0.0675,0.0793,0.0792,0.076,0.0704,0.0762,0.0614,0.0781,0.0691,0.0738,0.0764,0.0626,0.0624,0.0704,0.0785,0.0759,0.0705,0.0754,0.0605,0.0789,0.0681,0.0738,0.0754,0.0738,0.0661,0.0712,0.0807,0.0765,0.0723,0.0788,0.066,0.0821,0.0919,0.0745,0.0765,0.0629,0.065,0.0712,0.0768,0.0776,0.071,0.0752,0.0606,0.0799,0.0723,0.0766,0.0771,0.0746,0.0674,0.0694,0.0741,0.0755,0.0704,0.0769,0.0699,0.0791,0.0771,0.0739,0.0769,0.06,0.0627,0.07,0.0761,0.076,0.0725,0.075,0.0601,0.0792,0.0698,0.0746,0.0751,0.07,0.07,0.0703,0.0735,0.0774,0.071,0.0771,0.0648,0.0782,0.0687,0.0737,0.077,0.0658
3780,37,0.0745,0.0722,0.08,0.0769,0.0713,0.0768,0.0626,0.0795,0.0698,0.0743,0.0764,0.0679,0.07,0.0798,0.0794,0.0758,0.0711,0.0774,0.0632,0.0792,0.07,0.0749,0.0774,0.0607,0.0629,0.0705,0.0791,0.0759,0.0705,0.0761,0.059,0.0797,0.0687,0.0744,0.0763,0.0765,0.0686,0.0712,0.0808,0.0764,0.0721,0.0789,0.0723,0.0834,0.0931,0.0761,0.0771,0.0591,0.0634,0.0709,0.0763,0.0776,0.0711,0.0759,0.0615,0.0806,0.0728,0.0768,0.0772,0.0725,0.0672,0.0699,0.0742,0.0758,0.0713,0.0771,0.0684,0.0799,0.078,0.0747,0.0776,0.0605,0.0638,0.0702,0.0765,0.0766,0.0732,0.0758,0.0607,0.0795,0.0698,0.0747,0.0752,0.0623,0.0681,0.0709,0.0743,0.0782,0.0715,0.0774,0.0613,0.0788,0.0689,0.0745,0.0779,0.0681
3870,37,0.073,0.072,0.0801,0.0766,0.0712,0.0765,0.0596,0.0792,0.0693,0.0741,0.0768,0.0681,0.073,0.0804,0.0797,0.0761,0.0709,0.0771,0.0651,0.0786,0.0698,0.0746,0.0777,0.0652,0.0671,0.0706,0.0789,0.0755,0.07,0.0765,0.0601,0.0798,0.069,0.0748,0.0759,0.0762,0.0666,0.0717,0.0814,0.0757,0.0726,0.0786,0.0698,0.0838,0.0922,0.0755,0.0771,0.0616,0.065,0.0719,0.0764,0.078,0.0716,0.0764,0.0613,0.0802,0.0724,0.0768,0.0766,0.0636,0.0672,0.0705,0.0743,0.0771,0.071,0.0771,0.059,0.0798,0.0697,0.0743,0.0775,0.0649,0.0622,0.0706,0.078,0.0781,0.0741,0.0762,0.0679,0.0792,0.0688,0.0736,0.0749,0.0626,0.0644,0.0715,0.0753,0.0793,0.0709,0.0771,0.0624,0.0784,0.0687,0.0746,0.0786,0.0692
3960,37,0.0731,0.0726,0.08,0.0769,0.0715,0.0768,0.0591,0.0797,0.0694,0.0746,0.0771,0.0714,0.069,0.0802,0.0817,0.0762,0.0712,0.0768,0.0651,0.0795,0.07,0.0754,0.0773,0.0597,0.067,0.0706,0.0794,0.0758,0.0702,0.0771,0.061,0.0799,0.069,0.0749,0.0756,0.0682,0.0686,0.0715,0.0811,0.0764,0.0729,0.0794,0.0675,0.0836,0.0924,0.0757,0.077,0.0628,0.0632,0.0712,0.0778,0.0791,0.0721,0.0768,0.0664,0.0807,0.0723,0.077,0.0773,0.0647,0.0622,0.0695,0.0752,0.0772,0.0712,0.0778,0.0593,0.0796,0.0778,0.0745,0.0774,0.0644,0.0615,0.0706,0.0777,0.078,0.0742,0.0766,0.0661,0.0798,0.0693,0.0743,0.0758,0.0658,0.067,0.0708,0.0753,0.0801,0.0708,0.0775,0.0594,0.0786,0.0691,0.0745,0.078,0.0691
4050,37,0.0751,0.0721,0.0806,0.0766,0.071,0.0765,0.059,0.0794,0.0693,0.0747,0.0772,0.0718,0.068,0.0793,0.0808,0.0757,0.0707,0.0772,0.0643,0.0792,0.0695,0.0758,0.0769,0.0627,0.0641,0.0697,0.08,0.0755,0.0694,0.0762,0.061,0.0797,0.0685,0.0745,0.0761,0.0771,0.0696,0.0711,0.0805,0.0758,0.0722,0.0786,0.0725,0.084,0.0923,0.0757,0.0771,0.0596,0.0633,0.0706,0.0765,0.0776,0.0708,0.076,0.0616,0.0806,0.0722,0.077,0.0773,0.0739,0.0665,0.07,0.0737,0.0755,0.0707,0.0765,0.0694,0.0804,0.0703,0.0743,0.0773,0.06,0.0633,0.07,0.0762,0.0762,0.0725,0.0758,0.0605,0.0797,0.0696,0.0745,0.0751,0.0627,0.0694,0.0708,0.0741,0.0781,0.0706,0.0771,0.0602,0.079,0.0687,0.0742,0.0772,0.0675
4140,37,0.0727,0.0715,0.0801,0.0766,0.0711,0.0764,0.06,0.0793,0.0692,0.0738,0.0766,0.0674,0.0693,0.0796,0.0841,0.0763,0.0706,0.0775,0.0641,0.0792,0.0694,0.0742,0.0773,0.0649,0.0647,0.0707,0.0795,0.076,0.0703,0.076,0.0615,0.0795,0.0678,0.0742,0.0759,0.0721,0.0668,0.0715,0.0814,0.0762,0.0725,0.0783,0.0672,0.0833,0.0922,0.075,0.0768,0.0628,0.0656,0.0716,0.0769,0.078,0.0713,0.0759,0.0597,0.0804,0.0718,0.0767,0.0766,0.062,0.0638,0.0697,0.0752,0.077,0.0704,0.0769,0.0664,0.0799,0.0782,0.074,0.0773,0.0614,0.0624,0.0705,0.0774,0.0772,0.0731,0.0762,0.0606,0.0798,0.069,0.0737,0.0754,0.0625,0.0668,0.0704,0.0743,0.0789,0.0709,0.0775,0.0614,0.0788,0.069,0.074,0.0782,0.0697
4230,37,0.0738,0.0725,0.0806,0.0772,0.0715,0.0772,0.0644,0.0799,0.069,0.0743,0.0765,0.0639,0.0691,0.0786,0.083,0.0764,0.0706,0.0777,0.0591,0.0794,0.069,0.0748,0.0769,0.0658,0.0627,0.0707,0.0798,0.0766,0.0708,0.0765,0.0613,0.0798,0.0683,0.0745,0.076,0.0728,0.0657,0.0712,0.0822,0.0765,0.0724,0.0792,0.0655,0.084,0.0921,0.0756,0.0771,0.0613,0.0642,0.0717,0.0771,0.0786,0.0714,0.0762,0.0596,0.0807,0.072,0.0769,0.0778,0.076,0.0661,0.0693,0.0751,0.0771,0.0704,0.0773,0.0679,0.0806,0.0699,0.0745,0.0777,0.06,0.062,0.0701,0.0769,0.0768,0.0728,0.076,0.0608,0.0804,0.0695,0.0754,0.0769,0.0717,0.0686,0.0704,0.0746,0.079,0.0708,0.0777,0.0631,0.0795,0.0692,0.0744,0.0777,0.0654
4320,37,0.0745,0.072,0.0816,0.0777,0.0716,0.0778,0.0644,0.0807,0.0694,0.0752,0.0777,0.0703,0.0678,0.0797,0.0813,0.0776,0.0713,0.0782,0.0614,0.0807,0.0701,0.0754,0.078,0.0621,0.0625,0.0707,0.0805,0.0767,0.0709,0.077,0.0601,0.0807,0.0688,0.075,0.0768,0.0747,0.0663,0.0718,0.0824,0.0772,0.0732,0.0793,0.0712,0.0844,0.093,0.0764,0.0775,0.06,0.0641,0.0714,0.0769,0.0785,0.0711,0.0764,0.0608,0.0818,0.0727,0.0775,0.0785,0.0745,0.0667,0.07,0.0755,0.0767,0.0714,0.0778,0.0714,0.0815,0.0784,0.0754,0.0786,0.0594,0.0623,0.0704,0.0774,0.0773,0.0729,0.0766,0.0616,0.0811,0.0703,0.0754,0.0763,0.0623,0.069,0.0709,0.0751,0.0794,0.0714,0.0783,0.0635,0.0802,0.0695,0.0748,0.0783,0.0682
4410,37,0.0741,0.0738,0.0809,0.0779,0.0719,0.0771,0.0628,0.0808,0.0698,0.0748,0.0778,0.0681,0.0692,0.0801,0.0853,0.0772,0.0711,0.0783,0.0646,0.0803,0.07,0.075,0.0785,0.062,0.0652,0.0709,0.0801,0.0768,0.0701,0.0773,0.0604,0.0809,0.069,0.0756,0.0767,0.0754,0.0686,0.0722,0.0828,0.0772,0.0732,0.0803,0.0717,0.0847,0.0925,0.0764,0.0778,0.0611,0.0638,0.0713,0.0775,0.079,0.0718,0.0771,0.0621,0.0817,0.0725,0.078,0.0776,0.0629,0.0632,0.0695,0.0757,0.0783,0.0711,0.078,0.0616,0.0814,0.0781,0.0748,0.0781,0.0624,0.0617,0.0703,0.0782,0.079,0.0744,0.0775,0.0664,0.0814,0.0696,0.075,0.0766,0.0614,0.067,0.0712,0.0759,0.0808,0.0714,0.0784,0.0607,0.0802,0.0697,0.0747,0.0786,0.0717
4500,37,0.0731,0.0729,0.0815,0.0783,0.0722,0.0779,0.0625,0.081,0.0698,0.0753,0.0781,0.0679,0.068,0.0794,0.0829,0.0775,0.0713,0.0785,0.0626,0.0804,0.0704,0.0757,0.0782,0.064,0.067,0.0705,0.0805,0.0766,0.0703,0.0774,0.0607,0.0818,0.0697,0.076,0.0766,0.0691,0.0686,0.0714,0.0822,0.0764,0.0727,0.0801,0.0685,0.0851,0.0919,0.0766,0.078,0.0619,0.0626,0.071,0.0785,0.0802,0.0725,0.0777,0.0692,0.0822,0.0729,0.0776,0.0781,0.064,0.0634,0.0692,0.0763,0.0791,0.0715,0.0783,0.0601,0.0814,0.078,0.075,0.0788,0.0635,0.0617,0.0707,0.0789,0.0792,0.0743,0.0773,0.0699,0.0813,0.0698,0.0751,0.0767,0.0664,0.0676,0.0708,0.0762,0.0811,0.0713,0.0786,0.0613,0.0806,0.0694,0.0752,0.0788,0.0668
4590,37,0.0723,0.0752,0.0814,0.0775,0.0711,0.0774,0.0617,0.0822,0.0706,0.0757,0.0787,0.0718,0.0686,0.0803,0.0808,0.0771,0.071,0.0786,0.0733,0.0816,0.0712,0.0765,0.0787,0.0616,0.0627,0.0693,0.0805,0.0765,0.0698,0.0784,0.0639,0.0818,0.0701,0.0761,0.0766,0.0657,0.0683,0.071,0.0818,0.0772,0.0729,0.0795,0.0668,0.0855,0.0922,0.0767,0.0781,0.062,0.0623,0.0706,0.0781,0.0801,0.0722,0.0777,0.068,0.0817,0.0723,0.0773,0.0779,0.0612,0.0654,0.0696,0.0765,0.0788,0.0715,0.0782,0.0674,0.0818,0.0783,0.0752,0.0786,0.0613,0.0652,0.0706,0.0787,0.079,0.0736,0.0773,0.0685,0.081,0.0696,0.0756,0.0765,0.066,0.0666,0.0719,0.0756,0.0801,0.0713,0.0782,0.0682,0.081,0.0692,0.0752,0.0787,0.0672
4680,37,0.0752,0.0712,0.0806,0.0769,0.0707,0.077,0.0633,0.0822,0.0706,0.0752,0.078,0.0669,0.0677,0.0828,0.0808,0.0764,0.0706,0.078,0.0721,0.081,0.0707,0.0755,0.0782,0.0634,0.0682,0.0689,0.0801,0.0762,0.07,0.0781,0.0649,0.0813,0.0694,0.0753,0.0757,0.0612,0.067,0.071,0.0821,0.0769,0.0723,0.0798,0.0636,0.085,0.0922,0.0755,0.0774,0.0643,0.0624,0.0706,0.078,0.0799,0.0722,0.0776,0.0719,0.0809,0.0714,0.0768,0.0768,0.063,0.0616,0.0693,0.0772,0.0795,0.0704,0.0778,0.0599,0.0811,0.069,0.0746,0.0785,0.0631,0.0611,0.0702,0.0791,0.0797,0.0741,0.0774,0.0689,0.081,0.0688,0.0748,0.0761,0.0645,0.0642,0.0714,0.0756,0.0804,0.0707,0.0778,0.0616,0.0802,0.069,0.0747,0.0786,0.0703
4770,37,0.0742,0.0719,0.0816,0.0779,0.0716,0.078,0.0638,0.083,0.0709,0.076,0.0785,0.066,0.0686,0.08,0.0825,0.077,0.0713,0.0787,0.0702,0.0814,0.0709,0.0759,0.0789,0.0648,0.0647,0.0694,0.0816,0.0777,0.0707,0.0793,0.0709,0.0825,0.0705,0.076,0.0757,0.0643,0.0651,0.0708,0.0833,0.0779,0.0728,0.0808,0.0609,0.0859,0.0918,0.0765,0.0779,0.0677,0.0633,0.0714,0.0794,0.0814,0.073,0.078,0.0714,0.0823,0.0722,0.0776,0.0785,0.0628,0.0612,0.0696,0.0776,0.0792,0.0715,0.0788,0.065,0.0821,0.0707,0.0754,0.0791,0.0599,0.0642,0.0707,0.0795,0.0794,0.0736,0.0776,0.0674,0.0819,0.0697,0.076,0.0771,0.07,0.0657,0.0715,0.0761,0.0806,0.0714,0.0786,0.0708,0.0816,0.0697,0.0754,0.0792,0.0671
4860,37,0.0728,0.0712,0.0815,0.0774,0.0708,0.0778,0.0639,0.0833,0.071,0.076,0.0788,0.067,0.0674,0.0794,0.0825,0.0773,0.071,0.0789,0.0731,0.0824,0.0709,0.0765,0.079,0.062,0.0643,0.0695,0.0816,0.0773,0.0704,0.0791,0.0658,0.0825,0.0699,0.076,0.0764,0.0638,0.0685,0.0712,0.0832,0.078,0.073,0.0808,0.0654,0.0864,0.0919,0.0764,0.0784,0.0622,0.0623,0.0713,0.0789,0.0808,0.0726,0.0781,0.0688,0.0825,0.0721,0.0775,0.0782,0.0623,0.0613,0.0701,0.0777,0.0798,0.0711,0.0781,0.0646,0.0825,0.0779,0.0756,0.0797,0.0621,0.0614,0.071,0.08,0.0795,0.0731,0.0774,0.0664,0.0817,0.0696,0.076,0.0776,0.0677,0.0681,0.0723,0.0761,0.0804,0.0715,0.0789,0.0675,0.0816,0.0696,0.0757,0.0797,0.0648
4950,37,0.074,0.0715,0.0824,0.0779,0.0711,0.078,0.0634,0.0833,0.0709,0.0759,0.0786,0.0644,0.0693,0.0802,0.0831,0.0774,0.0712,0.0791,0.0662,0.082,0.0703,0.0759,0.0796,0.0626,0.0637,0.0701,0.0821,0.0782,0.0713,0.0787,0.0694,0.0823,0.0693,0.0757,0.0763,0.0628,0.0639,0.0712,0.0841,0.0787,0.0727,0.0805,0.0617,0.0863,0.0928,0.0757,0.0787,0.0678,0.0645,0.072,0.0798,0.0816,0.073,0.0783,0.0718,0.0822,0.0716,0.0775,0.078,0.0624,0.0611,0.0695,0.078,0.0802,0.0711,0.0786,0.0625,0.0821,0.0774,0.0755,0.0797,0.0631,0.0616,0.0711,0.0806,0.0808,0.0743,0.078,0.0696,0.0822,0.0693,0.0757,0.0768,0.0655,0.0663,0.0722,0.0765,0.0817,0.0711,0.0787,0.0627,0.0813,0.0691,0.0759,0.0797,0.0676
5040,37,0.0746,0.0719,0.0824,0.0782,0.0714,0.0786,0.0659,0.0837,0.0709,0.0762,0.0786,0.0645,0.067,0.0805,0.0857,0.0781,0.0716,0.079,0.0678,0.0822,0.07,0.0761,0.0793,0.062,0.062,0.0704,0.0828,0.0786,0.0716,0.0791,0.0724,0.083,0.0694,0.0755,0.0763,0.062,0.0644,0.0709,0.0852,0.0789,0.0729,0.0812,0.0593,0.0865,0.0922,0.0762,0.0787,0.0676,0.0631,0.0721,0.0804,0.082,0.073,0.0783,0.0719,0.0829,0.0717,0.0774,0.0783,0.0634,0.0639,0.0697,0.0778,0.0804,0.0712,0.0786,0.0636,0.0825,0.0704,0.0761,0.0798,0.0612,0.0654,0.0714,0.0804,0.0799,0.0737,0.0778,0.0666,0.0823,0.0695,0.0762,0.0776,0.069,0.068,0.072,0.0762,0.0811,0.0712,0.0789,0.07,0.0821,0.0699,0.0762,0.0799,0.0654
5130,37,0.0713,0.0714,0.0823,0.0782,0.071,0.078,0.0639,0.084,0.0708,0.0763,0.0794,0.066,0.0682,0.0789,0.0859,0.0778,0.0715,0.0795,0.066,0.0819,0.0707,0.0763,0.0794,0.0622,0.064,0.0704,0.0829,0.0786,0.0712,0.0791,0.0686,0.0828,0.0688,0.0755,0.0772,0.0668,0.0656,0.0714,0.0845,0.0792,0.0732,0.081,0.0648,0.0869,0.0939,0.0763,0.0792,0.063,0.064,0.0723,0.0798,0.0811,0.072,0.0777,0.0595,0.0834,0.0721,0.0779,0.0793,0.0699,0.0672,0.0708,0.0776,0.0794,0.0712,0.0785,0.0669,0.0832,0.0772,0.0764,0.0802,0.0622,0.0696,0.0714,0.0797,0.0789,0.0727,0.0775,0.0601,0.0827,0.0701,0.0765,0.0778,0.0695,0.0721,0.0727,0.0755,0.08,0.0715,0.0793,0.0705,0.0823,0.0695,0.0758,0.0796,0.0638
5220,37,0.0723,0.0709,0.0825,0.0785,0.0713,0.0782,0.0646,0.0832,0.0698,0.0747,0.0779,0.0636,0.0681,0.0791,0.0826,0.0777,0.0709,0.079,0.06,0.0818,0.0697,0.0754,0.0791,0.0689,0.0615,0.0705,0.0826,0.0787,0.0711,0.0782,0.0644,0.082,0.068,0.075,0.0764,0.0656,0.0653,0.0714,0.0849,0.0792,0.0725,0.0804,0.0643,0.0866,0.0934,0.0759,0.0787,0.0646,0.0646,0.0724,0.0796,0.0811,0.072,0.0773,0.0635,0.083,0.0711,0.077,0.0782,0.064,0.0653,0.0704,0.0778,0.079,0.0703,0.0782,0.0639,0.0828,0.069,0.0758,0.0794,0.0608,0.0628,0.0712,0.0801,0.0797,0.0732,0.0778,0.0616,0.0826,0.0694,0.076,0.0775,0.069,0.0707,0.0719,0.0754,0.0804,0.0708,0.079,0.0629,0.0818,0.0694,0.0754,0.0794,0.0639
5310,37,0.0737,0.0727,0.0839,0.0793,0.072,0.0797,0.0721,0.0839,0.0701,0.0759,0.0783,0.0637,0.0674,0.0791,0.0843,0.079,0.0712,0.0801,0.0594,0.0829,0.0698,0.0765,0.0795,0.0647,0.0638,0.0714,0.0842,0.08,0.0719,0.0793,0.0711,0.0831,0.0686,0.0757,0.0772,0.066,0.0646,0.0711,0.0862,0.0797,0.0734,0.0812,0.0635,0.087,0.0928,0.0772,0.0794,0.0643,0.0635,0.0726,0.0811,0.0829,0.0728,0.078,0.0642,0.0838,0.0719,0.0781,0.0794,0.0694,0.0653,0.0703,0.0786,0.0799,0.071,0.079,0.067,0.0838,0.078,0.0765,0.0802,0.0603,0.0649,0.0712,0.0804,0.0801,0.0731,0.0779,0.0593,0.0834,0.0702,0.0768,0.0783,0.0699,0.069,0.0712,0.0765,0.0813,0.0715,0.0797,0.0692,0.0835,0.0703,0.0761,0.0804,0.0668
5400,37,0.0746,0.0714,0.0833,0.0789,0.071,0.0788,0.0676,0.0838,0.07,0.0757,0.0786,0.0652,0.0673,0.0829,0.0846,0.0784,0.0709,0.0795,0.0596,0.0828,0.0702,0.0762,0.0792,0.068,0.0608,0.0699,0.0835,0.079,0.0709,0.0789,0.071,0.0828,0.0683,0.0754,0.0773,0.067,0.0655,0.0712,0.085,0.0785,0.0728,0.0808,0.0649,0.0875,0.0928,0.0768,0.079,0.0603,0.0634,0.072,0.0801,0.081,0.0714,0.0774,0.0601,0.0836,0.0717,0.0779,0.0789,0.07,0.0676,0.0701,0.078,0.0796,0.0709,0.0784,0.0654,0.0834,0.0781,0.0762,0.08,0.0615,0.0638,0.0711,0.0802,0.0796,0.0724,0.0779,0.0629,0.0828,0.0694,0.0764,0.078,0.0694,0.0703,0.0718,0.0759,0.0804,0.0709,0.0793,0.0701,0.083,0.0694,0.0758,0.08,0.0652
5490,37,0.0725,0.0716,0.0832,0.0787,0.071,0.0788,0.0648,0.0845,0.0703,0.0758,0.0786,0.0649,0.0679,0.0782,0.0865,0.0781,0.0708,0.0795,0.0599,0.0831,0.0696,0.076,0.0793,0.0681,0.0625,0.0702,0.0833,0.0791,0.0711,0.0791,0.0698,0.083,0.0685,0.0754,0.0767,0.0646,0.0678,0.0715,0.0856,0.0793,0.0729,0.0812,0.061,0.0878,0.0918,0.076,0.079,0.0696,0.065,0.0728,0.0803,0.0815,0.0719,0.0782,0.0637,0.0836,0.0716,0.0779,0.079,0.0673,0.0629,0.0702,0.0782,0.0806,0.0705,0.0791,0.0631,0.0837,0.0688,0.0759,0.0798,0.0609,0.0675,0.0711,0.0807,0.0803,0.0729,0.0781,0.059,0.0837,0.0695,0.0764,0.0781,0.0704,0.0672,0.0718,0.0763,0.081,0.0709,0.0798,0.0655,0.083,0.0694,0.0755,0.0799,0.063
5580,37,0.0748,0.0754,0.0843,0.0798,0.0721,0.0799,0.07,0.0842,0.0699,0.0758,0.0788,0.0615,0.0674,0.0782,0.0855,0.0793,0.0714,0.0803,0.058,0.0829,0.0701,0.0762,0.0797,0.0684,0.0631,0.0708,0.0843,0.0799,0.0711,0.0788,0.0649,0.0834,0.0684,0.0756,0.0774,0.0683,0.0642,0.0712,0.0867,0.0798,0.073,0.0813,0.0633,0.0877,0.0925,0.0767,0.0793,0.0606,0.0645,0.0722,0.0808,0.0821,0.0716,0.0782,0.0594,0.0845,0.0721,0.0784,0.0795,0.0738,0.0642,0.0699,0.0784,0.081,0.0706,0.0796,0.0695,0.0846,0.0701,0.0763,0.0803,0.0594,0.0633,0.0709,0.0804,0.0798,0.0725,0.078,0.059,0.0841,0.07,0.0771,0.0787,0.0723,0.0669,0.0709,0.0766,0.0812,0.071,0.08,0.0677,0.0837,0.07,0.0758,0.0801,0.0638
5670,37,0.074,0.0715,0.0843,0.0796,0.0715,0.0794,0.0663,0.0848,0.07,0.076,0.0792,0.0634,0.0675,0.0784,0.0853,0.0791,0.071,0.0801,0.0639,0.0837,0.0704,0.0765,0.0797,0.0652,0.0619,0.0702,0.0843,0.0798,0.0709,0.0788,0.0632,0.0839,0.0686,0.0759,0.0777,0.0693,0.0649,0.0714,0.0865,0.0795,0.0726,0.0816,0.0681,0.0885,0.0924,0.0768,0.0795,0.0603,0.0644,0.0718,0.08,0.0813,0.0714,0.0778,0.0602,0.0848,0.0722,0.0787,0.0798,0.0723,0.066,0.0705,0.0784,0.0801,0.0708,0.0791,0.0702,0.0851,0.0788,0.0765,0.0802,0.0585,0.0672,0.0708,0.0802,0.0794,0.072,0.0784,0.0592,0.0844,0.0701,0.0771,0.0785,0.0702,0.0699,0.0716,0.0769,0.0816,0.0712,0.0799,0.0674,0.0839,0.0696,0.0759,0.08,0.063
5760,37,0.0734,0.0715,0.0859,0.0799,0.0719,0.0797,0.066,0.0845,0.07,0.0754,0.079,0.0634,0.0671,0.0788,0.0844,0.0798,0.0712,0.0799,0.0592,0.0836,0.0696,0.0764,0.08,0.0687,0.0648,0.0707,0.0843,0.08,0.0709,0.0791,0.0624,0.0841,0.0685,0.0763,0.0778,0.0678,0.0658,0.0719,0.0869,0.0794,0.0732,0.0812,0.0654,0.0886,0.0928,0.0769,0.0796,0.0654,0.0649,0.0722,0.0805,0.082,0.0716,0.0783,0.0595,0.0853,0.0723,0.0789,0.0794,0.0717,0.0654,0.0702,0.0785,0.0806,0.0708,0.0794,0.0684,0.0851,0.0703,0.0763,0.0801,0.0605,0.065,0.0709,0.0809,0.0808,0.0732,0.0789,0.0592,0.085,0.0699,0.0771,0.0787,0.0683,0.0687,0.0715,0.077,0.0829,0.0713,0.0802,0.0631,0.084,0.0696,0.0758,0.0802,0.0647
5850,37,0.0746,0.0725,0.0852,0.0807,0.0722,0.0801,0.0682,0.0854,0.0703,0.0762,0.0795,0.0621,0.0668,0.0782,0.0852,0.0801,0.0713,0.0805,0.0587,0.0837,0.07,0.0767,0.0802,0.0673,0.0627,0.0712,0.0853,0.0811,0.0715,0.0796,0.0652,0.0849,0.0691,0.0764,0.0781,0.0692,0.0646,0.0713,0.0872,0.0802,0.0729,0.0817,0.0646,0.0887,0.092,0.0775,0.0797,0.062,0.0638,0.072,0.0808,0.0825,0.0717,0.0786,0.0588,0.0858,0.0727,0.0791,0.08,0.0744,0.0653,0.07,0.0787,0.0812,0.0709,0.0799,0.0706,0.0857,0.0784,0.0764,0.0806,0.059,0.0643,0.0706,0.0809,0.0808,0.0729,0.0787,0.0592,0.0856,0.0706,0.0778,0.0792,0.0713,0.0675,0.0708,0.0775,0.0828,0.0712,0.0807,0.0684,0.0849,0.0701,0.076,0.0806,0.062
5940,37,0.0744,0.0735,0.0849,0.0802,0.0714,0.0799,0.068,0.0861,0.0706,0.0764,0.0798,0.0635,0.0672,0.0783,0.088,0.0798,0.0711,0.0808,0.0635,0.0847,0.07,0.0767,0.0805,0.0663,0.0615,0.0704,0.0852,0.0809,0.0712,0.0798,0.0664,0.085,0.0688,0.0763,0.0781,0.0694,0.0655,0.0714,0.0877,0.0799,0.0726,0.0819,0.0683,0.0892,0.0928,0.0769,0.0801,0.06,0.0649,0.0718,0.0809,0.0826,0.0717,0.0785,0.0606,0.0856,0.0722,0.0787,0.0798,0.0694,0.0642,0.0703,0.0796,0.0814,0.0711,0.0795,0.0678,0.0855,0.0788,0.077,0.081,0.0622,0.0655,0.071,0.0814,0.0809,0.0725,0.0788,0.0607,0.0852,0.07,0.0774,0.079,0.0694,0.0678,0.0718,0.0774,0.0825,0.0712,0.0804,0.0703,0.0843,0.0694,0.0769,0.0809,0.0645
6030,37,0.0737,0.0712,0.0851,0.0803,0.0716,0.0798,0.0632,0.086,0.0702,0.0759,0.0798,0.0647,0.0676,0.0793,0.0855,0.0801,0.071,0.0804,0.0587,0.0844,0.0696,0.0764,0.0805,0.0681,0.0624,0.0705,0.0856,0.0809,0.0715,0.0795,0.0652,0.085,0.0686,0.0761,0.0779,0.0648,0.0656,0.0715,0.0876,0.0806,0.0729,0.082,0.0639,0.0891,0.0923,0.0768,0.0804,0.0667,0.0678,0.0725,0.0808,0.0832,0.0721,0.0788,0.0612,0.0862,0.0721,0.0788,0.0797,0.0672,0.0663,0.0706,0.0792,0.0813,0.071,0.0797,0.0649,0.0858,0.0696,0.0766,0.081,0.0611,0.063,0.0705,0.0818,0.082,0.0735,0.0795,0.0617,0.0863,0.07,0.0773,0.0795,0.0675,0.0701,0.0716,0.0779,0.0839,0.0711,0.0806,0.0647,0.0844,0.07,0.0764,0.0811,0.0694
6120,37,0.0745,0.0718,0.086,0.0809,0.0718,0.0804,0.0698,0.0864,0.0699,0.0763,0.0798,0.0632,0.0671,0.0793,0.0883,0.0806,0.0713,0.0806,0.0598,0.0844,0.0693,0.0769,0.0807,0.0683,0.0623,0.0708,0.0859,0.0814,0.0715,0.0797,0.0671,0.0853,0.0682,0.0764,0.0784,0.0685,0.0655,0.0715,0.0882,0.0808,0.0728,0.0824,0.0642,0.0894,0.0921,0.0774,0.0807,0.0655,0.0645,0.0724,0.082,0.0833,0.0718,0.0788,0.0596,0.087,0.0725,0.079,0.0804,0.0726,0.0671,0.0702,0.0788,0.0817,0.0713,0.0804,0.0705,0.0863,0.0781,0.0771,0.0813,0.0592,0.0634,0.0706,0.0818,0.0817,0.073,0.0794,0.0604,0.0866,0.0706,0.0777,0.0797,0.0703,0.0695,0.0708,0.0779,0.0837,0.0711,0.081,0.0668,0.0848,0.0696,0.0764,0.0812,0.0668
6210,37,0.074,0.0713,0.0859,0.0808,0.0712,0.0803,0.0698,0.0866,0.0698,0.0764,0.0801,0.0646,0.0669,0.0828,0.0857,0.0804,0.071,0.0812,0.0585,0.0851,0.0696,0.0771,0.0809,0.0676,0.0611,0.0705,0.0864,0.0815,0.0712,0.0798,0.0647,0.0859,0.0685,0.0763,0.0788,0.0702,0.0672,0.0718,0.0882,0.0806,0.0732,0.0819,0.0683,0.0901,0.0927,0.0776,0.0806,0.062,0.064,0.072,0.0817,0.0835,0.0718,0.0793,0.059,0.0874,0.0726,0.0793,0.0804,0.0704,0.0684,0.0709,0.0798,0.0809,0.0707,0.0802,0.0697,0.0868,0.0773,0.0772,0.0812,0.0594,0.0642,0.0705,0.0817,0.0814,0.0723,0.0792,0.0595,0.087,0.0704,0.0777,0.0795,0.0685,0.0708,0.0718,0.0778,0.0838,0.0716,0.0812,0.0639,0.085,0.0688,0.0766,0.0813,0.0675
6300,37,0.0749,0.0721,0.0868,0.0816,0.0724,0.081,0.0666,0.0871,0.0702,0.0765,0.0802,0.0635,0.0689,0.0788,0.0894,0.081,0.0716,0.0812,0.0618,0.0852,0.0696,0.0767,0.0809,0.0693,0.0645,0.0708,0.0866,0.082,0.0712,0.0801,0.0632,0.0858,0.0685,0.0767,0.0786,0.0661,0.068,0.0722,0.0891,0.0811,0.073,0.0822,0.0647,0.0904,0.0925,0.0777,0.0806,0.0686,0.0658,0.0721,0.0819,0.0836,0.0718,0.0798,0.0607,0.0878,0.0725,0.0796,0.0798,0.0634,0.0673,0.0705,0.0793,0.0826,0.071,0.0803,0.0628,0.0869,0.0696,0.0768,0.0813,0.0613,0.0649,0.0706,0.0825,0.0832,0.0737,0.0801,0.0621,0.0876,0.0704,0.0775,0.0797,0.0647,0.0678,0.0714,0.0786,0.085,0.0712,0.0812,0.061,0.0849,0.0692,0.0765,0.0816,0.0679
6390,37,0.0743,0.075,0.0878,0.0824,0.0726,0.0821,0.0688,0.0874,0.0701,0.0772,0.081,0.0632,0.0685,0.0816,0.0877,0.0815,0.0719,0.0819,0.0616,0.0858,0.0707,0.0778,0.0819,0.0658,0.0649,0.0714,0.0877,0.0825,0.0712,0.0806,0.0604,0.0869,0.0691,0.0776,0.0798,0.0751,0.0682,0.0724,0.0897,0.0812,0.0734,0.083,0.0671,0.0914,0.0922,0.0786,0.0815,0.0641,0.063,0.0719,0.0827,0.0846,0.0725,0.0803,0.064,0.0891,0.0736,0.0804,0.0805,0.0642,0.0656,0.0706,0.0803,0.0833,0.0719,0.0816,0.0651,0.0878,0.0783,0.0774,0.0822,0.0606,0.0623,0.0706,0.083,0.0838,0.0742,0.0805,0.0618,0.0887,0.0707,0.0776,0.0802,0.0649,0.0701,0.0713,0.0793,0.0859,0.0721,0.0822,0.0596,0.0858,0.0696,0.0772,0.0823,0.069
6480,37,0.0728,0.0727,0.0877,0.0823,0.0722,0.0813,0.0608,0.0878,0.0702,0.0771,0.0819,0.0673,0.0728,0.0797,0.088,0.0812,0.0716,0.0818,0.0647,0.0869,0.0703,0.0781,0.0828,0.0653,0.0688,0.0712,0.0878,0.0823,0.0709,0.0809,0.0606,0.0876,0.0692,0.0779,0.0804,0.0744,0.0675,0.0727,0.0893,0.0812,0.073,0.0827,0.0716,0.092,0.0931,0.0788,0.0819,0.0597,0.0645,0.0718,0.0827,0.0843,0.0721,0.0805,0.0625,0.0889,0.073,0.0801,0.0809,0.0648,0.0662,0.0711,0.0798,0.0835,0.0718,0.0816,0.0626,0.0883,0.0769,0.0777,0.0827,0.0614,0.0637,0.071,0.0833,0.0841,0.0742,0.0809,0.0642,0.0886,0.0702,0.0776,0.08,0.0621,0.0699,0.072,0.0798,0.0859,0.0718,0.0818,0.06,0.0857,0.0688,0.0775,0.0826,0.0724
6570,37,0.0752,0.0725,0.0878,0.0822,0.0719,0.0812,0.0633,0.0871,0.0694,0.0765,0.0809,0.0657,0.0727,0.0796,0.0879,0.0812,0.0712,0.0811,0.0646,0.086,0.0695,0.0773,0.0823,0.0671,0.0683,0.0708,0.088,0.0823,0.0704,0.0808,0.0597,0.0875,0.0688,0.0776,0.0793,0.0717,0.0716,0.0722,0.089,0.0806,0.0727,0.0828,0.0638,0.0918,0.0918,0.0781,0.0815,0.0687,0.0628,0.0716,0.083,0.0846,0.072,0.0804,0.0641,0.0882,0.0722,0.0797,0.0802,0.0602,0.066,0.0704,0.0806,0.0834,0.0712,0.0815,0.0609,0.0879,0.0776,0.0773,0.0825,0.0628,0.0612,0.0706,0.0835,0.0842,0.074,0.0808,0.0634,0.0888,0.0698,0.0774,0.0801,0.0613,0.0704,0.0712,0.0797,0.0862,0.0711,0.0819,0.0625,0.0855,0.0688,0.077,0.0822,0.0694
6660,37,0.0739,0.0735,0.0888,0.083,0.0724,0.0819,0.0634,0.0882,0.0698,0.0776,0.0822,0.0677,0.0703,0.0789,0.0908,0.082,0.0718,0.0824,0.0621,0.0874,0.0701,0.0783,0.0828,0.064,0.065,0.0719,0.0891,0.0834,0.0712,0.0813,0.0589,0.0885,0.069,0.0783,0.0807,0.0772,0.0684,0.072,0.0905,0.0818,0.0736,0.0837,0.0708,0.0927,0.0929,0.0794,0.0822,0.0614,0.0627,0.0722,0.0836,0.0852,0.0722,0.0807,0.0624,0.0899,0.0733,0.0805,0.0816,0.074,0.068,0.0706,0.0809,0.0837,0.072,0.082,0.0674,0.0897,0.0702,0.0781,0.0831,0.0607,0.0629,0.071,0.0839,0.0844,0.0739,0.0811,0.0617,0.0893,0.0703,0.0783,0.081,0.0645,0.071,0.0718,0.0797,0.0868,0.0718,0.0826,0.0599,0.0872,0.0697,0.0777,0.0831,0.0684
6750,37,0.0748,0.0731,0.0881,0.0825,0.072,0.0813,0.0591,0.0887,0.0699,0.0775,0.0828,0.0712,0.072,0.0794,0.0931,0.0821,0.0717,0.082,0.0655,0.0876,0.0704,0.0789,0.0834,0.0655,0.0687,0.0709,0.0886,0.0824,0.0705,0.0817,0.0614,0.0887,0.0696,0.0786,0.0804,0.0754,0.0694,0.0722,0.0901,0.0816,0.0733,0.0837,0.0695,0.093,0.0926,0.0792,0.0825,0.0628,0.063,0.0721,0.0833,0.0854,0.0723,0.081,0.0622,0.0896,0.0728,0.0804,0.0811,0.0623,0.0657,0.0709,0.0812,0.0847,0.0718,0.0815,0.0601,0.0896,0.0695,0.078,0.0836,0.0656,0.0622,0.0714,0.085,0.0859,0.0747,0.0821,0.0691,0.0892,0.0694,0.0777,0.0812,0.0635,0.0678,0.0726,0.0808,0.0875,0.0714,0.0823,0.0604,0.087,0.0688,0.0781,0.0835,0.0706
6840,37,0.0747,0.0728,0.0884,0.0828,0.0722,0.0815,0.063,0.0884,0.0694,0.0771,0.0823,0.069,0.0701,0.0792,0.089,0.0826,0.0717,0.0818,0.0626,0.088,0.07,0.0782,0.0827,0.065,0.0656,0.0718,0.0894,0.0836,0.0709,0.082,0.0598,0.0886,0.0694,0.0784,0.0805,0.0758,0.0692,0.0723,0.0911,0.0822,0.0732,0.0832,0.0673,0.0928,0.0923,0.0788,0.082,0.0621,0.0631,0.0719,0.0837,0.0857,0.0719,0.0811,0.0633,0.0899,0.0725,0.0806,0.0808,0.0658,0.066,0.0698,0.0809,0.0845,0.0714,0.0817,0.0606,0.0892,0.0777,0.0774,0.083,0.0623,0.0607,0.0709,0.0846,0.0855,0.0742,0.0815,0.065,0.0895,0.0696,0.0778,0.0811,0.0627,0.0678,0.0713,0.0809,0.0875,0.0709,0.0826,0.0618,0.0872,0.0693,0.0774,0.0831,0.07
6930,37,0.0744,0.0733,0.0889,0.0832,0.0718,0.0816,0.061,0.0891,0.0697,0.078,0.083,0.0705,0.0699,0.0787,0.089,0.0824,0.0716,0.0825,0.0651,0.0882,0.0707,0.0784,0.083,0.0653,0.0634,0.0707,0.0893,0.0829,0.0701,0.0821,0.0617,0.0889,0.0697,0.0787,0.0808,0.0715,0.0684,0.0717,0.0907,0.0816,0.0729,0.0838,0.0704,0.0937,0.0922,0.0792,0.0826,0.0598,0.0614,0.0711,0.0839,0.0862,0.0722,0.0812,0.0655,0.09,0.0727,0.0802,0.0809,0.0596,0.0654,0.0697,0.0818,0.085,0.0716,0.082,0.0652,0.0898,0.0778,0.0778,0.0832,0.0617,0.0617,0.0709,0.0849,0.0855,0.0739,0.0817,0.068,0.0896,0.0696,0.0777,0.0815,0.0653,0.0675,0.0712,0.0815,0.0875,0.0713,0.0823,0.061,0.0879,0.0696,0.0778,0.0835,0.0669
7020,37,0.073,0.0732,0.0891,0.0833,0.0718,0.0819,0.0617,0.0901,0.0707,0.0783,0.0839,0.073,0.0721,0.0795,0.0905,0.0823,0.0717,0.083,0.0712,0.0891,0.0718,0.0792,0.0839,0.0602,0.0673,0.0713,0.0902,0.0838,0.0707,0.0824,0.0621,0.0903,0.0703,0.0792,0.0814,0.0732,0.0703,0.0727,0.0908,0.0828,0.0734,0.0846,0.0714,0.0946,0.0929,0.0799,0.083,0.0603,0.0636,0.0719,0.0842,0.0867,0.0728,0.082,0.0649,0.091,0.073,0.0812,0.0815,0.0614,0.0641,0.0707,0.0826,0.086,0.0718,0.0825,0.0611,0.0908,0.0708,0.0783,0.0845,0.065,0.0618,0.0714,0.0859,0.0868,0.0748,0.0828,0.0696,0.0907,0.0699,0.0784,0.0824,0.0636,0.0653,0.0724,0.0815,0.0887,0.0716,0.0826,0.0596,0.0884,0.0701,0.0783,0.0841,0.069
7110,37,0.0765,0.0737,0.0891,0.0833,0.0719,0.0818,0.0603,0.0901,0.0703,0.0781,0.0834,0.0695,0.069,0.0787,0.0899,0.0828,0.0715,0.0824,0.0682,0.089,0.0705,0.0788,0.0835,0.0626,0.0663,0.0706,0.0902,0.084,0.071,0.0828,0.0629,0.0898,0.0701,0.0789,0.0804,0.0646,0.0691,0.0716,0.0915,0.0827,0.0734,0.0846,0.061,0.0942,0.0912,0.0793,0.0824,0.0618,0.0622,0.0714,0.0851,0.0877,0.073,0.0821,0.0711,0.0904,0.0723,0.0804,0.0811,0.0602,0.0635,0.0697,0.0825,0.0874,0.0714,0.0832,0.0603,0.0902,0.0777,0.0778,0.0838,0.0626,0.062,0.0714,0.0866,0.0874,0.0748,0.0824,0.0696,0.0907,0.0698,0.0783,0.082,0.0653,0.064,0.072,0.0811,0.0886,0.0712,0.0826,0.0592,0.0882,0.0696,0.0778,0.0839,0.0704
7200,37,0.0751,0.0716,0.0917,0.0834,0.0714,0.0817,0.0616,0.0914,0.0711,0.0786,0.084,0.0678,0.0692,0.0807,0.0895,0.0825,0.0718,0.0829,0.0727,0.0897,0.0715,0.079,0.0838,0.0629,0.067,0.0702,0.0908,0.0842,0.0707,0.0835,0.0649,0.0908,0.0704,0.0793,0.0807,0.0656,0.0709,0.0713,0.0916,0.0832,0.073,0.0848,0.0656,0.0945,0.092,0.0793,0.0831,0.0624,0.0615,0.0711,0.0848,0.0875,0.0728,0.0822,0.0679,0.0912,0.0726,0.0808,0.0814,0.0601,0.0635,0.0692,0.0834,0.0866,0.0715,0.083,0.0661,0.0913,0.0705,0.078,0.084,0.0612,0.0619,0.0708,0.0859,0.0868,0.0741,0.0824,0.0693,0.0908,0.0697,0.0786,0.0822,0.0665,0.0683,0.0719,0.0813,0.0884,0.0712,0.0831,0.0653,0.0889,0.0697,0.078,0.0842,0.0662
7290,37,0.0735,0.0731,0.0904,0.0842,0.072,0.0828,0.062,0.0921,0.0715,0.0791,0.0851,0.0739,0.0706,0.0791,0.0941,0.0835,0.0718,0.0835,0.0723,0.0903,0.0716,0.0796,0.0849,0.0611,0.0686,0.0708,0.0912,0.0847,0.071,0.0837,0.0637,0.0912,0.0704,0.08,0.0811,0.0656,0.0661,0.0724,0.0931,0.0829,0.0735,0.0854,0.069,0.0954,0.0925,0.0801,0.0837,0.062,0.0626,0.0719,0.0847,0.0882,0.0731,0.0827,0.0675,0.0918,0.0729,0.0813,0.0819,0.0612,0.0619,0.0705,0.083,0.0872,0.0718,0.0836,0.0593,0.0918,0.0783,0.079,0.0854,0.064,0.0619,0.0713,0.0872,0.0886,0.0754,0.0834,0.0698,0.0919,0.0703,0.0793,0.0826,0.0635,0.0675,0.0724,0.0822,0.0896,0.072,0.0836,0.0619,0.0895,0.0696,0.0787,0.0852,0.0689
7380,37,0.0782,0.0726,0.0901,0.0844,0.072,0.082,0.0615,0.0918,0.0704,0.078,0.0839,0.0689,0.0686,0.0788,0.0922,0.0834,0.0715,0.0834,0.066,0.0898,0.0706,0.079,0.0844,0.0625,0.0684,0.0713,0.091,0.085,0.0707,0.0832,0.0618,0.091,0.0699,0.0794,0.0814,0.0675,0.0653,0.0718,0.0932,0.0834,0.073,0.0852,0.0667,0.0956,0.0921,0.0796,0.0833,0.0624,0.0632,0.0715,0.0852,0.0882,0.0728,0.0825,0.0682,0.0922,0.0731,0.0812,0.0817,0.0624,0.0628,0.0699,0.0831,0.0875,0.0714,0.0827,0.0594,0.0919,0.0773,0.0782,0.0846,0.0657,0.0614,0.0704,0.087,0.0885,0.0747,0.083,0.0662,0.0923,0.0699,0.0787,0.0825,0.0612,0.0677,0.0714,0.0824,0.0897,0.0712,0.0836,0.0591,0.0896,0.0692,0.0782,0.085,0.0732
7470,37,0.0775,0.0738,0.0921,0.0858,0.0726,0.0833,0.0613,0.0928,0.0712,0.0792,0.085,0.0691,0.0699,0.0786,0.0934,0.0851,0.0721,0.0842,0.0687,0.0905,0.0721,0.08,0.0854,0.0618,0.0669,0.0709,0.0927,0.0863,0.0712,0.084,0.064,0.0923,0.0707,0.0801,0.0817,0.0666,0.0672,0.072,0.0939,0.0847,0.0735,0.0866,0.0684,0.0961,0.0925,0.0804,0.0843,0.0629,0.0624,0.0716,0.0869,0.0894,0.0732,0.083,0.0696,0.0932,0.0732,0.0815,0.0827,0.061,0.0625,0.0706,0.0841,0.0885,0.0721,0.0839,0.0606,0.0925,0.0707,0.0793,0.086,0.0656,0.0618,0.0714,0.0879,0.089,0.0748,0.0834,0.0698,0.0929,0.0703,0.0798,0.0834,0.0664,0.0677,0.072,0.0826,0.0898,0.0717,0.0844,0.0673,0.0906,0.07,0.0793,0.0858,0.066
7560,37,0.0744,0.0726,0.0913,0.0849,0.0718,0.083,0.0622,0.0931,0.0713,0.0793,0.0854,0.0706,0.0713,0.0795,0.0958,0.0842,0.0721,0.0843,0.0725,0.0914,0.0714,0.0799,0.0859,0.0626,0.0671,0.0708,0.093,0.0862,0.0713,0.0848,0.0638,0.0927,0.0707,0.0802,0.0819,0.067,0.0668,0.0722,0.0944,0.0846,0.0737,0.0861,0.0697,0.0963,0.0928,0.0806,0.0846,0.061,0.063,0.072,0.0864,0.0892,0.0731,0.0833,0.0675,0.0931,0.0725,0.0816,0.0826,0.0626,0.0633,0.0709,0.0849,0.0896,0.0718,0.0837,0.062,0.0927,0.07,0.0795,0.0861,0.0639,0.0626,0.0718,0.0884,0.0892,0.0749,0.0839,0.0698,0.0928,0.0702,0.0797,0.0835,0.0654,0.0678,0.073,0.0825,0.0899,0.0718,0.0844,0.0643,0.0908,0.0697,0.0794,0.0862,0.0686
7650,37,0.0748,0.0746,0.0918,0.0852,0.072,0.0833,0.0638,0.0935,0.0713,0.0791,0.0853,0.0678,0.0705,0.0796,0.0927,0.0846,0.0718,0.0846,0.0696,0.092,0.071,0.08,0.0857,0.0639,0.0659,0.071,0.094,0.0874,0.072,0.0849,0.0689,0.0926,0.07,0.0799,0.0815,0.0614,0.0652,0.0722,0.0954,0.0859,0.0739,0.0862,0.0595,0.0971,0.0928,0.08,0.0846,0.0665,0.0634,0.0725,0.0876,0.0906,0.0738,0.0838,0.0723,0.0935,0.0724,0.0814,0.0827,0.0619,0.063,0.0709,0.0853,0.09,0.0715,0.0841,0.0614,0.093,0.0789,0.0795,0.0863,0.0635,0.0622,0.0717,0.0891,0.0903,0.0753,0.0841,0.0693,0.0937,0.0699,0.0794,0.084,0.0647,0.0683,0.0723,0.0834,0.0915,0.0719,0.0846,0.0625,0.091,0.0695,0.0794,0.0867,0.0673
7740,37,0.0751,0.0748,0.0917,0.0852,0.0717,0.0832,0.0612,0.0935,0.0708,0.0794,0.0856,0.0686,0.0724,0.0797,0.0963,0.0848,0.0715,0.0843,0.0706,0.0915,0.0709,0.0798,0.0853,0.0619,0.0613,0.0705,0.0941,0.0867,0.071,0.0851,0.0679,0.0927,0.0701,0.0806,0.0815,0.0649,0.0689,0.0713,0.0952,0.0851,0.0729,0.0863,0.0645,0.097,0.0924,0.0801,0.0845,0.0642,0.0624,0.0715,0.0877,0.09,0.0729,0.0832,0.0698,0.0933,0.0721,0.0814,0.0836,0.0743,0.0643,0.0698,0.0854,0.0896,0.0718,0.0842,0.061,0.0933,0.0781,0.0793,0.0856,0.0617,0.0622,0.0714,0.0883,0.0893,0.074,0.0836,0.0675,0.0936,0.0697,0.0795,0.0838,0.0666,0.0662,0.0722,0.0827,0.0902,0.0713,0.0845,0.0645,0.0911,0.0694,0.0791,0.0864,0.0667
7830,37,0.0728,0.0717,0.0917,0.085,0.0712,0.0834,0.0617,0.094,0.0711,0.0792,0.0862,0.0702,0.0733,0.0843,0.095,0.084,0.0712,0.0843,0.0665,0.0915,0.0706,0.0798,0.0856,0.0609,0.0656,0.0703,0.0939,0.0868,0.071,0.0849,0.0654,0.0926,0.0694,0.0795,0.0813,0.0628,0.0689,0.0721,0.0955,0.086,0.0732,0.0861,0.0607,0.0977,0.0928,0.08,0.0849,0.0662,0.0629,0.0718,0.0875,0.09,0.0726,0.0832,0.0686,0.0933,0.072,0.0814,0.0823,0.065,0.0634,0.0708,0.0852,0.0905,0.0712,0.0841,0.0628,0.0936,0.0687,0.0794,0.0859,0.0657,0.0635,0.0717,0.0891,0.0901,0.0745,0.084,0.0697,0.0938,0.0689,0.0792,0.0837,0.0638,0.0667,0.0728,0.083,0.0904,0.0714,0.0847,0.0632,0.0912,0.0691,0.0792,0.0862,0.0711
7920,37,0.0754,0.0753,0.0927,0.0859,0.0718,0.0834,0.0623,0.0942,0.0705,0.0791,0.0855,0.0672,0.0723,0.0787,0.0969,0.0856,0.0718,0.0844,0.0636,0.0927,0.0704,0.08,0.0858,0.064,0.0645,0.0714,0.0944,0.0873,0.071,0.0846,0.0627,0.093,0.0695,0.08,0.0819,0.0616,0.071,0.0721,0.0956,0.0858,0.0733,0.086,0.0604,0.0982,0.0922,0.0808,0.0848,0.0652,0.0632,0.0724,0.0884,0.0912,0.0732,0.0839,0.0725,0.0938,0.0718,0.0813,0.0824,0.0629,0.0636,0.0698,0.0862,0.0917,0.0713,0.0845,0.0616,0.0937,0.0779,0.0795,0.0863,0.0659,0.0632,0.0719,0.0901,0.0912,0.0752,0.0847,0.0697,0.0947,0.0692,0.0795,0.0841,0.0641,0.0677,0.072,0.0837,0.0922,0.071,0.0847,0.0624,0.0918,0.0695,0.0793,0.0869,0.0685
8010,37,0.0747,0.0726,0.0931,0.0859,0.0714,0.0839,0.0608,0.0949,0.0706,0.0795,0.0865,0.0714,0.0731,0.078,0.0944,0.0853,0.0717,0.085,0.0662,0.0928,0.0708,0.0806,0.0861,0.0648,0.0638,0.0709,0.0955,0.088,0.0709,0.0855,0.0655,0.0939,0.07,0.0802,0.0823,0.0653,0.0704,0.0713,0.0962,0.0861,0.0728,0.0867,0.0631,0.0989,0.0922,0.0809,0.0853,0.0636,0.0622,0.0719,0.0884,0.0912,0.073,0.084,0.0698,0.0951,0.0724,0.0816,0.0835,0.0628,0.0644,0.0703,0.0856,0.0914,0.0716,0.0848,0.0584,0.095,0.0781,0.0799,0.0863,0.0633,0.0617,0.0717,0.0897,0.0904,0.0741,0.0846,0.0686,0.095,0.0695,0.0798,0.0844,0.0639,0.067,0.0724,0.0835,0.0916,0.0715,0.0852,0.0632,0.0922,0.0692,0.0795,0.0869,0.0671
8100,37,0.0726,0.0732,0.0939,0.0867,0.0719,0.0845,0.0623,0.0958,0.0713,0.0801,0.0876,0.0737,0.0723,0.0791,0.0945,0.0864,0.0718,0.0855,0.0677,0.094,0.0718,0.0809,0.0873,0.0636,0.068,0.0708,0.096,0.0885,0.0713,0.0857,0.0628,0.0947,0.0702,0.0807,0.0827,0.0632,0.0656,0.0726,0.0978,0.0867,0.0734,0.0874,0.0606,0.0996,0.0918,0.0814,0.0857,0.067,0.0629,0.0724,0.089,0.0922,0.0734,0.0847,0.0715,0.0956,0.0724,0.0824,0.0837,0.0641,0.0636,0.0709,0.0868,0.0922,0.0718,0.0852,0.0594,0.0956,0.0787,0.0802,0.0873,0.0668,0.0646,0.072,0.0909,0.0923,0.0754,0.0858,0.0702,0.0967,0.07,0.08,0.0849,0.063,0.0667,0.0729,0.0846,0.0938,0.0717,0.0858,0.0606,0.0931,0.0696,0.0801,0.0876,0.0694
8190,37,0.076,0.0737,0.0949,0.0879,0.0724,0.085,0.0605,0.0956,0.0707,0.0801,0.0872,0.0702,0.0706,0.0792,0.0968,0.0878,0.0722,0.086,0.0659,0.0942,0.0713,0.0814,0.0874,0.0611,0.065,0.0719,0.0974,0.0895,0.0716,0.0864,0.0627,0.0955,0.0706,0.0815,0.0837,0.0668,0.0699,0.0727,0.0977,0.0873,0.0742,0.0871,0.0639,0.1001,0.0925,0.0821,0.0863,0.0648,0.0635,0.0724,0.0894,0.0926,0.0736,0.085,0.0704,0.0964,0.0729,0.0831,0.0842,0.0609,0.0641,0.0703,0.0873,0.093,0.0723,0.0853,0.058,0.0962,0.0798,0.0806,0.0882,0.0651,0.0624,0.0721,0.0914,0.093,0.0754,0.0859,0.0703,0.0968,0.0701,0.0809,0.0862,0.0661,0.0667,0.0725,0.0853,0.0943,0.0716,0.0863,0.061,0.0938,0.0701,0.0812,0.088,0.0666
8280,37,0.0722,0.074,0.0949,0.0876,0.0719,0.0854,0.0642,0.0974,0.0716,0.081,0.0886,0.0697,0.0675,0.0777,0.0977,0.0874,0.0722,0.0861,0.0699,0.0953,0.0713,0.082,0.0875,0.0611,0.062,0.0709,0.0975,0.0898,0.0719,0.087,0.0695,0.096,0.0703,0.081,0.084,0.0683,0.0663,0.0726,0.0987,0.0883,0.0745,0.0884,0.0616,0.1004,0.0932,0.0821,0.0868,0.0665,0.0629,0.0724,0.09,0.0931,0.0735,0.085,0.0703,0.0968,0.0728,0.0827,0.0846,0.0651,0.0629,0.0709,0.0877,0.0932,0.0724,0.0864,0.0634,0.0968,0.0785,0.081,0.0883,0.0629,0.0642,0.0724,0.0918,0.0922,0.0746,0.0857,0.0678,0.0972,0.0706,0.0817,0.0863,0.0682,0.065,0.073,0.085,0.0933,0.0718,0.0864,0.0686,0.095,0.0706,0.0806,0.0884,0.0646
8370,37,0.0717,0.0759,0.0953,0.0881,0.0724,0.0856,0.0624,0.0977,0.0719,0.0806,0.0878,0.0676,0.067,0.0791,0.0998,0.088,0.0722,0.0868,0.0688,0.0956,0.0712,0.0813,0.0877,0.0625,0.0634,0.0716,0.0977,0.0912,0.0721,0.0863,0.0667,0.0959,0.0699,0.0809,0.0837,0.0644,0.0655,0.0729,0.0996,0.088,0.0742,0.0883,0.0628,0.1008,0.0931,0.0816,0.0869,0.0662,0.0645,0.0731,0.0905,0.0936,0.0732,0.0848,0.0666,0.0971,0.0726,0.0829,0.0848,0.0655,0.0635,0.0714,0.0885,0.0934,0.072,0.0858,0.0649,0.0974,0.0782,0.0812,0.0887,0.0637,0.0641,0.0724,0.0925,0.0935,0.0748,0.086,0.0674,0.0974,0.0703,0.0818,0.0864,0.0695,0.0649,0.0732,0.0853,0.0942,0.0717,0.0864,0.0684,0.0955,0.0708,0.0804,0.0886,0.0679
8460,37,0.0732,0.074,0.0962,0.0888,0.0726,0.0864,0.067,0.0982,0.0717,0.0806,0.0874,0.0624,0.0678,0.0776,0.097,0.0891,0.0719,0.0876,0.061,0.0956,0.0706,0.0815,0.088,0.0643,0.0642,0.0722,0.0986,0.092,0.0728,0.087,0.072,0.0964,0.0698,0.0811,0.084,0.064,0.0653,0.0725,0.1006,0.0894,0.0745,0.0889,0.0624,0.101,0.0931,0.082,0.0875,0.0633,0.0645,0.0734,0.0909,0.0943,0.0736,0.085,0.0652,0.0982,0.073,0.0837,0.0857,0.0718,0.0653,0.0712,0.0884,0.0943,0.0722,0.0863,0.0688,0.0983,0.0786,0.0815,0.0892,0.0608,0.0651,0.0722,0.0921,0.093,0.0746,0.0862,0.0613,0.0984,0.0711,0.0826,0.0874,0.0711,0.0672,0.0726,0.0853,0.0942,0.0721,0.0873,0.0704,0.0961,0.0707,0.0809,0.0894,0.067
8550,37,0.0742,0.0718,0.0961,0.0886,0.0715,0.086,0.0669,0.0982,0.0714,0.0806,0.088,0.0643,0.0671,0.0772,0.0969,0.0884,0.0717,0.0874,0.0674,0.0958,0.0708,0.0815,0.088,0.0652,0.0615,0.0708,0.0991,0.0918,0.0718,0.0869,0.0706,0.0966,0.0697,0.0812,0.0844,0.0684,0.0662,0.0721,0.0998,0.0888,0.0736,0.0886,0.0644,0.1017,0.0936,0.0818,0.0876,0.0628,0.0626,0.0722,0.0904,0.0937,0.0727,0.0848,0.0623,0.0981,0.0728,0.0832,0.0854,0.0708,0.0639,0.0707,0.0879,0.0935,0.0718,0.0861,0.0685,0.0983,0.0782,0.0814,0.0889,0.06,0.063,0.0718,0.0921,0.0932,0.0737,0.0857,0.0647,0.0979,0.0705,0.0818,0.0868,0.0655,0.0682,0.0729,0.0852,0.0942,0.0717,0.0869,0.0693,0.0956,0.0698,0.0807,0.0893,0.0673
8640,37,0.0762,0.0726,0.0965,0.0889,0.0718,0.0857,0.0619,0.0989,0.0717,0.0809,0.0883,0.0667,0.0677,0.0773,0.1016,0.0887,0.0717,0.0868,0.0693,0.0965,0.0708,0.0813,0.0887,0.0658,0.065,0.0703,0.0984,0.0914,0.0714,0.0868,0.0648,0.0973,0.0702,0.0813,0.084,0.063,0.0689,0.0719,0.1001,0.0892,0.0734,0.0883,0.0612,0.1024,0.0928,0.0818,0.0875,0.0656,0.0628,0.0721,0.0909,0.0949,0.0734,0.0857,0.0716,0.0981,0.0724,0.083,0.0844,0.0637,0.0614,0.0705,0.0889,0.0951,0.0714,0.0864,0.0598,0.0982,0.0696,0.0809,0.0895,0.0649,0.0642,0.0717,0.0933,0.0957,0.0751,0.0869,0.0702,0.0986,0.0695,0.0813,0.087,0.065,0.067,0.0724,0.0863,0.096,0.0712,0.087,0.0624,0.0954,0.0691,0.0806,0.0892,0.0683
8730,37,0.0753,0.0739,0.0979,0.0908,0.073,0.0869,0.0622,0.0993,0.0718,0.0814,0.0893,0.0642,0.0705,0.0786,0.0981,0.0893,0.0722,0.0878,0.0703,0.0972,0.0716,0.0825,0.0895,0.0637,0.0665,0.0716,0.0998,0.093,0.0723,0.088,0.0685,0.0987,0.071,0.0826,0.0847,0.0644,0.0657,0.0723,0.1011,0.0899,0.0745,0.0896,0.0638,0.1025,0.0929,0.0825,0.0884,0.0662,0.0633,0.0728,0.092,0.0961,0.074,0.0865,0.0709,0.0999,0.0732,0.0839,0.0855,0.0617,0.0637,0.0707,0.0899,0.0962,0.0726,0.0873,0.0618,0.0997,0.079,0.0816,0.09,0.0627,0.0624,0.0722,0.094,0.0958,0.0751,0.0872,0.0694,0.1002,0.0708,0.0823,0.088,0.0672,0.0686,0.0727,0.0871,0.0969,0.0723,0.0879,0.0671,0.0972,0.0704,0.0815,0.0902,0.0688
8820,37,0.0728,0.0729,0.0978,0.0901,0.0719,0.0867,0.0644,0.1006,0.0724,0.082,0.0916,0.0675,0.0678,0.0779,0.0992,0.0902,0.0721,0.088,0.0721,0.0983,0.0715,0.0826,0.0898,0.0604,0.0631,0.0711,0.1004,0.0934,0.0723,0.0885,0.0688,0.099,0.0705,0.0824,0.0853,0.0624,0.0697,0.0727,0.1012,0.091,0.0743,0.0898,0.0646,0.1036,0.093,0.0825,0.089,0.0654,0.0629,0.0726,0.0926,0.0963,0.0736,0.0863,0.0685,0.1,0.073,0.084,0.0861,0.0661,0.0648,0.0712,0.0902,0.0962,0.0722,0.0877,0.0648,0.1002,0.0789,0.0821,0.0905,0.0616,0.0648,0.0723,0.0945,0.0956,0.0746,0.0869,0.0647,0.0996,0.0706,0.0828,0.0883,0.068,0.068,0.0732,0.0866,0.096,0.072,0.0882,0.0695,0.0981,0.07,0.0817,0.0906,0.0651
8910,37,0.0735,0.073,0.1005,0.0909,0.0725,0.0872,0.0632,0.1008,0.0718,0.081,0.0897,0.0665,0.068,0.078,0.0991,0.091,0.0723,0.0884,0.0616,0.098,0.0712,0.0825,0.0899,0.0635,0.0641,0.0721,0.1005,0.0941,0.0728,0.0882,0.0712,0.099,0.0699,0.082,0.0852,0.0642,0.0685,0.0727,0.1015,0.0915,0.074,0.0901,0.0631,0.1043,0.0933,0.0826,0.0891,0.068,0.0647,0.0736,0.0934,0.097,0.0741,0.0863,0.0671,0.0997,0.0724,0.0837,0.0861,0.0649,0.065,0.0715,0.0904,0.0976,0.072,0.0881,0.0637,0.1004,0.0726,0.0822,0.091,0.065,0.063,0.0726,0.0952,0.097,0.0755,0.0876,0.0692,0.1004,0.07,0.0822,0.0885,0.0674,0.067,0.0735,0.0875,0.0973,0.0722,0.0884,0.0654,0.0979,0.0704,0.082,0.091,0.0674
9000,37,0.0727,0.0731,0.0994,0.0911,0.0723,0.0873,0.0643,0.1011,0.0718,0.0818,0.0899,0.0638,0.068,0.0773,0.0998,0.091,0.0721,0.089,0.0666,0.0987,0.0712,0.0828,0.0903,0.0624,0.063,0.0723,0.1012,0.0951,0.0729,0.0893,0.0729,0.0997,0.0705,0.0826,0.0858,0.0648,0.065,0.0726,0.1024,0.0913,0.0741,0.0904,0.0596,0.1044,0.0924,0.0833,0.0894,0.0662,0.0633,0.0728,0.0937,0.0977,0.0739,0.087,0.0718,0.101,0.0727,0.0845,0.0866,0.0658,0.0645,0.0707,0.091,0.0981,0.0725,0.0888,0.0618,0.1008,0.0712,0.0825,0.0908,0.0628,0.0618,0.0727,0.0956,0.0974,0.0751,0.088,0.0705,0.1009,0.0701,0.0828,0.0888,0.0675,0.0697,0.0727,0.0882,0.0986,0.0721,0.0887,0.0628,0.0984,0.0698,0.0819,0.0913,0.0696
9090,37,0.0759,0.0739,0.0995,0.0914,0.0721,0.0871,0.063,0.1014,0.0715,0.0825,0.0911,0.0712,0.0675,0.0803,0.0993,0.0916,0.072,0.0884,0.0734,0.0997,0.0714,0.0831,0.0914,0.0618,0.0647,0.0715,0.1005,0.0941,0.0716,0.0892,0.0629,0.1012,0.0707,0.0832,0.0862,0.0667,0.0656,0.072,0.1022,0.0909,0.0737,0.0905,0.0692,0.1057,0.093,0.0836,0.0898,0.0621,0.0628,0.0724,0.0935,0.0975,0.0734,0.0872,0.0673,0.1017,0.073,0.0847,0.0864,0.0626,0.0639,0.0712,0.0911,0.0978,0.0722,0.0883,0.063,0.1014,0.0782,0.0825,0.0915,0.0645,0.0647,0.0727,0.0962,0.0976,0.0752,0.0884,0.0696,0.1016,0.0702,0.0828,0.0889,0.0641,0.0678,0.0732,0.088,0.098,0.072,0.0888,0.0637,0.099,0.0695,0.0822,0.0913,0.0689
9180,37,0.0759,0.0749,0.0989,0.0912,0.0718,0.0871,0.0624,0.1013,0.0712,0.0816,0.0906,0.0676,0.0696,0.0778,0.1007,0.0913,0.0718,0.088,0.0696,0.0996,0.0709,0.0828,0.0906,0.0668,0.0655,0.0709,0.1002,0.0945,0.0715,0.0889,0.0659,0.0999,0.0699,0.0825,0.0855,0.0611,0.065,0.0724,0.1024,0.0914,0.0736,0.0903,0.0599,0.1054,0.0923,0.0829,0.0893,0.0639,0.0629,0.0727,0.0941,0.0978,0.0735,0.0872,0.0708,0.1011,0.0721,0.0844,0.0859,0.0627,0.062,0.071,0.0914,0.0985,0.0715,0.088,0.0603,0.1011,0.0777,0.0818,0.0908,0.0637,0.0634,0.0723,0.0962,0.0979,0.0749,0.0882,0.0695,0.1014,0.0696,0.0825,0.0891,0.0679,0.0702,0.0729,0.0879,0.0986,0.0716,0.0888,0.062,0.0989,0.0702,0.0815,0.0912,0.0683
9270,37,0.0725,0.073,0.0992,0.0915,0.0718,0.0881,0.0653,0.1018,0.0716,0.082,0.0905,0.0649,0.0665,0.0768,0.1007,0.092,0.0717,0.0894,0.0663,0.1001,0.0704,0.0832,0.0904,0.0653,0.0617,0.0717,0.1016,0.096,0.0723,0.0894,0.0712,0.1009,0.0703,0.0828,0.086,0.0625,0.0657,0.0721,0.1032,0.0924,0.0733,0.0913,0.0598,0.106,0.0917,0.0835,0.0896,0.065,0.0633,0.0731,0.0947,0.0984,0.0733,0.0874,0.0718,0.1017,0.0725,0.0846,0.0871,0.0673,0.0624,0.0707,0.0915,0.0989,0.0718,0.089,0.0624,0.1022,0.07,0.0826,0.0915,0.0614,0.0628,0.0723,0.0959,0.0977,0.074,0.0881,0.063,0.1019,0.0703,0.0832,0.0896,0.0691,0.0668,0.0726,0.0883,0.0983,0.0719,0.0892,0.0686,0.0998,0.0702,0.0819,0.0914,0.0633
9360,37,0.0724,0.0732,0.1018,0.0928,0.0723,0.0888,0.0673,0.103,0.0719,0.0829,0.0917,0.0656,0.0679,0.0788,0.1035,0.0931,0.0719,0.0897,0.0678,0.101,0.0714,0.0835,0.092,0.0625,0.0628,0.0717,0.1017,0.0965,0.0725,0.0902,0.0705,0.1016,0.0703,0.0832,0.087,0.0663,0.0657,0.0728,0.1035,0.0932,0.0743,0.0916,0.0617,0.107,0.0932,0.0841,0.0908,0.0664,0.0631,0.0734,0.095,0.0992,0.0738,0.0879,0.066,0.1024,0.0728,0.0852,0.0878,0.0685,0.063,0.0714,0.0924,0.0995,0.0722,0.089,0.0642,0.103,0.0772,0.0835,0.0926,0.0621,0.0633,0.0731,0.0975,0.099,0.0747,0.0891,0.0689,0.1024,0.0704,0.0836,0.0898,0.0649,0.0672,0.0735,0.089,0.1,0.0721,0.0899,0.0634,0.1007,0.0702,0.0835,0.0926,0.0669
9450,37,0.077,0.0727,0.0998,0.0924,0.0717,0.0879,0.0625,0.1025,0.0714,0.0822,0.0914,0.0631,0.0722,0.0778,0.1004,0.0927,0.0719,0.0895,0.069,0.1009,0.071,0.0831,0.0917,0.0646,0.0643,0.0715,0.1007,0.0963,0.0719,0.0899,0.0677,0.1013,0.0701,0.0832,0.0866,0.0626,0.0668,0.0722,0.1027,0.0933,0.0738,0.0909,0.0604,0.1065,0.0926,0.0835,0.0903,0.0666,0.0637,0.073,0.0955,0.0996,0.0736,0.088,0.071,0.1022,0.072,0.0847,0.087,0.0637,0.0622,0.0712,0.0927,0.101,0.0718,0.0887,0.0599,0.1024,0.0696,0.0826,0.0924,0.0628,0.0633,0.0724,0.0981,0.1,0.0751,0.0893,0.0694,0.1027,0.0698,0.0832,0.0902,0.0659,0.0644,0.073,0.0896,0.1006,0.0715,0.0896,0.0606,0.1003,0.0698,0.0827,0.0924,0.0672
9540,37,0.0747,0.0727,0.1009,0.0938,0.0724,0.089,0.0631,0.1032,0.0718,0.0828,0.0921,0.0641,0.0677,0.077,0.1033,0.0935,0.072,0.0899,0.0676,0.1017,0.0707,0.0838,0.0918,0.066,0.0623,0.0717,0.1017,0.0978,0.0724,0.0901,0.0736,0.1022,0.0701,0.0833,0.0868,0.0608,0.0671,0.0716,0.1031,0.0949,0.0737,0.0914,0.0597,0.1067,0.0928,0.0838,0.091,0.0649,0.0637,0.0732,0.096,0.1003,0.0736,0.0883,0.0704,0.1033,0.0728,0.0853,0.0881,0.0686,0.0621,0.0706,0.093,0.1005,0.0722,0.0896,0.0651,0.1033,0.0784,0.0832,0.0927,0.062,0.0666,0.0724,0.0969,0.0986,0.0737,0.0891,0.0593,0.1035,0.071,0.0846,0.0913,0.0707,0.0711,0.0725,0.0891,0.1,0.0721,0.0902,0.0696,0.102,0.0708,0.0824,0.0929,0.0669
9630,37,0.0732,0.0723,0.101,0.0943,0.0724,0.0896,0.0669,0.1032,0.0712,0.0824,0.0928,0.063,0.067,0.0773,0.1012,0.0945,0.0719,0.0906,0.0666,0.1018,0.071,0.0836,0.0923,0.0679,0.0643,0.0721,0.1016,0.0984,0.0722,0.0898,0.0627,0.1025,0.0695,0.0835,0.0881,0.0715,0.0662,0.0724,0.104,0.0943,0.0738,0.0916,0.0714,0.1076,0.093,0.0841,0.0917,0.0608,0.0647,0.0728,0.0948,0.0992,0.0724,0.0877,0.0598,0.1041,0.0732,0.0861,0.0885,0.0732,0.0664,0.0714,0.0929,0.0999,0.0718,0.0888,0.0711,0.1045,0.0717,0.0836,0.0934,0.0597,0.0662,0.0721,0.0973,0.0991,0.0734,0.0892,0.0599,0.1038,0.071,0.0842,0.091,0.0692,0.0688,0.0728,0.0895,0.1005,0.0718,0.0911,0.0673,0.1019,0.0702,0.0822,0.0928,0.0704
9720,37,0.0753,0.0725,0.1012,0.095,0.0728,0.0898,0.0624,0.1027,0.071,0.0822,0.0918,0.064,0.0684,0.0801,0.103,0.0948,0.0722,0.0905,0.061,0.1017,0.0711,0.0833,0.0929,0.0682,0.0644,0.0724,0.1019,0.0992,0.0726,0.0898,0.0623,0.1028,0.0694,0.0837,0.0883,0.0696,0.0656,0.073,0.1044,0.0948,0.0738,0.0915,0.0654,0.1076,0.0935,0.0846,0.0922,0.0605,0.0667,0.0736,0.0957,0.1,0.0728,0.0882,0.0597,0.1048,0.0735,0.0865,0.0887,0.0725,0.0658,0.071,0.0932,0.1002,0.0719,0.0902,0.0684,0.104,0.0724,0.0832,0.0936,0.0598,0.0631,0.0716,0.0979,0.1006,0.0744,0.0898,0.0617,0.1046,0.0712,0.0848,0.0918,0.0688,0.0686,0.0722,0.0904,0.102,0.072,0.0908,0.0658,0.1019,0.0702,0.0823,0.0932,0.0674
9810,37,0.0753,0.075,0.1024,0.096,0.0729,0.0905,0.0668,0.1034,0.0711,0.0829,0.093,0.0631,0.0669,0.0766,0.1023,0.0962,0.0725,0.091,0.0592,0.1022,0.0705,0.0837,0.0936,0.0663,0.0648,0.0725,0.1023,0.0998,0.0722,0.0905,0.0646,0.1037,0.0696,0.0841,0.0889,0.0747,0.0661,0.0727,0.1043,0.0952,0.0738,0.092,0.0696,0.1077,0.0932,0.0847,0.0926,0.0624,0.0635,0.073,0.0963,0.1008,0.0726,0.0884,0.0608,0.1059,0.0741,0.0867,0.0893,0.072,0.0669,0.0708,0.0935,0.1014,0.0722,0.0909,0.0697,0.1052,0.0788,0.0838,0.0941,0.0598,0.0629,0.0713,0.0981,0.1002,0.0738,0.09,0.0611,0.1048,0.0715,0.0852,0.0921,0.0689,0.0694,0.0715,0.0913,0.1024,0.0722,0.0915,0.068,0.1022,0.0701,0.0828,0.0938,0.0666
9900,37,0.0735,0.0737,0.1025,0.0967,0.0728,0.0905,0.0621,0.1041,0.0716,0.0839,0.0946,0.0713,0.0673,0.0785,0.1029,0.0971,0.0725,0.092,0.0664,0.1038,0.0715,0.0851,0.0945,0.061,0.0645,0.0727,0.1025,0.1004,0.0726,0.091,0.0602,0.1045,0.0702,0.0851,0.0899,0.075,0.0678,0.0738,0.1046,0.0963,0.0742,0.0927,0.0741,0.1088,0.0928,0.0857,0.0938,0.0599,0.0662,0.0734,0.0967,0.1014,0.0725,0.089,0.0606,0.1064,0.074,0.0875,0.0903,0.0773,0.0665,0.0721,0.0946,0.1013,0.0726,0.0915,0.0721,0.1059,0.0785,0.0847,0.0954,0.0602,0.0666,0.0722,0.0989,0.1011,0.0744,0.0907,0.0606,0.1053,0.0717,0.0856,0.0929,0.0663,0.0698,0.0726,0.0915,0.1026,0.0726,0.0923,0.0667,0.1032,0.0702,0.0841,0.0946,0.0687
9990,37,0.0766,0.0735,0.1024,0.0971,0.0731,0.0911,0.0642,0.1036,0.0711,0.0829,0.0937,0.0653,0.07,0.0781,0.1057,0.0966,0.0724,0.0918,0.0634,0.1032,0.0708,0.0842,0.0947,0.0666,0.066,0.0725,0.1023,0.1009,0.0723,0.0907,0.0611,0.1042,0.0698,0.0847,0.0897,0.0747,0.0668,0.0731,0.1046,0.0962,0.0741,0.0919,0.0684,0.1082,0.0934,0.0849,0.0934,0.0631,0.0667,0.0733,0.097,0.1017,0.0726,0.0893,0.0611,0.1056,0.0737,0.0872,0.0893,0.0685,0.0666,0.071,0.0944,0.1024,0.0721,0.0907,0.0671,0.1051,0.078,0.0839,0.0952,0.0607,0.0632,0.0715,0.0995,0.1024,0.0747,0.0909,0.0636,0.1052,0.071,0.0852,0.0928,0.0665,0.0702,0.0723,0.092,0.1032,0.0721,0.0922,0.0638,0.1026,0.07,0.0832,0.0946,0.0696
10080,37,0.0773,0.0745,0.1029,0.098,0.0733,0.0919,0.0629,0.1038,0.0713,0.0839,0.0947,0.0625,0.0688,0.0782,0.1065,0.0978,0.0728,0.0924,0.0653,0.1039,0.0723,0.0851,0.0957,0.0642,0.066,0.0731,0.1034,0.1015,0.0724,0.0925,0.0593,0.1056,0.0707,0.0861,0.0905,0.0682,0.0685,0.0734,0.1048,0.0974,0.0744,0.0936,0.0715,0.1092,0.0936,0.0857,0.0947,0.061,0.0648,0.0732,0.0979,0.1028,0.0729,0.09,0.0632,0.107,0.0743,0.0881,0.0907,0.0688,0.0665,0.0712,0.0946,0.1034,0.0729,0.0919,0.0693,0.1061,0.071,0.0846,0.0958,0.0611,0.0618,0.0717,0.1003,0.1027,0.0753,0.0918,0.0633,0.1063,0.0717,0.0856,0.0939,0.0649,0.0708,0.072,0.0933,0.1041,0.0727,0.0929,0.0625,0.1035,0.0702,0.0842,0.0958,0.0684
10170,37,0.0775,0.0739,0.1035,0.0979,0.0723,0.091,0.0626,0.1047,0.0718,0.0843,0.0956,0.0695,0.0722,0.0774,0.1026,0.0973,0.0727,0.0926,0.0739,0.1047,0.0712,0.0859,0.0961,0.0631,0.0652,0.0721,0.1032,0.101,0.0719,0.0922,0.0627,0.1058,0.0707,0.0862,0.0912,0.0708,0.0696,0.0735,0.1041,0.0977,0.0741,0.0938,0.0738,0.1097,0.0935,0.0859,0.0951,0.061,0.0622,0.0723,0.0982,0.1032,0.0729,0.0903,0.0629,0.1069,0.0739,0.0879,0.0901,0.0637,0.0663,0.0718,0.0958,0.1037,0.073,0.092,0.0683,0.1062,0.0794,0.0849,0.0963,0.0616,0.0657,0.072,0.1006,0.1032,0.0753,0.0924,0.0656,0.1056,0.0711,0.0856,0.0941,0.066,0.0702,0.0727,0.0935,0.1038,0.0726,0.0928,0.0628,0.1033,0.0696,0.0858,0.0963,0.0687
10260,37,0.077,0.0772,0.1024,0.0983,0.0727,0.0916,0.0617,0.1041,0.0716,0.0844,0.096,0.0699,0.0719,0.0796,0.1031,0.0988,0.0727,0.0926,0.0694,0.1052,0.0716,0.0858,0.0968,0.0653,0.0648,0.072,0.1031,0.101,0.0721,0.0934,0.0627,0.1057,0.0711,0.0864,0.0908,0.0653,0.0692,0.0732,0.1045,0.0984,0.0743,0.0945,0.0673,0.1095,0.0931,0.0874,0.0948,0.0656,0.0632,0.0728,0.0996,0.1049,0.0742,0.0915,0.0703,0.1058,0.073,0.0876,0.0899,0.065,0.0635,0.0714,0.0972,0.1056,0.0725,0.0925,0.0601,0.1054,0.0783,0.0849,0.097,0.0671,0.0626,0.0729,0.1021,0.1045,0.0758,0.0928,0.0695,0.1053,0.0702,0.0857,0.0943,0.0657,0.0682,0.0734,0.094,0.1042,0.0721,0.0926,0.0629,0.1035,0.0703,0.0857,0.0968,0.0693
10350,37,0.0736,0.0738,0.1027,0.0987,0.073,0.0925,0.0668,0.105,0.0726,0.085,0.0965,0.065,0.0686,0.0775,0.1034,0.0987,0.0726,0.0935,0.0684,0.1049,0.071,0.0861,0.0968,0.0654,0.0645,0.0721,0.1039,0.1023,0.0728,0.0945,0.0709,0.1059,0.0715,0.0863,0.09,0.0642,0.0649,0.0729,0.1054,0.099,0.0746,0.0952,0.0612,0.1094,0.0928,0.0867,0.0951,0.0675,0.0637,0.073,0.1005,0.1056,0.0742,0.0918,0.0705,0.1062,0.0734,0.0878,0.0908,0.0617,0.0643,0.0712,0.0977,0.1057,0.0729,0.0928,0.0605,0.1053,0.0788,0.0853,0.0971,0.063,0.0621,0.0727,0.1019,0.1041,0.0755,0.0932,0.0692,0.1056,0.0709,0.0861,0.0951,0.0684,0.0683,0.0731,0.0948,0.1041,0.0726,0.0937,0.0624,0.104,0.0703,0.0849,0.0972,0.0677
10440,37,0.0752,0.0734,0.1027,0.099,0.0724,0.0925,0.0628,0.1049,0.0721,0.0852,0.0972,0.0679,0.0674,0.0778,0.1048,0.0991,0.0726,0.0935,0.073,0.1052,0.0718,0.0863,0.0975,0.064,0.0669,0.0718,0.104,0.1018,0.0722,0.0943,0.0638,0.1059,0.0713,0.0871,0.0919,0.07,0.0682,0.0732,0.105,0.0994,0.0744,0.0952,0.0698,0.1102,0.0931,0.087,0.096,0.0621,0.0627,0.0727,0.0997,0.1054,0.0735,0.0921,0.066,0.1071,0.0735,0.0883,0.0911,0.0626,0.0637,0.0717,0.0977,0.104,0.0728,0.0932,0.0599,0.1059,0.079,0.0857,0.0979,0.0642,0.0626,0.0726,0.1018,0.104,0.0752,0.0936,0.0676,0.106,0.0705,0.0862,0.0952,0.0635,0.0692,0.0731,0.0955,0.1047,0.0724,0.0938,0.0604,0.1035,0.0694,0.085,0.0975,0.0677
10530,37,0.0772,0.0742,0.1032,0.0998,0.073,0.0928,0.0612,0.1045,0.0716,0.0846,0.0969,0.0678,0.0721,0.08,0.1037,0.0996,0.0726,0.0936,0.0674,0.1051,0.0718,0.0863,0.0979,0.0653,0.0686,0.072,0.1038,0.102,0.0719,0.0943,0.0631,0.1059,0.0709,0.087,0.0917,0.0648,0.0683,0.0738,0.1056,0.1003,0.0743,0.0957,0.0678,0.1103,0.0927,0.0869,0.0962,0.066,0.063,0.073,0.101,0.106,0.0739,0.0926,0.068,0.1069,0.0734,0.0887,0.0912,0.0633,0.0656,0.0713,0.0981,0.1064,0.073,0.093,0.0602,0.1061,0.0709,0.0855,0.0981,0.0679,0.0619,0.0723,0.1021,0.1048,0.0758,0.0941,0.0666,0.1063,0.0706,0.0861,0.0957,0.0623,0.069,0.0729,0.0962,0.1052,0.0722,0.0942,0.0603,0.1037,0.0704,0.085,0.0978,0.0708
10620,37,0.0763,0.0741,0.1037,0.1006,0.0732,0.0938,0.06,0.1046,0.0718,0.0854,0.0993,0.064,0.0725,0.0775,0.1035,0.1006,0.073,0.0944,0.065,0.1051,0.0714,0.0867,0.098,0.0647,0.0638,0.0726,0.1041,0.1028,0.0724,0.0949,0.0664,0.1065,0.0711,0.0874,0.0919,0.0659,0.0713,0.073,0.1047,0.1008,0.0743,0.0959,0.0633,0.1102,0.0925,0.0873,0.0966,0.065,0.0627,0.0727,0.1017,0.1068,0.0743,0.0928,0.0706,0.1068,0.0734,0.0887,0.0917,0.0617,0.0632,0.0719,0.099,0.1064,0.0729,0.0938,0.059,0.1063,0.0788,0.0858,0.0985,0.065,0.0618,0.0729,0.1028,0.1048,0.0757,0.0942,0.0683,0.106,0.0707,0.0867,0.0965,0.0664,0.0691,0.073,0.0965,0.1048,0.0727,0.0948,0.0616,0.1044,0.0706,0.0854,0.0981,0.0672
10710,37,0.0726,0.0749,0.1032,0.1002,0.0722,0.0933,0.0631,0.1053,0.0725,0.0862,0.0989,0.0681,0.0675,0.0771,0.1056,0.1004,0.0726,0.0945,0.073,0.106,0.0722,0.0873,0.0986,0.0638,0.0635,0.0719,0.105,0.1031,0.0727,0.0956,0.068,0.1066,0.071,0.0873,0.0924,0.0625,0.0679,0.0728,0.1062,0.1014,0.0742,0.0963,0.064,0.1105,0.0935,0.0873,0.0974,0.0658,0.0628,0.0735,0.1017,0.1071,0.0742,0.0926,0.0692,0.1064,0.0731,0.0887,0.0923,0.0657,0.0631,0.0724,0.0997,0.1074,0.0727,0.0942,0.0645,0.1067,0.0795,0.0868,0.0997,0.0615,0.0662,0.0733,0.103,0.1046,0.0752,0.0943,0.0678,0.1055,0.0705,0.0872,0.0966,0.0661,0.0693,0.0739,0.096,0.1042,0.0725,0.095,0.0638,0.1045,0.0699,0.086,0.099,0.0717
10800,37,0.0768,0.0751,0.1031,0.1006,0.0727,0.0937,0.0625,0.1049,0.0722,0.086,0.099,0.0689,0.071,0.0778,0.1044,0.101,0.0726,0.0952,0.0686,0.1058,0.0723,0.0877,0.0991,0.0653,0.0667,0.0724,0.1049,0.1032,0.0724,0.0957,0.0668,0.106,0.0711,0.0875,0.0923,0.0631,0.0693,0.0732,0.1063,0.1023,0.0748,0.0967,0.0603,0.1104,0.0921,0.0877,0.0975,0.0686,0.0657,0.0743,0.1024,0.1077,0.0744,0.0934,0.0715,0.1061,0.073,0.0889,0.0926,0.0645,0.0614,0.0715,0.1003,0.1073,0.0727,0.0941,0.061,0.1064,0.0782,0.0868,0.1,0.0636,0.063,0.0734,0.1035,0.1051,0.0754,0.095,0.0682,0.1059,0.0707,0.0876,0.0975,0.0677,0.0677,0.0741,0.0964,0.1048,0.0724,0.0957,0.0649,0.1047,0.0706,0.0863,0.0994,0.0676
10890,37,0.0733,0.0745,0.1043,0.1016,0.0731,0.0955,0.0699,0.1058,0.0727,0.0864,0.099,0.0632,0.0677,0.0763,0.1052,0.102,0.0727,0.0961,0.0632,0.1056,0.0717,0.0877,0.099,0.0678,0.0633,0.0727,0.1056,0.1043,0.0734,0.0959,0.0752,0.1061,0.0705,0.0874,0.0931,0.0621,0.0668,0.0727,0.1072,0.1027,0.0748,0.097,0.06,0.1104,0.093,0.0881,0.0979,0.0664,0.0639,0.0741,0.1029,0.1079,0.0742,0.0934,0.0699,0.1068,0.0732,0.0895,0.0936,0.07,0.0636,0.0718,0.1004,0.1079,0.073,0.0951,0.0656,0.1071,0.0792,0.0874,0.1004,0.062,0.0658,0.0734,0.1035,0.1049,0.075,0.095,0.0632,0.106,0.0713,0.0883,0.0981,0.0698,0.0678,0.0738,0.0964,0.1048,0.0726,0.0961,0.0713,0.1056,0.0712,0.0864,0.0998,0.0655
10980,37,0.0717,0.0732,0.1035,0.1014,0.0726,0.0948,0.0659,0.1057,0.0728,0.0873,0.1002,0.0669,0.0678,0.0816,0.1034,0.1015,0.0728,0.096,0.068,0.1062,0.0718,0.088,0.0998,0.0615,0.0625,0.0724,0.105,0.1037,0.0732,0.0965,0.0705,0.1062,0.0705,0.0877,0.0934,0.065,0.0665,0.073,0.1076,0.1033,0.0748,0.0968,0.0648,0.1107,0.0936,0.0886,0.0987,0.0634,0.0636,0.074,0.1027,0.1079,0.074,0.0936,0.0652,0.1065,0.0733,0.0897,0.0938,0.0694,0.063,0.0724,0.1009,0.1077,0.0728,0.0953,0.0663,0.107,0.0793,0.0876,0.1006,0.0616,0.0659,0.0734,0.1037,0.1052,0.0749,0.0955,0.066,0.106,0.0709,0.0884,0.0984,0.0678,0.0697,0.0735,0.0971,0.1047,0.0727,0.0962,0.0665,0.1055,0.0704,0.0865,0.0999,0.068
11070,37,0.0757,0.074,0.1036,0.1016,0.0728,0.0949,0.0632,0.1058,0.0726,0.0866,0.1007,0.0639,0.0684,0.077,0.1049,0.1022,0.073,0.0959,0.0697,0.106,0.0719,0.0882,0.1001,0.0669,0.0642,0.0727,0.105,0.1041,0.073,0.0968,0.0707,0.1064,0.0707,0.088,0.0937,0.0618,0.0679,0.0736,0.1068,0.1039,0.0748,0.0978,0.0598,0.1107,0.0924,0.0884,0.0987,0.0693,0.0644,0.0741,0.1034,0.1088,0.0748,0.0947,0.0707,0.107,0.0731,0.0901,0.0939,0.0646,0.0626,0.0716,0.1015,0.1083,0.0727,0.0955,0.062,0.1066,0.0788,0.0872,0.1009,0.0638,0.0633,0.0732,0.104,0.1061,0.0758,0.0963,0.0693,0.1068,0.0707,0.0885,0.0988,0.0679,0.0677,0.0739,0.0985,0.106,0.0725,0.0967,0.0645,0.1055,0.071,0.0867,0.1006,0.0693
11160,37,0.0753,0.0732,0.1037,0.1016,0.0727,0.0954,0.0641,0.1052,0.0724,0.0869,0.0998,0.0649,0.0684,0.076,0.1047,0.1023,0.0724,0.0961,0.0679,0.1054,0.0711,0.0883,0.1,0.0645,0.0625,0.0716,0.1052,0.1038,0.0725,0.0972,0.0718,0.1064,0.0714,0.0883,0.0934,0.0642,0.0693,0.0724,0.1062,0.1043,0.0744,0.0975,0.0614,0.1107,0.0928,0.0882,0.0987,0.0649,0.0639,0.0737,0.1034,0.108,0.0744,0.0939,0.0703,0.1072,0.0733,0.0898,0.094,0.0665,0.0628,0.0713,0.1014,0.1081,0.0725,0.0959,0.0672,0.107,0.0792,0.0874,0.1009,0.0608,0.0655,0.0725,0.1033,0.1054,0.0751,0.0961,0.0692,0.1064,0.0708,0.0883,0.1,0.0686,0.0672,0.0729,0.098,0.1054,0.0723,0.0968,0.0683,0.1052,0.0705,0.0868,0.1004,0.0654
11250,37,0.0764,0.0728,0.1034,0.1017,0.0724,0.095,0.0629,0.1055,0.0723,0.087,0.1008,0.0678,0.0686,0.0762,0.1044,0.102,0.0726,0.0967,0.0734,0.1059,0.072,0.0885,0.1006,0.0614,0.064,0.0712,0.1048,0.1034,0.0722,0.0971,0.0656,0.1067,0.071,0.0886,0.094,0.0629,0.0679,0.0731,0.1068,0.1041,0.0737,0.098,0.0665,0.1108,0.0928,0.0893,0.0994,0.0638,0.0626,0.0729,0.1024,0.1079,0.0737,0.0945,0.0698,0.1069,0.0731,0.09,0.0936,0.0636,0.0631,0.0716,0.1014,0.1086,0.0724,0.0957,0.0632,0.1069,0.0706,0.0877,0.101,0.0632,0.063,0.0724,0.1035,0.1059,0.0752,0.0964,0.0692,0.1062,0.0702,0.0883,0.0988,0.0652,0.0697,0.0728,0.0986,0.1054,0.0721,0.0968,0.0626,0.1049,0.07,0.0869,0.1007,0.0687
11340,37,0.076,0.0751,0.1031,0.101,0.0723,0.095,0.0621,0.1049,0.0718,0.087,0.1007,0.0675,0.0678,0.0765,0.108,0.1028,0.0719,0.0967,0.0681,0.1053,0.0714,0.0884,0.101,0.0646,0.0628,0.072,0.105,0.1041,0.0725,0.0973,0.0683,0.1059,0.0705,0.0885,0.0945,0.0608,0.0681,0.073,0.1073,0.1048,0.0742,0.0982,0.0598,0.1104,0.0931,0.0887,0.0997,0.0676,0.0637,0.0738,0.1032,0.1085,0.0743,0.0952,0.0722,0.1065,0.0729,0.0903,0.094,0.0636,0.0635,0.0712,0.1022,0.1093,0.072,0.096,0.0618,0.1066,0.0788,0.0876,0.1015,0.0627,0.0645,0.0729,0.104,0.1065,0.0757,0.0971,0.069,0.1065,0.0705,0.089,0.0993,0.067,0.0656,0.0738,0.0983,0.1055,0.0724,0.0976,0.0685,0.1051,0.0709,0.087,0.1009,0.0668
11430,37,0.073,0.0752,0.1046,0.1028,0.0731,0.0972,0.0699,0.1063,0.0727,0.0878,0.1008,0.064,0.0691,0.0765,0.1049,0.1043,0.073,0.0979,0.0656,0.1065,0.0721,0.0891,0.1012,0.0653,0.0644,0.0729,0.1063,0.1054,0.0736,0.0987,0.0754,0.1067,0.0704,0.0891,0.0954,0.062,0.0642,0.0735,0.1091,0.106,0.0752,0.0993,0.061,0.1111,0.0929,0.0896,0.1006,0.0656,0.0669,0.0745,0.104,0.1091,0.0742,0.0954,0.0632,0.1086,0.074,0.0919,0.0965,0.0774,0.0648,0.0722,0.102,0.109,0.0732,0.0975,0.0707,0.1083,0.0714,0.089,0.1024,0.0596,0.0674,0.0728,0.1031,0.1054,0.0745,0.097,0.06,0.1081,0.0724,0.0905,0.1006,0.072,0.0695,0.0732,0.0986,0.1059,0.0729,0.0988,0.0715,0.1065,0.0719,0.0875,0.1015,0.0664
11520,37,0.0757,0.0733,0.1046,0.1025,0.0727,0.0967,0.0661,0.1053,0.0718,0.0871,0.1006,0.0621,0.0668,0.078,0.1088,0.1032,0.0728,0.098,0.063,0.1057,0.0711,0.0889,0.1013,0.068,0.063,0.0728,0.1056,0.105,0.0726,0.0973,0.0609,0.1069,0.0702,0.0892,0.0965,0.0742,0.0663,0.0734,0.1078,0.105,0.0743,0.0989,0.0719,0.1109,0.0932,0.0896,0.1008,0.0618,0.0656,0.0733,0.1024,0.1074,0.0727,0.0948,0.0607,0.1083,0.0741,0.0917,0.0962,0.0738,0.0662,0.0725,0.1013,0.1075,0.0724,0.097,0.0718,0.108,0.0713,0.0886,0.1016,0.059,0.0651,0.0722,0.1029,0.105,0.074,0.097,0.0598,0.1076,0.0718,0.0898,0.101,0.0706,0.0698,0.0731,0.0984,0.1057,0.0727,0.0989,0.0704,0.1056,0.0702,0.0873,0.1011,0.0672
11610,37,0.0766,0.075,0.1052,0.1031,0.073,0.097,0.0615,0.1055,0.0719,0.0871,0.1008,0.0644,0.0694,0.0768,0.1091,0.1041,0.0728,0.0983,0.0614,0.1059,0.071,0.0889,0.1018,0.0669,0.065,0.0732,0.1058,0.1056,0.073,0.0976,0.0623,0.1067,0.0701,0.0892,0.0967,0.0699,0.0667,0.0739,0.1086,0.1057,0.0742,0.0983,0.0679,0.1108,0.0936,0.0892,0.1011,0.0644,0.0664,0.074,0.1028,0.1084,0.0733,0.0954,0.0592,0.1083,0.0737,0.0916,0.0962,0.0744,0.0656,0.0726,0.1012,0.1082,0.0724,0.0966,0.0694,0.108,0.0783,0.0888,0.1019,0.0629,0.0647,0.0726,0.1034,0.1062,0.075,0.0977,0.0596,0.1078,0.0714,0.0901,0.1003,0.0665,0.0685,0.0732,0.099,0.1064,0.0727,0.0991,0.0656,0.1053,0.0704,0.088,0.1014,0.0675
11700,37,0.0755,0.0745,0.106,0.104,0.074,0.0988,0.0667,0.106,0.072,0.0879,0.1013,0.0629,0.0671,0.0808,0.1075,0.1045,0.0729,0.0993,0.0591,0.1062,0.0715,0.09,0.1021,0.0669,0.0653,0.0739,0.1067,0.1063,0.0734,0.0987,0.0633,0.1074,0.0706,0.0901,0.0978,0.0731,0.0665,0.074,0.1088,0.1064,0.0752,0.1001,0.0663,0.1114,0.0936,0.0906,0.1017,0.0633,0.0645,0.0744,0.1046,0.1097,0.074,0.0962,0.0596,0.1093,0.074,0.0926,0.0976,0.0751,0.0668,0.0726,0.1024,0.1091,0.0734,0.0986,0.0715,0.109,0.0793,0.0896,0.1029,0.0635,0.066,0.0731,0.1038,0.1062,0.0746,0.0982,0.0604,0.1084,0.0723,0.0915,0.1009,0.0705,0.0693,0.073,0.0992,0.1065,0.0731,0.1,0.0712,0.1067,0.0714,0.0884,0.1019,0.0672
11790,37,0.0752,0.0736,0.1059,0.1038,0.0731,0.0988,0.0685,0.1064,0.0726,0.0887,0.1025,0.0626,0.0676,0.0762,0.1099,0.1049,0.073,0.1002,0.0648,0.1067,0.0715,0.0901,0.1022,0.0683,0.0637,0.0731,0.1071,0.1062,0.0731,0.0996,0.0662,0.1077,0.0706,0.0903,0.0983,0.071,0.0667,0.0741,0.109,0.1064,0.0749,0.1006,0.0684,0.1119,0.0933,0.0909,0.102,0.0596,0.0644,0.0742,0.1043,0.1095,0.0736,0.0965,0.06,0.1093,0.0743,0.093,0.0979,0.0766,0.0675,0.0731,0.1024,0.1095,0.0731,0.0989,0.0715,0.1092,0.0792,0.0902,0.1031,0.06,0.0695,0.0735,0.1042,0.1061,0.0744,0.0986,0.0598,0.1086,0.0722,0.0919,0.1008,0.0708,0.0698,0.0742,0.0989,0.1063,0.0735,0.1003,0.0714,0.1067,0.0709,0.089,0.1021,0.0659
11880,37,0.0782,0.076,0.1058,0.104,0.0738,0.0991,0.0614,0.1058,0.0721,0.0885,0.1014,0.0632,0.07,0.078,0.1062,0.1045,0.0732,0.0998,0.0621,0.1061,0.0718,0.0904,0.1025,0.0673,0.0653,0.0735,0.107,0.1063,0.0733,0.0998,0.0609,0.1076,0.0705,0.0907,0.0985,0.0706,0.0686,0.0745,0.1089,0.1076,0.0749,0.1006,0.0679,0.1116,0.0936,0.0914,0.1021,0.0655,0.067,0.0742,0.104,0.1094,0.0733,0.0971,0.0604,0.1097,0.074,0.0935,0.0977,0.0678,0.0648,0.0727,0.1028,0.1101,0.0729,0.0987,0.0673,0.1089,0.0785,0.09,0.1028,0.0613,0.0657,0.073,0.1045,0.1072,0.0751,0.0996,0.0615,0.1092,0.072,0.0915,0.1008,0.0656,0.07,0.0737,0.0998,0.1074,0.073,0.1005,0.065,0.106,0.071,0.089,0.1022,0.0694
11970,37,0.0746,0.0745,0.1064,0.1044,0.074,0.1001,0.0692,0.1061,0.0722,0.0889,0.1013,0.0631,0.068,0.0764,0.1082,0.1051,0.0733,0.1003,0.0592,0.1065,0.0711,0.091,0.1021,0.0675,0.065,0.0737,0.1071,0.1066,0.0735,0.1002,0.0671,0.1079,0.0704,0.0909,0.0988,0.0707,0.0669,0.0741,0.1094,0.1072,0.075,0.1013,0.0649,0.1119,0.0934,0.0915,0.1021,0.0624,0.0645,0.0742,0.1046,0.1099,0.0735,0.0974,0.0614,0.1099,0.0742,0.0938,0.0988,0.0722,0.0656,0.0727,0.103,0.1103,0.0732,0.0996,0.0713,0.1094,0.0796,0.0906,0.1028,0.061,0.0644,0.0734,0.1045,0.1069,0.0748,0.0997,0.0608,0.1094,0.0724,0.0923,0.1016,0.0704,0.0702,0.0732,0.1001,0.1077,0.0732,0.1011,0.0674,0.1068,0.0709,0.0894,0.1018,0.067
12060,37,0.0764,0.0732,0.106,0.104,0.0732,0.0999,0.0673,0.1063,0.0722,0.0891,0.1016,0.0633,0.0691,0.0769,0.1075,0.1048,0.0734,0.101,0.0602,0.1066,0.0719,0.0912,0.1027,0.0655,0.0641,0.0732,0.1072,0.1065,0.0728,0.1005,0.0602,0.1078,0.0703,0.0913,0.0997,0.0737,0.0679,0.0747,0.1092,0.1069,0.0748,0.1017,0.0687,0.1129,0.0943,0.0921,0.1023,0.0611,0.0654,0.0743,0.1043,0.1097,0.0734,0.0977,0.0603,0.1099,0.0741,0.0939,0.099,0.0736,0.0667,0.0732,0.1029,0.1102,0.0732,0.0996,0.0712,0.1097,0.0718,0.091,0.1032,0.0622,0.0671,0.0733,0.1045,0.1068,0.0744,0.1,0.0611,0.1088,0.0718,0.0924,0.1007,0.0668,0.0713,0.0743,0.0994,0.1072,0.0733,0.1014,0.067,0.1067,0.0707,0.0898,0.1023,0.0687
12150,37,0.0749,0.0744,0.1067,0.1044,0.0743,0.1007,0.064,0.1056,0.0718,0.0891,0.1013,0.0641,0.0691,0.0774,0.1104,0.1053,0.0732,0.1008,0.0624,0.1066,0.0713,0.0914,0.1027,0.0674,0.0655,0.0736,0.1075,0.1072,0.0734,0.1007,0.062,0.1077,0.07,0.0916,0.0998,0.0686,0.0686,0.0747,0.1091,0.1077,0.0752,0.1016,0.0649,0.1124,0.0934,0.0919,0.1024,0.0657,0.0661,0.0745,0.1049,0.1104,0.0737,0.0983,0.0606,0.11,0.0739,0.0944,0.0994,0.0649,0.0661,0.0728,0.1036,0.1112,0.0731,0.1003,0.0669,0.1098,0.0724,0.091,0.1034,0.0645,0.066,0.0734,0.1052,0.1075,0.075,0.1006,0.0606,0.1093,0.0718,0.0926,0.101,0.067,0.0696,0.074,0.1002,0.1081,0.0731,0.1017,0.0638,0.1068,0.071,0.09,0.1023,0.0707
12240,37,0.0784,0.0745,0.1069,0.1046,0.0738,0.1015,0.0708,0.1064,0.0722,0.0898,0.1015,0.0632,0.0664,0.0763,0.1069,0.1058,0.0733,0.1024,0.0584,0.1066,0.0713,0.0915,0.1028,0.0676,0.0654,0.0738,0.1078,0.1074,0.0736,0.1015,0.0654,0.1083,0.0705,0.092,0.1002,0.072,0.0686,0.0742,0.1098,0.1078,0.075,0.1028,0.0663,0.1124,0.0925,0.0927,0.1024,0.0652,0.0653,0.074,0.105,0.1106,0.0735,0.0986,0.0619,0.1106,0.0743,0.0948,0.1004,0.0742,0.0672,0.0727,0.1036,0.111,0.0734,0.101,0.0716,0.1103,0.08,0.0915,0.103,0.0603,0.0661,0.0735,0.1048,0.1071,0.0744,0.1006,0.0602,0.1095,0.0723,0.0931,0.1015,0.0696,0.0686,0.0739,0.0998,0.1078,0.0733,0.1021,0.0686,0.1073,0.0716,0.0906,0.1024,0.0671
12330,37,0.0754,0.0742,0.1067,0.1044,0.0734,0.1008,0.0637,0.1063,0.0721,0.0901,0.102,0.066,0.0697,0.0769,0.1078,0.1054,0.0732,0.1019,0.0613,0.1074,0.072,0.0921,0.1028,0.067,0.0674,0.0737,0.1073,0.107,0.0729,0.1016,0.0608,0.1088,0.0713,0.0928,0.1011,0.0749,0.0692,0.0747,0.1091,0.1074,0.0748,0.1028,0.0715,0.1131,0.0938,0.0931,0.1024,0.0617,0.0647,0.0743,0.1043,0.1102,0.0732,0.0992,0.0626,0.1106,0.0742,0.0949,0.1002,0.0655,0.0658,0.0729,0.1039,0.1119,0.0734,0.1009,0.0663,0.1099,0.0797,0.0917,0.1032,0.063,0.0634,0.073,0.1054,0.1085,0.0757,0.1018,0.0645,0.1102,0.0712,0.0926,0.1009,0.062,0.0687,0.074,0.1011,0.1092,0.0728,0.1024,0.0623,0.1066,0.0705,0.0905,0.1022,0.0715
12420,37,0.0757,0.075,0.1072,0.105,0.0742,0.1017,0.0618,0.106,0.0717,0.0901,0.102,0.0643,0.0704,0.0773,0.1073,0.1059,0.0733,0.1023,0.0596,0.1071,0.0715,0.0928,0.1028,0.0673,0.0652,0.0737,0.1073,0.1068,0.0728,0.1024,0.0613,0.1086,0.071,0.0932,0.1006,0.0654,0.0683,0.0743,0.1095,0.108,0.0752,0.1032,0.0672,0.1133,0.0923,0.0934,0.1024,0.0649,0.0639,0.0741,0.1055,0.1116,0.074,0.1002,0.0659,0.1108,0.0746,0.0955,0.1003,0.0645,0.0651,0.0724,0.1042,0.1127,0.0736,0.1018,0.0616,0.1101,0.0716,0.0916,0.1031,0.0652,0.0617,0.0729,0.1059,0.1095,0.0763,0.1023,0.0662,0.1103,0.0715,0.0928,0.1011,0.0624,0.0703,0.0731,0.1017,0.1096,0.0733,0.1025,0.0604,0.1066,0.0713,0.0903,0.1025,0.0706
12510,37,0.0752,0.0762,0.1076,0.1051,0.074,0.1018,0.0612,0.1063,0.0721,0.0909,0.1026,0.0636,0.0686,0.079,0.108,0.1057,0.0735,0.1026,0.0642,0.1073,0.072,0.0931,0.1027,0.0645,0.0648,0.0737,0.1078,0.1071,0.0726,0.1026,0.0628,0.1089,0.0716,0.0937,0.1012,0.0676,0.068,0.0741,0.1092,0.1077,0.0753,0.1036,0.0688,0.1133,0.093,0.0941,0.1025,0.063,0.0625,0.0735,0.1053,0.1114,0.0739,0.1005,0.0643,0.1113,0.0748,0.0959,0.1012,0.0653,0.069,0.0722,0.1034,0.1122,0.0738,0.1018,0.0655,0.1104,0.0797,0.092,0.1034,0.0632,0.0622,0.0729,0.1059,0.1092,0.0757,0.1023,0.0644,0.1106,0.0719,0.0934,0.1017,0.0631,0.0692,0.0732,0.1018,0.1092,0.0732,0.103,0.0628,0.1069,0.0704,0.0913,0.1025,0.0696
12600,37,0.0747,0.0745,0.1072,0.1049,0.0739,0.1016,0.0624,0.1066,0.0723,0.0914,0.1038,0.0729,0.0732,0.081,0.1088,0.1056,0.0733,0.1025,0.0686,0.1078,0.0723,0.0937,0.1029,0.0628,0.0652,0.0732,0.1071,0.1069,0.0726,0.1026,0.063,0.1093,0.0715,0.0938,0.1014,0.0686,0.0674,0.0747,0.1096,0.1079,0.0751,0.1041,0.0702,0.1136,0.0931,0.0944,0.1023,0.0627,0.0648,0.0738,0.1052,0.1113,0.0737,0.1007,0.064,0.1112,0.0746,0.0961,0.101,0.0633,0.0656,0.0726,0.1044,0.1124,0.0737,0.1024,0.0624,0.1104,0.079,0.0926,0.1035,0.0654,0.0666,0.0729,0.1062,0.1095,0.0758,0.1027,0.0641,0.1108,0.072,0.0936,0.1012,0.0622,0.0699,0.0735,0.1018,0.1096,0.073,0.1027,0.0617,0.107,0.0706,0.0912,0.1026,0.0715
12690,37,0.0762,0.0752,0.108,0.1057,0.0744,0.1027,0.0631,0.1067,0.0719,0.091,0.1025,0.0644,0.0687,0.0771,0.1072,0.1057,0.0737,0.1031,0.0611,0.1078,0.0712,0.094,0.1029,0.0665,0.0665,0.0739,0.1075,0.1077,0.0729,0.1031,0.0609,0.1091,0.0714,0.0943,0.1011,0.0634,0.0701,0.0743,0.1095,0.1084,0.0751,0.1044,0.0642,0.1136,0.0927,0.0943,0.1023,0.0648,0.063,0.0737,0.106,0.1123,0.0743,0.1012,0.0677,0.1114,0.0747,0.0966,0.1015,0.0645,0.0657,0.0722,0.1048,0.1133,0.074,0.1027,0.0612,0.1104,0.0792,0.0926,0.103,0.0653,0.0617,0.0727,0.1065,0.1102,0.0765,0.103,0.0661,0.1109,0.0718,0.0938,0.1015,0.0628,0.0692,0.0733,0.1022,0.1103,0.0731,0.1033,0.0608,0.1071,0.071,0.0922,0.1028,0.0712
12780,37,0.077,0.0763,0.1077,0.1054,0.0736,0.1023,0.0605,0.107,0.0723,0.0921,0.1029,0.0649,0.0729,0.0783,0.1074,0.106,0.0736,0.1035,0.0671,0.1079,0.0723,0.0943,0.1033,0.0646,0.0645,0.0736,0.1081,0.1076,0.0729,0.1034,0.0633,0.1096,0.0716,0.0948,0.1017,0.0675,0.0673,0.0741,0.11,0.1088,0.0752,0.1049,0.0689,0.1138,0.0929,0.0947,0.1027,0.064,0.063,0.0734,0.1063,0.1123,0.074,0.1013,0.0653,0.1124,0.075,0.097,0.1021,0.0643,0.0661,0.0726,0.1048,0.113,0.0742,0.1034,0.0667,0.1111,0.072,0.0932,0.1032,0.0626,0.063,0.0726,0.1062,0.1095,0.0759,0.103,0.0636,0.1113,0.0724,0.0945,0.1018,0.0633,0.0687,0.0734,0.1017,0.1096,0.0735,0.1036,0.0611,0.1073,0.0709,0.0922,0.1026,0.07
12870,37,0.0765,0.0748,0.1081,0.1054,0.0738,0.1022,0.0618,0.1073,0.0724,0.092,0.1032,0.0678,0.073,0.077,0.1106,0.1058,0.0735,0.1034,0.0649,0.1083,0.0721,0.0943,0.1038,0.0625,0.0677,0.0734,0.1077,0.1077,0.0728,0.1033,0.0616,0.1096,0.0715,0.095,0.1018,0.068,0.0684,0.0748,0.1096,0.1088,0.0753,0.1048,0.0709,0.1139,0.0933,0.0951,0.1029,0.0634,0.0659,0.074,0.1062,0.1122,0.0738,0.1016,0.0627,0.1119,0.0749,0.0973,0.1022,0.0616,0.0648,0.0729,0.1048,0.1129,0.0736,0.1034,0.0647,0.1108,0.0714,0.0938,0.1037,0.0654,0.0632,0.0728,0.1069,0.1101,0.076,0.1034,0.0636,0.1112,0.0722,0.0945,0.101,0.0622,0.0705,0.0739,0.1018,0.1101,0.0733,0.1035,0.0617,0.1072,0.0701,0.0924,0.1031,0.0721
12960,37,0.0763,0.0744,0.1083,0.1059,0.0741,0.103,0.0664,0.107,0.0715,0.0915,0.1017,0.064,0.0673,0.0759,0.1087,0.1066,0.073,0.1036,0.0634,0.1069,0.0711,0.0937,0.1028,0.0679,0.0643,0.0738,0.1078,0.1084,0.073,0.1029,0.0647,0.1088,0.0703,0.0945,0.101,0.0684,0.0679,0.0741,0.1099,0.109,0.0749,0.1046,0.0651,0.1128,0.0927,0.0946,0.1022,0.0618,0.0649,0.0738,0.1066,0.1121,0.0736,0.1014,0.0635,0.1115,0.0745,0.0973,0.102,0.0658,0.0655,0.0722,0.1047,0.1128,0.0731,0.1038,0.0667,0.1102,0.0792,0.0932,0.1034,0.063,0.0625,0.0724,0.1062,0.1095,0.0752,0.1027,0.0624,0.1109,0.0719,0.0953,0.102,0.067,0.0695,0.073,0.1017,0.1096,0.0729,0.1034,0.0655,0.107,0.0707,0.0922,0.1023,0.0685
13050,37,0.077,0.0742,0.1079,0.1055,0.0732,0.1025,0.0669,0.1068,0.0716,0.0921,0.1022,0.0627,0.0696,0.0759,0.1087,0.1057,0.0734,0.1036,0.0625,0.1072,0.0717,0.0945,0.1027,0.0656,0.0643,0.0735,0.1078,0.1082,0.0728,0.1033,0.0605,0.1092,0.0707,0.095,0.1016,0.0716,0.0688,0.0742,0.1095,0.1091,0.0748,0.1051,0.0708,0.1135,0.0931,0.0954,0.1026,0.0637,0.0642,0.0737,0.1062,0.1116,0.0732,0.1018,0.0629,0.1116,0.0747,0.0977,0.1024,0.0651,0.0661,0.0728,0.1045,0.1125,0.0732,0.1031,0.0713,0.1109,0.0792,0.094,0.1032,0.0599,0.0638,0.0725,0.106,0.1092,0.0747,0.1026,0.061,0.1108,0.0722,0.0955,0.1014,0.065,0.0686,0.0732,0.1018,0.109,0.0731,0.1036,0.0663,0.1071,0.0704,0.0928,0.1021,0.0667
13140,37,0.075,0.0744,0.1079,0.1057,0.074,0.1033,0.0688,0.1079,0.0723,0.0928,0.1025,0.0637,0.0697,0.081,0.1094,0.1068,0.0735,0.104,0.0626,0.1078,0.0715,0.0951,0.1036,0.0672,0.0654,0.0742,0.1086,0.1094,0.074,0.1038,0.0628,0.1094,0.0707,0.0955,0.1018,0.0673,0.0672,0.0751,0.1111,0.11,0.0755,0.1058,0.0669,0.1142,0.0939,0.096,0.1033,0.0665,0.0663,0.0746,0.1071,0.1132,0.0742,0.1025,0.0603,0.1118,0.0742,0.0982,0.1034,0.0682,0.065,0.0733,0.1057,0.1141,0.0735,0.104,0.0679,0.1114,0.0717,0.0947,0.1041,0.0644,0.0662,0.0734,0.1072,0.1099,0.0756,0.1033,0.0613,0.1112,0.0723,0.0964,0.1018,0.0636,0.067,0.0742,0.1022,0.1093,0.0739,0.1042,0.0614,0.1077,0.0707,0.0938,0.103,0.0699
13230,37,0.0753,0.0752,0.1087,0.1068,0.0745,0.1037,0.0635,0.1075,0.0721,0.0928,0.1024,0.0641,0.0707,0.0768,0.1095,0.1073,0.0741,0.1042,0.0602,0.1082,0.0713,0.0955,0.1037,0.0648,0.0652,0.074,0.1088,0.1096,0.0734,0.104,0.0601,0.1099,0.0709,0.0961,0.102,0.068,0.0676,0.075,0.1106,0.1105,0.0756,0.1062,0.0674,0.1143,0.0935,0.0964,0.1034,0.0621,0.0649,0.0746,0.1076,0.1137,0.0742,0.103,0.0626,0.1126,0.0747,0.099,0.1036,0.0663,0.0666,0.0728,0.1059,0.1147,0.0738,0.1048,0.0679,0.1114,0.072,0.0952,0.1041,0.0598,0.0652,0.0733,0.1072,0.1104,0.0757,0.1033,0.0616,0.1115,0.0724,0.0969,0.1021,0.0659,0.0715,0.0734,0.1026,0.1099,0.0737,0.1042,0.0662,0.1082,0.0713,0.094,0.1032,0.0685
13320,37,0.0756,0.075,0.109,0.1068,0.074,0.1034,0.064,0.1079,0.0722,0.0934,0.103,0.0646,0.0686,0.0766,0.1107,0.1077,0.0736,0.1047,0.0603,0.1082,0.0718,0.0964,0.1037,0.0628,0.0642,0.0739,0.1088,0.1093,0.0732,0.104,0.061,0.1104,0.0712,0.0968,0.1026,0.0739,0.0676,0.0751,0.1103,0.1102,0.0754,0.1058,0.071,0.1146,0.094,0.0978,0.1034,0.0614,0.0643,0.074,0.1071,0.1132,0.0739,0.1034,0.063,0.1126,0.0748,0.0991,0.1033,0.0624,0.0676,0.0728,0.1057,0.1145,0.074,0.105,0.068,0.1118,0.0715,0.0956,0.1039,0.0604,0.0629,0.0732,0.1075,0.1106,0.0758,0.1039,0.0629,0.1117,0.0718,0.0964,0.1022,0.062,0.0708,0.0738,0.1028,0.11,0.0738,0.1044,0.0608,0.1081,0.0707,0.0944,0.1037,0.0703
13410,37,0.0761,0.0742,0.1081,0.106,0.0732,0.1026,0.0606,0.1069,0.0713,0.0931,0.1026,0.0662,0.073,0.0767,0.1089,0.107,0.0735,0.1038,0.0648,0.1079,0.0712,0.0963,0.1034,0.066,0.0683,0.073,0.1083,0.1084,0.0725,0.1041,0.0629,0.1094,0.0708,0.0965,0.1013,0.0635,0.0717,0.0746,0.1094,0.1097,0.0747,0.1052,0.064,0.1139,0.0932,0.0961,0.1029,0.0644,0.064,0.0737,0.1074,0.1138,0.0741,0.1034,0.0672,0.1114,0.0738,0.0981,0.1017,0.0642,0.0661,0.0726,0.1061,0.115,0.073,0.1043,0.0595,0.1103,0.0713,0.0942,0.1034,0.0675,0.0631,0.0732,0.1076,0.1111,0.076,0.1038,0.0662,0.1109,0.0707,0.0956,0.1011,0.0618,0.0703,0.0738,0.1028,0.1102,0.0725,0.1036,0.0625,0.107,0.0701,0.0945,0.1034,0.0712
13500,37,0.0779,0.0753,0.1083,0.1064,0.0738,0.1031,0.0601,0.107,0.0715,0.0938,0.1025,0.0642,0.0713,0.0761,0.1092,0.1071,0.0731,0.104,0.0628,0.1082,0.0711,0.0968,0.1035,0.068,0.0638,0.0732,0.1086,0.1087,0.0726,0.1041,0.0647,0.1097,0.0708,0.097,0.101,0.0636,0.069,0.0745,0.1105,0.1103,0.0752,0.1062,0.0616,0.114,0.0933,0.0971,0.1028,0.0641,0.0634,0.074,0.1083,0.1145,0.0749,0.1043,0.069,0.1118,0.0741,0.0989,0.1021,0.0629,0.0659,0.0718,0.1065,0.116,0.0733,0.105,0.0619,0.1102,0.0787,0.0954,0.1036,0.0674,0.062,0.0733,0.1078,0.1111,0.0759,0.1039,0.0653,0.111,0.0711,0.0965,0.1014,0.0629,0.0697,0.0733,0.1032,0.1104,0.0726,0.1037,0.0625,0.1072,0.0703,0.0944,0.1031,0.07
13590,37,0.0746,0.075,0.1087,0.1067,0.0734,0.1028,0.0626,0.1079,0.0722,0.0946,0.1036,0.0682,0.0724,0.077,0.1107,0.1081,0.0737,0.1048,0.0675,0.1095,0.072,0.0978,0.1041,0.0655,0.0651,0.0737,0.109,0.1092,0.0731,0.1046,0.0633,0.1105,0.0714,0.098,0.1023,0.0704,0.0698,0.0745,0.1107,0.1109,0.0752,0.1072,0.0691,0.1151,0.0933,0.0978,0.1035,0.063,0.0626,0.074,0.1079,0.1144,0.0743,0.1045,0.0659,0.112,0.0744,0.0998,0.1039,0.0639,0.0671,0.0727,0.1069,0.1164,0.0739,0.1054,0.0607,0.1117,0.0724,0.0969,0.1046,0.0675,0.0622,0.0737,0.1084,0.1114,0.076,0.1042,0.0661,0.1118,0.0713,0.0971,0.1018,0.0626,0.0694,0.0741,0.1038,0.1106,0.0731,0.1037,0.0606,0.1085,0.0705,0.0956,0.1038,0.0706
13680,37,0.0776,0.0763,0.1083,0.1067,0.0738,0.1028,0.0608,0.1072,0.0716,0.0942,0.103,0.0661,0.0732,0.0765,0.1093,0.107,0.0732,0.1039,0.0649,0.108,0.0716,0.0973,0.1036,0.0681,0.0681,0.0737,0.108,0.109,0.0726,0.1039,0.0608,0.1096,0.0707,0.0976,0.1016,0.0669,0.0716,0.0748,0.1106,0.111,0.0749,0.1064,0.0657,0.1144,0.0929,0.0976,0.1029,0.0678,0.0631,0.0742,0.108,0.114,0.0737,0.1042,0.0643,0.1114,0.0741,0.0999,0.1024,0.0637,0.0664,0.0724,0.1068,0.116,0.0732,0.1051,0.0606,0.1107,0.0788,0.096,0.1044,0.065,0.065,0.0731,0.1081,0.1114,0.0762,0.1041,0.0662,0.1112,0.0709,0.0968,0.1014,0.062,0.068,0.0738,0.1034,0.1106,0.0727,0.1033,0.0626,0.1074,0.0701,0.0951,0.1032,0.0718
13770,37,0.078,0.0751,0.1086,0.1069,0.0743,0.1035,0.0641,0.1071,0.0713,0.0947,0.103,0.0645,0.0715,0.0764,0.1087,0.1082,0.0735,0.1044,0.0601,0.1085,0.0714,0.0978,0.1034,0.0653,0.0658,0.0739,0.1084,0.1097,0.0738,0.104,0.0627,0.1098,0.071,0.0983,0.1006,0.0636,0.0684,0.0741,0.1103,0.1109,0.0756,0.1061,0.0636,0.1139,0.0931,0.0985,0.103,0.0658,0.0628,0.0737,0.1082,0.1145,0.0742,0.1047,0.0683,0.1116,0.074,0.1002,0.1025,0.063,0.065,0.072,0.107,0.116,0.0735,0.1052,0.0596,0.111,0.079,0.0964,0.1041,0.0665,0.0618,0.0728,0.1075,0.1109,0.0757,0.104,0.0652,0.1114,0.0715,0.098,0.1022,0.0629,0.07,0.0731,0.1038,0.1108,0.0728,0.1039,0.0609,0.1075,0.0707,0.0953,0.103,0.0698
13860,37,0.0763,0.0753,0.1092,0.1077,0.0742,0.1038,0.0615,0.1079,0.0722,0.0961,0.1041,0.0647,0.0722,0.0764,0.1098,0.1087,0.0738,0.1049,0.0624,0.1091,0.0723,0.099,0.1045,0.0644,0.0648,0.074,0.1089,0.1094,0.0732,0.1048,0.0632,0.1107,0.0716,0.0995,0.1025,0.07,0.0695,0.0748,0.1108,0.1115,0.0756,0.1075,0.0682,0.1153,0.0928,0.0995,0.1039,0.0629,0.0633,0.0739,0.1083,0.115,0.0743,0.1049,0.0657,0.113,0.0748,0.1015,0.1042,0.0635,0.0656,0.0725,0.1072,0.1162,0.0745,0.1058,0.0646,0.1124,0.0795,0.0979,0.105,0.0637,0.0621,0.0731,0.1084,0.1113,0.0763,0.1045,0.0654,0.1122,0.072,0.0986,0.1026,0.0628,0.0695,0.0739,0.1042,0.1107,0.0735,0.104,0.0631,0.1086,0.0708,0.0967,0.1038,0.0688
13950,37,0.0774,0.0756,0.1092,0.1076,0.0746,0.1035,0.0615,0.1082,0.0727,0.096,0.104,0.0665,0.0728,0.0768,0.1092,0.1077,0.0736,0.1046,0.0649,0.1092,0.072,0.099,0.1046,0.0651,0.0649,0.0736,0.1088,0.1094,0.0731,0.1053,0.0633,0.1107,0.0718,0.0999,0.1023,0.0623,0.0703,0.0748,0.1112,0.112,0.0754,0.1075,0.0624,0.1146,0.0936,0.0991,0.1038,0.0667,0.0636,0.0739,0.1088,0.1159,0.0751,0.1056,0.0698,0.1125,0.0742,0.1012,0.1031,0.0663,0.0658,0.0728,0.1079,0.1174,0.074,0.1057,0.0612,0.1116,0.0714,0.0981,0.1048,0.0679,0.063,0.0735,0.1091,0.1126,0.0773,0.105,0.0685,0.1122,0.0715,0.0987,0.1023,0.0619,0.0686,0.0742,0.105,0.1112,0.0732,0.1041,0.0629,0.1083,0.0704,0.097,0.1041,0.0702
14040,37,0.0779,0.0759,0.1095,0.1079,0.0747,0.1039,0.061,0.1084,0.0727,0.0966,0.1038,0.0643,0.0716,0.0794,0.1087,0.1082,0.074,0.1048,0.0643,0.109,0.072,0.0997,0.1044,0.0657,0.064,0.0736,0.1098,0.1103,0.0739,0.1058,0.0732,0.1109,0.0721,0.0997,0.1016,0.0635,0.0699,0.0745,0.1114,0.1128,0.0758,0.1084,0.061,0.1148,0.0932,0.101,0.1035,0.0672,0.0638,0.0744,0.1098,0.1169,0.0755,0.1059,0.0737,0.1125,0.0741,0.1016,0.1038,0.0632,0.0644,0.0725,0.1086,0.1174,0.0741,0.1062,0.0592,0.1115,0.0797,0.0986,0.105,0.0645,0.0639,0.074,0.1096,0.1124,0.077,0.1047,0.0702,0.1115,0.072,0.1003,0.1032,0.0673,0.0676,0.0743,0.1044,0.1104,0.0734,0.1046,0.0674,0.1095,0.0716,0.0973,0.1041,0.0677
14130,37,0.0747,0.0747,0.1078,0.1065,0.0729,0.1026,0.0653,0.1085,0.0731,0.0972,0.1041,0.0646,0.0677,0.0755,0.1072,0.1078,0.0733,0.1048,0.0698,0.1093,0.0723,0.0993,0.1038,0.0654,0.0629,0.0726,0.1087,0.1091,0.0733,0.1054,0.0693,0.1106,0.0719,0.0998,0.1019,0.0636,0.067,0.0742,0.1111,0.1122,0.0751,0.1078,0.0623,0.1148,0.0924,0.0998,0.103,0.0629,0.0633,0.0738,0.109,0.1154,0.0746,0.1052,0.0711,0.1114,0.0737,0.1015,0.103,0.0632,0.0642,0.0726,0.108,0.1164,0.0737,0.105,0.0631,0.1113,0.0792,0.0988,0.1046,0.0626,0.0637,0.0736,0.1089,0.1112,0.0758,0.1041,0.067,0.1105,0.0716,0.0999,0.1025,0.0678,0.0692,0.0742,0.1039,0.1096,0.0729,0.1038,0.0635,0.1089,0.0704,0.0972,0.1037,0.0686
14220,37,0.0741,0.075,0.1087,0.1074,0.0737,0.1031,0.0642,0.1091,0.0734,0.0974,0.1044,0.0659,0.0683,0.0762,0.1088,0.1083,0.074,0.1047,0.0721,0.11,0.0729,0.1002,0.1047,0.0663,0.0659,0.073,0.1094,0.1102,0.074,0.1058,0.0696,0.1108,0.072,0.1004,0.1017,0.0645,0.0693,0.0749,0.111,0.1136,0.0757,0.1081,0.0611,0.1152,0.094,0.1013,0.104,0.0685,0.0642,0.0748,0.1098,0.1169,0.0757,0.106,0.0735,0.1119,0.074,0.1022,0.1039,0.0639,0.0642,0.0733,0.1088,0.1178,0.0741,0.106,0.0618,0.1117,0.0788,0.0996,0.1053,0.0654,0.063,0.074,0.1098,0.1127,0.0769,0.1049,0.0692,0.1114,0.0712,0.1,0.1029,0.0617,0.0678,0.0749,0.1047,0.1104,0.0734,0.1048,0.0631,0.1096,0.0712,0.098,0.1045,0.0704
14310,37,0.0766,0.0748,0.1089,0.1074,0.0738,0.1032,0.064,0.1082,0.0725,0.0976,0.1032,0.0643,0.0727,0.076,0.1087,0.1074,0.0735,0.1045,0.0714,0.1089,0.0722,0.1001,0.1046,0.0688,0.0637,0.0735,0.1087,0.1097,0.0731,0.1051,0.0659,0.1104,0.0717,0.1007,0.1013,0.0649,0.0707,0.074,0.1104,0.113,0.0752,0.1076,0.0665,0.1147,0.0931,0.1004,0.1038,0.0628,0.0635,0.0742,0.1095,0.1165,0.075,0.1051,0.07,0.1119,0.074,0.1024,0.1031,0.0626,0.0648,0.0718,0.1082,0.1176,0.0736,0.1058,0.0596,0.1113,0.0785,0.0994,0.1051,0.0614,0.0634,0.0736,0.1094,0.1121,0.0764,0.1042,0.0698,0.1106,0.071,0.1002,0.103,0.0699,0.0704,0.0737,0.1043,0.1101,0.073,0.104,0.0621,0.1087,0.0713,0.098,0.1042,0.0668
14400,37,0.0764,0.0746,0.1085,0.1072,0.0731,0.1024,0.0634,0.1083,0.0726,0.0981,0.1046,0.0694,0.0701,0.0798,0.1101,0.1079,0.0733,0.1046,0.0735,0.1094,0.0726,0.1007,0.105,0.0623,0.064,0.0727,0.1082,0.109,0.0723,0.1046,0.0636,0.1103,0.0714,0.1008,0.1024,0.0681,0.0691,0.0738,0.1107,0.1125,0.0747,0.1078,0.0712,0.115,0.0935,0.1012,0.1039,0.0617,0.0626,0.0735,0.109,0.1157,0.0743,0.1051,0.0657,0.1121,0.0742,0.1023,0.1034,0.062,0.0648,0.0723,0.108,0.1165,0.0735,0.1058,0.0626,0.1115,0.0778,0.1,0.1051,0.062,0.0629,0.0735,0.1091,0.1119,0.0764,0.1043,0.0688,0.1108,0.0714,0.1002,0.1024,0.0658,0.068,0.0744,0.104,0.1098,0.0728,0.1042,0.063,0.1086,0.0707,0.0985,0.104,0.0661
14490,37,0.079,0.0754,0.1086,0.1074,0.0737,0.1027,0.0618,0.108,0.0725,0.0983,0.1045,0.0698,0.0722,0.0762,0.1085,0.1082,0.0736,0.1046,0.0709,0.1091,0.0725,0.1007,0.1051,0.0616,0.0664,0.073,0.1089,0.1094,0.073,0.1051,0.0626,0.1104,0.0714,0.101,0.1022,0.0663,0.0716,0.0747,0.1103,0.1129,0.0753,0.1071,0.0625,0.1142,0.0935,0.1007,0.1039,0.0644,0.0644,0.0744,0.1097,0.1162,0.0749,0.1051,0.0672,0.1116,0.0734,0.1022,0.1033,0.0626,0.0655,0.0728,0.1086,0.1173,0.0733,0.1058,0.0603,0.1109,0.0704,0.0996,0.1052,0.0648,0.0653,0.0736,0.1096,0.1126,0.0768,0.1042,0.0697,0.1104,0.0707,0.0996,0.1026,0.0646,0.0672,0.0744,0.1045,0.1097,0.0731,0.1042,0.0619,0.1083,0.0704,0.0986,0.1043,0.0682
14580,37,0.0779,0.0758,0.1095,0.1081,0.0743,0.1037,0.0632,0.1088,0.0731,0.0995,0.105,0.066,0.0715,0.076,0.1082,0.1089,0.0738,0.1049,0.0698,0.1097,0.0725,0.1016,0.1053,0.0618,0.0643,0.074,0.1099,0.1104,0.0738,0.1056,0.0666,0.1115,0.0723,0.1019,0.1028,0.0656,0.068,0.0741,0.112,0.1137,0.0758,0.1086,0.0621,0.1153,0.0939,0.102,0.1046,0.0663,0.0648,0.0752,0.1106,0.1174,0.0757,0.1063,0.0694,0.1126,0.0742,0.1033,0.1041,0.063,0.0643,0.073,0.109,0.1189,0.0743,0.1064,0.0602,0.1121,0.0791,0.1012,0.1058,0.0641,0.0635,0.0746,0.1103,0.1128,0.0769,0.1047,0.0687,0.1114,0.0719,0.1018,0.1036,0.0694,0.0698,0.0746,0.1051,0.1102,0.0736,0.1048,0.0628,0.1094,0.0715,0.0996,0.1048,0.0683
14670,37,0.0763,0.0757,0.1092,0.1079,0.0737,0.1033,0.0638,0.109,0.0732,0.0999,0.1057,0.0686,0.0718,0.0763,0.109,0.1085,0.0738,0.1053,0.0736,0.11,0.0728,0.1022,0.1058,0.0618,0.0627,0.0736,0.1101,0.1103,0.074,0.106,0.0681,0.1111,0.0722,0.102,0.1028,0.0631,0.0688,0.0744,0.1117,0.1143,0.0764,0.1084,0.065,0.1155,0.0935,0.1027,0.1046,0.0635,0.0649,0.0753,0.1102,0.1171,0.0753,0.1058,0.0673,0.1122,0.0742,0.1036,0.105,0.0707,0.0632,0.0734,0.1092,0.1183,0.0739,0.1062,0.0659,0.1123,0.0717,0.102,0.106,0.062,0.0651,0.0749,0.1103,0.1122,0.0759,0.1047,0.0657,0.1109,0.0716,0.1022,0.1036,0.0684,0.0701,0.0753,0.1046,0.1099,0.0737,0.1047,0.0676,0.1102,0.0718,0.1003,0.1049,0.0688
14760,37,0.0752,0.0753,0.1087,0.1074,0.0738,0.1035,0.0637,0.109,0.0735,0.0999,0.1053,0.0685,0.0725,0.0766,0.1093,0.1088,0.0742,0.1056,0.0724,0.1104,0.0732,0.1022,0.1056,0.0646,0.065,0.0738,0.1097,0.1101,0.0739,0.106,0.0655,0.1107,0.0715,0.1018,0.1029,0.0643,0.07,0.0749,0.1119,0.1144,0.0754,0.1085,0.0608,0.1154,0.0934,0.1024,0.1046,0.0691,0.0647,0.0752,0.1102,0.1173,0.0757,0.106,0.0701,0.1117,0.0735,0.1035,0.1047,0.0657,0.0644,0.0733,0.1095,0.1183,0.0737,0.1064,0.0635,0.1119,0.0793,0.1021,0.1056,0.0649,0.0642,0.0747,0.1108,0.1131,0.0775,0.1055,0.07,0.1111,0.0712,0.1014,0.1034,0.0655,0.0669,0.0755,0.1052,0.1103,0.0737,0.1048,0.0623,0.1097,0.0712,0.1002,0.105,0.0698
14850,37,0.078,0.0755,0.1088,0.1075,0.074,0.1035,0.0626,0.1081,0.0727,0.0997,0.1047,0.0663,0.0728,0.0758,0.1092,0.1085,0.074,0.1046,0.069,0.1093,0.072,0.1017,0.1048,0.0649,0.0636,0.0736,0.1099,0.1102,0.0737,0.1059,0.0704,0.1107,0.0716,0.1017,0.1022,0.0618,0.0695,0.0744,0.1118,0.114,0.0753,0.1079,0.0605,0.1148,0.0933,0.1023,0.1039,0.0645,0.0639,0.0748,0.1102,0.117,0.0752,0.1057,0.0712,0.1114,0.0736,0.1032,0.104,0.0635,0.0644,0.0724,0.1092,0.1177,0.0736,0.1064,0.0587,0.1114,0.0788,0.1013,0.1051,0.0627,0.0631,0.0743,0.11,0.1129,0.0768,0.1049,0.0691,0.1105,0.071,0.1013,0.1031,0.067,0.0697,0.0744,0.1051,0.1103,0.0729,0.1043,0.0603,0.1091,0.0712,0.0998,0.1044,0.0693
14940,37,0.0759,0.0749,0.1089,0.1073,0.0734,0.103,0.0622,0.1081,0.0727,0.1,0.1053,0.0693,0.0724,0.0752,0.1103,0.1078,0.0735,0.1048,0.0726,0.1093,0.0724,0.102,0.105,0.0626,0.0628,0.0734,0.1093,0.1094,0.073,0.1054,0.0646,0.1106,0.0717,0.1021,0.1029,0.0669,0.0675,0.074,0.1117,0.113,0.0753,0.1078,0.069,0.1148,0.0932,0.1028,0.1043,0.0616,0.063,0.0742,0.1097,0.1164,0.0745,0.1055,0.0659,0.1121,0.0743,0.1035,0.1038,0.0621,0.0643,0.0725,0.1093,0.1177,0.0738,0.106,0.0619,0.1116,0.0718,0.1014,0.1051,0.0635,0.062,0.074,0.1096,0.1118,0.0758,0.1047,0.0682,0.1106,0.0713,0.1013,0.1029,0.0648,0.0704,0.0742,0.1052,0.11,0.0733,0.1045,0.0617,0.1094,0.0711,0.1001,0.1044,0.0673
15030,37,0.0769,0.0758,0.1094,0.108,0.0742,0.1035,0.0624,0.1086,0.0731,0.101,0.1063,0.0736,0.0736,0.0784,0.11,0.1085,0.0741,0.1051,0.0703,0.1099,0.0729,0.1025,0.1059,0.0614,0.0692,0.0742,0.1092,0.1096,0.0733,0.1059,0.063,0.1115,0.0723,0.103,0.1034,0.0652,0.07,0.0749,0.1121,0.1141,0.076,0.1086,0.0678,0.1156,0.0937,0.1038,0.1049,0.0643,0.0643,0.0748,0.1102,0.117,0.0753,0.1061,0.0667,0.1126,0.0745,0.1044,0.1049,0.0621,0.0665,0.0735,0.1095,0.1183,0.0742,0.1068,0.059,0.1123,0.0725,0.1024,0.1062,0.0674,0.0631,0.0744,0.1106,0.113,0.0775,0.1058,0.0699,0.1116,0.0713,0.1011,0.1036,0.0639,0.0699,0.075,0.106,0.1106,0.0736,0.105,0.0594,0.1098,0.0715,0.1019,0.1052,0.0702
15120,37,0.0827,0.0756,0.1094,0.1083,0.0744,0.104,0.0622,0.1085,0.073,0.101,0.1054,0.0668,0.0727,0.0768,0.1101,0.1094,0.0744,0.1054,0.0692,0.1102,0.0729,0.1027,0.1054,0.0686,0.065,0.0742,0.1099,0.1104,0.074,0.1062,0.0682,0.1113,0.0723,0.1029,0.1031,0.0644,0.0694,0.0752,0.112,0.1144,0.0762,0.1091,0.062,0.1157,0.0931,0.1037,0.1045,0.0674,0.0634,0.0745,0.1105,0.1176,0.0755,0.1068,0.0714,0.1132,0.0748,0.1045,0.1043,0.0645,0.0651,0.0729,0.1101,0.1193,0.0748,0.1072,0.0619,0.1118,0.0797,0.1021,0.1057,0.0668,0.062,0.0744,0.1106,0.1131,0.0773,0.1058,0.0681,0.112,0.072,0.1022,0.104,0.0649,0.069,0.0743,0.1069,0.1112,0.0739,0.1051,0.06,0.1098,0.0717,0.1008,0.1056,0.0688
15210,37,0.077,0.0757,0.1096,0.1084,0.0744,0.1041,0.0626,0.1089,0.0735,0.102,0.106,0.0664,0.0733,0.0769,0.1097,0.1094,0.0745,0.1054,0.0728,0.1102,0.0728,0.1029,0.1059,0.0638,0.0628,0.0738,0.1102,0.1104,0.0739,0.1064,0.0691,0.1116,0.0728,0.103,0.1032,0.0648,0.0677,0.0748,0.1123,0.1145,0.0763,0.1088,0.0637,0.1157,0.093,0.1044,0.1046,0.0638,0.0637,0.0747,0.1108,0.1176,0.0757,0.1068,0.0715,0.1128,0.0747,0.1044,0.1051,0.0642,0.0632,0.0736,0.1101,0.1185,0.0745,0.1068,0.0673,0.1129,0.0796,0.1029,0.1058,0.0628,0.0655,0.0746,0.1107,0.1125,0.0765,0.1053,0.0674,0.1114,0.0724,0.103,0.1043,0.069,0.067,0.0751,0.106,0.1103,0.0743,0.1052,0.0663,0.1105,0.0714,0.1013,0.1049,0.07
15300,37,0.076,0.0742,0.1085,0.1072,0.0735,0.1027,0.0629,0.1083,0.073,0.1012,0.1052,0.0661,0.0705,0.0759,0.1092,0.1083,0.0739,0.1051,0.0728,0.1096,0.0726,0.1019,0.1051,0.0655,0.0661,0.0732,0.109,0.1095,0.0731,0.1058,0.0653,0.1105,0.072,0.1019,0.103,0.0609,0.0696,0.0749,0.1114,0.1139,0.0755,0.1084,0.0647,0.1148,0.0939,0.1026,0.1045,0.0644,0.0638,0.0742,0.1103,0.1169,0.0752,0.1061,0.0707,0.1121,0.0742,0.1037,0.1042,0.063,0.0641,0.073,0.1098,0.1181,0.0739,0.1062,0.0592,0.1112,0.0789,0.1018,0.1052,0.0673,0.0638,0.0737,0.1101,0.1125,0.0773,0.1053,0.0694,0.1109,0.0712,0.1016,0.1032,0.063,0.069,0.0749,0.1057,0.1104,0.0734,0.1043,0.0593,0.1092,0.0706,0.1005,0.1044,0.0694
15390,37,0.0773,0.0748,0.1092,0.1078,0.0744,0.1036,0.0623,0.1086,0.073,0.1013,0.1052,0.0644,0.0738,0.0763,0.1086,0.1094,0.074,0.1051,0.0688,0.109,0.0725,0.1022,0.1052,0.0661,0.0663,0.0739,0.1092,0.1098,0.0736,0.1054,0.0638,0.1108,0.0721,0.1023,0.1032,0.0645,0.0683,0.0748,0.1122,0.1141,0.0755,0.1084,0.0652,0.1147,0.0935,0.103,0.1045,0.064,0.0637,0.0743,0.1103,0.1173,0.0752,0.1062,0.07,0.1127,0.0747,0.1042,0.104,0.0632,0.0668,0.0728,0.1096,0.1183,0.0743,0.1065,0.0612,0.1112,0.0715,0.1017,0.1053,0.0667,0.0664,0.0737,0.1102,0.1127,0.077,0.1051,0.0681,0.1112,0.0715,0.1017,0.1033,0.063,0.0701,0.0746,0.1059,0.1107,0.0734,0.1047,0.0634,0.1092,0.0715,0.1004,0.1044,0.0675
15480,37,0.077,0.076,0.11,0.1085,0.0744,0.1042,0.0634,0.1092,0.0739,0.1026,0.1065,0.0674,0.0728,0.0764,0.1101,0.1093,0.0745,0.1055,0.0738,0.1102,0.0732,0.103,0.1062,0.0639,0.0637,0.074,0.1102,0.1101,0.074,0.1064,0.067,0.1116,0.0726,0.103,0.1043,0.066,0.0682,0.075,0.1122,0.1149,0.0759,0.1093,0.0674,0.1156,0.0931,0.1041,0.1053,0.0638,0.0635,0.0745,0.1112,0.1177,0.0757,0.1068,0.069,0.1132,0.0748,0.1051,0.106,0.0663,0.065,0.0734,0.11,0.1188,0.0748,0.1074,0.0674,0.113,0.08,0.1031,0.1059,0.0646,0.0628,0.0744,0.1109,0.1126,0.077,0.1056,0.0685,0.1116,0.0722,0.1028,0.104,0.0678,0.07,0.0749,0.1063,0.1107,0.074,0.1053,0.0662,0.1105,0.0717,0.1012,0.1051,0.069
15570,37,0.0753,0.0755,0.1096,0.1082,0.0744,0.1035,0.0639,0.1092,0.0738,0.1024,0.1065,0.0693,0.0728,0.0778,0.1115,0.1089,0.0744,0.105,0.0738,0.11,0.0737,0.102,0.1059,0.065,0.0635,0.0736,0.1099,0.1102,0.0743,0.1064,0.0665,0.1114,0.0724,0.1028,0.1037,0.0625,0.0699,0.075,0.1122,0.1153,0.0762,0.1087,0.0649,0.1153,0.0932,0.1033,0.1051,0.0663,0.0645,0.0755,0.1111,0.118,0.076,0.1066,0.0688,0.1123,0.0741,0.1046,0.1056,0.0651,0.0628,0.074,0.1107,0.1194,0.0744,0.1069,0.0631,0.1124,0.0792,0.1033,0.106,0.0645,0.0645,0.0748,0.1113,0.1132,0.0774,0.1056,0.0688,0.1112,0.0719,0.1026,0.1038,0.0668,0.0672,0.0759,0.1062,0.1105,0.074,0.105,0.0635,0.1103,0.0718,0.1014,0.1054,0.0699
15660,37,0.0783,0.0762,0.1099,0.1082,0.0747,0.104,0.0629,0.1088,0.0735,0.102,0.1058,0.0668,0.0721,0.0768,0.1097,0.1089,0.0744,0.1055,0.0691,0.1097,0.073,0.1024,0.1058,0.0643,0.0651,0.0742,0.1101,0.1103,0.0741,0.1065,0.0671,0.1114,0.0725,0.1029,0.1035,0.064,0.0685,0.0755,0.113,0.115,0.0763,0.1093,0.0622,0.1153,0.0934,0.1044,0.1052,0.0645,0.0638,0.0751,0.1116,0.1182,0.076,0.1068,0.0708,0.1127,0.0747,0.1046,0.1053,0.0623,0.0644,0.0737,0.1106,0.1189,0.0747,0.1075,0.0588,0.1122,0.0799,0.103,0.1064,0.0653,0.0627,0.0745,0.111,0.1131,0.0776,0.1057,0.0685,0.1118,0.0721,0.1024,0.1042,0.0656,0.0696,0.0749,0.1065,0.111,0.0741,0.1055,0.0594,0.11,0.0716,0.1013,0.1053,0.0707
15750,37,0.0762,0.0762,0.1102,0.1086,0.0742,0.1041,0.0637,0.109,0.0735,0.1021,0.1064,0.0683,0.073,0.0764,0.1106,0.1093,0.0747,0.1058,0.0732,0.1102,0.0733,0.1031,0.1063,0.0663,0.0629,0.074,0.1103,0.1102,0.0738,0.1065,0.0659,0.1116,0.0725,0.1033,0.1041,0.0658,0.0685,0.0751,0.1124,0.1147,0.0763,0.1091,0.0682,0.1158,0.0934,0.1042,0.1054,0.0645,0.0635,0.0749,0.1113,0.1178,0.0754,0.1068,0.0686,0.1129,0.0748,0.1046,0.1059,0.0625,0.0639,0.074,0.1104,0.1191,0.0747,0.1078,0.0626,0.1124,0.0718,0.1033,0.1059,0.0635,0.0621,0.0749,0.1111,0.1128,0.0769,0.1054,0.0658,0.1113,0.0721,0.1026,0.1039,0.0671,0.0703,0.0752,0.1069,0.1109,0.0745,0.1055,0.0641,0.1104,0.0716,0.1021,0.1051,0.0686
15840,37,0.0769,0.0753,0.1088,0.1072,0.0735,0.1032,0.0625,0.108,0.0729,0.1015,0.1056,0.0704,0.0734,0.0774,0.1127,0.1082,0.074,0.1054,0.0718,0.1095,0.073,0.1022,0.1056,0.063,0.0694,0.0736,0.1094,0.1094,0.0734,0.1055,0.0632,0.1104,0.0718,0.1024,0.1037,0.0653,0.0682,0.0752,0.1116,0.1141,0.0755,0.108,0.0681,0.1146,0.0936,0.1036,0.1045,0.0627,0.064,0.0746,0.1106,0.1171,0.0752,0.1062,0.0671,0.1116,0.074,0.104,0.1049,0.0624,0.0638,0.0733,0.1104,0.1188,0.0737,0.1063,0.0596,0.1116,0.0791,0.1024,0.1054,0.0657,0.0639,0.0745,0.1109,0.1128,0.0771,0.1052,0.0696,0.1105,0.071,0.1014,0.1029,0.0644,0.0671,0.0752,0.1064,0.1104,0.0736,0.1049,0.0607,0.109,0.0709,0.1009,0.1046,0.0689
15930,37,0.0782,0.0766,0.1101,0.1086,0.0746,0.1042,0.0626,0.1086,0.0733,0.1019,0.1056,0.0663,0.0727,0.0774,0.1106,0.1093,0.0749,0.1056,0.0684,0.11,0.0728,0.1029,0.1058,0.0645,0.0661,0.0745,0.1102,0.1101,0.0742,0.1058,0.0647,0.111,0.0721,0.1033,0.1043,0.0658,0.0709,0.0756,0.112,0.1149,0.0764,0.1094,0.0643,0.1154,0.0934,0.104,0.1053,0.0648,0.0637,0.0753,0.1117,0.1182,0.0759,0.1073,0.0696,0.1127,0.0747,0.1049,0.1058,0.062,0.0647,0.0731,0.111,0.1197,0.0748,0.1075,0.0582,0.1122,0.0726,0.1029,0.1064,0.0674,0.063,0.0752,0.1115,0.1131,0.0772,0.1058,0.0694,0.1115,0.0717,0.1026,0.1043,0.0664,0.0701,0.0755,0.107,0.1109,0.074,0.1054,0.0602,0.1101,0.0718,0.1016,0.1053,0.0676
16020,37,0.0777,0.0763,0.1101,0.1082,0.0746,0.104,0.0638,0.1092,0.0736,0.1023,0.1062,0.0677,0.0731,0.0764,0.1099,0.1093,0.0748,0.1059,0.0726,0.1104,0.0734,0.1034,0.1059,0.0661,0.0636,0.0743,0.1104,0.1101,0.074,0.1066,0.065,0.1115,0.0726,0.1033,0.1049,0.0676,0.0684,0.0751,0.1127,0.1152,0.0763,0.1092,0.0666,0.1156,0.0938,0.1042,0.1051,0.0637,0.0632,0.0746,0.111,0.1178,0.0755,0.1071,0.0674,0.1129,0.0749,0.105,0.106,0.0627,0.0654,0.0737,0.1105,0.1192,0.0746,0.1077,0.063,0.1127,0.0727,0.1032,0.106,0.0668,0.0621,0.0748,0.1109,0.1126,0.0769,0.1058,0.0656,0.1116,0.072,0.1027,0.1039,0.0655,0.0695,0.0754,0.1067,0.1107,0.074,0.1052,0.0601,0.1102,0.0715,0.1018,0.1049,0.0713
16110,37,0.0778,0.0766,0.1102,0.1086,0.0746,0.1041,0.0623,0.1084,0.0731,0.102,0.1065,0.0716,0.0736,0.0776,0.1106,0.1092,0.0745,0.1056,0.069,0.1102,0.0729,0.1031,0.106,0.0664,0.0692,0.0749,0.1101,0.11,0.0738,0.1056,0.0628,0.1114,0.0724,0.1034,0.105,0.0682,0.0709,0.0758,0.1126,0.115,0.0761,0.1085,0.0704,0.1156,0.0931,0.1044,0.1055,0.0659,0.066,0.0756,0.1109,0.1174,0.0749,0.1067,0.0627,0.1129,0.0751,0.1049,0.1063,0.062,0.0659,0.0738,0.1104,0.119,0.0748,0.1075,0.0649,0.1126,0.0735,0.1032,0.1058,0.0661,0.0629,0.0748,0.1111,0.1127,0.0771,0.1057,0.0651,0.1119,0.0722,0.1028,0.1039,0.0619,0.0701,0.0752,0.107,0.1111,0.074,0.1055,0.0619,0.1101,0.071,0.1013,0.1047,0.0713
16200,37,0.079,0.0759,0.1096,0.1081,0.0747,0.1042,0.061,0.1075,0.0723,0.1012,0.1049,0.0648,0.0694,0.0765,0.1103,0.1086,0.0741,0.1049,0.0625,0.1088,0.0722,0.1026,0.1051,0.064,0.0662,0.0746,0.1095,0.1095,0.0737,0.1051,0.0609,0.1106,0.0719,0.1028,0.1043,0.0678,0.0684,0.0752,0.1127,0.1143,0.0761,0.1086,0.067,0.1148,0.0941,0.1041,0.1045,0.0629,0.0647,0.075,0.1108,0.1164,0.0744,0.1062,0.0643,0.1125,0.0752,0.105,0.1054,0.0646,0.0656,0.0728,0.1104,0.1185,0.0746,0.1073,0.0618,0.1114,0.072,0.1022,0.1052,0.0637,0.0615,0.0737,0.1098,0.1116,0.0765,0.1052,0.0643,0.1116,0.0718,0.1021,0.1038,0.0633,0.071,0.074,0.1068,0.1115,0.0736,0.105,0.0625,0.1095,0.0719,0.1007,0.1043,0.0699
16290,37,0.0764,0.0754,0.1098,0.108,0.0745,0.104,0.0631,0.1078,0.0724,0.1015,0.1057,0.0681,0.0697,0.0781,0.1126,0.1095,0.0741,0.1051,0.0658,0.1092,0.0725,0.103,0.1053,0.0633,0.064,0.0747,0.1098,0.1096,0.0736,0.1052,0.0619,0.1104,0.0718,0.1029,0.1052,0.074,0.0682,0.0755,0.1126,0.114,0.0758,0.1082,0.0727,0.115,0.094,0.1044,0.1048,0.0602,0.0649,0.0748,0.1103,0.1162,0.0742,0.106,0.0624,0.1124,0.0755,0.1054,0.1064,0.068,0.0656,0.0737,0.1101,0.1173,0.0743,0.107,0.0699,0.1122,0.0721,0.1028,0.1051,0.0615,0.0617,0.0738,0.1094,0.1111,0.0761,0.105,0.0619,0.1113,0.0722,0.1025,0.1035,0.0622,0.0697,0.0745,0.1066,0.1104,0.0739,0.1049,0.0666,0.1099,0.0714,0.1012,0.1043,0.0702
16380,37,0.0764,0.0752,0.1099,0.108,0.0744,0.1037,0.0614,0.1078,0.0727,0.1012,0.1052,0.0661,0.071,0.0764,0.1109,0.1088,0.0742,0.1049,0.0637,0.1093,0.0724,0.1021,0.1057,0.0656,0.0676,0.0748,0.1096,0.1099,0.074,0.1048,0.0612,0.1103,0.0716,0.1026,0.105,0.0756,0.0691,0.0757,0.1128,0.1148,0.0761,0.108,0.0711,0.1148,0.0938,0.1035,0.1049,0.0612,0.0675,0.0752,0.1105,0.1165,0.0745,0.1058,0.0615,0.1122,0.075,0.1053,0.1059,0.064,0.0652,0.0739,0.11,0.1178,0.0741,0.1067,0.0672,0.1119,0.072,0.1024,0.1051,0.0641,0.0638,0.0741,0.1101,0.1116,0.0764,0.1048,0.061,0.1116,0.0725,0.1028,0.1036,0.0663,0.0695,0.0747,0.1066,0.111,0.0739,0.105,0.0656,0.1096,0.0718,0.1005,0.1042,0.0688
16470,37,0.0777,0.0763,0.1107,0.1088,0.0751,0.1047,0.0648,0.1077,0.0727,0.1013,0.105,0.0641,0.0708,0.0763,0.1101,0.1087,0.0749,0.1052,0.0624,0.1089,0.0727,0.1026,0.1054,0.0658,0.0656,0.0751,0.11,0.1103,0.074,0.105,0.0605,0.1108,0.0717,0.1029,0.1049,0.0708,0.0668,0.0752,0.1126,0.1144,0.0763,0.1082,0.071,0.1145,0.0939,0.1044,0.105,0.0611,0.0654,0.075,0.1108,0.117,0.0745,0.1059,0.063,0.1127,0.0754,0.1053,0.1065,0.0672,0.0676,0.0734,0.1097,0.1177,0.0746,0.1074,0.069,0.1119,0.0725,0.1027,0.1054,0.0623,0.0624,0.0736,0.1098,0.1119,0.0766,0.1047,0.0624,0.1114,0.0725,0.1026,0.1038,0.0668,0.0704,0.0742,0.107,0.111,0.0737,0.1053,0.0664,0.1098,0.0718,0.1007,0.1044,0.0699
16560,37,0.0774,0.0759,0.112,0.1083,0.0742,0.1036,0.0622,0.1081,0.0729,0.1015,0.1056,0.0685,0.0694,0.0759,0.1106,0.1084,0.0744,0.1052,0.071,0.1092,0.0727,0.1026,0.1056,0.0657,0.0649,0.0748,0.1099,0.1098,0.0738,0.1048,0.0612,0.1104,0.0718,0.103,0.1052,0.0742,0.0696,0.0759,0.1126,0.1144,0.076,0.1085,0.0736,0.1149,0.0942,0.1042,0.1054,0.0598,0.0682,0.0753,0.1103,0.1162,0.074,0.1056,0.0624,0.1123,0.0754,0.1052,0.1067,0.069,0.0666,0.0738,0.1099,0.1175,0.0744,0.1072,0.0721,0.1124,0.0722,0.1029,0.1057,0.0623,0.063,0.0736,0.1094,0.1113,0.0759,0.1046,0.0617,0.111,0.0726,0.1026,0.1033,0.0631,0.0714,0.0743,0.1069,0.1105,0.0743,0.1054,0.0659,0.1096,0.071,0.1008,0.1043,0.0701
16650,37,0.0776,0.0757,0.1101,0.1084,0.0747,0.1039,0.0611,0.1076,0.0724,0.1012,0.105,0.0661,0.0716,0.0794,0.114,0.1089,0.0745,0.1053,0.0657,0.1091,0.0726,0.1024,0.1057,0.0671,0.0667,0.0751,0.1103,0.1101,0.074,0.1048,0.0612,0.1103,0.0714,0.1026,0.1049,0.0744,0.0677,0.0763,0.1128,0.1148,0.0763,0.1077,0.0717,0.1146,0.0944,0.1037,0.1054,0.062,0.068,0.0759,0.111,0.1169,0.0747,0.1058,0.0611,0.1121,0.0751,0.1048,0.1063,0.0699,0.0651,0.0741,0.1105,0.1182,0.0744,0.1071,0.0701,0.1118,0.0718,0.1031,0.1057,0.0622,0.064,0.0742,0.1102,0.1118,0.0765,0.1047,0.0619,0.1111,0.0723,0.1023,0.1034,0.0656,0.0708,0.0751,0.107,0.1106,0.0739,0.1055,0.0647,0.1096,0.0712,0.1025,0.1046,0.0673
16740,37,0.0766,0.0771,0.1116,0.1095,0.0755,0.1052,0.0659,0.1084,0.0729,0.1021,0.1054,0.0648,0.0686,0.0765,0.1118,0.1098,0.0749,0.1062,0.0631,0.1093,0.0727,0.103,0.1062,0.0633,0.0665,0.0758,0.111,0.1107,0.0747,0.1052,0.0608,0.1111,0.0718,0.1034,0.1057,0.0763,0.0674,0.076,0.1139,0.115,0.0767,0.1093,0.072,0.1154,0.0943,0.1048,0.1058,0.0624,0.0651,0.0758,0.1116,0.1176,0.0751,0.1063,0.0632,0.1135,0.0757,0.1062,0.1076,0.0683,0.0679,0.0749,0.11,0.1182,0.0752,0.1075,0.0716,0.1129,0.0729,0.1041,0.1061,0.0603,0.062,0.0745,0.1105,0.1121,0.0769,0.1054,0.0617,0.112,0.0731,0.1037,0.1044,0.0694,0.0722,0.0746,0.1075,0.1114,0.0748,0.106,0.0667,0.1106,0.072,0.1019,0.1052,0.0699
16830,37,0.076,0.0799,0.1114,0.1092,0.0747,0.1042,0.063,0.1086,0.0731,0.1021,0.106,0.0685,0.0717,0.0773,0.1111,0.1095,0.0749,0.1061,0.0689,0.1097,0.0731,0.1034,0.1065,0.0613,0.065,0.0754,0.111,0.1106,0.0747,0.1053,0.0622,0.1109,0.0717,0.1034,0.1062,0.0767,0.0697,0.0765,0.1133,0.1153,0.0768,0.1089,0.0746,0.1156,0.0942,0.1047,0.106,0.0612,0.0665,0.0762,0.1115,0.1172,0.0748,0.1064,0.0615,0.1128,0.0754,0.106,0.1075,0.0747,0.0667,0.0746,0.1107,0.1182,0.0749,0.1075,0.0724,0.1129,0.0727,0.1044,0.1064,0.0604,0.0643,0.0754,0.1106,0.1111,0.0762,0.1053,0.0622,0.1115,0.0732,0.1039,0.1044,0.0682,0.0701,0.0757,0.1076,0.1109,0.0753,0.1059,0.0666,0.1108,0.0717,0.1019,0.1052,0.0686
16920,37,0.0771,0.076,0.1104,0.1083,0.0748,0.104,0.0644,0.1076,0.0724,0.1013,0.1049,0.065,0.0711,0.0793,0.1136,0.109,0.0745,0.1051,0.0641,0.1085,0.0722,0.1025,0.1054,0.0677,0.0652,0.0758,0.1105,0.1103,0.0745,0.1053,0.061,0.1097,0.071,0.1026,0.1046,0.072,0.0693,0.076,0.113,0.115,0.0763,0.1082,0.0677,0.1144,0.0941,0.1038,0.105,0.0641,0.0661,0.0764,0.1116,0.1172,0.075,0.106,0.0602,0.1119,0.0748,0.1046,0.1063,0.0674,0.0651,0.0745,0.1108,0.1181,0.074,0.1071,0.0671,0.1115,0.0717,0.1032,0.1053,0.0615,0.0639,0.075,0.1105,0.1113,0.0762,0.1048,0.0598,0.1105,0.0723,0.1028,0.1034,0.069,0.0705,0.0756,0.1063,0.1103,0.0742,0.1054,0.0688,0.11,0.0721,0.1011,0.1046,0.067
17010,37,0.0774,0.0761,0.1106,0.1084,0.0749,0.1047,0.0694,0.1083,0.073,0.1017,0.1044,0.0639,0.0664,0.0796,0.1131,0.1093,0.0747,0.1055,0.0597,0.1085,0.0725,0.1024,0.1051,0.0687,0.0649,0.0751,0.1112,0.1108,0.075,0.1054,0.0681,0.1102,0.0711,0.1023,0.1046,0.0692,0.067,0.0758,0.1132,0.1147,0.0764,0.1085,0.0644,0.1142,0.0942,0.104,0.1047,0.0604,0.066,0.0759,0.1116,0.1169,0.0745,0.1058,0.0623,0.1122,0.0752,0.1054,0.1068,0.0726,0.0657,0.074,0.1109,0.1177,0.0745,0.1075,0.0716,0.112,0.0723,0.1029,0.1053,0.063,0.0622,0.0745,0.11,0.1108,0.0758,0.1043,0.0601,0.1107,0.0727,0.1031,0.1038,0.0694,0.0697,0.0746,0.1067,0.1102,0.0742,0.1053,0.0695,0.1098,0.0721,0.1011,0.1043,0.0672
17100,37,0.0752,0.0765,0.111,0.109,0.075,0.105,0.0649,0.1085,0.0732,0.1022,0.1057,0.0663,0.0704,0.0771,0.1115,0.1095,0.0746,0.106,0.0617,0.1095,0.0727,0.103,0.1054,0.0645,0.0649,0.0755,0.1111,0.1106,0.0747,0.1058,0.0598,0.1108,0.0717,0.1032,0.1056,0.0746,0.0693,0.0769,0.1134,0.1154,0.077,0.109,0.0715,0.1153,0.0944,0.1048,0.1056,0.0663,0.0674,0.0765,0.1117,0.1178,0.0751,0.1064,0.0613,0.1126,0.0753,0.1059,0.1075,0.0758,0.0674,0.0752,0.111,0.1184,0.0747,0.1079,0.0718,0.1127,0.0795,0.1042,0.1063,0.0646,0.0688,0.0758,0.1109,0.1106,0.0756,0.1051,0.06,0.1111,0.0729,0.1038,0.104,0.0696,0.07,0.0762,0.1068,0.1101,0.0746,0.1058,0.0682,0.1108,0.0722,0.1018,0.1051,0.0694
17190,37,0.0764,0.0762,0.1109,0.1086,0.0752,0.1046,0.0659,0.1077,0.0727,0.101,0.1047,0.0658,0.0682,0.0774,0.1127,0.1094,0.0751,0.1057,0.0602,0.1089,0.0722,0.1025,0.105,0.0687,0.0668,0.0752,0.1103,0.1099,0.0745,0.1046,0.0605,0.1096,0.071,0.1023,0.1047,0.0729,0.0676,0.0764,0.1133,0.1141,0.0765,0.1082,0.0673,0.1144,0.0941,0.1041,0.1046,0.0649,0.0664,0.0765,0.112,0.1172,0.0749,0.1062,0.0606,0.1116,0.0749,0.1051,0.1065,0.0704,0.0648,0.0744,0.1112,0.1176,0.0742,0.1074,0.0674,0.1115,0.0723,0.1031,0.1053,0.064,0.0642,0.075,0.1106,0.1111,0.0761,0.105,0.0602,0.1107,0.0724,0.103,0.1036,0.0682,0.0698,0.0753,0.1067,0.1103,0.0741,0.1053,0.0658,0.1095,0.0718,0.1008,0.1041,0.071
17280,37,0.0768,0.076,0.1108,0.1085,0.0748,0.105,0.0699,0.108,0.0732,0.1022,0.105,0.0642,0.0698,0.0805,0.1129,0.109,0.0746,0.106,0.0588,0.1085,0.0725,0.103,0.1048,0.069,0.0651,0.0756,0.111,0.1104,0.0745,0.1052,0.0639,0.1104,0.0714,0.1027,0.1048,0.073,0.0659,0.0763,0.1132,0.1148,0.0768,0.1083,0.0667,0.1143,0.094,0.1045,0.1048,0.0656,0.065,0.076,0.1116,0.117,0.0746,0.106,0.0612,0.1119,0.0751,0.1051,0.1069,0.0736,0.0659,0.0743,0.111,0.1182,0.0745,0.1076,0.0716,0.1122,0.0803,0.1034,0.1055,0.0613,0.0622,0.075,0.1101,0.1105,0.0757,0.1049,0.0608,0.1107,0.0731,0.1037,0.1038,0.0703,0.0713,0.0754,0.1066,0.1101,0.0743,0.1054,0.0706,0.11,0.0722,0.1011,0.1041,0.0674
17370,37,0.076,0.0756,0.1105,0.1082,0.0749,0.1043,0.0669,0.1079,0.0729,0.1017,0.1048,0.0632,0.0689,0.0801,0.1123,0.1091,0.0748,0.1057,0.0603,0.1087,0.073,0.1023,0.1052,0.0685,0.0642,0.0755,0.1106,0.1098,0.0744,0.105,0.0605,0.1101,0.0713,0.1026,0.1048,0.0734,0.0697,0.0762,0.1129,0.1146,0.0767,0.1078,0.068,0.1142,0.0939,0.1041,0.1046,0.0646,0.0666,0.076,0.1114,0.1168,0.0745,0.106,0.0613,0.1118,0.0751,0.1052,0.1066,0.0662,0.0673,0.075,0.1105,0.1175,0.0744,0.1072,0.0681,0.1115,0.0796,0.103,0.105,0.0632,0.063,0.0748,0.1106,0.1109,0.0761,0.1048,0.0608,0.1107,0.0726,0.1028,0.1036,0.0636,0.0707,0.0757,0.1069,0.1099,0.074,0.1052,0.0639,0.1093,0.0713,0.1011,0.1039,0.0717
17460,37,0.076,0.0777,0.1114,0.1082,0.0752,0.1047,0.0685,0.1076,0.0726,0.1013,0.104,0.0654,0.0691,0.0765,0.1105,0.1097,0.0745,0.1059,0.0614,0.1082,0.0716,0.1021,0.1053,0.07,0.0658,0.0757,0.1108,0.1099,0.0747,0.1051,0.0628,0.1102,0.0714,0.1026,0.1044,0.0656,0.0676,0.0762,0.1133,0.1146,0.0766,0.1079,0.0662,0.1142,0.0931,0.1041,0.1044,0.0637,0.0671,0.076,0.1117,0.117,0.0749,0.1061,0.0612,0.112,0.0755,0.1054,0.1064,0.0652,0.0669,0.0742,0.1112,0.1183,0.0747,0.1077,0.0658,0.1113,0.0798,0.103,0.1052,0.0637,0.0626,0.0749,0.1108,0.1112,0.0764,0.105,0.0621,0.1111,0.0731,0.1032,0.104,0.0675,0.0698,0.0749,0.1073,0.1109,0.0743,0.1055,0.0674,0.1095,0.0722,0.101,0.1041,0.0695
17550,37,0.0768,0.0759,0.1121,0.1087,0.0748,0.1049,0.0713,0.1083,0.0734,0.1024,0.105,0.0634,0.0672,0.0768,0.1115,0.1097,0.075,0.1062,0.059,0.1087,0.0725,0.1029,0.1048,0.0703,0.0646,0.0755,0.111,0.11,0.0749,0.1058,0.0713,0.1099,0.0715,0.1026,0.1044,0.0698,0.0679,0.0764,0.1132,0.1148,0.0767,0.1086,0.0666,0.1144,0.0938,0.1043,0.1047,0.0615,0.065,0.0762,0.1121,0.1172,0.075,0.1062,0.0607,0.112,0.0755,0.1056,0.107,0.0734,0.0647,0.0743,0.1113,0.1173,0.0748,0.1076,0.071,0.1117,0.076,0.1034,0.1052,0.0624,0.0632,0.0749,0.1106,0.1106,0.076,0.1048,0.0599,0.1105,0.0732,0.1038,0.1036,0.0705,0.0713,0.0754,0.1068,0.1102,0.0744,0.1053,0.0719,0.1099,0.0723,0.1011,0.1038,0.0678
17640,37,0.0745,0.0752,0.1102,0.1082,0.0748,0.1046,0.068,0.1082,0.0735,0.1019,0.105,0.0635,0.0671,0.0764,0.1104,0.1092,0.075,0.1057,0.0595,0.1086,0.073,0.1028,0.1048,0.0699,0.0645,0.0752,0.111,0.1099,0.075,0.1059,0.071,0.1096,0.0713,0.1022,0.1045,0.0663,0.0683,0.0761,0.1136,0.115,0.0766,0.1088,0.0645,0.1138,0.0947,0.1041,0.1047,0.0634,0.0659,0.0763,0.1121,0.1175,0.0749,0.1062,0.0609,0.1115,0.0751,0.1049,0.1064,0.0704,0.0666,0.0749,0.1114,0.1195,0.0746,0.1072,0.0688,0.1115,0.0796,0.1038,0.1052,0.0632,0.0632,0.0751,0.1111,0.1112,0.0766,0.1051,0.0596,0.1109,0.0727,0.1032,0.1033,0.0653,0.0699,0.0758,0.1073,0.1102,0.0741,0.1053,0.0666,0.1096,0.0717,0.1014,0.1041,0.0717
17730,37,0.0756,0.0766,0.1111,0.1083,0.0751,0.1046,0.0678,0.1083,0.0738,0.1019,0.1039,0.066,0.0682,0.0762,0.1099,0.1084,0.0747,0.1058,0.06,0.1083,0.0727,0.1022,0.1046,0.0696,0.0653,0.0755,0.1109,0.1104,0.0754,0.106,0.0727,0.1097,0.0716,0.1024,0.104,0.0635,0.0657,0.0763,0.1135,0.1147,0.0766,0.1084,0.0616,0.114,0.0939,0.1039,0.1043,0.0635,0.0658,0.0768,0.1125,0.118,0.0758,0.1067,0.0645,0.1118,0.0752,0.1052,0.1067,0.068,0.0653,0.0744,0.1116,0.1184,0.0746,0.1075,0.0681,0.1115,0.0804,0.1032,0.1051,0.0602,0.0627,0.075,0.1107,0.1112,0.0767,0.1052,0.0615,0.1108,0.073,0.1035,0.1044,0.0703,0.0711,0.0754,0.1068,0.1107,0.0742,0.1052,0.0691,0.1099,0.0722,0.1008,0.1045,0.0662
17820,37,0.0755,0.0753,0.1108,0.1083,0.0749,0.1045,0.0698,0.1086,0.0738,0.1023,0.1051,0.0625,0.0665,0.0793,0.1144,0.1089,0.0751,0.1063,0.0636,0.109,0.0732,0.1025,0.105,0.0713,0.0645,0.0751,0.1111,0.1102,0.0752,0.106,0.0723,0.11,0.0716,0.1025,0.1043,0.0657,0.0662,0.0763,0.1135,0.1148,0.0766,0.109,0.069,0.1143,0.0943,0.1046,0.1048,0.0603,0.0679,0.076,0.1116,0.1172,0.0751,0.106,0.0609,0.1122,0.0757,0.1055,0.1072,0.0737,0.065,0.0748,0.1114,0.1176,0.0749,0.1073,0.0721,0.1116,0.0795,0.1037,0.1052,0.0617,0.0644,0.075,0.1106,0.1105,0.0758,0.1048,0.0602,0.1106,0.0734,0.1037,0.1034,0.0689,0.0698,0.0757,0.1067,0.1102,0.0745,0.1056,0.072,0.1101,0.0722,0.1014,0.1044,0.0668
17910,37,0.0765,0.0762,0.111,0.1086,0.0753,0.1048,0.0676,0.1078,0.0734,0.102,0.1048,0.0643,0.0698,0.0805,0.1127,0.1094,0.0752,0.1057,0.0622,0.1088,0.0728,0.1025,0.1056,0.0693,0.0672,0.0757,0.1108,0.1101,0.0751,0.1054,0.0648,0.1099,0.0715,0.1028,0.1047,0.0712,0.069,0.077,0.1135,0.1148,0.0768,0.1086,0.0678,0.1142,0.0944,0.1041,0.1049,0.0657,0.0695,0.0762,0.1119,0.1172,0.0752,0.106,0.061,0.1119,0.0754,0.1054,0.1064,0.068,0.0669,0.0748,0.1113,0.1169,0.0745,0.1074,0.0703,0.1114,0.0801,0.103,0.1051,0.0634,0.063,0.0749,0.1109,0.1114,0.0769,0.1051,0.0606,0.1107,0.0733,0.1031,0.1039,0.0666,0.0702,0.0754,0.1073,0.1106,0.0743,0.1053,0.0664,0.1096,0.0719,0.1011,0.104,0.0722
18000,37,0.0757,0.0771,0.1121,0.1097,0.0762,0.1058,0.0665,0.1085,0.0735,0.1027,0.1046,0.066,0.0693,0.0813,0.1127,0.1097,0.0757,0.1058,0.0613,0.1093,0.0732,0.1034,0.1059,0.0655,0.0678,0.0765,0.1114,0.1105,0.0755,0.106,0.0622,0.1112,0.0723,0.1041,0.1055,0.0704,0.0687,0.0767,0.1138,0.1152,0.0773,0.1092,0.0716,0.115,0.0944,0.1049,0.1055,0.063,0.065,0.0766,0.1125,0.1182,0.0756,0.107,0.0629,0.1134,0.0762,0.1064,0.1076,0.0681,0.0665,0.0751,0.1118,0.1184,0.0757,0.1083,0.0717,0.1128,0.0802,0.1039,0.1061,0.061,0.0643,0.0755,0.1111,0.1112,0.0767,0.1052,0.0615,0.1115,0.0739,0.1043,0.1045,0.0708,0.0703,0.0758,0.1075,0.1106,0.0752,0.1062,0.0708,0.1108,0.0727,0.1018,0.1049,0.068
18090,37,0.0758,0.0766,0.1115,0.109,0.0748,0.1048,0.0694,0.1086,0.0739,0.1029,0.1055,0.0635,0.0696,0.0777,0.1137,0.1094,0.0754,0.1064,0.0614,0.1095,0.0732,0.1034,0.1056,0.0679,0.0648,0.0761,0.1114,0.1104,0.0757,0.1058,0.0629,0.1108,0.072,0.1034,0.1056,0.0746,0.069,0.0769,0.1138,0.1154,0.0772,0.1089,0.072,0.1152,0.0946,0.1048,0.1055,0.0619,0.0658,0.077,0.1128,0.1182,0.0759,0.1069,0.06,0.1126,0.0757,0.1058,0.1076,0.0759,0.0643,0.0753,0.1122,0.1189,0.0751,0.1078,0.0712,0.1125,0.0805,0.1048,0.1057,0.0619,0.0647,0.0759,0.1117,0.1116,0.0768,0.1054,0.0613,0.1109,0.0733,0.1041,0.1038,0.0714,0.0698,0.0768,0.1074,0.1103,0.0751,0.1059,0.0685,0.111,0.0722,0.1022,0.1051,0.0684
18180,37,0.0753,0.0751,0.11,0.1076,0.0742,0.1038,0.0644,0.1077,0.0736,0.1018,0.1044,0.0642,0.069,0.0769,0.1105,0.1085,0.0748,0.1061,0.0617,0.1091,0.0726,0.1026,0.1046,0.0699,0.0641,0.075,0.111,0.1098,0.0751,0.1062,0.0738,0.1099,0.0717,0.1023,0.1037,0.0642,0.067,0.0765,0.1134,0.115,0.0768,0.1088,0.0617,0.1142,0.0941,0.1032,0.1044,0.0697,0.0648,0.0764,0.1128,0.1183,0.0762,0.1067,0.0703,0.1107,0.0744,0.1042,0.1059,0.065,0.0638,0.0747,0.1122,0.1189,0.0746,0.1072,0.0622,0.1109,0.0795,0.1033,0.105,0.0643,0.0648,0.0757,0.1118,0.1115,0.077,0.1053,0.0643,0.1098,0.0722,0.1029,0.1033,0.0692,0.0672,0.0764,0.1075,0.1104,0.0744,0.1051,0.0627,0.1095,0.072,0.1015,0.1043,0.067
18270,37,0.075,0.0809,0.1119,0.1086,0.0751,0.1052,0.07,0.1087,0.0745,0.1031,0.1052,0.064,0.0699,0.0775,0.1123,0.1095,0.0755,0.1066,0.0609,0.1094,0.073,0.1036,0.1052,0.0665,0.064,0.0755,0.112,0.1102,0.0758,0.1072,0.0751,0.1108,0.0722,0.1031,0.1039,0.0658,0.0658,0.0765,0.1146,0.1158,0.0778,0.1099,0.0607,0.1145,0.0942,0.1046,0.105,0.0699,0.0648,0.0768,0.1137,0.1196,0.0768,0.1076,0.0728,0.112,0.0748,0.1053,0.1071,0.0693,0.063,0.0754,0.1128,0.1194,0.0755,0.1085,0.0617,0.1122,0.0729,0.1044,0.106,0.0659,0.0627,0.076,0.112,0.1116,0.0768,0.1053,0.0597,0.1109,0.0731,0.1039,0.104,0.0714,0.0696,0.0765,0.1078,0.1104,0.0752,0.1059,0.0694,0.1106,0.072,0.1021,0.1048,0.068
18360,37,0.0722,0.0764,0.1112,0.1086,0.0747,0.1047,0.0667,0.109,0.0744,0.1033,0.1058,0.0656,0.0691,0.0776,0.1116,0.1091,0.0755,0.1068,0.0671,0.1097,0.0737,0.1037,0.1056,0.0637,0.0628,0.0747,0.1115,0.11,0.0755,0.1071,0.0726,0.1106,0.0725,0.1031,0.1041,0.0643,0.0686,0.0764,0.1142,0.116,0.0776,0.1095,0.0615,0.115,0.0939,0.1046,0.1052,0.0678,0.0644,0.0765,0.1127,0.1187,0.0764,0.1074,0.07,0.1119,0.0749,0.1051,0.1067,0.0685,0.0632,0.0756,0.1125,0.1201,0.0754,0.1078,0.0653,0.1123,0.0799,0.1047,0.1057,0.0655,0.0682,0.0765,0.1122,0.1113,0.0769,0.1058,0.0608,0.1109,0.073,0.1037,0.1037,0.0688,0.067,0.077,0.1071,0.1096,0.0751,0.1057,0.0646,0.1104,0.0715,0.1026,0.1047,0.0688
18450,37,0.076,0.0755,0.1102,0.1077,0.0745,0.104,0.0657,0.1078,0.0735,0.102,0.1048,0.063,0.0684,0.0767,0.11,0.1082,0.0748,0.1057,0.0599,0.1083,0.0728,0.1026,0.1045,0.0708,0.0638,0.0751,0.1111,0.1097,0.0753,0.1065,0.0756,0.1099,0.0717,0.1021,0.1034,0.0647,0.069,0.0763,0.1137,0.1151,0.0765,0.1089,0.0613,0.1141,0.0945,0.1039,0.104,0.0699,0.0647,0.0766,0.113,0.1183,0.0764,0.1069,0.0702,0.1103,0.0741,0.1036,0.1052,0.0641,0.064,0.075,0.1126,0.1195,0.0748,0.1071,0.0602,0.1111,0.0716,0.1034,0.105,0.0659,0.066,0.0758,0.112,0.1119,0.0777,0.1055,0.0662,0.1098,0.0722,0.103,0.103,0.0673,0.0668,0.0766,0.1077,0.1102,0.0745,0.1053,0.0645,0.1095,0.0724,0.1016,0.1044,0.0682
18540,37,0.0748,0.077,0.1135,0.1087,0.0752,0.1053,0.07,0.1086,0.0746,0.1033,0.1053,0.0641,0.0699,0.0775,0.111,0.109,0.0757,0.1067,0.0618,0.1095,0.0729,0.1035,0.1048,0.0662,0.0645,0.0761,0.112,0.1106,0.076,0.1073,0.0757,0.1107,0.0726,0.1032,0.104,0.0646,0.0682,0.0765,0.1145,0.116,0.0775,0.11,0.0607,0.1149,0.0938,0.1047,0.1047,0.0698,0.0654,0.0776,0.114,0.1195,0.077,0.1075,0.0694,0.1119,0.0753,0.1055,0.1071,0.071,0.0632,0.0752,0.1128,0.1199,0.0754,0.1083,0.0654,0.112,0.0807,0.1043,0.1055,0.0659,0.0634,0.0764,0.1121,0.1116,0.0773,0.1056,0.0603,0.1107,0.0731,0.1039,0.1041,0.071,0.068,0.0766,0.1082,0.1106,0.0751,0.1059,0.0699,0.1106,0.0725,0.1022,0.1047,0.0689
18630,37,0.0784,0.0754,0.1099,0.1074,0.0741,0.1037,0.0652,0.1081,0.074,0.1031,0.1053,0.0631,0.068,0.0777,0.1111,0.108,0.0748,0.1057,0.0691,0.1094,0.073,0.1029,0.1045,0.0661,0.0623,0.0748,0.1111,0.1091,0.0749,0.1064,0.0704,0.1097,0.0723,0.1027,0.104,0.0617,0.069,0.0762,0.1132,0.1152,0.077,0.1093,0.0619,0.1146,0.0939,0.104,0.1041,0.0648,0.0642,0.0762,0.1127,0.1183,0.0761,0.107,0.072,0.1107,0.0747,0.1044,0.1059,0.0641,0.0637,0.0747,0.1128,0.1187,0.075,0.1072,0.0623,0.1108,0.0796,0.1034,0.1046,0.0635,0.0647,0.0759,0.1118,0.1113,0.0772,0.1056,0.068,0.1094,0.0719,0.1024,0.1028,0.0658,0.0665,0.077,0.108,0.1101,0.0747,0.1054,0.0669,0.11,0.072,0.1014,0.1036,0.07
18720,37,0.0751,0.0765,0.1106,0.1083,0.0754,0.1049,0.0644,0.1084,0.0746,0.1032,0.106,0.067,0.0692,0.0782,0.1109,0.1094,0.0758,0.1063,0.0676,0.1095,0.074,0.1039,0.1051,0.0651,0.0648,0.0757,0.1113,0.1097,0.0757,0.107,0.0712,0.1104,0.0728,0.1033,0.104,0.0643,0.068,0.0765,0.1144,0.1155,0.0777,0.1097,0.0604,0.115,0.0934,0.1045,0.1046,0.0702,0.0647,0.0768,0.1136,0.1196,0.0773,0.1078,0.0734,0.1115,0.0748,0.1052,0.1063,0.0642,0.0655,0.0745,0.1134,0.1209,0.0754,0.1078,0.0611,0.1112,0.0797,0.1039,0.1057,0.0651,0.0641,0.0763,0.1127,0.1127,0.0786,0.1066,0.0702,0.1108,0.0724,0.1031,0.1035,0.0654,0.0675,0.0771,0.1082,0.1107,0.0747,0.1056,0.0629,0.1102,0.0725,0.102,0.1046,0.0695
18810,37,0.077,0.0767,0.1121,0.1082,0.0754,0.1047,0.0648,0.1078,0.0743,0.103,0.1056,0.064,0.0729,0.0791,0.1133,0.108,0.0755,0.1056,0.0673,0.1088,0.0734,0.1033,0.1045,0.0666,0.0642,0.0755,0.1109,0.109,0.0751,0.1062,0.0687,0.1101,0.0731,0.1033,0.1039,0.065,0.0679,0.0761,0.1132,0.1148,0.0775,0.109,0.0617,0.114,0.0935,0.1041,0.104,0.0645,0.0641,0.076,0.113,0.1184,0.0764,0.1072,0.0714,0.1111,0.0751,0.1049,0.106,0.0622,0.064,0.0747,0.1127,0.1194,0.0751,0.1079,0.0651,0.111,0.0807,0.1029,0.1049,0.0663,0.0631,0.0757,0.1119,0.112,0.0782,0.1058,0.0705,0.1102,0.0722,0.1029,0.1036,0.0703,0.0673,0.0761,0.1082,0.1109,0.0746,0.1052,0.066,0.1095,0.0722,0.1013,0.104,0.0684
18900,37,0.0761,0.0767,0.1118,0.1085,0.075,0.1045,0.064,0.1086,0.0747,0.1034,0.1066,0.0675,0.0716,0.0782,0.1121,0.1085,0.076,0.1059,0.0738,0.1098,0.0744,0.1038,0.1055,0.0645,0.0627,0.0754,0.111,0.1093,0.0754,0.1067,0.0688,0.1107,0.073,0.1034,0.1046,0.0629,0.0667,0.0767,0.114,0.1153,0.0774,0.1099,0.0648,0.115,0.094,0.1051,0.1048,0.0656,0.0641,0.0767,0.1132,0.1191,0.077,0.1074,0.0709,0.1114,0.0754,0.1052,0.1074,0.0704,0.0635,0.0752,0.1128,0.1199,0.0755,0.1083,0.0675,0.1123,0.0731,0.1045,0.1057,0.0633,0.064,0.0764,0.1128,0.1121,0.078,0.1061,0.0682,0.1106,0.073,0.1034,0.1033,0.0664,0.0678,0.0775,0.1075,0.1104,0.075,0.1058,0.0662,0.1106,0.0726,0.1023,0.1049,0.069
18990,37,0.0787,0.0785,0.1115,0.1084,0.0752,0.1045,0.0655,0.1086,0.0748,0.1032,0.1056,0.0633,0.0693,0.0781,0.1112,0.1089,0.0758,0.1067,0.0688,0.1095,0.074,0.1036,0.1054,0.064,0.0643,0.0761,0.1114,0.1099,0.076,0.1066,0.0738,0.1102,0.0726,0.103,0.1042,0.0633,0.0668,0.0773,0.1142,0.1156,0.0774,0.1097,0.0609,0.1146,0.0946,0.1044,0.105,0.0684,0.0652,0.0774,0.1135,0.1195,0.0774,0.1072,0.0686,0.1113,0.0752,0.105,0.1069,0.0684,0.0636,0.0757,0.113,0.1204,0.0755,0.1086,0.0632,0.1117,0.0806,0.1046,0.1059,0.0655,0.0646,0.0764,0.1127,0.1122,0.0783,0.1059,0.0659,0.1106,0.0732,0.1038,0.1036,0.0696,0.068,0.077,0.108,0.1107,0.0749,0.1059,0.0684,0.1104,0.0728,0.1017,0.1048,0.07
19080,37,0.0762,0.0769,0.1111,0.109,0.0756,0.1049,0.0658,0.1088,0.0751,0.1038,0.1065,0.0643,0.072,0.0777,0.1118,0.1091,0.076,0.1068,0.0689,0.1094,0.0741,0.1037,0.1051,0.0654,0.0652,0.0765,0.1121,0.1104,0.0765,0.1069,0.0749,0.1108,0.0728,0.1032,0.1048,0.0638,0.0673,0.0768,0.1151,0.1151,0.0779,0.11,0.0633,0.1145,0.0943,0.105,0.1049,0.066,0.0655,0.0778,0.114,0.1193,0.0772,0.1076,0.0685,0.1122,0.0757,0.1058,0.1079,0.0771,0.0649,0.0753,0.1132,0.1197,0.0758,0.1086,0.0717,0.1122,0.0806,0.1048,0.1057,0.0648,0.066,0.0762,0.1118,0.111,0.0773,0.1053,0.0601,0.1107,0.0737,0.1042,0.1038,0.072,0.0698,0.0769,0.1077,0.1106,0.0753,0.1059,0.0722,0.111,0.0734,0.1019,0.1057,0.0678
19170,37,0.0754,0.0768,0.1121,0.1093,0.0754,0.105,0.0688,0.1087,0.0744,0.1032,0.1054,0.063,0.0675,0.0793,0.1149,0.1092,0.076,0.1067,0.0672,0.1096,0.0739,0.1034,0.1054,0.0705,0.0648,0.0761,0.1116,0.1101,0.0761,0.1062,0.0663,0.1106,0.0725,0.1032,0.1051,0.0683,0.0663,0.0776,0.1145,0.1151,0.0778,0.1096,0.0695,0.1146,0.094,0.1048,0.1055,0.0632,0.0659,0.0774,0.1134,0.1182,0.0761,0.1069,0.061,0.1122,0.0758,0.1058,0.1075,0.0766,0.0668,0.0763,0.1123,0.1182,0.0757,0.1075,0.0722,0.1127,0.0733,0.105,0.1059,0.0633,0.0671,0.0764,0.1118,0.1109,0.0771,0.1053,0.0601,0.1106,0.0738,0.1042,0.1037,0.0706,0.0708,0.0772,0.1077,0.1102,0.0753,0.1059,0.0698,0.1106,0.0719,0.1018,0.1046,0.0687
19260,37,0.0752,0.0767,0.1112,0.1091,0.0761,0.105,0.0662,0.1084,0.0742,0.1027,0.1049,0.0633,0.0695,0.0785,0.1114,0.1097,0.0763,0.1066,0.0597,0.1091,0.074,0.1028,0.1055,0.0701,0.0654,0.0764,0.1119,0.1101,0.0763,0.1062,0.0662,0.1102,0.0724,0.1029,0.1047,0.0656,0.0673,0.0774,0.1152,0.1152,0.0778,0.1094,0.0653,0.1144,0.0948,0.1044,0.1053,0.0658,0.0676,0.0777,0.1136,0.1185,0.0766,0.1072,0.0612,0.112,0.0756,0.1056,0.1071,0.07,0.0672,0.0763,0.1125,0.1189,0.0755,0.1078,0.068,0.1118,0.0729,0.1042,0.1056,0.0634,0.0648,0.0763,0.1121,0.1116,0.0776,0.1056,0.0598,0.1107,0.0734,0.1039,0.1043,0.0686,0.0693,0.0771,0.1082,0.1103,0.0751,0.1058,0.0675,0.1102,0.0726,0.1015,0.1044,0.0677
19350,37,0.0755,0.0763,0.1107,0.1082,0.075,0.1048,0.0725,0.108,0.0745,0.1028,0.1045,0.064,0.0708,0.0772,0.1109,0.1086,0.0755,0.1061,0.0628,0.1087,0.0727,0.103,0.1045,0.0691,0.0636,0.0758,0.1113,0.1092,0.0758,0.1068,0.0755,0.1098,0.0723,0.1028,0.1034,0.0634,0.067,0.0764,0.1142,0.1145,0.0772,0.1093,0.06,0.1139,0.0943,0.1036,0.1042,0.0659,0.0649,0.0764,0.1135,0.1184,0.0767,0.1066,0.0718,0.1109,0.0748,0.1044,0.1063,0.0692,0.0647,0.0746,0.113,0.1185,0.0754,0.1076,0.0669,0.1112,0.0798,0.1035,0.1048,0.0612,0.0628,0.076,0.1118,0.1111,0.0772,0.105,0.0635,0.1099,0.0726,0.1027,0.1028,0.0697,0.072,0.0763,0.108,0.1102,0.0748,0.1053,0.0683,0.1095,0.0726,0.1018,0.104,0.0671
19440,37,0.0771,0.0768,0.1114,0.1083,0.0752,0.1046,0.0653,0.1087,0.0749,0.1035,0.1065,0.0683,0.0693,0.0786,0.1129,0.1087,0.076,0.1065,0.0733,0.1098,0.0742,0.1039,0.1055,0.0649,0.0644,0.0757,0.111,0.109,0.0757,0.1068,0.0664,0.1111,0.0732,0.1035,0.1047,0.0626,0.0702,0.0771,0.1137,0.115,0.0773,0.1099,0.0687,0.1149,0.0939,0.1043,0.1049,0.0647,0.064,0.0766,0.1133,0.1186,0.0767,0.1077,0.0684,0.1116,0.0754,0.1048,0.1065,0.0654,0.0658,0.0757,0.1133,0.1202,0.0757,0.108,0.0619,0.1115,0.0732,0.1043,0.1057,0.0655,0.064,0.0767,0.1127,0.112,0.0784,0.106,0.0691,0.1101,0.0724,0.1031,0.1032,0.0669,0.0687,0.0777,0.1083,0.1103,0.0751,0.1056,0.0629,0.1102,0.0719,0.1031,0.105,0.0691
19530,37,0.0772,0.0781,0.1121,0.1084,0.0758,0.1045,0.0631,0.1079,0.0743,0.1032,0.1059,0.0678,0.0723,0.0792,0.1114,0.1086,0.0758,0.1061,0.0708,0.109,0.074,0.1034,0.1056,0.0693,0.0664,0.0762,0.1112,0.1091,0.0755,0.1067,0.0652,0.1107,0.0732,0.1037,0.1046,0.0631,0.0701,0.0774,0.1138,0.1152,0.0775,0.1099,0.0651,0.1146,0.094,0.1045,0.1046,0.0667,0.0648,0.0772,0.1138,0.1191,0.0773,0.1079,0.0713,0.1112,0.0753,0.105,0.1058,0.0636,0.0642,0.0758,0.1135,0.1204,0.0759,0.1085,0.0591,0.1111,0.0807,0.1037,0.1056,0.0675,0.064,0.0766,0.1126,0.1125,0.0789,0.1063,0.0689,0.1105,0.0724,0.1027,0.1034,0.0653,0.0698,0.077,0.1088,0.1109,0.0752,0.1056,0.0597,0.1096,0.0719,0.102,0.1047,0.0694
19620,37,0.0768,0.0782,0.1124,0.1088,0.0761,0.1048,0.0632,0.1078,0.0743,0.1033,0.106,0.0672,0.0728,0.0785,0.1117,0.1086,0.0762,0.1061,0.071,0.1091,0.0746,0.1037,0.1057,0.0662,0.0646,0.0767,0.1115,0.109,0.0755,0.1071,0.0671,0.1106,0.0735,0.104,0.1047,0.0674,0.0703,0.0772,0.1134,0.1145,0.0778,0.1098,0.0656,0.1146,0.094,0.1049,0.1046,0.0652,0.0639,0.0767,0.1135,0.1189,0.0769,0.1077,0.0702,0.1116,0.0757,0.1051,0.1066,0.0626,0.0666,0.0751,0.1132,0.12,0.0762,0.1088,0.0611,0.1114,0.0775,0.1036,0.1052,0.0668,0.0625,0.0764,0.1124,0.1118,0.0783,0.1062,0.069,0.1105,0.0728,0.1029,0.1033,0.0675,0.0692,0.0773,0.1089,0.111,0.0756,0.1061,0.0619,0.1101,0.0727,0.1025,0.1047,0.0686
19710,37,0.079,0.0776,0.1114,0.1085,0.0751,0.1046,0.0631,0.108,0.0742,0.1034,0.1062,0.0694,0.0739,0.0787,0.1125,0.1083,0.0759,0.1059,0.0746,0.1095,0.0738,0.1037,0.1054,0.0634,0.0661,0.0763,0.1111,0.1085,0.0751,0.1064,0.0636,0.1106,0.0733,0.104,0.1052,0.0685,0.0715,0.0775,0.1134,0.1143,0.0773,0.1096,0.0701,0.1149,0.094,0.1048,0.1046,0.0637,0.0644,0.0768,0.1128,0.1182,0.0763,0.1072,0.0645,0.112,0.0759,0.1054,0.1065,0.0637,0.0665,0.0752,0.1128,0.1193,0.076,0.1085,0.0661,0.1119,0.0809,0.1041,0.1054,0.0672,0.0646,0.0765,0.1124,0.1119,0.0785,0.1063,0.0676,0.1107,0.0729,0.1024,0.103,0.0658,0.0683,0.077,0.1089,0.1105,0.0753,0.1056,0.0612,0.1099,0.0719,0.1021,0.1044,0.0695
19800,37,0.0778,0.0803,0.1116,0.1089,0.0761,0.1047,0.0619,0.107,0.074,0.1028,0.1056,0.0694,0.0734,0.0792,0.1113,0.1088,0.0759,0.1062,0.0681,0.1093,0.074,0.1037,0.1055,0.0682,0.067,0.0772,0.1111,0.1089,0.0756,0.1061,0.0625,0.1104,0.0732,0.1038,0.1048,0.0679,0.0719,0.0782,0.1138,0.115,0.0777,0.1096,0.0692,0.1147,0.0937,0.1049,0.1047,0.065,0.0661,0.0773,0.1131,0.1182,0.0766,0.1077,0.0649,0.1118,0.0762,0.1058,0.1061,0.0639,0.0662,0.0756,0.1134,0.1201,0.0763,0.1086,0.0608,0.1113,0.0807,0.1037,0.1054,0.0678,0.0624,0.0764,0.1124,0.1122,0.0789,0.1062,0.0675,0.1109,0.073,0.1026,0.1036,0.063,0.0683,0.0769,0.1091,0.1111,0.0753,0.1055,0.0606,0.1096,0.0726,0.1018,0.1043,0.0709
19890,37,0.0772,0.0825,0.1119,0.1091,0.0761,0.105,0.0617,0.1077,0.0744,0.1032,0.1058,0.0678,0.0722,0.0782,0.1108,0.1085,0.0761,0.1062,0.0697,0.1089,0.0739,0.1041,0.1053,0.0613,0.0665,0.0765,0.1117,0.1092,0.0755,0.1062,0.0641,0.1109,0.0734,0.104,0.1051,0.0685,0.0722,0.0776,0.1134,0.1144,0.0782,0.109,0.0696,0.1147,0.0944,0.1052,0.1047,0.0651,0.0639,0.0769,0.1137,0.119,0.0772,0.1078,0.0711,0.1113,0.076,0.1052,0.1064,0.0635,0.0646,0.075,0.1136,0.1202,0.0764,0.1088,0.064,0.1119,0.0807,0.1038,0.1053,0.0655,0.0627,0.0766,0.1123,0.1118,0.0786,0.1061,0.0696,0.1106,0.0731,0.1027,0.1033,0.0686,0.0696,0.0769,0.1089,0.1109,0.0755,0.1059,0.0661,0.11,0.073,0.102,0.1046,0.0676
19980,37,0.0769,0.0772,0.1107,0.1078,0.0752,0.104,0.0632,0.1073,0.0742,0.1028,0.1061,0.0707,0.0735,0.0812,0.1102,0.1078,0.0758,0.1054,0.0747,0.1089,0.0739,0.1034,0.1048,0.0646,0.0689,0.0758,0.1101,0.1076,0.0748,0.106,0.0633,0.1098,0.0733,0.1033,0.1045,0.0676,0.0711,0.0772,0.1127,0.1134,0.0774,0.1087,0.0697,0.114,0.0942,0.1041,0.104,0.0619,0.0644,0.0765,0.1127,0.1177,0.0764,0.107,0.0683,0.1104,0.0753,0.1041,0.1055,0.0633,0.066,0.0754,0.1128,0.1185,0.0756,0.1076,0.0605,0.1108,0.0802,0.1031,0.1045,0.0661,0.0635,0.0761,0.1118,0.1114,0.0785,0.1056,0.0694,0.1093,0.0723,0.1017,0.1022,0.0637,0.0689,0.0772,0.1086,0.1108,0.0752,0.1054,0.0602,0.1091,0.0718,0.1014,0.1037,0.0698
20070,37,0.0775,0.0777,0.111,0.108,0.0758,0.1039,0.0636,0.1071,0.0739,0.1022,0.1049,0.0662,0.0735,0.0788,0.1103,0.1078,0.076,0.1052,0.071,0.1085,0.0738,0.103,0.1046,0.0646,0.066,0.0761,0.1104,0.1081,0.0752,0.106,0.0648,0.1098,0.0732,0.1031,0.1038,0.0648,0.0691,0.0773,0.1128,0.1139,0.0772,0.1091,0.0639,0.1135,0.0941,0.1038,0.1037,0.0644,0.0645,0.0765,0.1129,0.118,0.0766,0.1072,0.0707,0.1106,0.0755,0.1045,0.1053,0.0625,0.0668,0.0749,0.113,0.1192,0.0759,0.1076,0.0605,0.1102,0.0805,0.1027,0.1044,0.0661,0.0638,0.076,0.1121,0.1118,0.0786,0.1056,0.0691,0.1099,0.0728,0.102,0.1027,0.0632,0.0686,0.0765,0.109,0.1111,0.0749,0.1053,0.0636,0.1088,0.0724,0.1016,0.1039,0.0677
20160,37,0.0774,0.0787,0.1125,0.109,0.076,0.1049,0.0621,0.1078,0.0744,0.1034,0.1059,0.0675,0.0707,0.0788,0.1109,0.1083,0.0762,0.1061,0.074,0.1091,0.0747,0.1038,0.1055,0.0619,0.0666,0.0765,0.111,0.1086,0.0755,0.1066,0.0651,0.1104,0.0736,0.1042,0.1051,0.068,0.0699,0.0777,0.1134,0.1146,0.0779,0.1098,0.0695,0.1148,0.094,0.105,0.1047,0.065,0.0638,0.0766,0.1131,0.1185,0.0768,0.1076,0.067,0.1123,0.0767,0.1058,0.1067,0.0638,0.0671,0.0755,0.1132,0.1192,0.0766,0.1085,0.0678,0.1118,0.0808,0.1036,0.1051,0.0657,0.0617,0.0759,0.1117,0.1114,0.0783,0.106,0.0649,0.1109,0.0736,0.103,0.1035,0.0634,0.0708,0.0764,0.1094,0.1113,0.0756,0.1055,0.067,0.1099,0.0727,0.1017,0.1043,0.0698
20250,37,0.0778,0.0768,0.1105,0.108,0.0755,0.1039,0.0615,0.1067,0.0736,0.1022,0.1053,0.0694,0.0722,0.0786,0.1104,0.1074,0.0761,0.1054,0.0689,0.1082,0.0737,0.1029,0.1049,0.0672,0.0666,0.0764,0.1101,0.1079,0.0749,0.1054,0.0627,0.1096,0.0728,0.1032,0.1047,0.0723,0.0693,0.0778,0.1126,0.1131,0.0772,0.1085,0.0728,0.1137,0.094,0.1042,0.1042,0.0615,0.067,0.0767,0.1121,0.1165,0.0755,0.1068,0.0631,0.1109,0.0762,0.1052,0.1058,0.0645,0.0639,0.0756,0.1127,0.1173,0.0756,0.108,0.0675,0.1101,0.08,0.1029,0.1041,0.0644,0.0655,0.0755,0.1114,0.1108,0.078,0.1052,0.0644,0.1098,0.0731,0.1015,0.1017,0.0617,0.0698,0.0764,0.1085,0.1104,0.075,0.1051,0.0645,0.1086,0.0718,0.1011,0.1037,0.0708
20340,37,0.0781,0.0775,0.1112,0.1085,0.0757,0.1038,0.0611,0.1064,0.0731,0.1019,0.1044,0.0651,0.0727,0.0782,0.1106,0.1076,0.0756,0.1051,0.0648,0.1081,0.0733,0.1025,0.1048,0.0674,0.0683,0.0769,0.1107,0.1084,0.0752,0.1051,0.0608,0.1096,0.0725,0.1031,0.1047,0.0702,0.0701,0.0778,0.1131,0.1139,0.0776,0.1087,0.0711,0.1136,0.0941,0.104,0.1043,0.0621,0.0639,0.0766,0.1133,0.1178,0.0764,0.1067,0.0672,0.1107,0.0761,0.105,0.1054,0.063,0.066,0.0747,0.1129,0.1188,0.0759,0.1083,0.0644,0.1103,0.0728,0.103,0.1047,0.0662,0.0632,0.076,0.1117,0.1116,0.0785,0.1054,0.0665,0.11,0.0731,0.102,0.1027,0.065,0.0685,0.0762,0.1086,0.1109,0.0749,0.1051,0.0617,0.1085,0.0723,0.1013,0.1038,0.0686
20430,37,0.077,0.0797,0.112,0.1094,0.0762,0.1049,0.0627,0.1074,0.0739,0.1029,0.1056,0.0692,0.0703,0.0788,0.1114,0.1082,0.0762,0.1059,0.0693,0.1087,0.0742,0.1034,0.1056,0.0657,0.0657,0.0772,0.1111,0.1087,0.0757,0.1059,0.0628,0.1109,0.0734,0.104,0.1055,0.07,0.0704,0.0781,0.1132,0.1138,0.0778,0.1095,0.0744,0.1146,0.0947,0.105,0.105,0.0623,0.0654,0.0773,0.1128,0.1177,0.0763,0.107,0.0635,0.1124,0.0767,0.106,0.1069,0.0679,0.0673,0.0758,0.1126,0.1185,0.0764,0.1087,0.0724,0.112,0.0807,0.1043,0.1051,0.0616,0.0618,0.0761,0.1118,0.1109,0.078,0.1057,0.0632,0.1107,0.0737,0.1031,0.1029,0.0653,0.0705,0.0768,0.1091,0.111,0.0759,0.1058,0.0651,0.1099,0.0725,0.1031,0.1046,0.07
20520,37,0.0771,0.0778,0.1114,0.1086,0.076,0.104,0.0616,0.1067,0.0736,0.1021,0.1049,0.0688,0.0715,0.0788,0.1104,0.1078,0.0759,0.1053,0.0666,0.1078,0.0734,0.1026,0.1052,0.0615,0.0662,0.0768,0.1103,0.1083,0.0752,0.105,0.0612,0.109,0.0723,0.1028,0.1045,0.0755,0.0706,0.0781,0.1132,0.1137,0.0771,0.1083,0.0725,0.1135,0.0949,0.1041,0.1046,0.0603,0.0692,0.0777,0.1125,0.1165,0.0757,0.1059,0.0617,0.1108,0.076,0.1052,0.1062,0.0709,0.0676,0.0765,0.1126,0.1174,0.0755,0.108,0.0715,0.1106,0.0732,0.1034,0.1044,0.0617,0.0634,0.0757,0.1113,0.1107,0.078,0.1048,0.0632,0.1096,0.0731,0.1017,0.1023,0.0621,0.0712,0.0768,0.1087,0.1102,0.0752,0.1051,0.0622,0.1084,0.0715,0.1011,0.1036,0.0704
20610,37,0.0782,0.0788,0.1122,0.1096,0.0769,0.1051,0.0618,0.1071,0.0741,0.1023,0.1047,0.0656,0.0698,0.0823,0.1115,0.1082,0.0765,0.1062,0.0651,0.1087,0.0739,0.1033,0.1056,0.0668,0.0671,0.0779,0.1112,0.1089,0.0761,0.106,0.0606,0.1101,0.0728,0.1035,0.105,0.0708,0.0678,0.0785,0.1141,0.1142,0.0782,0.1094,0.0709,0.1142,0.0945,0.1047,0.1047,0.0623,0.0661,0.0776,0.1135,0.1182,0.0767,0.1073,0.064,0.1123,0.0766,0.1058,0.106,0.0657,0.0672,0.0758,0.1132,0.1194,0.0767,0.1087,0.0653,0.1113,0.0805,0.1037,0.1049,0.0634,0.0631,0.0764,0.1122,0.1118,0.0788,0.1058,0.0663,0.1104,0.0732,0.1027,0.103,0.0635,0.0693,0.0768,0.1093,0.1112,0.0757,0.1056,0.0608,0.109,0.0726,0.1018,0.1044,0.0701
20700,37,0.0769,0.0789,0.1123,0.1094,0.0763,0.105,0.0629,0.1074,0.0742,0.103,0.1057,0.0685,0.0729,0.0792,0.1107,0.1082,0.0765,0.1062,0.0721,0.1089,0.0742,0.104,0.1055,0.0653,0.065,0.0773,0.1114,0.1086,0.076,0.1065,0.0642,0.1105,0.0735,0.104,0.105,0.0685,0.0715,0.078,0.1136,0.114,0.0778,0.1091,0.0718,0.1144,0.0943,0.1051,0.1044,0.0635,0.0635,0.0769,0.1134,0.1183,0.0768,0.1075,0.0645,0.1118,0.0766,0.1057,0.1065,0.0633,0.0652,0.076,0.1133,0.1186,0.077,0.1088,0.0662,0.1115,0.0733,0.104,0.105,0.0657,0.0643,0.0765,0.1119,0.1113,0.0785,0.1056,0.0642,0.1106,0.0734,0.1026,0.1026,0.0622,0.0709,0.0773,0.1097,0.1111,0.076,0.1061,0.0607,0.1093,0.0724,0.1031,0.1047,0.0699
20790,37,0.0765,0.0787,0.1118,0.109,0.076,0.1041,0.0642,0.1072,0.0743,0.1027,0.1056,0.0724,0.0738,0.0797,0.1106,0.1083,0.0765,0.1059,0.0662,0.1089,0.074,0.1034,0.1055,0.0681,0.066,0.0771,0.1108,0.1082,0.0757,0.106,0.0629,0.11,0.0732,0.1037,0.1047,0.0688,0.0702,0.0783,0.1135,0.1139,0.0781,0.1093,0.0692,0.1138,0.0942,0.1048,0.1043,0.0652,0.0638,0.0773,0.1133,0.1182,0.0769,0.1074,0.0673,0.1112,0.0761,0.1052,0.1053,0.0652,0.0682,0.0765,0.1132,0.1193,0.0762,0.1081,0.0609,0.111,0.0803,0.1041,0.1053,0.0689,0.0623,0.0769,0.1122,0.1117,0.0791,0.106,0.0675,0.1104,0.0732,0.1023,0.1022,0.0631,0.069,0.0779,0.1093,0.1111,0.0761,0.1058,0.0604,0.109,0.0723,0.1021,0.1046,0.0717
20880,37,0.0754,0.0822,0.1123,0.1095,0.0768,0.1056,0.0643,0.1068,0.0737,0.1024,0.1042,0.0651,0.0707,0.0848,0.1114,0.1085,0.0765,0.1061,0.0635,0.1083,0.0733,0.1034,0.1054,0.0654,0.068,0.0781,0.1115,0.1089,0.0762,0.106,0.061,0.1098,0.0728,0.1033,0.1047,0.0686,0.0705,0.0787,0.114,0.1145,0.0782,0.1094,0.0658,0.114,0.0942,0.1046,0.1044,0.0652,0.0638,0.0776,0.1134,0.1182,0.0766,0.1075,0.0669,0.1116,0.0764,0.1057,0.106,0.0639,0.0672,0.0763,0.1132,0.1188,0.0767,0.1085,0.0617,0.1109,0.0736,0.1038,0.105,0.0662,0.0618,0.0768,0.1118,0.1113,0.0787,0.1054,0.0645,0.111,0.0737,0.1032,0.1031,0.0631,0.071,0.0771,0.1089,0.1111,0.0758,0.1056,0.062,0.1087,0.0724,0.1016,0.104,0.0706
20970,37,0.0766,0.0789,0.1116,0.1086,0.0762,0.1048,0.0677,0.1062,0.0734,0.1021,0.1044,0.0659,0.0708,0.0787,0.1106,0.1077,0.0762,0.1056,0.0616,0.108,0.0728,0.1027,0.105,0.0656,0.0654,0.0773,0.1111,0.1084,0.0759,0.1054,0.0614,0.1089,0.0722,0.1025,0.1041,0.0724,0.0713,0.0779,0.1134,0.1137,0.0777,0.1083,0.0728,0.1136,0.0944,0.104,0.104,0.0615,0.0665,0.0773,0.1126,0.1166,0.0759,0.1062,0.0625,0.111,0.0762,0.1052,0.1058,0.0663,0.0652,0.076,0.1129,0.1174,0.0759,0.1079,0.0691,0.1106,0.0748,0.103,0.104,0.062,0.0623,0.0763,0.1104,0.1097,0.0775,0.1049,0.0621,0.1097,0.0733,0.1021,0.1021,0.0627,0.0705,0.0767,0.1085,0.1104,0.0755,0.1052,0.0622,0.1082,0.0717,0.1011,0.1034,0.0704
21060,37,0.0757,0.0778,0.1114,0.1085,0.0764,0.1046,0.0646,0.106,0.0733,0.1015,0.104,0.0654,0.0696,0.0791,0.111,0.1078,0.076,0.1054,0.0612,0.1076,0.0733,0.1022,0.1044,0.0669,0.0698,0.0772,0.1106,0.1081,0.0756,0.1052,0.0609,0.109,0.0723,0.1027,0.104,0.0696,0.0675,0.0783,0.1132,0.1132,0.0778,0.1083,0.0676,0.1132,0.0938,0.104,0.1036,0.0649,0.0657,0.0776,0.1126,0.1167,0.0764,0.1064,0.0627,0.1102,0.076,0.105,0.1054,0.0614,0.0668,0.0763,0.113,0.1181,0.0757,0.1079,0.0626,0.1101,0.0801,0.1026,0.1041,0.0668,0.062,0.0764,0.1114,0.111,0.0785,0.1053,0.0653,0.1101,0.0733,0.1013,0.102,0.0623,0.0681,0.0772,0.1087,0.1106,0.0751,0.1052,0.0603,0.1078,0.0721,0.1007,0.1032,0.0718
21150,37,0.0765,0.081,0.1124,0.1098,0.0771,0.1059,0.065,0.1068,0.0739,0.1026,0.1047,0.0651,0.0713,0.0817,0.1115,0.1085,0.077,0.1064,0.0606,0.1084,0.074,0.1031,0.1049,0.0663,0.0684,0.0778,0.1113,0.1088,0.0764,0.106,0.0623,0.1099,0.0732,0.1036,0.1044,0.0652,0.0686,0.0783,0.1138,0.1142,0.0782,0.1095,0.0682,0.114,0.094,0.105,0.104,0.0661,0.0634,0.0774,0.1137,0.1182,0.077,0.1073,0.0674,0.1116,0.0764,0.1055,0.1059,0.0641,0.0656,0.0762,0.1135,0.1194,0.0771,0.1088,0.0625,0.1111,0.0812,0.1035,0.105,0.0664,0.0621,0.0768,0.1119,0.1115,0.079,0.1058,0.0658,0.1108,0.0737,0.1024,0.103,0.0632,0.071,0.077,0.1101,0.1116,0.0757,0.1056,0.0613,0.1089,0.0725,0.1016,0.1042,0.0712
21240,37,0.0795,0.0807,0.1117,0.109,0.0763,0.105,0.0645,0.1071,0.0746,0.1032,0.1056,0.0678,0.0731,0.0796,0.1106,0.1077,0.0764,0.1059,0.0706,0.1085,0.0748,0.1036,0.1048,0.0621,0.0658,0.0772,0.1109,0.1081,0.076,0.1065,0.0645,0.1102,0.0737,0.1038,0.1047,0.0687,0.0704,0.0782,0.1131,0.1136,0.0782,0.1095,0.0693,0.1144,0.0942,0.1047,0.104,0.0651,0.0635,0.0772,0.1133,0.118,0.077,0.1074,0.0673,0.1109,0.0765,0.1055,0.1059,0.0621,0.0679,0.076,0.1134,0.1207,0.0766,0.1087,0.0603,0.1113,0.0812,0.1039,0.105,0.0672,0.0624,0.0771,0.1124,0.1115,0.0792,0.1061,0.0701,0.1102,0.0732,0.1023,0.1024,0.0638,0.0677,0.0776,0.1094,0.1109,0.0759,0.1055,0.0603,0.1089,0.0724,0.1021,0.1041,0.0701
21330,37,0.0762,0.0789,0.1113,0.1088,0.0766,0.1047,0.0628,0.1071,0.0746,0.1028,0.1052,0.0687,0.0731,0.0799,0.1116,0.1082,0.0767,0.106,0.0691,0.1088,0.0744,0.1034,0.1047,0.0662,0.068,0.0774,0.1104,0.1079,0.0764,0.1064,0.0644,0.1097,0.0737,0.1037,0.104,0.062,0.0683,0.0786,0.1138,0.1142,0.0784,0.1098,0.0626,0.114,0.0937,0.1043,0.104,0.07,0.0641,0.0778,0.1137,0.1186,0.0778,0.1077,0.0714,0.1108,0.0759,0.1051,0.1055,0.0649,0.067,0.0763,0.1137,0.1205,0.0768,0.1086,0.0608,0.1107,0.0741,0.1038,0.1046,0.0704,0.0629,0.0772,0.1126,0.1121,0.0798,0.1064,0.0705,0.11,0.073,0.1022,0.103,0.0633,0.0686,0.0779,0.1093,0.111,0.0756,0.1055,0.0607,0.1088,0.0725,0.1018,0.1041,0.071
21420,37,0.077,0.0789,0.1114,0.1091,0.0767,0.105,0.0625,0.107,0.0749,0.1032,0.1052,0.0663,0.0706,0.0806,0.111,0.1084,0.0768,0.1056,0.069,0.1085,0.0744,0.1037,0.1044,0.0631,0.0654,0.0774,0.1111,0.1083,0.0764,0.1067,0.0679,0.1102,0.0746,0.1042,0.1041,0.0662,0.0675,0.0782,0.1136,0.1137,0.0789,0.1096,0.0631,0.1138,0.0945,0.1045,0.1037,0.067,0.0645,0.0777,0.1142,0.1189,0.0778,0.108,0.0711,0.1111,0.0768,0.1054,0.1058,0.0633,0.0678,0.0762,0.1137,0.1197,0.0772,0.1091,0.0604,0.1108,0.0742,0.1035,0.1048,0.0678,0.0626,0.077,0.1122,0.112,0.0795,0.106,0.0684,0.1104,0.0736,0.1026,0.1032,0.0646,0.0685,0.0777,0.11,0.1113,0.076,0.1058,0.064,0.1092,0.0728,0.1018,0.1038,0.0697
21510,37,0.0768,0.0805,0.111,0.1085,0.0761,0.1043,0.0625,0.1064,0.0745,0.1027,0.1051,0.0689,0.0703,0.0826,0.1102,0.1076,0.0764,0.1056,0.0696,0.1079,0.0742,0.1034,0.1043,0.0651,0.0649,0.0773,0.1103,0.1077,0.0758,0.1055,0.0634,0.1093,0.0735,0.1032,0.1046,0.0721,0.0705,0.0783,0.113,0.1133,0.0776,0.1089,0.0727,0.1131,0.0945,0.1045,0.1036,0.0619,0.0661,0.077,0.112,0.1165,0.0761,0.1065,0.0636,0.1106,0.0767,0.1051,0.1055,0.0624,0.0666,0.0761,0.113,0.1171,0.0765,0.108,0.0694,0.1104,0.0736,0.1032,0.1039,0.0629,0.0613,0.0762,0.1109,0.11,0.0783,0.105,0.0628,0.1097,0.0741,0.1025,0.1017,0.0627,0.07,0.0775,0.1087,0.1104,0.0757,0.1054,0.0659,0.1081,0.0726,0.1011,0.1032,0.0711
21600,37,0.0776,0.0828,0.1113,0.1089,0.0769,0.1045,0.0617,0.1057,0.074,0.1022,0.1038,0.0646,0.0702,0.0816,0.1107,0.1078,0.0765,0.1054,0.0643,0.1074,0.074,0.1026,0.1045,0.0682,0.067,0.0778,0.1103,0.1081,0.076,0.1052,0.0615,0.1087,0.0729,0.103,0.1039,0.0695,0.071,0.0785,0.113,0.1136,0.0778,0.1087,0.0694,0.1129,0.094,0.1038,0.1035,0.0634,0.0668,0.078,0.113,0.1173,0.0768,0.1066,0.0636,0.1102,0.0764,0.105,0.1055,0.0633,0.0671,0.0764,0.1126,0.1174,0.0763,0.108,0.0647,0.1096,0.0808,0.1026,0.1038,0.0655,0.0635,0.0762,0.1111,0.1109,0.0791,0.1051,0.0648,0.1096,0.0736,0.1023,0.1019,0.0647,0.0707,0.077,0.1092,0.1109,0.0756,0.1053,0.0656,0.1079,0.0722,0.1012,0.1032,0.0706
21690,37,0.0772,0.0808,0.1117,0.1091,0.0766,0.1051,0.066,0.1061,0.0739,0.1022,0.104,0.0646,0.0693,0.0806,0.1104,0.1077,0.0766,0.1056,0.0621,0.1072,0.0737,0.1026,0.1044,0.0657,0.0665,0.0776,0.1108,0.1082,0.076,0.1054,0.0612,0.1091,0.0731,0.103,0.1043,0.0708,0.0682,0.0783,0.1125,0.1132,0.0783,0.1086,0.0698,0.1126,0.0941,0.1041,0.1037,0.065,0.0676,0.0775,0.113,0.1169,0.0764,0.1063,0.0642,0.1107,0.0766,0.1051,0.1058,0.0664,0.0653,0.0759,0.1132,0.1176,0.0765,0.1079,0.0693,0.11,0.0808,0.1029,0.1037,0.0648,0.0633,0.0762,0.1108,0.1104,0.0783,0.1048,0.0633,0.11,0.0741,0.1025,0.1024,0.0667,0.0695,0.0764,0.109,0.1108,0.0759,0.1054,0.0668,0.1079,0.0723,0.1008,0.1033,0.07
21780,37,0.0763,0.0789,0.112,0.1096,0.0769,0.1051,0.0656,0.107,0.0745,0.1026,0.1047,0.066,0.0695,0.0802,0.111,0.1082,0.0769,0.1061,0.0651,0.1079,0.0741,0.1035,0.1052,0.0638,0.0676,0.0779,0.111,0.1084,0.0766,0.1058,0.0605,0.1096,0.0733,0.1033,0.1047,0.0749,0.0676,0.0792,0.1136,0.1138,0.0788,0.1086,0.0716,0.1136,0.0944,0.1046,0.1044,0.0624,0.0676,0.0779,0.1129,0.1173,0.0769,0.1068,0.0636,0.1114,0.0771,0.1056,0.1058,0.0619,0.0658,0.0771,0.1132,0.1187,0.0768,0.1084,0.0664,0.1106,0.0816,0.1044,0.105,0.0636,0.0622,0.077,0.1116,0.1109,0.079,0.1055,0.0639,0.1107,0.0743,0.1029,0.1022,0.0622,0.0706,0.0779,0.1089,0.1108,0.0761,0.1058,0.0616,0.1085,0.0725,0.1019,0.104,0.0714
21870,37,0.0769,0.0815,0.1122,0.1097,0.0775,0.1051,0.0636,0.1065,0.074,0.1019,0.1042,0.0658,0.0697,0.0801,0.1111,0.1083,0.0771,0.106,0.065,0.1078,0.0734,0.1033,0.105,0.0693,0.0688,0.0784,0.1115,0.1092,0.0772,0.1055,0.064,0.11,0.0731,0.1032,0.1042,0.0715,0.0708,0.0794,0.1143,0.1143,0.0786,0.1091,0.0649,0.1136,0.0944,0.1046,0.1044,0.065,0.0656,0.0785,0.1137,0.1179,0.0773,0.1073,0.0649,0.1115,0.0767,0.1054,0.1059,0.0624,0.0671,0.0773,0.1136,0.1193,0.0772,0.1086,0.0625,0.1105,0.0737,0.1042,0.1049,0.0656,0.0622,0.077,0.1118,0.1111,0.0791,0.1055,0.064,0.1106,0.0744,0.103,0.1029,0.0663,0.0696,0.0776,0.1092,0.111,0.0764,0.106,0.0639,0.1084,0.0726,0.102,0.1042,0.0693
21960,37,0.0752,0.0806,0.112,0.1097,0.0768,0.1054,0.0688,0.1069,0.0747,0.1026,0.1044,0.0645,0.0684,0.08,0.1111,0.108,0.0766,0.1065,0.061,0.1078,0.0739,0.103,0.1048,0.0678,0.0656,0.0787,0.1117,0.1094,0.0772,0.1061,0.0666,0.1095,0.0729,0.1029,0.1042,0.0705,0.0694,0.0794,0.1138,0.1139,0.0787,0.1096,0.0698,0.1136,0.0946,0.1047,0.1046,0.065,0.0668,0.0787,0.1137,0.1178,0.0772,0.1067,0.0613,0.1114,0.0767,0.1054,0.1066,0.0703,0.0662,0.0772,0.1135,0.1184,0.0769,0.1084,0.0709,0.1108,0.0813,0.1044,0.1049,0.0642,0.0649,0.0775,0.1115,0.1101,0.0779,0.1049,0.0626,0.1104,0.0746,0.1033,0.1026,0.0678,0.0705,0.0779,0.1086,0.1104,0.0764,0.1059,0.0694,0.1088,0.0728,0.102,0.104,0.0696
22050,37,0.0751,0.0774,0.1107,0.1081,0.0758,0.104,0.0669,0.1062,0.0738,0.1016,0.1034,0.0653,0.0693,0.0793,0.1102,0.1075,0.0763,0.1054,0.0623,0.1069,0.0733,0.1022,0.1041,0.0698,0.0664,0.0778,0.1106,0.1084,0.0767,0.1052,0.0654,0.1084,0.0722,0.1019,0.1035,0.071,0.0663,0.0788,0.1137,0.1133,0.0783,0.1082,0.0661,0.1126,0.0945,0.1036,0.1036,0.0648,0.0679,0.0787,0.1135,0.1167,0.077,0.1059,0.0603,0.1097,0.0759,0.1043,0.1054,0.0714,0.0631,0.077,0.1133,0.1164,0.0759,0.1068,0.0621,0.1092,0.0802,0.1034,0.1039,0.0661,0.0651,0.0772,0.1114,0.1099,0.078,0.1045,0.0607,0.109,0.0734,0.1021,0.1016,0.065,0.0706,0.0781,0.1079,0.11,0.0755,0.1053,0.0643,0.1076,0.0723,0.1013,0.1032,0.0702
22140,37,0.0763,0.0792,0.1122,0.1096,0.0771,0.1055,0.0712,0.107,0.0744,0.1023,0.1042,0.0646,0.0694,0.0799,0.1139,0.1084,0.077,0.1063,0.0636,0.1075,0.0739,0.1027,0.1046,0.0711,0.0672,0.0789,0.1114,0.1093,0.0775,0.106,0.0679,0.109,0.0726,0.1025,0.1039,0.0682,0.0685,0.0793,0.1145,0.1139,0.079,0.1092,0.066,0.1131,0.0951,0.1041,0.1043,0.0647,0.0667,0.0793,0.1139,0.1179,0.0773,0.1069,0.0611,0.1111,0.0764,0.1054,0.1062,0.0684,0.0668,0.0775,0.1137,0.1188,0.0769,0.1083,0.0661,0.1107,0.0815,0.1044,0.1048,0.065,0.0628,0.0773,0.1116,0.1108,0.0788,0.1053,0.0635,0.1105,0.074,0.1028,0.1028,0.066,0.071,0.0781,0.1091,0.1111,0.0762,0.1056,0.0625,0.1082,0.0731,0.1017,0.1038,0.0687
22230,37,0.0768,0.0791,0.1117,0.109,0.0765,0.1049,0.069,0.1061,0.0739,0.102,0.1037,0.0656,0.071,0.0799,0.1106,0.1077,0.0766,0.1057,0.0637,0.107,0.0735,0.1026,0.1042,0.066,0.065,0.0781,0.1109,0.1081,0.0766,0.1052,0.0628,0.1086,0.0725,0.1023,0.1036,0.0731,0.0707,0.0789,0.113,0.1131,0.0786,0.1086,0.0695,0.1127,0.0951,0.1042,0.1036,0.063,0.0662,0.0782,0.1129,0.1165,0.0765,0.106,0.0622,0.11,0.0763,0.1047,0.1056,0.0687,0.0684,0.0769,0.1128,0.1166,0.0764,0.1069,0.0702,0.1098,0.0736,0.1033,0.1035,0.0614,0.0619,0.0771,0.1107,0.1095,0.0779,0.1046,0.0618,0.1094,0.074,0.1027,0.102,0.0647,0.07,0.0778,0.1084,0.1103,0.0758,0.1054,0.0667,0.1076,0.0727,0.101,0.1036,0.0704
22320,37,0.0754,0.0782,0.1108,0.1083,0.0763,0.1043,0.0682,0.1057,0.0736,0.1016,0.1034,0.0647,0.0666,0.0797,0.1105,0.108,0.0764,0.1051,0.0622,0.1067,0.0733,0.1024,0.1037,0.0687,0.0667,0.0783,0.1106,0.1082,0.0768,0.1052,0.0628,0.1082,0.0722,0.102,0.1037,0.0711,0.0707,0.0793,0.1134,0.113,0.0782,0.1081,0.066,0.1123,0.0951,0.1038,0.1035,0.0649,0.0672,0.0783,0.113,0.1166,0.0769,0.1064,0.063,0.1098,0.0763,0.1048,0.1051,0.0612,0.0662,0.077,0.1134,0.117,0.0764,0.1078,0.0639,0.1097,0.0754,0.1029,0.1038,0.0661,0.0629,0.0772,0.1116,0.1107,0.0791,0.1053,0.0662,0.109,0.073,0.1012,0.101,0.0625,0.0688,0.0778,0.1084,0.111,0.0755,0.1052,0.0603,0.1073,0.0724,0.1009,0.1033,0.0717
22410,37,0.0766,0.0792,0.1114,0.1087,0.077,0.105,0.0636,0.1055,0.0737,0.1019,0.1037,0.0655,0.0734,0.0801,0.11,0.1073,0.0766,0.1055,0.062,0.1071,0.0734,0.1028,0.1037,0.0691,0.0662,0.078,0.1103,0.1077,0.0764,0.1056,0.0647,0.1087,0.0735,0.1028,0.1033,0.0657,0.0708,0.0786,0.1131,0.1126,0.0786,0.1088,0.065,0.1127,0.0941,0.1037,0.1029,0.0643,0.0646,0.0782,0.1134,0.1171,0.0771,0.1066,0.0665,0.1102,0.0765,0.1048,0.1051,0.0642,0.0682,0.0763,0.1134,0.1181,0.0768,0.1077,0.061,0.1094,0.0808,0.1023,0.1035,0.0655,0.0657,0.077,0.1113,0.1105,0.0787,0.1048,0.0644,0.1095,0.0734,0.1023,0.1023,0.0646,0.0703,0.0771,0.1088,0.1109,0.0757,0.1051,0.062,0.1072,0.0724,0.101,0.1029,0.0701
22500,37,0.0761,0.0792,0.1111,0.1087,0.0767,0.1042,0.0628,0.1058,0.074,0.1023,0.1048,0.0674,0.072,0.0797,0.1101,0.107,0.0767,0.1053,0.0644,0.1072,0.0742,0.103,0.1038,0.0619,0.0663,0.078,0.11,0.1073,0.0762,0.1053,0.0625,0.1085,0.0731,0.1027,0.1037,0.0724,0.0712,0.0792,0.1123,0.1128,0.0782,0.1089,0.0702,0.1129,0.0945,0.1041,0.1031,0.0614,0.0651,0.0777,0.1128,0.1164,0.0767,0.1064,0.0643,0.1096,0.0765,0.1044,0.1048,0.0623,0.0662,0.0769,0.1131,0.1168,0.0766,0.1079,0.062,0.1093,0.0811,0.1031,0.1033,0.0631,0.0643,0.0771,0.111,0.1094,0.0787,0.1052,0.0626,0.109,0.0734,0.1015,0.1013,0.0621,0.0711,0.0776,0.109,0.1107,0.0757,0.1052,0.0611,0.1072,0.0724,0.1011,0.1029,0.0702
22590,37,0.0757,0.0789,0.1111,0.1085,0.0769,0.1044,0.0614,0.1054,0.074,0.1018,0.1036,0.0666,0.0713,0.08,0.1098,0.1071,0.0766,0.1052,0.0646,0.1067,0.0735,0.1026,0.104,0.0677,0.068,0.0782,0.1099,0.1071,0.0764,0.1052,0.0611,0.1083,0.073,0.1027,0.1035,0.0697,0.0689,0.0793,0.1127,0.1128,0.0786,0.1081,0.0635,0.1126,0.095,0.1036,0.1031,0.0676,0.0669,0.0782,0.1128,0.1167,0.0773,0.1064,0.0657,0.1096,0.0763,0.1042,0.1046,0.063,0.0678,0.0769,0.1132,0.1181,0.0765,0.1077,0.0612,0.1089,0.0805,0.1024,0.1032,0.0637,0.0624,0.0772,0.1116,0.1106,0.0792,0.1052,0.066,0.109,0.0734,0.1015,0.1012,0.0622,0.0692,0.0776,0.1087,0.1109,0.0756,0.1053,0.0607,0.1068,0.0724,0.1009,0.1026,0.0717
22680,37,0.0774,0.0796,0.1115,0.1091,0.0773,0.105,0.0648,0.1055,0.0737,0.1019,0.1035,0.0646,0.0703,0.0843,0.1102,0.1072,0.0768,0.1053,0.0624,0.1067,0.0738,0.1026,0.1038,0.0666,0.0675,0.0785,0.1103,0.1077,0.0767,0.1051,0.0608,0.1082,0.073,0.1026,0.1035,0.0691,0.067,0.0789,0.1128,0.1123,0.0785,0.1085,0.0668,0.1123,0.0947,0.1043,0.1031,0.0625,0.0666,0.0784,0.113,0.1167,0.077,0.1062,0.0648,0.1098,0.0767,0.1049,0.1053,0.063,0.0679,0.0768,0.1131,0.117,0.0771,0.1078,0.0663,0.1094,0.0806,0.1028,0.1034,0.0644,0.062,0.0772,0.111,0.11,0.0786,0.1047,0.0629,0.1093,0.0741,0.1027,0.1018,0.0661,0.0705,0.0776,0.1089,0.111,0.0763,0.1056,0.0679,0.1077,0.073,0.1009,0.1028,0.0675
22770,37,0.0793,0.0801,0.1112,0.1089,0.0765,0.1048,0.068,0.1056,0.074,0.1019,0.1035,0.0647,0.0683,0.0807,0.1111,0.1072,0.0771,0.1057,0.0608,0.1068,0.0744,0.1026,0.1039,0.0657,0.0667,0.078,0.1102,0.1077,0.0765,0.105,0.0607,0.1086,0.0728,0.1025,0.1036,0.0711,0.0694,0.079,0.113,0.1128,0.0785,0.1079,0.0698,0.1125,0.0949,0.1041,0.1032,0.0617,0.0671,0.078,0.1127,0.1162,0.0767,0.1059,0.0626,0.1103,0.0769,0.1049,0.1052,0.0657,0.0651,0.0772,0.113,0.1163,0.0769,0.1078,0.0697,0.1094,0.0738,0.1031,0.1035,0.0617,0.0628,0.0773,0.1112,0.1098,0.0781,0.1047,0.0622,0.1091,0.0745,0.1023,0.1014,0.0633,0.0687,0.0777,0.1084,0.1104,0.0762,0.1054,0.0671,0.1076,0.073,0.101,0.1026,0.068
22860,37,0.0758,0.0782,0.1107,0.1087,0.0767,0.1045,0.0688,0.1058,0.0743,0.1019,0.1031,0.0648,0.0697,0.0795,0.1099,0.1078,0.0767,0.1054,0.0615,0.1066,0.0739,0.1019,0.1035,0.0682,0.0657,0.0782,0.1103,0.1083,0.0773,0.1052,0.0672,0.1078,0.0724,0.1018,0.1035,0.0698,0.0668,0.0793,0.1134,0.1127,0.0788,0.1082,0.0652,0.1118,0.0952,0.1034,0.1034,0.0648,0.0692,0.0791,0.1131,0.1168,0.0774,0.1062,0.0602,0.1094,0.0765,0.1046,0.1053,0.0653,0.0649,0.0773,0.1134,0.117,0.0765,0.1075,0.0662,0.1092,0.0805,0.1031,0.1038,0.0651,0.064,0.0777,0.1116,0.1102,0.0789,0.1049,0.0607,0.1089,0.074,0.1026,0.1014,0.0647,0.0697,0.0782,0.1087,0.1105,0.0759,0.1055,0.0666,0.1072,0.073,0.1009,0.1028,0.0671
22950,37,0.0775,0.079,0.1116,0.1092,0.077,0.105,0.0708,0.1059,0.0744,0.1019,0.1031,0.0645,0.0703,0.0812,0.1102,0.1075,0.0771,0.1058,0.061,0.1066,0.0738,0.1026,0.1036,0.0669,0.0663,0.0783,0.1108,0.1085,0.0773,0.1054,0.0696,0.1082,0.0728,0.1021,0.1032,0.0691,0.0664,0.0792,0.1132,0.1131,0.0786,0.1083,0.063,0.1119,0.0952,0.1038,0.103,0.0647,0.0671,0.0786,0.1133,0.1164,0.0772,0.1061,0.0634,0.1101,0.0768,0.105,0.1054,0.065,0.0649,0.0776,0.1132,0.1171,0.0772,0.1079,0.07,0.1099,0.074,0.103,0.1034,0.0629,0.0624,0.0772,0.1109,0.1094,0.0782,0.1042,0.0615,0.1086,0.0741,0.103,0.1019,0.0691,0.069,0.0779,0.1086,0.1102,0.0762,0.1054,0.0714,0.1076,0.0734,0.1007,0.1028,0.066
23040,37,0.0757,0.0782,0.1108,0.1087,0.0768,0.1044,0.0687,0.1061,0.0746,0.1021,0.1034,0.0637,0.0696,0.0806,0.11,0.1072,0.0767,0.1057,0.0598,0.1069,0.0743,0.1023,0.1036,0.0684,0.0649,0.0779,0.1103,0.1078,0.0773,0.1053,0.067,0.1082,0.0728,0.102,0.1032,0.069,0.0682,0.0792,0.1131,0.1126,0.0787,0.1084,0.0686,0.112,0.0951,0.1033,0.1033,0.0635,0.0692,0.0787,0.1129,0.116,0.077,0.1058,0.0613,0.1097,0.0768,0.1046,0.1054,0.0699,0.0644,0.0777,0.1135,0.117,0.0768,0.1073,0.0686,0.1092,0.081,0.1035,0.1039,0.0652,0.0644,0.0778,0.1113,0.1093,0.0782,0.1043,0.0602,0.1083,0.0741,0.1024,0.1009,0.0627,0.0677,0.079,0.108,0.1101,0.0762,0.1052,0.069,0.1075,0.0728,0.1011,0.1029,0.0687
23130,37,0.0753,0.0794,0.1116,0.1093,0.0774,0.1052,0.0699,0.1063,0.075,0.1021,0.1034,0.0653,0.0697,0.0828,0.1104,0.1081,0.0775,0.1064,0.0628,0.107,0.0743,0.1026,0.1042,0.0701,0.0657,0.079,0.1112,0.1092,0.078,0.1059,0.0682,0.1086,0.0728,0.1023,0.1034,0.0672,0.0672,0.0796,0.114,0.114,0.0795,0.1088,0.0655,0.1129,0.095,0.1041,0.1039,0.0669,0.0676,0.0799,0.1141,0.118,0.0783,0.1069,0.0622,0.1102,0.0766,0.1049,0.1059,0.0687,0.0648,0.0782,0.1139,0.1191,0.0772,0.1082,0.0651,0.1102,0.0736,0.1047,0.1049,0.0662,0.0621,0.0778,0.1116,0.1106,0.0791,0.1049,0.063,0.1099,0.0742,0.103,0.102,0.0656,0.071,0.0784,0.1091,0.1111,0.0766,0.1057,0.0628,0.1078,0.0731,0.1016,0.1036,0.0688
23220,37,0.077,0.0792,0.1114,0.109,0.0768,0.1047,0.0691,0.1059,0.0739,0.1019,0.103,0.0639,0.0696,0.0837,0.11,0.1076,0.0769,0.1054,0.061,0.1066,0.0733,0.1023,0.1037,0.0685,0.0654,0.0786,0.1109,0.1082,0.077,0.1055,0.0675,0.1082,0.0726,0.1018,0.1031,0.0697,0.0672,0.0794,0.1132,0.1131,0.0788,0.1081,0.0666,0.1124,0.0952,0.1036,0.1031,0.062,0.0683,0.0789,0.1133,0.1163,0.0773,0.1059,0.0622,0.1097,0.0765,0.1042,0.1051,0.0688,0.064,0.0775,0.1132,0.1159,0.077,0.107,0.0714,0.1091,0.0783,0.1032,0.1031,0.063,0.0618,0.0778,0.1108,0.1095,0.0782,0.104,0.0614,0.1088,0.0741,0.1022,0.1011,0.0647,0.0691,0.0782,0.1083,0.1104,0.0761,0.1054,0.068,0.107,0.0726,0.1013,0.1028,0.0664
23310,37,0.0762,0.0792,0.1108,0.1086,0.0768,0.1042,0.0647,0.1053,0.074,0.1019,0.1037,0.069,0.0695,0.0832,0.1101,0.1068,0.0768,0.1053,0.066,0.1066,0.0738,0.1022,0.104,0.0685,0.0667,0.0788,0.1101,0.1073,0.0768,0.1048,0.0617,0.108,0.0727,0.102,0.1035,0.0737,0.0685,0.0801,0.1128,0.1122,0.0787,0.108,0.0694,0.1122,0.0957,0.104,0.1033,0.065,0.0686,0.0788,0.1126,0.1156,0.0768,0.1058,0.0621,0.1094,0.0761,0.1042,0.1044,0.0666,0.0666,0.0777,0.1133,0.1169,0.0769,0.1074,0.0625,0.1092,0.0807,0.1033,0.1035,0.0661,0.0629,0.0778,0.1111,0.1099,0.0789,0.1045,0.0626,0.1085,0.0738,0.1012,0.1007,0.0624,0.0693,0.0787,0.1083,0.1107,0.076,0.1053,0.0628,0.1068,0.0725,0.1008,0.1022,0.0739
23400,37,0.0771,0.0796,0.1112,0.1088,0.0772,0.1046,0.0651,0.1048,0.0737,0.1012,0.1027,0.065,0.0734,0.0808,0.1098,0.1077,0.0771,0.1053,0.0653,0.1065,0.0735,0.1024,0.1036,0.0688,0.0671,0.0791,0.1101,0.1076,0.077,0.1048,0.0604,0.1078,0.0729,0.1024,0.1032,0.0712,0.0683,0.0798,0.1131,0.1125,0.0787,0.1081,0.0628,0.112,0.0952,0.1036,0.103,0.0629,0.0676,0.0791,0.1132,0.1164,0.0773,0.1063,0.0644,0.1091,0.0767,0.1044,0.1043,0.062,0.0669,0.0773,0.1136,0.117,0.0769,0.108,0.0611,0.109,0.0805,0.1026,0.1032,0.0649,0.0636,0.0779,0.1113,0.1102,0.0791,0.1046,0.0639,0.1089,0.0738,0.1022,0.1016,0.0666,0.0724,0.0778,0.109,0.111,0.076,0.1055,0.0637,0.1067,0.0731,0.1008,0.1026,0.0696
23490,37,0.0772,0.0798,0.1111,0.1087,0.0767,0.1044,0.0671,0.1048,0.0739,0.1018,0.1037,0.066,0.0713,0.0802,0.1118,0.1069,0.0772,0.1056,0.064,0.1067,0.074,0.1027,0.1036,0.0668,0.0655,0.0787,0.1098,0.1073,0.0764,0.1051,0.0616,0.108,0.0731,0.1025,0.1038,0.0771,0.0706,0.0795,0.1126,0.1123,0.0783,0.1085,0.0722,0.1126,0.0947,0.1037,0.1029,0.061,0.0657,0.0787,0.1128,0.1163,0.0771,0.1058,0.0636,0.1092,0.0765,0.104,0.1049,0.0691,0.0655,0.077,0.1137,0.117,0.0771,0.1074,0.0666,0.1092,0.0805,0.103,0.1031,0.0629,0.062,0.0779,0.1112,0.1095,0.0783,0.1044,0.0625,0.1088,0.074,0.1018,0.101,0.0638,0.0702,0.0784,0.1084,0.1107,0.076,0.1054,0.0623,0.1071,0.0722,0.1012,0.1027,0.0703
23580,37,0.0779,0.0795,0.1107,0.1084,0.077,0.1041,0.062,0.1048,0.074,0.1014,0.1035,0.0688,0.0731,0.0842,0.1096,0.107,0.077,0.1052,0.066,0.1064,0.0738,0.1022,0.1035,0.0682,0.0693,0.0789,0.11,0.1073,0.0766,0.1049,0.061,0.1079,0.073,0.1022,0.1032,0.0736,0.0702,0.0795,0.1125,0.1125,0.0785,0.1082,0.0666,0.1123,0.0948,0.1036,0.1029,0.0646,0.067,0.0787,0.1128,0.1164,0.0774,0.1063,0.0645,0.109,0.0764,0.1039,0.1041,0.0632,0.0672,0.0772,0.1137,0.1178,0.0769,0.1075,0.0607,0.1088,0.0808,0.1028,0.103,0.0669,0.0636,0.078,0.1118,0.1107,0.0799,0.1051,0.0686,0.1083,0.0728,0.1006,0.1004,0.0629,0.0696,0.0783,0.109,0.1111,0.0757,0.1052,0.0622,0.1068,0.0727,0.1013,0.1036,0.0715
23670,37,0.0781,0.08,0.1107,0.1086,0.0774,0.1045,0.0622,0.1049,0.0739,0.1018,0.1033,0.0668,0.0738,0.0803,0.1102,0.1068,0.0772,0.1052,0.0632,0.1064,0.0745,0.1027,0.1032,0.0686,0.0669,0.0787,0.1098,0.1071,0.0768,0.1056,0.0638,0.1082,0.0736,0.1025,0.103,0.0672,0.073,0.0792,0.112,0.1123,0.0788,0.1089,0.0641,0.1122,0.0943,0.1035,0.1023,0.0673,0.0649,0.0788,0.1136,0.1172,0.078,0.107,0.0708,0.1091,0.0762,0.1039,0.104,0.0638,0.0681,0.0771,0.1136,0.1183,0.0771,0.1072,0.0609,0.1087,0.0811,0.1029,0.1034,0.0677,0.0635,0.0781,0.1118,0.1107,0.0798,0.1051,0.0689,0.1086,0.0734,0.1011,0.1009,0.063,0.0696,0.078,0.109,0.1114,0.0761,0.1054,0.0608,0.1068,0.0729,0.1011,0.1028,0.07
23760,37,0.0757,0.0803,0.1112,0.1091,0.0772,0.1048,0.0617,0.1059,0.075,0.1025,0.1044,0.0694,0.0742,0.0811,0.1098,0.1074,0.0778,0.1061,0.0732,0.1076,0.0749,0.1036,0.104,0.0622,0.0643,0.0786,0.1104,0.1073,0.077,0.1061,0.065,0.1091,0.0741,0.1033,0.1035,0.0686,0.0698,0.0795,0.1129,0.1132,0.0796,0.1091,0.071,0.1134,0.0933,0.1047,0.103,0.0646,0.0645,0.0788,0.1136,0.1181,0.0782,0.1069,0.0688,0.11,0.0768,0.1044,0.105,0.065,0.0675,0.0774,0.1138,0.1185,0.0778,0.1085,0.0592,0.1095,0.0742,0.1044,0.104,0.0658,0.0625,0.0787,0.1121,0.1107,0.0801,0.1056,0.0703,0.109,0.0738,0.1019,0.1011,0.0646,0.0704,0.0791,0.1092,0.1114,0.0768,0.1056,0.0603,0.1076,0.073,0.102,0.1033,0.0691
23850,37,0.0757,0.0798,0.1104,0.1083,0.0771,0.1044,0.0638,0.1062,0.0753,0.1026,0.1042,0.0715,0.0747,0.0827,0.1097,0.107,0.0774,0.1057,0.0676,0.1072,0.0749,0.1032,0.1038,0.066,0.0668,0.0785,0.1102,0.1077,0.0778,0.1061,0.0696,0.1086,0.0739,0.1025,0.1026,0.0636,0.0688,0.0797,0.1135,0.1133,0.0797,0.1087,0.0625,0.112,0.0951,0.1041,0.1028,0.0693,0.0664,0.0795,0.1141,0.1182,0.0791,0.1072,0.0732,0.1091,0.0761,0.1032,0.104,0.0656,0.064,0.078,0.1143,0.119,0.0775,0.1072,0.0625,0.1093,0.0816,0.1049,0.1048,0.0682,0.0633,0.0788,0.1126,0.1114,0.0805,0.1056,0.07,0.1087,0.0734,0.1014,0.1004,0.0627,0.069,0.0793,0.1089,0.1111,0.0767,0.1055,0.0601,0.1076,0.073,0.1016,0.1034,0.0734
23940,37,0.0778,0.08,0.1103,0.1082,0.0771,0.1041,0.062,0.1054,0.0748,0.1018,0.1036,0.0659,0.074,0.0808,0.1086,0.1062,0.0772,0.1053,0.0655,0.1065,0.0744,0.1024,0.1033,0.0697,0.0666,0.0784,0.1097,0.107,0.0772,0.1058,0.0708,0.108,0.0738,0.1021,0.102,0.0613,0.0676,0.0791,0.1125,0.1124,0.0791,0.1087,0.0606,0.1116,0.095,0.1037,0.1019,0.065,0.0653,0.0791,0.1139,0.1175,0.0786,0.1068,0.074,0.1088,0.0761,0.1034,0.1038,0.066,0.0657,0.077,0.1144,0.1186,0.077,0.1076,0.0597,0.1084,0.081,0.1029,0.1032,0.0667,0.0632,0.0784,0.1119,0.1107,0.08,0.105,0.0708,0.108,0.0729,0.1015,0.1005,0.0642,0.0694,0.0784,0.1087,0.111,0.0761,0.1053,0.062,0.1066,0.0728,0.101,0.1027,0.0691
24030,37,0.0758,0.0794,0.1102,0.1083,0.0765,0.1038,0.0651,0.1059,0.0752,0.1024,0.1038,0.0679,0.0729,0.0799,0.11,0.1064,0.0773,0.1054,0.072,0.1067,0.0748,0.1028,0.1032,0.0672,0.0642,0.078,0.1096,0.1072,0.0772,0.1057,0.0718,0.1079,0.0738,0.1019,0.1021,0.064,0.0707,0.0792,0.1122,0.112,0.0788,0.1092,0.0637,0.1118,0.095,0.1032,0.1024,0.0648,0.0646,0.0788,0.1135,0.1176,0.0785,0.1065,0.0737,0.1084,0.0761,0.1033,0.1044,0.0662,0.0652,0.0772,0.114,0.1174,0.0773,0.1073,0.0626,0.1085,0.081,0.1034,0.1033,0.0643,0.0628,0.0783,0.1115,0.1099,0.0793,0.1046,0.0689,0.1079,0.0736,0.1018,0.1019,0.066,0.0674,0.079,0.1085,0.111,0.0764,0.1051,0.0623,0.1068,0.0732,0.1014,0.1026,0.0678
24120,37,0.0769,0.0794,0.11,0.1078,0.0765,0.1036,0.064,0.1058,0.0754,0.1023,0.1043,0.0712,0.0748,0.0804,0.1084,0.1063,0.0771,0.1047,0.0703,0.1066,0.0744,0.1021,0.1035,0.0664,0.0673,0.0782,0.1093,0.1065,0.077,0.1058,0.0675,0.1076,0.0738,0.1017,0.1024,0.0666,0.0691,0.0799,0.1123,0.1128,0.0788,0.1086,0.0616,0.1118,0.0952,0.1031,0.1023,0.068,0.0662,0.0788,0.1133,0.117,0.0785,0.1066,0.0715,0.1084,0.0763,0.1033,0.1036,0.065,0.0647,0.0776,0.1141,0.1177,0.0773,0.1067,0.0614,0.1081,0.0801,0.1035,0.103,0.0688,0.0676,0.0785,0.1119,0.1107,0.0802,0.1049,0.0701,0.1074,0.0731,0.1015,0.1003,0.0636,0.0659,0.0793,0.1085,0.1106,0.0761,0.1051,0.0612,0.1066,0.0726,0.1014,0.1026,0.0712
24210,37,0.0809,0.0799,0.1103,0.1083,0.0772,0.104,0.0627,0.1056,0.0751,0.102,0.1032,0.0645,0.0747,0.0813,0.1108,0.1065,0.0771,0.1054,0.0647,0.1063,0.0741,0.1022,0.1031,0.0698,0.068,0.0783,0.1093,0.107,0.0773,0.1056,0.0697,0.1076,0.0735,0.102,0.1017,0.0625,0.0679,0.0795,0.1128,0.1124,0.0795,0.1089,0.0602,0.1116,0.0945,0.1035,0.1021,0.0655,0.0652,0.079,0.1138,0.1173,0.0787,0.1068,0.0717,0.1089,0.0763,0.1036,0.1036,0.0652,0.0662,0.0773,0.1139,0.1176,0.0775,0.1073,0.0596,0.1083,0.0809,0.1031,0.1032,0.0683,0.0635,0.0782,0.1116,0.1109,0.0802,0.1047,0.0695,0.1082,0.0731,0.1011,0.1012,0.0649,0.0694,0.0785,0.1087,0.1112,0.0762,0.1052,0.0604,0.1062,0.0728,0.1012,0.1026,0.0683
24300,37,0.0752,0.0803,0.1108,0.1089,0.077,0.1044,0.0659,0.1064,0.0757,0.1037,0.1049,0.0689,0.0733,0.0814,0.1091,0.1071,0.0778,0.1056,0.0734,0.1072,0.0753,0.103,0.1041,0.0665,0.0628,0.0786,0.1102,0.1074,0.0778,0.1064,0.0714,0.1086,0.0742,0.1025,0.1025,0.0637,0.071,0.0799,0.1123,0.1126,0.0796,0.1096,0.0648,0.1127,0.095,0.1041,0.103,0.0661,0.0646,0.0791,0.1137,0.1179,0.0787,0.1072,0.0699,0.1099,0.0768,0.1043,0.1047,0.0644,0.0665,0.0784,0.114,0.1187,0.0782,0.1081,0.0623,0.1093,0.0806,0.105,0.1044,0.0667,0.0633,0.0788,0.1117,0.1106,0.0802,0.1052,0.0697,0.1089,0.0739,0.1018,0.1007,0.0651,0.0698,0.0797,0.1091,0.1113,0.077,0.1058,0.0628,0.1073,0.0734,0.102,0.1031,0.0694
24390,37,0.0765,0.0804,0.1106,0.1084,0.077,0.1042,0.0639,0.1064,0.0757,0.1028,0.1038,0.0694,0.0734,0.0831,0.1092,0.1071,0.0777,0.1056,0.0689,0.1068,0.0753,0.1026,0.1038,0.0657,0.0638,0.0788,0.11,0.1073,0.0776,0.1064,0.0707,0.1087,0.0745,0.1027,0.1021,0.0646,0.0688,0.0804,0.113,0.1128,0.08,0.1093,0.0611,0.1121,0.0948,0.1038,0.1028,0.0693,0.0651,0.0794,0.1138,0.118,0.0792,0.1073,0.0721,0.1093,0.0764,0.104,0.1041,0.0645,0.067,0.0783,0.114,0.1188,0.0779,0.108,0.0596,0.1088,0.0738,0.1043,0.1045,0.0696,0.0641,0.0791,0.1123,0.111,0.0807,0.1055,0.0705,0.1085,0.0736,0.1015,0.1006,0.064,0.0701,0.0802,0.1094,0.1115,0.077,0.1058,0.0619,0.1073,0.073,0.102,0.1033,0.072
24480,37,0.0761,0.0807,0.1108,0.1087,0.0774,0.1044,0.0647,0.106,0.0755,0.1026,0.1037,0.0677,0.0743,0.0813,0.1094,0.1073,0.0779,0.1061,0.0668,0.107,0.0747,0.103,0.1036,0.0641,0.0657,0.079,0.1099,0.1075,0.0779,0.1062,0.0707,0.1083,0.0739,0.1026,0.102,0.0631,0.0703,0.0801,0.1126,0.113,0.08,0.1091,0.0608,0.1123,0.0944,0.1039,0.1026,0.0666,0.0648,0.0795,0.1142,0.1185,0.0792,0.1076,0.072,0.1097,0.0768,0.1042,0.1041,0.065,0.0672,0.0778,0.1141,0.1196,0.078,0.1081,0.061,0.1089,0.0808,0.1043,0.104,0.0676,0.0635,0.0789,0.1121,0.1112,0.0807,0.1053,0.0685,0.1089,0.0737,0.1017,0.1007,0.0638,0.0688,0.0791,0.1095,0.1116,0.077,0.1057,0.0603,0.1072,0.073,0.1017,0.103,0.0701
24570,37,0.0744,0.0806,0.111,0.1086,0.0768,0.1043,0.0662,0.1062,0.0756,0.1031,0.1042,0.069,0.0739,0.0825,0.1088,0.1069,0.0778,0.1062,0.0698,0.107,0.0753,0.1029,0.1035,0.0666,0.0635,0.079,0.1102,0.1075,0.0777,0.1063,0.0681,0.1088,0.0745,0.103,0.1024,0.063,0.0697,0.0801,0.1127,0.1125,0.0795,0.1095,0.0663,0.1123,0.0944,0.1043,0.1025,0.0661,0.0638,0.079,0.1135,0.1175,0.0785,0.1072,0.0687,0.1099,0.0771,0.1044,0.1043,0.0633,0.0675,0.0781,0.1137,0.1183,0.0783,0.1083,0.0611,0.1096,0.0818,0.1045,0.1039,0.0662,0.0627,0.0789,0.1117,0.1106,0.0804,0.1052,0.0691,0.1085,0.0737,0.1017,0.1002,0.0638,0.0692,0.0795,0.1092,0.1109,0.077,0.1058,0.0602,0.1071,0.0728,0.1021,0.1028,0.0696
24660,37,0.0761,0.0809,0.111,0.1087,0.0775,0.1044,0.0632,0.1055,0.0752,0.1022,0.1036,0.0686,0.0745,0.0821,0.1093,0.1067,0.0779,0.1054,0.0671,0.1069,0.0753,0.1029,0.1039,0.0655,0.0682,0.0796,0.1098,0.107,0.0775,0.1059,0.0627,0.1086,0.0742,0.1029,0.1028,0.0678,0.0677,0.0807,0.1128,0.1122,0.0799,0.1086,0.0644,0.1121,0.0954,0.1042,0.1026,0.068,0.065,0.0794,0.1138,0.1178,0.0788,0.1073,0.0703,0.109,0.0768,0.1042,0.1039,0.0651,0.0665,0.0785,0.1137,0.1185,0.0782,0.1084,0.0602,0.1092,0.0731,0.1045,0.1041,0.0692,0.0652,0.0791,0.112,0.1112,0.0809,0.1054,0.0699,0.1087,0.0735,0.1011,0.1004,0.0627,0.0693,0.08,0.1086,0.111,0.0769,0.1054,0.0607,0.1069,0.0731,0.1017,0.103,0.0706
24750,37,0.0775,0.0806,0.1108,0.1083,0.0773,0.1043,0.062,0.1047,0.0745,0.1019,0.1029,0.0671,0.0743,0.0814,0.1091,0.1066,0.0775,0.1046,0.0626,0.106,0.0738,0.1022,0.103,0.067,0.0667,0.0795,0.1094,0.1067,0.077,0.1052,0.0629,0.1079,0.0738,0.1021,0.102,0.0664,0.0686,0.0801,0.1124,0.1117,0.0795,0.1081,0.0627,0.1113,0.0952,0.1034,0.102,0.0656,0.0668,0.0795,0.113,0.1165,0.078,0.1061,0.0662,0.1092,0.0771,0.1041,0.1037,0.0646,0.0678,0.0778,0.1135,0.1163,0.0778,0.1073,0.0604,0.1083,0.082,0.1025,0.1027,0.0649,0.0642,0.0785,0.1108,0.11,0.0799,0.1045,0.0665,0.1083,0.074,0.101,0.1004,0.0631,0.0711,0.0788,0.1092,0.1113,0.0765,0.1053,0.0617,0.106,0.0729,0.1007,0.1021,0.0702
24840,37,0.0763,0.081,0.1111,0.1088,0.0775,0.1045,0.0641,0.1055,0.0755,0.1028,0.1038,0.0686,0.0741,0.0816,0.1093,0.1068,0.078,0.1058,0.0681,0.1072,0.0751,0.1031,0.1035,0.065,0.0655,0.0798,0.1099,0.107,0.0775,0.1062,0.0661,0.1086,0.0745,0.1031,0.1029,0.0663,0.0704,0.0802,0.1123,0.1121,0.0798,0.109,0.0668,0.1126,0.095,0.1045,0.1023,0.066,0.0654,0.0794,0.1133,0.1173,0.0787,0.1071,0.0671,0.1099,0.0772,0.1045,0.1045,0.0628,0.066,0.0784,0.1139,0.1178,0.0786,0.1082,0.0616,0.1098,0.0817,0.104,0.1039,0.0667,0.0627,0.0791,0.1114,0.1103,0.0803,0.1052,0.0665,0.1086,0.0742,0.1018,0.1004,0.0633,0.0691,0.0792,0.109,0.1112,0.0769,0.1055,0.0604,0.1072,0.0733,0.102,0.1026,0.0696
24930,37,0.0805,0.0801,0.1103,0.108,0.0773,0.104,0.0607,0.1044,0.0745,0.1014,0.1026,0.0668,0.0736,0.0865,0.1088,0.1066,0.0774,0.1051,0.0653,0.1058,0.0741,0.102,0.103,0.0692,0.0684,0.0794,0.1093,0.1066,0.0773,0.1046,0.0615,0.1072,0.0735,0.102,0.1024,0.0702,0.0687,0.0804,0.112,0.1115,0.0792,0.1076,0.0661,0.111,0.0951,0.103,0.1019,0.0649,0.0681,0.0799,0.1128,0.1159,0.0778,0.1058,0.0629,0.1086,0.077,0.1039,0.1035,0.063,0.0681,0.0783,0.1136,0.1169,0.0774,0.1076,0.0606,0.1083,0.0768,0.1027,0.1026,0.0669,0.0625,0.0788,0.111,0.1098,0.0798,0.1044,0.0645,0.108,0.0742,0.1009,0.1,0.0627,0.0691,0.0794,0.1084,0.1108,0.0764,0.1051,0.0617,0.1061,0.073,0.1004,0.1018,0.073
25020,37,0.0761,0.0805,0.1107,0.1088,0.0778,0.1044,0.0656,0.1043,0.0742,0.1013,0.1022,0.065,0.0706,0.0817,0.1094,0.1068,0.0777,0.1054,0.0626,0.1056,0.074,0.102,0.1026,0.0674,0.0674,0.08,0.1097,0.1071,0.0774,0.1055,0.0716,0.1069,0.0731,0.1017,0.1017,0.0676,0.0686,0.0805,0.112,0.1114,0.0798,0.1079,0.0637,0.111,0.0944,0.1032,0.1019,0.0626,0.0678,0.08,0.113,0.116,0.0779,0.1059,0.0639,0.1088,0.0773,0.1043,0.1039,0.0645,0.065,0.0782,0.1137,0.1165,0.0779,0.1074,0.064,0.1083,0.0811,0.1023,0.1024,0.064,0.0653,0.0787,0.1106,0.1096,0.0798,0.1045,0.0643,0.1083,0.0744,0.1014,0.1004,0.0647,0.0704,0.0786,0.1085,0.1109,0.0766,0.1054,0.0649,0.1064,0.0734,0.1008,0.102,0.0696
25110,37,0.0765,0.0806,0.1107,0.1087,0.0777,0.1049,0.0659,0.1046,0.0748,0.1018,0.1026,0.0656,0.0714,0.0816,0.1091,0.1066,0.0779,0.1053,0.061,0.1059,0.0747,0.1024,0.1027,0.0679,0.0669,0.0795,0.1095,0.1067,0.0772,0.1048,0.0606,0.1074,0.0735,0.1019,0.1024,0.0728,0.0699,0.0803,0.1122,0.1118,0.0794,0.1078,0.0701,0.1119,0.0947,0.1036,0.1017,0.0625,0.0672,0.0795,0.1126,0.1158,0.0775,0.1055,0.0629,0.1091,0.0771,0.1042,0.1042,0.0682,0.068,0.0784,0.1134,0.1159,0.0779,0.107,0.0698,0.1088,0.0814,0.103,0.1023,0.0613,0.0619,0.0787,0.1101,0.1083,0.0787,0.104,0.0629,0.1079,0.0748,0.1019,0.1003,0.0654,0.0693,0.0794,0.1082,0.1104,0.0769,0.1054,0.067,0.1063,0.0731,0.1003,0.1014,0.071
25200,37,0.074,0.0799,0.1102,0.1081,0.0778,0.1045,0.0695,0.1044,0.0749,0.1012,0.1019,0.0646,0.0686,0.0815,0.1093,0.1065,0.078,0.1053,0.0633,0.1054,0.075,0.1018,0.1021,0.0702,0.071,0.0799,0.1094,0.1072,0.0777,0.1045,0.0626,0.1071,0.073,0.1017,0.102,0.0704,0.07,0.0807,0.1123,0.1117,0.0794,0.108,0.0666,0.1112,0.0943,0.1033,0.1018,0.0675,0.068,0.0801,0.1127,0.1156,0.0778,0.1056,0.0614,0.1085,0.0769,0.1039,0.1039,0.0638,0.068,0.0784,0.1138,0.1168,0.0776,0.1071,0.0619,0.108,0.081,0.1028,0.1025,0.0655,0.0632,0.0787,0.1109,0.1097,0.08,0.1044,0.0651,0.1082,0.0744,0.1013,0.1,0.0622,0.0682,0.0797,0.1088,0.1115,0.077,0.1054,0.0629,0.1058,0.0733,0.1007,0.102,0.0711
25290,37,0.0753,0.0815,0.1114,0.1096,0.0784,0.1051,0.0641,0.105,0.075,0.1021,0.1028,0.066,0.073,0.0872,0.1097,0.107,0.0784,0.1054,0.0629,0.1064,0.0747,0.1026,0.1032,0.0644,0.0685,0.0802,0.1098,0.1074,0.0782,0.1054,0.0611,0.1084,0.0742,0.1029,0.1028,0.0691,0.0688,0.081,0.113,0.1121,0.0806,0.1091,0.0687,0.1122,0.0947,0.104,0.1026,0.0648,0.0659,0.0802,0.1135,0.1171,0.0786,0.1066,0.0664,0.1098,0.0777,0.1047,0.1045,0.0623,0.0666,0.0786,0.1142,0.1178,0.0789,0.1086,0.0641,0.1092,0.082,0.1041,0.1037,0.0661,0.0624,0.0789,0.111,0.11,0.0804,0.1048,0.0653,0.1095,0.0751,0.1024,0.1008,0.063,0.0719,0.0792,0.109,0.1117,0.0777,0.1057,0.0643,0.1072,0.0736,0.1016,0.1025,0.0715
25380,37,0.0755,0.0813,0.111,0.1093,0.0781,0.1049,0.0668,0.1053,0.0751,0.1023,0.1035,0.0673,0.071,0.0821,0.1095,0.1069,0.0783,0.1054,0.0658,0.1065,0.075,0.1027,0.1033,0.0622,0.067,0.0802,0.1096,0.1071,0.0781,0.1053,0.0615,0.1085,0.0743,0.1028,0.1031,0.0732,0.0676,0.081,0.1125,0.1122,0.0802,0.1086,0.0715,0.1122,0.0949,0.1044,0.1027,0.0624,0.0657,0.0798,0.1129,0.1166,0.0786,0.1067,0.0652,0.1097,0.0777,0.1047,0.1044,0.063,0.0652,0.079,0.1138,0.1173,0.0787,0.1084,0.0664,0.1091,0.0822,0.1045,0.1034,0.0651,0.0631,0.0787,0.1109,0.1098,0.0804,0.1047,0.0644,0.1088,0.0748,0.1018,0.1001,0.0628,0.0703,0.0794,0.1091,0.1115,0.0774,0.1056,0.0618,0.1068,0.073,0.1013,0.1025,0.0712
25470,37,0.0759,0.0813,0.111,0.1091,0.0784,0.1048,0.0633,0.1049,0.0752,0.102,0.1028,0.0667,0.0727,0.0828,0.1112,0.1072,0.0781,0.1056,0.0655,0.1064,0.0752,0.1026,0.1033,0.068,0.0686,0.0805,0.1096,0.1071,0.0783,0.1052,0.063,0.1082,0.0743,0.1028,0.1025,0.0667,0.0686,0.081,0.1128,0.1122,0.0802,0.1089,0.068,0.1121,0.0948,0.1039,0.1024,0.0673,0.0674,0.0803,0.1134,0.1172,0.0788,0.1068,0.0664,0.1098,0.0776,0.1047,0.104,0.0627,0.0671,0.0789,0.1138,0.1181,0.0787,0.1083,0.0612,0.1088,0.0819,0.1038,0.1035,0.0664,0.0632,0.0789,0.1112,0.1104,0.081,0.1049,0.0665,0.109,0.0751,0.1021,0.1007,0.0642,0.0698,0.0794,0.1087,0.1114,0.0775,0.1055,0.0618,0.1064,0.0732,0.101,0.1032,0.0721
25560,37,0.0764,0.0817,0.1112,0.1094,0.0783,0.1049,0.0641,0.1052,0.0751,0.1023,0.1031,0.0649,0.0709,0.083,0.11,0.1068,0.0784,0.1055,0.0628,0.1064,0.0748,0.1029,0.103,0.0666,0.0676,0.08,0.1098,0.1072,0.0781,0.1058,0.0652,0.1086,0.0747,0.1028,0.1024,0.0654,0.0673,0.0811,0.1126,0.1126,0.0805,0.1088,0.0702,0.1119,0.0952,0.104,0.1021,0.0652,0.0648,0.0798,0.1135,0.1173,0.0789,0.1066,0.0676,0.1103,0.0778,0.1046,0.1041,0.0639,0.0685,0.0784,0.1139,0.1176,0.079,0.1083,0.0623,0.109,0.0746,0.1041,0.1037,0.068,0.0626,0.0792,0.111,0.1103,0.0806,0.1047,0.0665,0.1088,0.0747,0.1017,0.1005,0.063,0.0687,0.0797,0.1092,0.1116,0.0775,0.1057,0.0612,0.1067,0.0735,0.1015,0.1028,0.0695
25650,37,0.0734,0.0815,0.1109,0.1086,0.0776,0.1043,0.0635,0.1056,0.0755,0.1026,0.1034,0.0715,0.074,0.0823,0.1087,0.1067,0.078,0.1052,0.0687,0.1064,0.0751,0.1028,0.1033,0.0642,0.0651,0.0796,0.1092,0.1066,0.0778,0.1058,0.0655,0.1082,0.0748,0.1028,0.1022,0.0661,0.0727,0.081,0.112,0.1122,0.0799,0.1087,0.0694,0.1116,0.0953,0.104,0.1021,0.0645,0.0657,0.0799,0.1136,0.1174,0.0791,0.1069,0.0683,0.1097,0.0772,0.104,0.1038,0.064,0.0666,0.0789,0.1139,0.1178,0.0788,0.1076,0.0599,0.1089,0.0816,0.1041,0.1036,0.0671,0.0628,0.0795,0.1115,0.1102,0.0808,0.1049,0.0693,0.1084,0.0742,0.1015,0.0998,0.0629,0.0706,0.0799,0.1093,0.1113,0.0776,0.1056,0.0602,0.1067,0.0732,0.1016,0.1025,0.07
25740,37,0.0776,0.0812,0.1099,0.1081,0.0775,0.1035,0.0621,0.1046,0.0752,0.1015,0.1024,0.0683,0.0746,0.0824,0.1078,0.106,0.0778,0.1046,0.0653,0.1054,0.0742,0.1019,0.1028,0.0673,0.069,0.0795,0.1087,0.1058,0.0773,0.1047,0.0639,0.1068,0.0737,0.1017,0.1015,0.0674,0.0714,0.0809,0.1113,0.1113,0.0795,0.108,0.0606,0.1106,0.0954,0.103,0.1013,0.0667,0.0668,0.0799,0.1132,0.1165,0.0788,0.1062,0.0691,0.1081,0.0765,0.1031,0.1028,0.065,0.0667,0.0785,0.1139,0.1169,0.0781,0.107,0.0609,0.1074,0.081,0.1025,0.1026,0.0691,0.0638,0.0792,0.111,0.1101,0.0806,0.1043,0.067,0.1075,0.0732,0.1,0.0991,0.0634,0.0707,0.0792,0.1086,0.1112,0.0766,0.1049,0.0632,0.1053,0.0727,0.1005,0.1021,0.0713
25830,37,0.0773,0.0821,0.1109,0.1089,0.0782,0.1046,0.0624,0.1051,0.0753,0.1022,0.1026,0.0656,0.0743,0.0823,0.1086,0.1065,0.0782,0.1055,0.0631,0.1062,0.0748,0.1024,0.103,0.0676,0.0676,0.0803,0.1094,0.1067,0.0781,0.1054,0.065,0.108,0.0744,0.1025,0.1019,0.0637,0.0691,0.0812,0.1128,0.112,0.0806,0.1084,0.0622,0.1115,0.0954,0.1038,0.102,0.0668,0.0643,0.0803,0.1137,0.1175,0.0793,0.1069,0.0682,0.1092,0.0774,0.1041,0.1039,0.0634,0.0673,0.0788,0.114,0.1178,0.0792,0.1083,0.062,0.1089,0.0746,0.1039,0.1036,0.0674,0.0662,0.0795,0.1111,0.1101,0.0808,0.1048,0.0667,0.109,0.0744,0.1013,0.1004,0.0645,0.0697,0.0801,0.109,0.1118,0.0777,0.1057,0.0617,0.1066,0.0734,0.1013,0.1023,0.0699
25920,37,0.0746,0.082,0.1111,0.1091,0.0776,0.1044,0.0657,0.1053,0.0752,0.1023,0.1032,0.0699,0.0758,0.0824,0.1087,0.1065,0.0782,0.1049,0.0671,0.1064,0.0753,0.1025,0.1034,0.068,0.0662,0.08,0.1094,0.1065,0.078,0.1055,0.0635,0.1082,0.0744,0.1025,0.1026,0.0717,0.0695,0.0811,0.112,0.111,0.08,0.1084,0.0697,0.1117,0.0958,0.1038,0.1022,0.065,0.0662,0.0806,0.113,0.1168,0.0788,0.1065,0.0646,0.1097,0.0778,0.1045,0.1042,0.0644,0.068,0.0792,0.1137,0.1172,0.0786,0.1079,0.0624,0.1091,0.0818,0.1043,0.1035,0.0652,0.0626,0.0798,0.1108,0.1094,0.0803,0.1045,0.0629,0.1086,0.0748,0.1018,0.1,0.0634,0.0699,0.08,0.1088,0.1109,0.0775,0.1055,0.062,0.1068,0.0735,0.1012,0.102,0.0702
26010,37,0.0761,0.0812,0.1103,0.1084,0.0779,0.104,0.0623,0.1042,0.0745,0.101,0.1017,0.0672,0.0716,0.0826,0.1088,0.1061,0.078,0.1049,0.0658,0.105,0.0746,0.1018,0.1023,0.0683,0.0675,0.0806,0.1088,0.1066,0.0778,0.1041,0.0631,0.1066,0.0732,0.1013,0.1017,0.0714,0.0691,0.0815,0.1117,0.1111,0.0797,0.1079,0.0658,0.1111,0.0951,0.1028,0.1016,0.0665,0.0687,0.0809,0.1126,0.1153,0.0783,0.1054,0.0613,0.1082,0.0771,0.1034,0.1034,0.0668,0.0675,0.0795,0.1135,0.1157,0.0778,0.1072,0.062,0.1079,0.0738,0.1028,0.1024,0.065,0.0632,0.0796,0.1105,0.109,0.0798,0.1039,0.0622,0.1076,0.0745,0.1012,0.0995,0.063,0.0709,0.0801,0.1081,0.1109,0.0772,0.1054,0.0633,0.1059,0.0733,0.1006,0.1013,0.0691
26100,37,0.0778,0.0813,0.1106,0.1086,0.0783,0.1045,0.0673,0.1043,0.0746,0.1013,0.1014,0.0645,0.0722,0.0817,0.1085,0.107,0.078,0.1053,0.0631,0.1052,0.074,0.1015,0.1019,0.0709,0.067,0.0807,0.1092,0.107,0.0784,0.1045,0.0673,0.1067,0.073,0.1011,0.1014,0.0697,0.0702,0.0808,0.1125,0.1115,0.08,0.1081,0.0639,0.1106,0.095,0.1034,0.1013,0.064,0.0668,0.0807,0.1132,0.1157,0.0784,0.1054,0.0612,0.1086,0.0771,0.1038,0.1037,0.0678,0.0657,0.0788,0.1138,0.1149,0.0782,0.1074,0.0667,0.108,0.0818,0.1026,0.102,0.0649,0.063,0.0796,0.1103,0.1086,0.0796,0.1037,0.0619,0.1078,0.0749,0.102,0.1001,0.0665,0.0715,0.0798,0.1085,0.1108,0.0773,0.1055,0.0682,0.1061,0.0739,0.1002,0.1013,0.0682
26190,37,0.0744,0.0812,0.1107,0.1087,0.0782,0.1046,0.0692,0.1055,0.0757,0.1021,0.1022,0.0646,0.0698,0.0849,0.1093,0.1067,0.0784,0.106,0.0614,0.106,0.0754,0.1024,0.1024,0.0674,0.0657,0.0808,0.1097,0.1074,0.079,0.1053,0.0675,0.1074,0.074,0.1017,0.1021,0.0709,0.0686,0.0817,0.1128,0.112,0.0808,0.1088,0.0664,0.1119,0.0948,0.1041,0.1022,0.0638,0.067,0.0808,0.1127,0.1162,0.0786,0.106,0.0615,0.1092,0.0775,0.1045,0.1042,0.0672,0.0669,0.0795,0.1134,0.1171,0.0788,0.1072,0.0699,0.1095,0.0751,0.1044,0.103,0.0621,0.063,0.0799,0.1105,0.1087,0.08,0.1042,0.0626,0.1085,0.0754,0.1024,0.1002,0.064,0.0698,0.081,0.1088,0.1109,0.0778,0.1058,0.0637,0.1067,0.0736,0.1023,0.1018,0.07
26280,37,0.0739,0.0815,0.1107,0.1089,0.0788,0.1051,0.0683,0.1046,0.0755,0.1016,0.1019,0.065,0.071,0.083,0.1096,0.1069,0.0789,0.1056,0.0642,0.1058,0.0755,0.1024,0.1023,0.0695,0.068,0.0818,0.1091,0.1071,0.0787,0.1049,0.0635,0.1073,0.074,0.1019,0.1021,0.0703,0.0691,0.0818,0.1126,0.1122,0.0802,0.1085,0.0648,0.1116,0.0952,0.1039,0.1019,0.066,0.0675,0.0813,0.1132,0.1166,0.079,0.1063,0.063,0.1093,0.0778,0.1046,0.104,0.0628,0.0662,0.0798,0.1136,0.1173,0.0787,0.1079,0.0614,0.1087,0.082,0.104,0.1033,0.0655,0.0626,0.0798,0.111,0.1104,0.0809,0.1048,0.0665,0.1089,0.0753,0.1022,0.1002,0.0638,0.0703,0.0803,0.109,0.1114,0.0779,0.1056,0.0618,0.1064,0.0732,0.1008,0.1022,0.0715
26370,37,0.0744,0.0821,0.1114,0.1094,0.079,0.1054,0.0639,0.1051,0.0756,0.1024,0.1023,0.0654,0.069,0.0856,0.1096,0.1067,0.079,0.1058,0.0614,0.1058,0.0751,0.1029,0.1024,0.0652,0.067,0.0811,0.1097,0.1071,0.0784,0.1052,0.0612,0.1078,0.0744,0.1024,0.1024,0.07,0.0699,0.0815,0.1123,0.1122,0.0808,0.1087,0.0678,0.1116,0.0954,0.1043,0.1016,0.0645,0.0657,0.0805,0.1137,0.1175,0.0794,0.1067,0.0686,0.11,0.0785,0.1048,0.1039,0.0652,0.068,0.0792,0.1136,0.1178,0.0794,0.1084,0.0641,0.1091,0.0826,0.1038,0.1029,0.0668,0.063,0.0796,0.1109,0.1101,0.0811,0.1048,0.0665,0.1089,0.0751,0.1019,0.1003,0.0625,0.0707,0.0797,0.1092,0.1116,0.0775,0.1055,0.0614,0.1064,0.0736,0.1008,0.1018,0.0703
26460,37,0.0742,0.0817,0.1106,0.109,0.0785,0.1046,0.063,0.1054,0.0759,0.1023,0.1028,0.0676,0.0701,0.0827,0.1089,0.1055,0.0789,0.1049,0.0686,0.1064,0.0755,0.1027,0.1026,0.066,0.0665,0.0804,0.1091,0.1065,0.0784,0.1055,0.064,0.108,0.0751,0.1028,0.1023,0.0677,0.0687,0.0818,0.112,0.1117,0.0807,0.1078,0.0713,0.1121,0.0961,0.1041,0.1017,0.0649,0.066,0.0804,0.1127,0.1165,0.0788,0.1064,0.0651,0.1095,0.0782,0.1044,0.1038,0.0628,0.067,0.0796,0.1137,0.1168,0.0792,0.1079,0.0674,0.109,0.0749,0.1039,0.1028,0.0646,0.0622,0.0796,0.1106,0.1094,0.0806,0.1046,0.0633,0.1085,0.0755,0.1021,0.1,0.062,0.0705,0.0802,0.1084,0.1109,0.0775,0.1054,0.0618,0.1062,0.0732,0.101,0.1017,0.071
26550,37,0.0743,0.0818,0.1105,0.1088,0.0786,0.1044,0.063,0.1046,0.0757,0.1014,0.1019,0.0665,0.0722,0.083,0.1092,0.1067,0.0788,0.1054,0.063,0.1061,0.0755,0.1021,0.1029,0.0683,0.0687,0.0812,0.1089,0.1067,0.0784,0.105,0.0622,0.1076,0.0748,0.1023,0.1019,0.0668,0.0693,0.0819,0.1122,0.112,0.0807,0.1084,0.067,0.1116,0.0952,0.1036,0.1017,0.0675,0.0668,0.0808,0.1131,0.1169,0.0793,0.1064,0.066,0.1094,0.0781,0.1045,0.1035,0.0644,0.0677,0.0798,0.1136,0.1176,0.0787,0.1078,0.0608,0.1086,0.0821,0.1038,0.1032,0.0673,0.0629,0.0797,0.1107,0.1102,0.0815,0.1051,0.0667,0.109,0.0753,0.1013,0.1001,0.0625,0.0702,0.0802,0.1089,0.1115,0.0777,0.1054,0.0628,0.1062,0.0737,0.1008,0.1016,0.072
26640,37,0.076,0.0823,0.1109,0.1094,0.0789,0.1049,0.0641,0.1051,0.0755,0.102,0.1027,0.0651,0.0719,0.0832,0.109,0.1071,0.079,0.1054,0.0637,0.1059,0.0756,0.1024,0.1026,0.0647,0.0678,0.0814,0.1093,0.1067,0.0787,0.1052,0.0607,0.1079,0.0747,0.1028,0.102,0.0678,0.0687,0.0818,0.1125,0.1122,0.0808,0.1089,0.0703,0.1116,0.0952,0.1043,0.102,0.0654,0.0664,0.0808,0.1134,0.1168,0.0794,0.1064,0.0673,0.1098,0.0781,0.1044,0.1038,0.0633,0.0668,0.0793,0.1141,0.1169,0.0796,0.1082,0.0668,0.1088,0.0823,0.1042,0.1029,0.0661,0.0622,0.0798,0.1106,0.1096,0.081,0.1044,0.0643,0.1089,0.0754,0.1022,0.1002,0.0645,0.0731,0.0799,0.1094,0.1117,0.0779,0.1058,0.0666,0.1069,0.074,0.1008,0.1019,0.0717
26730,37,0.075,0.0816,0.1108,0.1088,0.0784,0.1046,0.0668,0.1052,0.0755,0.102,0.1026,0.0668,0.0687,0.0847,0.1093,0.1059,0.0787,0.1057,0.0658,0.106,0.0753,0.1026,0.1027,0.0682,0.0675,0.0813,0.1092,0.1069,0.079,0.1051,0.0614,0.1076,0.0744,0.1021,0.1022,0.0735,0.0681,0.0822,0.1124,0.1117,0.0806,0.1084,0.0706,0.1115,0.0959,0.1038,0.102,0.0656,0.0691,0.0813,0.1129,0.1161,0.0789,0.1062,0.0631,0.1092,0.078,0.1044,0.1038,0.0677,0.0661,0.0797,0.1139,0.1165,0.0786,0.1078,0.0703,0.1092,0.0823,0.1046,0.1033,0.0634,0.0619,0.0799,0.1103,0.109,0.0805,0.1042,0.0629,0.1083,0.0755,0.1024,0.0996,0.063,0.0703,0.0811,0.1084,0.111,0.0782,0.1058,0.0664,0.1064,0.0736,0.101,0.1016,0.0705
26820,37,0.0754,0.0816,0.1103,0.1084,0.0786,0.1042,0.0683,0.1042,0.0756,0.1014,0.1011,0.0648,0.0705,0.0827,0.1083,0.1057,0.0788,0.1048,0.0634,0.1049,0.0744,0.1012,0.1018,0.0716,0.0674,0.0809,0.1087,0.1064,0.0785,0.1041,0.0636,0.1068,0.0736,0.1011,0.1014,0.0688,0.0665,0.082,0.1116,0.1113,0.0803,0.1077,0.0662,0.1105,0.096,0.1026,0.1013,0.0639,0.0668,0.0808,0.1127,0.1152,0.0785,0.1057,0.0632,0.1081,0.0776,0.1034,0.1027,0.0619,0.067,0.0799,0.1134,0.1158,0.0785,0.1073,0.0633,0.1074,0.0812,0.1023,0.102,0.066,0.0629,0.0797,0.1102,0.109,0.0804,0.104,0.0639,0.1077,0.075,0.1012,0.0991,0.0634,0.068,0.0803,0.1083,0.111,0.0774,0.1052,0.0642,0.1052,0.0734,0.0999,0.1011,0.0677
26910,37,0.0744,0.0821,0.1107,0.1087,0.0786,0.1049,0.07,0.1052,0.0753,0.1019,0.1015,0.0647,0.0693,0.0863,0.1088,0.1064,0.0785,0.1052,0.063,0.1052,0.0751,0.1021,0.1024,0.0682,0.0672,0.0819,0.1096,0.1072,0.0791,0.105,0.0637,0.1077,0.0743,0.1021,0.1021,0.0719,0.071,0.0819,0.1122,0.112,0.0808,0.1087,0.0703,0.1116,0.0957,0.104,0.102,0.0648,0.0662,0.081,0.1131,0.1165,0.079,0.1062,0.0643,0.1099,0.0783,0.1045,0.1041,0.0669,0.0669,0.08,0.1134,0.1165,0.0795,0.1081,0.069,0.1093,0.0825,0.104,0.103,0.0656,0.0627,0.0799,0.1102,0.1095,0.081,0.1044,0.0637,0.1086,0.0756,0.1023,0.1,0.0632,0.0726,0.0798,0.1084,0.111,0.078,0.1057,0.0663,0.1063,0.0738,0.1008,0.1016,0.0695
27000,37,0.0748,0.0821,0.1103,0.1086,0.0784,0.1044,0.0632,0.1047,0.0755,0.1017,0.1022,0.0666,0.0711,0.0832,0.1083,0.1064,0.0787,0.1053,0.0659,0.1058,0.0752,0.1023,0.1028,0.0638,0.0664,0.0813,0.1092,0.1066,0.0788,0.1049,0.0613,0.1078,0.0747,0.1021,0.1024,0.076,0.0712,0.0822,0.1122,0.1124,0.0805,0.1083,0.0714,0.1116,0.0959,0.1038,0.1018,0.0635,0.0666,0.0812,0.1124,0.1159,0.079,0.106,0.0639,0.1094,0.0779,0.1043,0.1033,0.0639,0.0683,0.0802,0.1132,0.117,0.0791,0.1072,0.0667,0.109,0.0826,0.1043,0.1032,0.0632,0.0661,0.0801,0.1108,0.1099,0.0813,0.1046,0.0674,0.1081,0.0749,0.1012,0.099,0.0627,0.0709,0.0812,0.1089,0.1116,0.0781,0.1058,0.061,0.1064,0.0732,0.101,0.1018,0.0715
27090,37,0.0756,0.0828,0.1108,0.1086,0.0789,0.1045,0.062,0.105,0.0756,0.1017,0.1015,0.0657,0.0709,0.0838,0.1087,0.106,0.079,0.1053,0.0643,0.1059,0.0752,0.1022,0.1025,0.0639,0.0686,0.0813,0.1089,0.1062,0.0788,0.1057,0.0666,0.1076,0.075,0.1023,0.1011,0.0638,0.07,0.0823,0.1121,0.1116,0.081,0.1082,0.0638,0.1114,0.0958,0.1033,0.1015,0.0659,0.0652,0.081,0.1135,0.1172,0.0799,0.1068,0.0703,0.1088,0.0776,0.1038,0.1029,0.0633,0.0689,0.0798,0.1137,0.118,0.0792,0.1072,0.0609,0.1085,0.0744,0.1041,0.1028,0.0675,0.0629,0.0803,0.1108,0.1102,0.0815,0.1048,0.0674,0.1084,0.0745,0.1014,0.0997,0.0626,0.0707,0.08,0.1092,0.1114,0.0777,0.1056,0.0617,0.1058,0.0736,0.101,0.1017,0.0703
27180,37,0.0782,0.0828,0.1106,0.1086,0.0784,0.1042,0.0648,0.105,0.0755,0.1019,0.1023,0.0688,0.0747,0.0834,0.1082,0.1064,0.0788,0.1053,0.0655,0.1059,0.0753,0.1023,0.1026,0.0654,0.0662,0.081,0.1091,0.1061,0.0786,0.1056,0.0676,0.1076,0.0749,0.1022,0.1017,0.0688,0.0709,0.082,0.1116,0.1113,0.0807,0.1084,0.07,0.1116,0.0954,0.1038,0.1016,0.0639,0.0658,0.0811,0.113,0.1169,0.0797,0.1066,0.0668,0.1096,0.0783,0.1038,0.1035,0.0638,0.0655,0.0802,0.1137,0.1163,0.0795,0.1082,0.0642,0.1088,0.0822,0.1046,0.1027,0.0665,0.0626,0.0803,0.1102,0.1096,0.0812,0.1044,0.0648,0.108,0.075,0.1015,0.0993,0.0635,0.0704,0.0809,0.1089,0.1111,0.0783,0.1055,0.0619,0.106,0.0738,0.1009,0.1018,0.0702
27270,37,0.0767,0.0826,0.1102,0.108,0.0783,0.104,0.0628,0.1049,0.0759,0.102,0.1024,0.0691,0.0725,0.0839,0.1082,0.1061,0.0788,0.1053,0.0685,0.1058,0.0758,0.1023,0.1023,0.0673,0.0675,0.081,0.1086,0.1057,0.0783,0.1051,0.063,0.1073,0.0746,0.1019,0.1013,0.068,0.0704,0.0824,0.1118,0.1114,0.0807,0.1081,0.0675,0.1116,0.0957,0.1037,0.1012,0.0671,0.0666,0.0814,0.113,0.1167,0.0797,0.1064,0.0666,0.1093,0.0779,0.1039,0.1028,0.064,0.0678,0.0798,0.1138,0.1173,0.0793,0.1077,0.06,0.108,0.0822,0.1043,0.1027,0.0681,0.0631,0.0803,0.1106,0.1098,0.0819,0.1046,0.0686,0.1079,0.0745,0.101,0.099,0.0633,0.0704,0.0816,0.1088,0.1113,0.0778,0.1056,0.062,0.1062,0.0735,0.101,0.1015,0.0715
27360,37,0.0745,0.0832,0.1108,0.1084,0.0791,0.105,0.0632,0.1045,0.0756,0.1019,0.1014,0.0657,0.0715,0.0836,0.1088,0.1059,0.0789,0.1052,0.0631,0.1055,0.0752,0.102,0.1019,0.0678,0.0672,0.0814,0.1091,0.1063,0.0787,0.1053,0.0643,0.1078,0.0751,0.1023,0.1013,0.0634,0.069,0.0822,0.112,0.1116,0.081,0.1088,0.0681,0.1116,0.095,0.1036,0.1014,0.0655,0.0654,0.0816,0.1133,0.1166,0.0796,0.1065,0.0673,0.1093,0.078,0.1039,0.103,0.0635,0.0663,0.08,0.1138,0.1174,0.0797,0.1081,0.0619,0.1087,0.0821,0.1036,0.1027,0.067,0.0629,0.0805,0.1103,0.1092,0.0812,0.1042,0.0647,0.1086,0.0754,0.1019,0.1001,0.0647,0.0719,0.0806,0.109,0.1113,0.0783,0.1056,0.0656,0.1062,0.0742,0.1004,0.1012,0.0734
27450,37,0.0745,0.0828,0.1107,0.1085,0.0787,0.1044,0.068,0.1048,0.0757,0.102,0.1023,0.0672,0.0699,0.0832,0.1086,0.1061,0.0791,0.1052,0.0648,0.1054,0.0758,0.1021,0.102,0.0642,0.0656,0.0814,0.1089,0.1058,0.0783,0.1053,0.0635,0.1072,0.0748,0.1022,0.1019,0.0727,0.0706,0.0824,0.1118,0.1113,0.0808,0.1085,0.0712,0.1114,0.0956,0.104,0.1012,0.0645,0.0667,0.0815,0.1127,0.116,0.079,0.106,0.0635,0.1095,0.0783,0.1042,0.1036,0.0659,0.0676,0.0804,0.1134,0.1162,0.0794,0.1076,0.069,0.1091,0.0826,0.1039,0.1026,0.0653,0.0629,0.0807,0.1104,0.1089,0.081,0.1042,0.0632,0.1081,0.0752,0.1016,0.099,0.0624,0.07,0.0813,0.1084,0.1107,0.078,0.1056,0.0611,0.1063,0.0736,0.101,0.1013,0.0709
27540,37,0.0754,0.0821,0.11,0.1079,0.0787,0.1041,0.0618,0.1036,0.0751,0.1003,0.1004,0.0668,0.0686,0.0833,0.1082,0.1053,0.0783,0.1048,0.0645,0.1043,0.0746,0.1013,0.1012,0.0698,0.068,0.0814,0.1085,0.1058,0.0785,0.1041,0.0622,0.1063,0.074,0.1012,0.1008,0.0677,0.0696,0.0823,0.1114,0.1107,0.0806,0.1076,0.0639,0.1107,0.0955,0.1025,0.1004,0.0641,0.0672,0.0817,0.1124,0.1151,0.0789,0.1053,0.062,0.1077,0.0778,0.1033,0.1023,0.0624,0.067,0.0803,0.1134,0.1156,0.0787,0.1069,0.0648,0.1079,0.082,0.1023,0.1014,0.0644,0.0632,0.0802,0.1099,0.1088,0.0808,0.1038,0.0646,0.1071,0.0747,0.1006,0.0988,0.0624,0.0713,0.0804,0.1081,0.1106,0.0774,0.105,0.063,0.1051,0.0737,0.0996,0.1004,0.0741
27630,37,0.0752,0.0824,0.11,0.1078,0.0787,0.1045,0.0666,0.1037,0.075,0.1011,0.101,0.0649,0.0676,0.083,0.1082,0.1055,0.0784,0.1049,0.0614,0.1045,0.0751,0.1016,0.1011,0.0652,0.0667,0.0816,0.1083,0.1056,0.0784,0.1043,0.0621,0.1063,0.0742,0.1013,0.1008,0.0689,0.0697,0.0819,0.1115,0.1107,0.0802,0.1078,0.0696,0.1106,0.0951,0.1029,0.1002,0.0627,0.0652,0.0814,0.1125,0.115,0.0786,0.1054,0.064,0.1083,0.0781,0.1037,0.1031,0.0665,0.0651,0.0796,0.1133,0.1154,0.0792,0.1071,0.067,0.1075,0.0816,0.1019,0.101,0.065,0.0639,0.0802,0.1098,0.1085,0.0809,0.104,0.0649,0.1074,0.075,0.1016,0.0994,0.0633,0.0712,0.08,0.1085,0.111,0.0775,0.1051,0.0663,0.1054,0.0742,0.0998,0.1004,0.0699
27720,37,0.0742,0.0822,0.1098,0.1077,0.078,0.1039,0.0665,0.1042,0.0756,0.102,0.102,0.071,0.0729,0.083,0.1078,0.1054,0.0787,0.1046,0.0646,0.1049,0.0754,0.1017,0.1009,0.0679,0.0655,0.0808,0.1079,0.1046,0.0779,0.1044,0.0634,0.1065,0.0748,0.1017,0.1014,0.0714,0.0712,0.082,0.1111,0.1103,0.0803,0.1078,0.0715,0.1108,0.0954,0.1027,0.1003,0.062,0.0669,0.0811,0.1121,0.1145,0.0785,0.105,0.064,0.1078,0.0779,0.1032,0.1028,0.0636,0.065,0.0802,0.1132,0.1149,0.079,0.1069,0.0686,0.1079,0.0749,0.1025,0.1011,0.0631,0.0646,0.0804,0.1095,0.1076,0.0802,0.1038,0.0624,0.1073,0.0751,0.1007,0.0984,0.0624,0.0711,0.0812,0.1083,0.1105,0.0777,0.1054,0.0644,0.1053,0.0734,0.0997,0.1002,0.0706
27810,37,0.076,0.0826,0.1096,0.1076,0.0789,0.1041,0.0631,0.1036,0.0751,0.1003,0.1003,0.065,0.0711,0.0836,0.108,0.1053,0.0787,0.1044,0.0632,0.1046,0.0756,0.1007,0.1011,0.0685,0.0672,0.0812,0.1079,0.1051,0.0782,0.1046,0.0623,0.1063,0.0744,0.1013,0.1004,0.0618,0.0701,0.0823,0.1112,0.1103,0.0807,0.1081,0.0667,0.1106,0.0959,0.1028,0.1003,0.0662,0.066,0.0815,0.1125,0.115,0.0793,0.1056,0.0649,0.1076,0.078,0.1032,0.1025,0.0638,0.0652,0.0799,0.1136,0.1151,0.0792,0.1069,0.0634,0.1075,0.075,0.1017,0.1009,0.066,0.063,0.0805,0.1098,0.1084,0.081,0.104,0.0647,0.1071,0.075,0.1006,0.0988,0.0636,0.0712,0.0811,0.1083,0.1111,0.0778,0.1052,0.0658,0.1051,0.074,0.0995,0.1004,0.071
27900,37,0.0743,0.0823,0.11,0.1079,0.0789,0.1044,0.0684,0.1041,0.0757,0.1013,0.1008,0.0638,0.0693,0.0844,0.1081,0.1059,0.0788,0.1047,0.0609,0.1045,0.0752,0.1014,0.1006,0.0679,0.0667,0.0818,0.1086,0.1058,0.079,0.1041,0.0634,0.1063,0.0742,0.1011,0.1007,0.067,0.0688,0.0822,0.1119,0.1108,0.0808,0.1074,0.0696,0.1105,0.0952,0.103,0.1003,0.0653,0.0678,0.0816,0.1125,0.1149,0.079,0.1055,0.0639,0.1081,0.0783,0.1036,0.1027,0.0646,0.0652,0.0797,0.1137,0.1153,0.0792,0.1068,0.068,0.1077,0.082,0.102,0.1011,0.0617,0.0652,0.0801,0.1096,0.1081,0.0804,0.1035,0.063,0.1072,0.0756,0.1012,0.0985,0.0631,0.0725,0.0807,0.1083,0.111,0.0779,0.1054,0.0681,0.1051,0.074,0.0996,0.1004,0.0683
27990,37,0.0753,0.083,0.1097,0.1077,0.0787,0.104,0.0658,0.1041,0.0754,0.1013,0.1012,0.0655,0.0694,0.0836,0.1079,0.1047,0.0786,0.1045,0.0642,0.1046,0.0753,0.1014,0.1011,0.0644,0.0673,0.0815,0.1077,0.1052,0.0785,0.1042,0.0617,0.1063,0.0745,0.1011,0.1011,0.0715,0.0705,0.0825,0.1112,0.1105,0.0806,0.1076,0.072,0.1107,0.0952,0.1025,0.1005,0.0613,0.0695,0.0816,0.112,0.1145,0.0788,0.105,0.0629,0.1084,0.0782,0.1034,0.1024,0.0656,0.0683,0.0806,0.1135,0.1148,0.0791,0.1066,0.07,0.1077,0.0816,0.1025,0.101,0.0625,0.064,0.0804,0.1094,0.1076,0.0804,0.1032,0.0613,0.1071,0.0755,0.1014,0.0984,0.0622,0.0694,0.0814,0.1079,0.1104,0.0782,0.1053,0.0675,0.1052,0.0733,0.1001,0.1,0.0674
28080,37,0.0743,0.0817,0.1093,0.1076,0.079,0.104,0.0698,0.1045,0.0756,0.1005,0.1001,0.065,0.0697,0.0836,0.1076,0.1053,0.0786,0.1047,0.0612,0.1043,0.0751,0.1006,0.1008,0.0681,0.0658,0.0816,0.1083,0.1061,0.0793,0.1044,0.0696,0.1057,0.0738,0.1004,0.1002,0.0652,0.069,0.0822,0.112,0.1108,0.0809,0.1074,0.0641,0.1099,0.0957,0.1021,0.1004,0.066,0.0664,0.0822,0.1133,0.1157,0.0796,0.1052,0.0666,0.1072,0.0771,0.1028,0.1026,0.0679,0.0644,0.0805,0.1138,0.1152,0.0788,0.1058,0.0655,0.1074,0.0818,0.1026,0.1013,0.0619,0.0651,0.0807,0.1098,0.1081,0.0809,0.1037,0.0632,0.1066,0.0753,0.1016,0.099,0.0659,0.0696,0.081,0.1075,0.11,0.0777,0.1051,0.0689,0.1051,0.0741,0.0995,0.1001,0.0655
28170,37,0.0736,0.0823,0.1101,0.1083,0.0793,0.1052,0.0716,0.1053,0.0765,0.1019,0.1011,0.0658,0.0695,0.0838,0.1083,0.107,0.0796,0.1054,0.0604,0.1051,0.076,0.1016,0.1013,0.0699,0.0669,0.082,0.109,0.1066,0.0799,0.105,0.0696,0.1069,0.0746,0.1015,0.101,0.0669,0.0676,0.0833,0.1125,0.1117,0.0817,0.1084,0.0655,0.1112,0.0958,0.1037,0.1012,0.0646,0.0672,0.0821,0.1131,0.1161,0.0799,0.1057,0.0628,0.1091,0.0785,0.1043,0.1039,0.0695,0.0672,0.0811,0.1135,0.1165,0.0799,0.1076,0.0722,0.1093,0.0758,0.1044,0.1026,0.0648,0.0632,0.0812,0.1098,0.1079,0.0807,0.1037,0.0616,0.1076,0.0763,0.1032,0.0998,0.0697,0.0707,0.0817,0.1076,0.1101,0.0785,0.1054,0.072,0.1062,0.0747,0.1005,0.101,0.0666
28260,37,0.0727,0.0813,0.1092,0.1073,0.0785,0.1039,0.0688,0.1048,0.0762,0.1011,0.1008,0.0632,0.07,0.0834,0.1078,0.1056,0.079,0.1046,0.0608,0.1048,0.0753,0.101,0.1007,0.0708,0.0648,0.0813,0.1082,0.1056,0.079,0.1044,0.0679,0.1061,0.074,0.1004,0.1006,0.07,0.0672,0.0828,0.1114,0.1105,0.0808,0.1073,0.0678,0.1103,0.0961,0.1024,0.1003,0.0622,0.0694,0.082,0.1123,0.1148,0.0793,0.1047,0.0613,0.1079,0.0778,0.1031,0.1028,0.0704,0.0645,0.0811,0.1132,0.114,0.0789,0.106,0.0719,0.1078,0.075,0.1028,0.1011,0.0631,0.0646,0.0806,0.1093,0.1072,0.0801,0.103,0.061,0.1064,0.0751,0.1012,0.0985,0.0675,0.0712,0.0822,0.1076,0.1097,0.078,0.105,0.068,0.1052,0.0744,0.0998,0.1,0.068
28350,37,0.0724,0.0822,0.1098,0.1077,0.0788,0.1045,0.0707,0.1054,0.0765,0.1018,0.1009,0.0634,0.0699,0.0839,0.1096,0.1059,0.0795,0.1051,0.0626,0.1047,0.0757,0.1016,0.1011,0.0712,0.0667,0.0823,0.1087,0.1065,0.0801,0.1051,0.0696,0.1065,0.0744,0.101,0.1004,0.065,0.0681,0.0834,0.1124,0.1112,0.0818,0.1083,0.0656,0.1105,0.0961,0.1026,0.1011,0.0658,0.0675,0.0829,0.1138,0.1166,0.0804,0.1059,0.064,0.1086,0.0778,0.1039,0.1033,0.0673,0.0672,0.0813,0.1134,0.1166,0.0798,0.1067,0.067,0.1084,0.0815,0.1039,0.1024,0.0634,0.0652,0.0814,0.1104,0.1083,0.0812,0.1037,0.0603,0.1074,0.0757,0.1029,0.0994,0.0693,0.068,0.082,0.1078,0.11,0.0785,0.1052,0.0679,0.1059,0.0747,0.1002,0.1008,0.0678
28440,37,0.0745,0.0824,0.1095,0.1072,0.0783,0.1039,0.0726,0.105,0.0766,0.1016,0.1005,0.0641,0.0731,0.083,0.1076,0.1062,0.0788,0.1049,0.0607,0.1043,0.0754,0.1008,0.1004,0.0711,0.0656,0.0815,0.1084,0.1056,0.0794,0.1047,0.0758,0.106,0.0742,0.1004,0.0998,0.0649,0.0674,0.0821,0.1116,0.1103,0.0807,0.1074,0.0631,0.1098,0.0958,0.1022,0.1001,0.0646,0.0659,0.0822,0.113,0.1153,0.0797,0.1047,0.0606,0.108,0.0775,0.1033,0.1029,0.0721,0.0669,0.081,0.1135,0.115,0.0792,0.1066,0.0715,0.1076,0.0821,0.1032,0.1011,0.0626,0.0674,0.0813,0.1096,0.1074,0.0802,0.1028,0.0605,0.1062,0.0752,0.1029,0.099,0.0711,0.0689,0.0821,0.1074,0.1099,0.0782,0.1049,0.0712,0.1052,0.075,0.0994,0.1,0.0665
28530,37,0.0723,0.0824,0.1095,0.1073,0.0785,0.1041,0.0685,0.1056,0.0771,0.1021,0.1016,0.067,0.07,0.084,0.1091,0.106,0.0793,0.1052,0.0642,0.1052,0.076,0.1017,0.1012,0.0668,0.0648,0.0818,0.1087,0.1059,0.0799,0.1053,0.0738,0.1063,0.0745,0.1009,0.1004,0.0665,0.0703,0.0829,0.1119,0.1113,0.0813,0.1082,0.0668,0.1111,0.0955,0.1026,0.1009,0.0674,0.0663,0.0828,0.1134,0.1163,0.0803,0.1057,0.062,0.1081,0.0774,0.1034,0.1029,0.0724,0.0642,0.0816,0.1138,0.1167,0.0797,0.1072,0.0666,0.1084,0.0825,0.1046,0.1027,0.0658,0.0663,0.0821,0.1106,0.1083,0.0813,0.1038,0.0622,0.1066,0.0754,0.1027,0.0992,0.0696,0.0704,0.0829,0.1079,0.1104,0.0788,0.1052,0.0654,0.1062,0.0744,0.1006,0.1008,0.0687
28620,37,0.0732,0.0819,0.109,0.1066,0.0783,0.1036,0.0676,0.1043,0.0762,0.1007,0.0999,0.0638,0.0688,0.0829,0.1068,0.1051,0.0782,0.1044,0.0597,0.1038,0.0754,0.1006,0.1,0.0703,0.066,0.0819,0.108,0.1054,0.0794,0.1046,0.0735,0.1053,0.0737,0.0998,0.0995,0.0639,0.0678,0.0832,0.1115,0.1108,0.0812,0.1074,0.064,0.1095,0.0961,0.1015,0.1,0.0656,0.0681,0.083,0.113,0.1153,0.08,0.1049,0.0604,0.1072,0.0773,0.1027,0.1024,0.0687,0.0653,0.0811,0.1135,0.115,0.0791,0.1059,0.0656,0.1072,0.0746,0.1025,0.101,0.0607,0.0636,0.0814,0.1095,0.1076,0.0807,0.1032,0.0614,0.1063,0.0754,0.1013,0.0986,0.066,0.0698,0.082,0.1077,0.1103,0.0783,0.1052,0.0688,0.105,0.075,0.099,0.1,0.0663
28710,37,0.0748,0.0839,0.11,0.1078,0.0792,0.1049,0.0697,0.105,0.0767,0.102,0.1008,0.0647,0.0682,0.085,0.1082,0.1061,0.0795,0.1051,0.0626,0.1048,0.0759,0.1018,0.1008,0.0698,0.0658,0.0823,0.1089,0.1062,0.08,0.1052,0.0736,0.1068,0.0746,0.1008,0.1006,0.066,0.0704,0.0829,0.112,0.1116,0.0818,0.1082,0.0629,0.1106,0.0949,0.1032,0.1007,0.0645,0.0657,0.0829,0.1133,0.1163,0.0802,0.1055,0.0614,0.1085,0.0781,0.1035,0.1035,0.0707,0.0648,0.0813,0.1136,0.1161,0.08,0.1068,0.0706,0.1092,0.0824,0.104,0.1021,0.0624,0.0628,0.082,0.1101,0.1077,0.0808,0.1036,0.0606,0.107,0.0756,0.1029,0.0991,0.0702,0.0692,0.0825,0.1078,0.1103,0.0788,0.1054,0.0705,0.1062,0.0748,0.1002,0.1005,0.0682
28800,37,0.0717,0.0825,0.1088,0.1062,0.0784,0.1035,0.068,0.1048,0.0765,0.1015,0.1011,0.0684,0.0687,0.084,0.107,0.1045,0.0791,0.1044,0.0626,0.1045,0.0754,0.1006,0.1001,0.0696,0.0658,0.0817,0.1079,0.1051,0.0795,0.1042,0.0704,0.1056,0.0739,0.0999,0.1,0.0663,0.0661,0.0834,0.1115,0.1106,0.0812,0.1075,0.0633,0.1101,0.0961,0.102,0.0998,0.0654,0.0661,0.0827,0.1127,0.115,0.08,0.1046,0.0632,0.1067,0.0775,0.1024,0.1024,0.074,0.0675,0.0812,0.1137,0.1148,0.0791,0.106,0.0673,0.1077,0.0821,0.1027,0.1009,0.0639,0.0642,0.0818,0.1094,0.1073,0.0805,0.1033,0.061,0.106,0.0752,0.1014,0.0985,0.067,0.0689,0.0823,0.107,0.1096,0.0781,0.105,0.0671,0.1049,0.0739,0.0995,0.0998,0.0689
28890,37,0.0739,0.0848,0.1092,0.107,0.0791,0.1043,0.0683,0.1044,0.0764,0.101,0.0998,0.0651,0.0703,0.0836,0.1077,0.1053,0.0793,0.1045,0.062,0.1038,0.076,0.1005,0.1002,0.0732,0.0661,0.0823,0.1081,0.1056,0.0797,0.1042,0.0689,0.1052,0.0739,0.1,0.0997,0.0658,0.0665,0.0829,0.1116,0.1104,0.081,0.1076,0.0647,0.1096,0.0962,0.1018,0.0997,0.0648,0.0679,0.083,0.1125,0.1151,0.0801,0.1051,0.0606,0.1071,0.0778,0.1029,0.1021,0.0664,0.0669,0.0813,0.1133,0.1151,0.0792,0.1065,0.0664,0.1071,0.0822,0.1019,0.1008,0.0663,0.0633,0.0816,0.1095,0.1077,0.081,0.1031,0.0622,0.1068,0.0757,0.1012,0.0985,0.0655,0.0702,0.0823,0.1074,0.1103,0.078,0.105,0.0675,0.105,0.0744,0.1,0.0999,0.0682
28980,37,0.0749,0.0823,0.1091,0.1065,0.0784,0.1042,0.0721,0.1041,0.076,0.1009,0.0998,0.0649,0.0699,0.0824,0.1072,0.1047,0.0788,0.1042,0.0617,0.1034,0.0751,0.1006,0.1001,0.0717,0.066,0.0825,0.1083,0.1054,0.0796,0.1043,0.0722,0.1053,0.0741,0.1,0.0997,0.0655,0.0704,0.0827,0.1113,0.1102,0.0813,0.1076,0.0632,0.11,0.0959,0.1022,0.0999,0.0637,0.0676,0.0826,0.1125,0.1146,0.0793,0.1047,0.0612,0.1074,0.0779,0.1028,0.1023,0.0688,0.0657,0.0811,0.113,0.114,0.0793,0.1066,0.069,0.1077,0.082,0.1023,0.1008,0.0631,0.0647,0.0816,0.1092,0.107,0.0807,0.103,0.0627,0.107,0.076,0.1011,0.0985,0.0655,0.0701,0.0812,0.1076,0.1101,0.0783,0.1048,0.0674,0.1047,0.0744,0.0993,0.0995,0.0668
29070,37,0.0738,0.0826,0.1092,0.1069,0.0789,0.104,0.0693,0.1038,0.0759,0.1006,0.1,0.0646,0.0707,0.0842,0.1076,0.1048,0.0791,0.1043,0.0612,0.1043,0.0758,0.1007,0.1003,0.0688,0.0664,0.0823,0.1078,0.1046,0.0791,0.1038,0.0617,0.1058,0.0741,0.1004,0.1001,0.0701,0.0703,0.0832,0.111,0.1104,0.0809,0.1072,0.0694,0.1102,0.096,0.1024,0.0998,0.0661,0.0692,0.0828,0.1121,0.1142,0.0793,0.1046,0.0617,0.1074,0.0782,0.1028,0.1023,0.0674,0.0682,0.0812,0.113,0.1145,0.0794,0.1058,0.07,0.1075,0.0819,0.1025,0.1007,0.0632,0.0664,0.0819,0.109,0.107,0.0807,0.1032,0.0612,0.1066,0.0756,0.101,0.0982,0.0638,0.0684,0.0818,0.1075,0.1099,0.0783,0.105,0.0662,0.1044,0.0736,0.0993,0.0995,0.0703
29160,37,0.0734,0.0831,0.1092,0.1071,0.0797,0.1045,0.0661,0.1035,0.0757,0.1003,0.0996,0.0646,0.0703,0.0842,0.1075,0.1048,0.0792,0.1045,0.0608,0.1038,0.0753,0.1004,0.1002,0.0705,0.0665,0.0825,0.1079,0.1051,0.0796,0.1039,0.0664,0.1059,0.0743,0.1005,0.1,0.0657,0.066,0.083,0.1114,0.1092,0.0812,0.1073,0.0642,0.1097,0.0957,0.1019,0.0996,0.0675,0.0682,0.0827,0.1124,0.1144,0.0797,0.1047,0.0605,0.107,0.0779,0.1027,0.1021,0.0655,0.0647,0.0812,0.1135,0.1144,0.0794,0.1065,0.0671,0.1073,0.0756,0.102,0.1006,0.0663,0.0631,0.0814,0.1092,0.1076,0.0811,0.1032,0.0625,0.1068,0.076,0.1013,0.0985,0.0662,0.0682,0.0817,0.1077,0.1102,0.0781,0.1049,0.0683,0.1048,0.0745,0.099,0.0994,0.0694
29250,37,0.0755,0.0827,0.1093,0.1071,0.0792,0.1044,0.0712,0.1043,0.0764,0.101,0.0999,0.0639,0.0718,0.0837,0.1095,0.1055,0.0794,0.1046,0.0632,0.1038,0.0754,0.1007,0.1,0.0719,0.067,0.0826,0.1077,0.105,0.0796,0.1041,0.0677,0.106,0.0745,0.1008,0.1,0.0672,0.0684,0.0831,0.1114,0.1103,0.0814,0.1075,0.0685,0.11,0.0958,0.102,0.0997,0.0618,0.0677,0.0824,0.1124,0.1145,0.0797,0.105,0.0626,0.1076,0.0785,0.103,0.1025,0.0678,0.0668,0.0813,0.1133,0.114,0.0796,0.1065,0.0724,0.1079,0.0825,0.1022,0.1007,0.0633,0.0636,0.0815,0.1091,0.1068,0.0809,0.1031,0.0621,0.1067,0.0762,0.1018,0.0987,0.0693,0.069,0.0817,0.1075,0.1098,0.0783,0.1049,0.0724,0.105,0.0747,0.099,0.0994,0.0667
29340,37,0.0732,0.0824,0.1089,0.1067,0.0789,0.104,0.0712,0.1044,0.0765,0.1009,0.1005,0.0628,0.0701,0.0839,0.1072,0.1046,0.0792,0.1044,0.0632,0.104,0.0759,0.1007,0.1001,0.0689,0.065,0.0821,0.1078,0.1051,0.0795,0.104,0.0648,0.1056,0.0744,0.1002,0.1,0.0688,0.0666,0.0834,0.1111,0.1095,0.0812,0.1076,0.07,0.11,0.0962,0.102,0.0997,0.0641,0.0673,0.0828,0.1125,0.1146,0.0798,0.1046,0.0606,0.107,0.078,0.1025,0.1021,0.0726,0.0675,0.0814,0.1138,0.115,0.0791,0.106,0.0714,0.1077,0.0823,0.1026,0.1009,0.0624,0.0644,0.0819,0.1094,0.107,0.0808,0.1033,0.0607,0.1059,0.0758,0.1016,0.0981,0.0694,0.0678,0.0826,0.1077,0.1098,0.0786,0.1049,0.0711,0.1055,0.0743,0.0991,0.1,0.0682
29430,37,0.0753,0.0846,0.1092,0.1071,0.0793,0.1039,0.0702,0.1045,0.0763,0.1006,0.0995,0.064,0.0694,0.0844,0.1088,0.1051,0.0792,0.1048,0.0596,0.1038,0.076,0.1002,0.0999,0.0715,0.0667,0.0825,0.1076,0.1052,0.08,0.104,0.0674,0.1054,0.0742,0.1,0.0996,0.0645,0.0682,0.0834,0.1111,0.1099,0.0815,0.1072,0.0647,0.1094,0.0954,0.1016,0.0997,0.0637,0.0693,0.083,0.1125,0.115,0.0802,0.105,0.0604,0.1074,0.0783,0.103,0.1022,0.0663,0.0675,0.0816,0.1134,0.1148,0.0795,0.1063,0.0695,0.1077,0.0823,0.102,0.1006,0.0637,0.0644,0.0818,0.1093,0.1074,0.0813,0.103,0.0618,0.1066,0.0758,0.1018,0.0985,0.0685,0.0699,0.0818,0.1077,0.1099,0.0783,0.1049,0.07,0.105,0.0749,0.0996,0.0996,0.0678
29520,37,0.0742,0.0826,0.1089,0.107,0.0792,0.104,0.0691,0.1041,0.0762,0.1008,0.1,0.0639,0.0673,0.0839,0.1074,0.1048,0.0794,0.1043,0.0608,0.1038,0.0755,0.1004,0.1002,0.069,0.0661,0.0826,0.1075,0.1048,0.0796,0.1038,0.0634,0.1059,0.0746,0.1005,0.1,0.0685,0.0688,0.0833,0.1111,0.1102,0.0815,0.1075,0.0716,0.1098,0.0956,0.1019,0.0998,0.0632,0.0673,0.083,0.1126,0.1146,0.0798,0.1043,0.0623,0.1078,0.0782,0.1027,0.1023,0.0696,0.0644,0.0815,0.1137,0.1141,0.0799,0.1064,0.0735,0.1079,0.0826,0.1023,0.101,0.0631,0.0662,0.0819,0.1089,0.1069,0.0808,0.1027,0.061,0.1061,0.0761,0.102,0.0988,0.0702,0.0705,0.082,0.1075,0.1099,0.0785,0.1049,0.0724,0.1052,0.0751,0.0989,0.1005,0.0664
29610,37,0.0716,0.0823,0.1089,0.1069,0.079,0.1034,0.0675,0.1047,0.0763,0.1011,0.1006,0.0673,0.069,0.0841,0.107,0.1042,0.0793,0.1043,0.0608,0.104,0.076,0.1005,0.1,0.0686,0.0652,0.0823,0.1077,0.1048,0.0798,0.104,0.0661,0.1054,0.0743,0.1,0.0997,0.0678,0.0666,0.0836,0.1113,0.1098,0.082,0.1072,0.0685,0.1098,0.0964,0.102,0.0997,0.0617,0.067,0.0832,0.1125,0.1146,0.08,0.1043,0.0611,0.1071,0.0779,0.1025,0.102,0.0717,0.0655,0.0819,0.1136,0.1144,0.0797,0.1062,0.0688,0.1071,0.0823,0.1028,0.1009,0.0642,0.0658,0.0822,0.1092,0.1071,0.0812,0.1028,0.0601,0.1057,0.0758,0.1014,0.0979,0.0666,0.072,0.083,0.1072,0.1096,0.0789,0.1052,0.0701,0.105,0.0743,0.0993,0.0994,0.0686
29700,37,0.0728,0.0828,0.1092,0.107,0.0795,0.1038,0.0689,0.1042,0.0763,0.1006,0.0996,0.0638,0.0715,0.0842,0.1073,0.105,0.0794,0.1044,0.0628,0.1037,0.0754,0.1004,0.0998,0.0724,0.0659,0.0825,0.1079,0.105,0.0798,0.104,0.0698,0.1052,0.0744,0.0999,0.0993,0.064,0.0705,0.0833,0.1111,0.1101,0.0815,0.1074,0.0643,0.1094,0.0962,0.1015,0.0994,0.0633,0.0667,0.0834,0.113,0.1151,0.0804,0.1046,0.0607,0.1071,0.0779,0.1024,0.102,0.0694,0.0661,0.0813,0.1138,0.1146,0.0799,0.1053,0.0696,0.1074,0.075,0.1024,0.1006,0.0604,0.0631,0.0822,0.1093,0.1071,0.0813,0.1029,0.0621,0.1063,0.0758,0.1016,0.0982,0.0683,0.0702,0.0822,0.1073,0.1096,0.0782,0.1045,0.0712,0.1048,0.0746,0.099,0.0995,0.0671
29790,37,0.0739,0.0838,0.1097,0.1073,0.0794,0.1046,0.0712,0.1053,0.077,0.1016,0.1005,0.0634,0.0695,0.0848,0.1076,0.1055,0.0799,0.105,0.0614,0.1044,0.0764,0.1008,0.1005,0.0704,0.0655,0.0835,0.1084,0.1054,0.0803,0.1046,0.0688,0.1064,0.075,0.1012,0.1007,0.0704,0.07,0.0838,0.1119,0.1104,0.0818,0.1078,0.0735,0.111,0.0958,0.103,0.1004,0.0626,0.0658,0.0836,0.1128,0.1154,0.0803,0.1052,0.0623,0.1082,0.0787,0.1036,0.1029,0.072,0.0645,0.0821,0.1135,0.1142,0.0806,0.1071,0.0731,0.1089,0.0757,0.1041,0.1019,0.0646,0.0642,0.0823,0.1091,0.107,0.0813,0.1032,0.061,0.107,0.0766,0.1026,0.0988,0.068,0.0707,0.0825,0.1074,0.1098,0.0793,0.1052,0.0681,0.1056,0.0743,0.0998,0.1001,0.0676
29880,37,0.0745,0.0836,0.1088,0.1067,0.0792,0.1035,0.0665,0.104,0.076,0.1002,0.0994,0.0645,0.07,0.0846,0.107,0.105,0.0792,0.1039,0.0656,0.1034,0.0755,0.1003,0.1,0.0673,0.0665,0.0829,0.1074,0.1043,0.0796,0.1031,0.0628,0.1052,0.0743,0.1001,0.0998,0.0744,0.0706,0.0841,0.1108,0.1101,0.0812,0.1072,0.0676,0.1102,0.0962,0.1017,0.0996,0.0664,0.0714,0.0833,0.1122,0.114,0.08,0.1047,0.0619,0.1073,0.0782,0.1023,0.1014,0.067,0.0651,0.0818,0.1134,0.1136,0.0797,0.106,0.0685,0.1073,0.0821,0.1025,0.1005,0.0651,0.0643,0.0823,0.1091,0.1067,0.0808,0.1028,0.0624,0.106,0.0759,0.1007,0.0979,0.0646,0.0706,0.0825,0.1076,0.1094,0.0784,0.1049,0.0658,0.1044,0.0743,0.0988,0.0991,0.0696
29970,37,0.0735,0.0835,0.1092,0.107,0.0795,0.1043,0.07,0.1035,0.0761,0.1006,0.0994,0.0643,0.0718,0.0845,0.1069,0.1046,0.0797,0.1041,0.0617,0.1035,0.0756,0.1005,0.0997,0.0714,0.0665,0.0831,0.1076,0.1046,0.0797,0.1036,0.0648,0.1051,0.0744,0.1001,0.0996,0.0686,0.0685,0.0837,0.1109,0.1092,0.0815,0.1066,0.0648,0.1095,0.0956,0.1016,0.0992,0.0635,0.0676,0.0834,0.1124,0.1144,0.0799,0.1046,0.0621,0.1073,0.0782,0.1025,0.1019,0.0674,0.0678,0.0816,0.1134,0.1149,0.08,0.1065,0.069,0.1071,0.0818,0.1019,0.1002,0.0632,0.0628,0.0823,0.1091,0.1067,0.0811,0.1028,0.0623,0.1063,0.076,0.1014,0.0981,0.067,0.0711,0.0825,0.1079,0.11,0.0789,0.1051,0.0703,0.1049,0.0751,0.099,0.0992,0.068
30060,37,0.074,0.0835,0.1091,0.1067,0.0792,0.104,0.0716,0.104,0.0762,0.1006,0.0997,0.0641,0.0705,0.0846,0.1069,0.1044,0.0794,0.1045,0.0608,0.1036,0.0762,0.1003,0.0998,0.0684,0.0656,0.0828,0.1076,0.1046,0.0796,0.1037,0.066,0.1052,0.0744,0.1001,0.0998,0.0715,0.0698,0.084,0.1106,0.1099,0.0815,0.1072,0.071,0.1101,0.0964,0.1021,0.0993,0.0636,0.0679,0.0832,0.1122,0.114,0.0798,0.1046,0.0631,0.1077,0.0786,0.1027,0.1019,0.0698,0.067,0.082,0.113,0.1136,0.08,0.1065,0.0722,0.1076,0.0819,0.1017,0.1005,0.0646,0.0629,0.0824,0.1085,0.1063,0.081,0.1028,0.062,0.106,0.0759,0.1012,0.098,0.0673,0.07,0.0823,0.1073,0.1095,0.0786,0.1048,0.0705,0.1047,0.0748,0.0993,0.0992,0.0679
30150,37,0.0728,0.0833,0.1085,0.1062,0.0793,0.1033,0.067,0.1037,0.0761,0.1002,0.0996,0.0662,0.0689,0.0849,0.107,0.104,0.0795,0.1041,0.061,0.1036,0.0765,0.1002,0.0993,0.069,0.0672,0.0834,0.1071,0.1045,0.0798,0.1034,0.062,0.1051,0.0744,0.0999,0.0998,0.0732,0.0698,0.0842,0.1107,0.1097,0.0811,0.1067,0.0684,0.1101,0.0965,0.1018,0.0992,0.0652,0.0698,0.0837,0.112,0.1136,0.0799,0.1043,0.0615,0.1069,0.0784,0.1023,0.1013,0.0666,0.0683,0.082,0.1131,0.1147,0.0799,0.1059,0.0684,0.107,0.0821,0.102,0.1001,0.0645,0.0632,0.0825,0.109,0.1072,0.0817,0.1032,0.0617,0.106,0.0757,0.1007,0.0981,0.0636,0.0676,0.0826,0.1076,0.11,0.0786,0.105,0.0665,0.1044,0.0744,0.0988,0.099,0.07
30240,37,0.075,0.0839,0.1091,0.1069,0.0797,0.1042,0.0646,0.1031,0.076,0.1004,0.0995,0.0641,0.0706,0.085,0.1069,0.104,0.0799,0.1041,0.0609,0.1035,0.0757,0.1007,0.0996,0.0669,0.0682,0.0831,0.107,0.1039,0.0795,0.1038,0.0623,0.1052,0.0753,0.1006,0.0997,0.0681,0.0674,0.0839,0.1105,0.1093,0.0821,0.1071,0.0685,0.1096,0.096,0.1017,0.0987,0.064,0.0643,0.0829,0.1125,0.1149,0.0802,0.1054,0.0672,0.1074,0.0788,0.1025,0.1008,0.0645,0.0693,0.0808,0.1133,0.1154,0.0805,0.1065,0.0621,0.1066,0.0816,0.1014,0.0999,0.0654,0.0634,0.0825,0.1095,0.1079,0.0824,0.1036,0.0676,0.1064,0.0755,0.1003,0.0977,0.0626,0.0686,0.0819,0.1079,0.1107,0.0785,0.1044,0.0651,0.1046,0.0745,0.0987,0.0992,0.0687
30330,37,0.0728,0.0849,0.1092,0.1068,0.0795,0.1042,0.0655,0.1046,0.0771,0.1021,0.1014,0.0681,0.0735,0.0854,0.1072,0.1048,0.0804,0.1039,0.0737,0.1047,0.0773,0.1015,0.1002,0.0661,0.0643,0.0828,0.1074,0.104,0.0795,0.1049,0.0659,0.1067,0.0762,0.1016,0.1002,0.067,0.07,0.084,0.1109,0.1094,0.0821,0.1081,0.0686,0.1108,0.0967,0.1029,0.0992,0.067,0.0653,0.0829,0.1125,0.1157,0.0808,0.106,0.0681,0.1082,0.0789,0.103,0.1017,0.063,0.0652,0.0816,0.1137,0.1156,0.0813,0.1071,0.0643,0.1082,0.0764,0.1032,0.1014,0.0676,0.0641,0.083,0.1098,0.1083,0.0827,0.1041,0.0683,0.1066,0.0756,0.1019,0.0984,0.0687,0.069,0.0828,0.1078,0.1105,0.0794,0.1049,0.0662,0.1056,0.0746,0.0996,0.0997,0.0686
30420,37,0.0752,0.0838,0.108,0.1058,0.0793,0.1032,0.0642,0.1038,0.0768,0.1006,0.1004,0.0698,0.0733,0.0852,0.1064,0.1041,0.0796,0.1038,0.0742,0.104,0.0771,0.1009,0.0998,0.0653,0.0679,0.0824,0.1066,0.1033,0.0793,0.1039,0.0642,0.1054,0.0756,0.1006,0.0995,0.0646,0.069,0.0836,0.1109,0.109,0.0814,0.1073,0.0668,0.1099,0.0963,0.1016,0.0987,0.0663,0.0674,0.0827,0.1122,0.1144,0.0806,0.1054,0.0688,0.1065,0.0783,0.1018,0.1006,0.0625,0.0684,0.0818,0.1136,0.1154,0.0802,0.1059,0.0604,0.1067,0.0752,0.1021,0.1001,0.0686,0.0667,0.0827,0.1095,0.1079,0.0831,0.1037,0.0706,0.1056,0.075,0.0996,0.0971,0.0646,0.0694,0.083,0.1082,0.1107,0.0791,0.1048,0.064,0.1049,0.0741,0.0988,0.0992,0.0707
30510,37,0.0785,0.0843,0.1084,0.1066,0.0798,0.1034,0.0636,0.1038,0.0765,0.1006,0.0999,0.0651,0.0722,0.0851,0.1064,0.1037,0.0798,0.1036,0.0712,0.1037,0.0768,0.1008,0.0997,0.0651,0.067,0.0829,0.1066,0.1036,0.0794,0.104,0.0655,0.1056,0.0758,0.1007,0.0993,0.0662,0.0672,0.0838,0.1107,0.1095,0.0818,0.107,0.0667,0.1098,0.0963,0.1018,0.0986,0.0656,0.0657,0.0829,0.1125,0.1147,0.0808,0.1053,0.0686,0.1072,0.0791,0.1021,0.1003,0.0638,0.0673,0.0812,0.1136,0.1148,0.0803,0.1062,0.0622,0.107,0.0821,0.1017,0.1001,0.0674,0.0637,0.0823,0.1092,0.1079,0.0827,0.1036,0.068,0.1063,0.0755,0.1004,0.098,0.0631,0.0703,0.0821,0.1079,0.1106,0.0786,0.1046,0.0656,0.1045,0.0747,0.0988,0.0991,0.0696
30600,37,0.0746,0.084,0.1086,0.1062,0.0793,0.1032,0.0621,0.1039,0.0761,0.1006,0.1,0.0668,0.0704,0.085,0.1065,0.1035,0.0799,0.1037,0.074,0.104,0.0765,0.1007,0.1,0.0662,0.0665,0.0829,0.1068,0.1034,0.0793,0.1038,0.0648,0.1058,0.0759,0.1009,0.0998,0.0685,0.0714,0.0842,0.1102,0.1093,0.0814,0.1075,0.0719,0.1098,0.0962,0.102,0.0988,0.0622,0.0672,0.083,0.112,0.114,0.0799,0.1047,0.0642,0.1076,0.0789,0.1024,0.1011,0.0641,0.0659,0.0822,0.113,0.1148,0.0807,0.1064,0.0699,0.1075,0.0823,0.1016,0.0999,0.0635,0.0624,0.0822,0.1088,0.1073,0.0821,0.1031,0.065,0.1062,0.0757,0.1002,0.0974,0.0626,0.07,0.0825,0.1077,0.1103,0.079,0.1049,0.0663,0.1044,0.0742,0.0994,0.0991,0.0703
30690,37,0.0756,0.0842,0.1086,0.1065,0.0798,0.1036,0.0619,0.1037,0.0763,0.1004,0.1,0.0674,0.07,0.0853,0.1065,0.1034,0.0798,0.1035,0.0685,0.1034,0.0763,0.1006,0.0997,0.0678,0.0685,0.0832,0.1066,0.1036,0.0795,0.103,0.0633,0.1055,0.0752,0.1005,0.0997,0.0707,0.0702,0.0844,0.1102,0.1091,0.0816,0.1068,0.0743,0.1103,0.0962,0.1016,0.0992,0.0649,0.0671,0.0835,0.112,0.1143,0.0804,0.1048,0.0642,0.1073,0.0787,0.1022,0.1006,0.0621,0.0644,0.0819,0.1133,0.1144,0.0805,0.1061,0.0659,0.107,0.082,0.1018,0.1,0.0672,0.0655,0.0826,0.1093,0.1078,0.0827,0.1033,0.0676,0.106,0.0754,0.1001,0.097,0.0623,0.0701,0.0827,0.108,0.1106,0.079,0.1048,0.0638,0.1043,0.0743,0.099,0.0996,0.0706
30780,37,0.0767,0.0844,0.1089,0.1067,0.08,0.1037,0.0624,0.1038,0.076,0.1004,0.0997,0.0641,0.0711,0.0868,0.1066,0.1036,0.0798,0.1035,0.0647,0.1035,0.0761,0.1006,0.0995,0.0682,0.0683,0.0834,0.1069,0.1038,0.0798,0.1034,0.0622,0.106,0.076,0.1008,0.0996,0.0674,0.0686,0.0844,0.1103,0.1094,0.0821,0.1069,0.0702,0.1098,0.0962,0.1012,0.0988,0.065,0.065,0.0833,0.1128,0.1148,0.081,0.1051,0.0681,0.1071,0.0787,0.102,0.1008,0.0633,0.0672,0.0818,0.1135,0.1147,0.0809,0.1065,0.0664,0.107,0.0822,0.1018,0.1004,0.0657,0.0639,0.0825,0.1091,0.1076,0.0823,0.103,0.066,0.1062,0.0756,0.1004,0.0975,0.0639,0.0707,0.0821,0.1081,0.1104,0.0789,0.1046,0.0673,0.1046,0.0744,0.0991,0.1004,0.0686
30870,37,0.0756,0.0856,0.1092,0.107,0.0799,0.1037,0.0643,0.1048,0.0769,0.1013,0.1011,0.0693,0.0722,0.0857,0.1067,0.104,0.0801,0.1042,0.075,0.1046,0.0771,0.1011,0.1006,0.0641,0.0637,0.0836,0.1074,0.1039,0.0799,0.1045,0.0643,0.1066,0.0763,0.1014,0.1001,0.0681,0.071,0.0847,0.1105,0.1096,0.0819,0.1076,0.0722,0.1109,0.096,0.103,0.0997,0.064,0.0644,0.0834,0.1131,0.1158,0.0814,0.1058,0.0676,0.1079,0.0786,0.1026,0.1016,0.0649,0.0662,0.0827,0.1137,0.1158,0.0812,0.1072,0.0631,0.1081,0.082,0.1042,0.1016,0.0675,0.065,0.0833,0.1098,0.1078,0.083,0.1039,0.0687,0.1063,0.0757,0.1019,0.0976,0.0656,0.0676,0.0836,0.108,0.1103,0.0798,0.105,0.0628,0.1053,0.0748,0.1001,0.0999,0.0686
30960,37,0.0733,0.0852,0.1087,0.1062,0.0798,0.1035,0.0639,0.1048,0.0774,0.1012,0.1005,0.0685,0.0744,0.0863,0.1063,0.1035,0.08,0.104,0.0749,0.1044,0.0772,0.1009,0.1002,0.0665,0.0681,0.0833,0.1073,0.1039,0.0803,0.1047,0.0669,0.1061,0.0763,0.1009,0.0991,0.0624,0.0699,0.0844,0.111,0.1101,0.0822,0.1082,0.0642,0.1108,0.0958,0.1024,0.0995,0.0673,0.0669,0.0845,0.1135,0.1163,0.0819,0.1057,0.0735,0.1068,0.0778,0.1021,0.101,0.0648,0.065,0.0829,0.1141,0.1161,0.0807,0.1069,0.0633,0.1076,0.0822,0.1048,0.1024,0.0658,0.0649,0.0838,0.1103,0.1081,0.0832,0.1037,0.0686,0.1062,0.0753,0.1017,0.0978,0.0681,0.0676,0.0841,0.1074,0.1102,0.0793,0.1048,0.0628,0.1054,0.0752,0.1002,0.1001,0.0688
31050,37,0.0726,0.0844,0.1083,0.1058,0.0793,0.103,0.0664,0.1043,0.0769,0.1008,0.0994,0.0643,0.0734,0.0856,0.1062,0.1037,0.0799,0.1041,0.0683,0.1035,0.0765,0.1004,0.0993,0.0664,0.064,0.0832,0.1072,0.1038,0.0802,0.1045,0.0749,0.1054,0.0758,0.1001,0.0983,0.0639,0.0689,0.084,0.1105,0.1094,0.0818,0.1081,0.0626,0.1096,0.0959,0.1009,0.0985,0.0667,0.0657,0.0837,0.1132,0.1152,0.0825,0.105,0.0715,0.1067,0.078,0.1013,0.1008,0.0672,0.0649,0.0819,0.1139,0.1151,0.0805,0.1058,0.061,0.1064,0.0754,0.1024,0.1,0.0651,0.064,0.0833,0.1093,0.1072,0.0825,0.1029,0.0694,0.1055,0.075,0.1004,0.0977,0.0707,0.0712,0.083,0.1075,0.1098,0.079,0.1045,0.0625,0.1043,0.0749,0.0991,0.0994,0.0682
31140,37,0.0717,0.0853,0.1083,0.1055,0.0792,0.1035,0.0655,0.105,0.0775,0.1013,0.1005,0.066,0.0741,0.0862,0.1063,0.1035,0.0802,0.1044,0.0743,0.1043,0.0772,0.1011,0.1002,0.0649,0.0643,0.0832,0.1074,0.1038,0.0804,0.1052,0.0704,0.1063,0.0763,0.101,0.099,0.0631,0.0704,0.0849,0.1106,0.1099,0.0825,0.1084,0.066,0.1109,0.0964,0.1026,0.099,0.0666,0.0648,0.0838,0.113,0.116,0.0819,0.1057,0.0696,0.1075,0.0783,0.1021,0.1011,0.0652,0.0669,0.0826,0.1139,0.116,0.081,0.1068,0.0629,0.1076,0.0756,0.1046,0.1013,0.0655,0.0648,0.084,0.11,0.1078,0.0831,0.1037,0.0681,0.1061,0.0756,0.1015,0.0975,0.0661,0.0685,0.084,0.1075,0.11,0.0796,0.1048,0.0617,0.1051,0.0746,0.1,0.0997,0.0691
31230,37,0.0762,0.085,0.1081,0.1054,0.0797,0.1031,0.0639,0.1035,0.0767,0.1001,0.0997,0.0684,0.074,0.0858,0.1059,0.1033,0.0797,0.1032,0.0656,0.1034,0.0762,0.1003,0.0994,0.0686,0.064,0.0831,0.1068,0.1031,0.0797,0.1041,0.0666,0.1052,0.0755,0.1,0.0981,0.0637,0.0689,0.0845,0.1102,0.1093,0.0816,0.107,0.0621,0.11,0.0961,0.1012,0.0982,0.0671,0.0663,0.0838,0.1125,0.1147,0.0814,0.1053,0.0694,0.1061,0.0779,0.1014,0.1,0.0635,0.0657,0.0825,0.1138,0.1147,0.0803,0.1059,0.0603,0.1063,0.0818,0.1017,0.0997,0.0684,0.0638,0.0834,0.1091,0.1076,0.083,0.1035,0.0691,0.1053,0.0748,0.0993,0.0967,0.0632,0.0691,0.0836,0.1079,0.1104,0.079,0.1046,0.0603,0.1039,0.0745,0.099,0.0988,0.069
31320,37,0.072,0.0858,0.1104,0.1063,0.0803,0.1044,0.0655,0.1044,0.0771,0.101,0.0999,0.065,0.0725,0.0863,0.1067,0.1035,0.0805,0.1041,0.0716,0.1041,0.0773,0.1008,0.1,0.0643,0.0658,0.084,0.1076,0.1039,0.0803,0.1047,0.0685,0.106,0.0762,0.101,0.0991,0.0658,0.0706,0.0846,0.111,0.1098,0.0825,0.1082,0.0642,0.1105,0.0962,0.1022,0.099,0.0668,0.0649,0.084,0.1133,0.1163,0.0819,0.1061,0.0703,0.1078,0.0787,0.1027,0.1014,0.0622,0.068,0.0822,0.1139,0.1169,0.0816,0.1071,0.0605,0.1078,0.0827,0.1033,0.1011,0.0681,0.0639,0.0838,0.1097,0.1081,0.0834,0.1038,0.0688,0.1064,0.0755,0.101,0.0977,0.0658,0.068,0.084,0.1078,0.1107,0.0798,0.1052,0.0644,0.1054,0.0754,0.0996,0.0995,0.0682
31410,37,0.0734,0.085,0.1097,0.1057,0.0792,0.1029,0.0638,0.1039,0.0765,0.1007,0.1001,0.0695,0.0741,0.0856,0.1059,0.103,0.0801,0.1032,0.0722,0.1035,0.0764,0.1009,0.099,0.0661,0.0632,0.083,0.1066,0.1025,0.0795,0.1038,0.0655,0.105,0.0758,0.1001,0.099,0.0665,0.0709,0.0846,0.1096,0.1088,0.0821,0.1076,0.0685,0.11,0.0964,0.1014,0.0984,0.0626,0.0648,0.0837,0.1127,0.1147,0.0811,0.1049,0.0686,0.1064,0.0782,0.1012,0.1006,0.0644,0.0666,0.0823,0.1138,0.1146,0.0807,0.106,0.06,0.1067,0.0827,0.1021,0.0996,0.0666,0.0641,0.0839,0.1092,0.1066,0.0825,0.1031,0.0666,0.1051,0.0752,0.1002,0.0969,0.068,0.067,0.0838,0.107,0.1096,0.0791,0.1047,0.0625,0.1041,0.0748,0.0989,0.0986,0.0685
31500,37,0.0751,0.0851,0.1082,0.1055,0.0801,0.1038,0.0639,0.1043,0.0774,0.101,0.1003,0.0685,0.0746,0.0865,0.1066,0.1032,0.0801,0.1039,0.0723,0.1042,0.0773,0.101,0.0998,0.0672,0.0647,0.0839,0.107,0.1035,0.0805,0.105,0.0709,0.1056,0.0762,0.1004,0.0986,0.0641,0.0716,0.085,0.1108,0.1103,0.0824,0.1082,0.0612,0.1104,0.0955,0.1024,0.0987,0.0694,0.0666,0.0851,0.1137,0.1162,0.0823,0.1058,0.071,0.1071,0.078,0.1022,0.101,0.0665,0.065,0.0831,0.1142,0.1162,0.081,0.1066,0.0601,0.1073,0.0825,0.1044,0.1011,0.066,0.065,0.0842,0.11,0.1078,0.0832,0.1038,0.0696,0.106,0.0754,0.1015,0.0977,0.0665,0.0666,0.0845,0.1076,0.1101,0.0792,0.105,0.0627,0.1053,0.0753,0.0996,0.0991,0.0702
31590,37,0.0723,0.0856,0.1085,0.1058,0.0804,0.1043,0.067,0.1048,0.0777,0.1012,0.0995,0.0643,0.0729,0.0864,0.1063,0.1028,0.0806,0.1042,0.068,0.1038,0.0775,0.1006,0.0991,0.0667,0.0652,0.0843,0.1072,0.1038,0.0807,0.105,0.0741,0.1058,0.0763,0.1005,0.0986,0.0645,0.0682,0.0846,0.1107,0.1095,0.0827,0.1082,0.0611,0.1104,0.0959,0.1022,0.0988,0.0691,0.0655,0.0849,0.1134,0.1161,0.0822,0.1057,0.0745,0.107,0.0785,0.1022,0.1012,0.0648,0.0658,0.083,0.114,0.116,0.0817,0.1072,0.0629,0.1077,0.0759,0.1041,0.101,0.0638,0.0645,0.0842,0.1096,0.1073,0.083,0.1039,0.0694,0.1063,0.0757,0.1019,0.0978,0.0672,0.0695,0.0839,0.1077,0.1102,0.08,0.1051,0.0676,0.1053,0.0756,0.0996,0.0993,0.0689
31680,37,0.0754,0.0846,0.1077,0.1052,0.0797,0.103,0.0653,0.1044,0.0774,0.1007,0.1002,0.0674,0.0733,0.0855,0.1052,0.1028,0.0798,0.1036,0.0736,0.1032,0.0772,0.1005,0.099,0.065,0.0642,0.0834,0.1064,0.1028,0.0801,0.1043,0.0685,0.1049,0.0758,0.0998,0.0988,0.0655,0.07,0.0848,0.1099,0.1088,0.0822,0.1076,0.0664,0.1098,0.0964,0.1015,0.0983,0.0656,0.0659,0.0838,0.1125,0.1145,0.0813,0.105,0.0697,0.1061,0.0784,0.1012,0.1005,0.0644,0.0682,0.0826,0.1133,0.1147,0.081,0.1058,0.0622,0.1068,0.0753,0.1023,0.0997,0.0669,0.0637,0.0835,0.109,0.1066,0.0828,0.1033,0.07,0.1052,0.0752,0.0999,0.0969,0.0665,0.0702,0.0842,0.1073,0.1101,0.0794,0.1047,0.0612,0.1043,0.0748,0.099,0.0986,0.0684
31770,37,0.0774,0.0852,0.1079,0.1055,0.0802,0.1032,0.0639,0.1038,0.0765,0.1001,0.0994,0.068,0.0704,0.086,0.106,0.1021,0.0801,0.1032,0.071,0.1033,0.0768,0.1001,0.0994,0.0671,0.0674,0.0836,0.1061,0.1025,0.08,0.1035,0.0642,0.1052,0.0761,0.1001,0.0985,0.0651,0.0712,0.085,0.1097,0.1089,0.0818,0.1073,0.0662,0.1097,0.0966,0.1012,0.0982,0.0664,0.0657,0.084,0.1128,0.1148,0.0817,0.1051,0.0731,0.1057,0.0783,0.1011,0.0999,0.0631,0.0653,0.0827,0.1136,0.1147,0.0808,0.106,0.0585,0.1063,0.0826,0.102,0.0997,0.0672,0.0642,0.0837,0.1093,0.1077,0.0834,0.1034,0.0704,0.1055,0.0753,0.0997,0.0966,0.064,0.0704,0.0838,0.1077,0.1104,0.0795,0.1048,0.0611,0.104,0.0749,0.0989,0.0988,0.0678
31860,37,0.074,0.0852,0.1081,0.1055,0.0799,0.1032,0.064,0.1038,0.0771,0.1004,0.0997,0.067,0.0707,0.089,0.1059,0.1028,0.0801,0.1034,0.0734,0.1029,0.0772,0.1001,0.0991,0.0651,0.0654,0.0838,0.1063,0.1028,0.0801,0.104,0.0704,0.105,0.0762,0.0999,0.0982,0.0654,0.0669,0.0848,0.1102,0.109,0.0816,0.1077,0.0661,0.1096,0.0963,0.1012,0.0981,0.0655,0.0656,0.0843,0.1133,0.115,0.0829,0.105,0.072,0.1065,0.0784,0.1011,0.1004,0.0638,0.0654,0.0825,0.1137,0.1146,0.0811,0.1062,0.0658,0.1067,0.0752,0.1021,0.0995,0.0657,0.0651,0.0839,0.1092,0.107,0.0828,0.103,0.07,0.1055,0.0758,0.1008,0.097,0.0692,0.0695,0.0839,0.1075,0.1103,0.0794,0.1049,0.0642,0.1041,0.0753,0.0988,0.0985,0.0676
31950,37,0.0724,0.0855,0.1095,0.1056,0.0799,0.1034,0.0651,0.1052,0.0781,0.1012,0.1009,0.0697,0.0731,0.0864,0.106,0.1031,0.0805,0.1037,0.075,0.1039,0.0777,0.1008,0.1,0.0637,0.0645,0.0838,0.107,0.1032,0.0806,0.1046,0.0705,0.1058,0.0763,0.1003,0.099,0.0647,0.0695,0.0854,0.1106,0.1096,0.0828,0.1081,0.0678,0.1102,0.0959,0.1022,0.0991,0.066,0.0657,0.0848,0.113,0.1157,0.0823,0.1054,0.0699,0.1074,0.0787,0.102,0.1012,0.0663,0.0667,0.0836,0.114,0.1155,0.0817,0.1065,0.0643,0.1078,0.0823,0.1048,0.1012,0.0657,0.0648,0.0846,0.1099,0.1074,0.0833,0.1037,0.0667,0.1057,0.076,0.102,0.0973,0.0692,0.0676,0.0844,0.1073,0.1098,0.0799,0.1048,0.0641,0.1049,0.0755,0.0996,0.0991,0.0689
32040,37,0.079,0.0849,0.1095,0.1051,0.0798,0.1027,0.0643,0.1042,0.0771,0.0996,0.0986,0.0654,0.0729,0.086,0.1053,0.102,0.08,0.1028,0.071,0.1027,0.0768,0.0997,0.0991,0.0657,0.0647,0.0837,0.1063,0.1029,0.0802,0.104,0.07,0.1047,0.0755,0.0992,0.0978,0.063,0.066,0.0851,0.1101,0.1086,0.0826,0.1072,0.0608,0.1092,0.0963,0.1004,0.0983,0.0654,0.0663,0.0848,0.1131,0.1151,0.0821,0.1046,0.0727,0.106,0.0781,0.1008,0.1,0.0643,0.0676,0.0829,0.114,0.115,0.0808,0.1061,0.0614,0.1063,0.0819,0.1025,0.1,0.0637,0.0659,0.0844,0.1095,0.1072,0.0831,0.1029,0.0668,0.1051,0.0755,0.1008,0.0967,0.07,0.0677,0.084,0.1069,0.1095,0.0793,0.1045,0.0617,0.1034,0.0749,0.0987,0.0983,0.0671
32130,37,0.0723,0.0855,0.1081,0.1053,0.0799,0.1032,0.0683,0.1045,0.0776,0.1005,0.0993,0.0646,0.0722,0.0858,0.1054,0.1034,0.08,0.1036,0.0711,0.103,0.0768,0.1001,0.0988,0.0627,0.0647,0.0838,0.1068,0.103,0.0805,0.1039,0.0726,0.1048,0.0756,0.0993,0.0981,0.0628,0.0715,0.0844,0.1102,0.1087,0.0822,0.107,0.0616,0.109,0.0965,0.1008,0.0983,0.0641,0.0655,0.0852,0.113,0.1148,0.0818,0.1047,0.071,0.1062,0.0782,0.1009,0.1007,0.0722,0.0675,0.0832,0.1138,0.1145,0.0808,0.106,0.068,0.1067,0.0755,0.1028,0.0996,0.0625,0.0671,0.0842,0.1088,0.1061,0.0824,0.1026,0.0625,0.1047,0.0754,0.1011,0.0971,0.0694,0.0676,0.0842,0.1065,0.109,0.0795,0.1045,0.068,0.1042,0.0754,0.0988,0.0983,0.0656
32220,37,0.072,0.085,0.1079,0.1052,0.0799,0.1031,0.0672,0.1044,0.0771,0.1002,0.0992,0.0662,0.0694,0.0858,0.1052,0.103,0.08,0.1036,0.0687,0.1029,0.077,0.0995,0.0986,0.0646,0.0643,0.0844,0.1064,0.1031,0.0806,0.1036,0.0717,0.1045,0.075,0.0988,0.0982,0.0684,0.0676,0.0854,0.11,0.1087,0.0822,0.1064,0.0667,0.1091,0.097,0.101,0.0985,0.0649,0.0676,0.0854,0.1124,0.1137,0.0812,0.1038,0.061,0.106,0.0781,0.1011,0.1003,0.0742,0.0665,0.0838,0.1135,0.1142,0.0807,0.1052,0.067,0.1066,0.075,0.1027,0.0997,0.0646,0.0649,0.0849,0.109,0.1061,0.0825,0.1026,0.0636,0.1046,0.0755,0.1008,0.0965,0.0706,0.0664,0.0852,0.1067,0.1093,0.0798,0.1048,0.0639,0.1042,0.0751,0.0988,0.0983,0.0678
32310,37,0.0731,0.085,0.1074,0.105,0.0801,0.1031,0.0664,0.1043,0.0772,0.0997,0.0986,0.0631,0.0692,0.0858,0.1055,0.1028,0.0801,0.1034,0.0607,0.1024,0.0764,0.0995,0.0985,0.066,0.066,0.0846,0.1068,0.1036,0.0811,0.1041,0.0768,0.1047,0.0754,0.0989,0.0978,0.0633,0.0704,0.0853,0.1106,0.1094,0.0824,0.1065,0.0618,0.109,0.0967,0.1007,0.0982,0.0671,0.0661,0.0854,0.1131,0.1146,0.082,0.1045,0.0691,0.1057,0.0779,0.1008,0.1001,0.0672,0.0677,0.0833,0.1138,0.1151,0.0809,0.1058,0.0625,0.1061,0.0826,0.1025,0.0995,0.0643,0.0643,0.0847,0.1093,0.1066,0.0829,0.1031,0.0697,0.1048,0.0751,0.1002,0.0967,0.0648,0.0707,0.0849,0.1075,0.1099,0.0797,0.1049,0.0618,0.1038,0.0751,0.0988,0.0984,0.0678
32400,37,0.0721,0.0853,0.1084,0.1051,0.0796,0.103,0.0663,0.1042,0.0772,0.1002,0.0993,0.0665,0.0734,0.086,0.1052,0.1025,0.0802,0.1033,0.0691,0.103,0.0772,0.1001,0.0982,0.0671,0.0638,0.0841,0.1065,0.1026,0.0802,0.1042,0.0713,0.1048,0.0764,0.0998,0.0979,0.065,0.0674,0.0853,0.1093,0.1083,0.0824,0.1071,0.0639,0.109,0.0965,0.101,0.0979,0.0636,0.0655,0.0846,0.1128,0.1144,0.0819,0.1046,0.0701,0.1059,0.0782,0.1013,0.1012,0.0741,0.068,0.0834,0.1136,0.1152,0.0812,0.1059,0.0628,0.1067,0.0822,0.1026,0.099,0.0662,0.0644,0.0848,0.109,0.1066,0.0828,0.1029,0.0662,0.1048,0.0752,0.1001,0.0964,0.0665,0.0688,0.0845,0.1068,0.1091,0.0796,0.1045,0.062,0.1038,0.075,0.0987,0.0993,0.0686
32490,37,0.0729,0.0854,0.1092,0.1046,0.0798,0.1026,0.0647,0.1036,0.0769,0.1001,0.0997,0.0726,0.0736,0.0876,0.105,0.1017,0.0802,0.1031,0.0719,0.1029,0.0769,0.0998,0.0987,0.0635,0.0683,0.0844,0.106,0.102,0.08,0.1036,0.0643,0.1046,0.076,0.0996,0.0983,0.0622,0.071,0.0858,0.1095,0.1085,0.0823,0.1069,0.0682,0.1096,0.0966,0.1008,0.0979,0.0656,0.0664,0.0848,0.1122,0.1139,0.0818,0.1047,0.069,0.1057,0.0784,0.1008,0.0995,0.0625,0.0669,0.0835,0.1137,0.1146,0.0813,0.1058,0.0592,0.1061,0.0828,0.1016,0.099,0.069,0.065,0.0845,0.1088,0.107,0.0837,0.1032,0.0702,0.1051,0.0749,0.099,0.0959,0.063,0.069,0.0846,0.1075,0.1101,0.0796,0.1049,0.0622,0.1039,0.0743,0.0986,0.0982,0.0688
32580,37,0.0734,0.0866,0.1102,0.1055,0.0808,0.1041,0.0633,0.104,0.0774,0.1003,0.0993,0.0658,0.0719,0.0872,0.106,0.1033,0.081,0.1041,0.0697,0.1034,0.0775,0.1005,0.0991,0.0638,0.0668,0.0854,0.1067,0.103,0.0809,0.1041,0.0673,0.1056,0.0767,0.1005,0.0985,0.0653,0.0683,0.086,0.1104,0.1089,0.0832,0.1077,0.0661,0.1102,0.0965,0.102,0.0987,0.068,0.0663,0.0856,0.1128,0.1153,0.0823,0.1059,0.0698,0.1074,0.0793,0.1021,0.1004,0.0641,0.066,0.0837,0.1136,0.1154,0.0822,0.107,0.0616,0.1078,0.0835,0.1035,0.1005,0.0678,0.0636,0.0846,0.1088,0.1071,0.0837,0.1034,0.067,0.1071,0.0763,0.1007,0.0974,0.0632,0.0693,0.0839,0.1076,0.1099,0.0801,0.105,0.0624,0.1046,0.075,0.0994,0.0986,0.0697
32670,37,0.0727,0.0857,0.1082,0.1052,0.08,0.1034,0.0645,0.1033,0.0765,0.0998,0.0991,0.0691,0.0723,0.0876,0.1056,0.1026,0.0804,0.1032,0.0693,0.1028,0.077,0.1,0.0988,0.0651,0.0665,0.0848,0.106,0.102,0.0801,0.1032,0.0633,0.1048,0.0759,0.0998,0.0989,0.0688,0.07,0.0861,0.1093,0.1083,0.0826,0.1067,0.0737,0.1096,0.0966,0.1014,0.0977,0.0626,0.0672,0.0851,0.1118,0.1133,0.0808,0.1044,0.0637,0.1064,0.0792,0.1016,0.1002,0.0646,0.0678,0.0836,0.1131,0.1138,0.0816,0.1064,0.069,0.1072,0.0827,0.1012,0.0987,0.0622,0.0652,0.084,0.1079,0.106,0.083,0.1027,0.0651,0.1056,0.0759,0.0995,0.0962,0.0628,0.0715,0.0843,0.1077,0.1097,0.0798,0.105,0.0646,0.104,0.075,0.0985,0.098,0.0694
32760,37,0.0724,0.0866,0.1088,0.1054,0.0808,0.1037,0.0632,0.104,0.0772,0.1001,0.0995,0.0668,0.0724,0.0876,0.1058,0.103,0.0805,0.1035,0.0698,0.1032,0.078,0.1,0.0991,0.0657,0.07,0.085,0.1063,0.1027,0.0805,0.1039,0.0643,0.1054,0.0764,0.1003,0.099,0.0694,0.072,0.0865,0.1101,0.1092,0.0827,0.1078,0.0703,0.1099,0.0959,0.1024,0.0985,0.0666,0.0674,0.0857,0.1125,0.115,0.0822,0.1054,0.0669,0.1073,0.0792,0.1021,0.1003,0.0629,0.0665,0.0842,0.1134,0.1154,0.0822,0.1068,0.0608,0.1074,0.0832,0.1032,0.1004,0.0683,0.0642,0.0847,0.1088,0.1073,0.084,0.1037,0.0688,0.1065,0.076,0.1004,0.0991,0.062,0.0683,0.0846,0.1078,0.1103,0.0799,0.105,0.0622,0.1045,0.0755,0.0992,0.099,0.0711
32850,37,0.0751,0.0865,0.1093,0.1058,0.0811,0.1042,0.063,0.1043,0.0773,0.1005,0.0996,0.0652,0.0717,0.0874,0.106,0.1031,0.0809,0.1036,0.0699,0.1033,0.0777,0.1004,0.0989,0.0649,0.0674,0.0851,0.1064,0.1028,0.0811,0.1039,0.0661,0.1055,0.0766,0.1004,0.0988,0.0651,0.0671,0.0865,0.11,0.1085,0.0835,0.1081,0.0671,0.11,0.0968,0.1024,0.0984,0.0666,0.0668,0.0854,0.1124,0.1148,0.0822,0.1054,0.0672,0.1081,0.08,0.1024,0.101,0.0647,0.0665,0.0839,0.1134,0.1154,0.0825,0.1073,0.0667,0.1073,0.0835,0.1028,0.1,0.0657,0.0652,0.0844,0.1083,0.1066,0.0837,0.1033,0.066,0.107,0.0768,0.1014,0.0977,0.0645,0.0707,0.0837,0.1076,0.1102,0.0802,0.1049,0.066,0.1045,0.0756,0.0987,0.0986,0.0725
32940,37,0.0737,0.0866,0.11,0.1057,0.0808,0.1039,0.0636,0.1046,0.0776,0.1003,0.0995,0.0693,0.0731,0.0876,0.1056,0.1028,0.0812,0.1031,0.0721,0.1033,0.0774,0.1005,0.0991,0.0627,0.0647,0.0851,0.1062,0.1023,0.0807,0.1042,0.0653,0.1059,0.0768,0.1005,0.099,0.0665,0.0704,0.0867,0.1101,0.1088,0.0834,0.1073,0.0705,0.1104,0.0966,0.1027,0.0984,0.0636,0.0655,0.0851,0.1123,0.1147,0.0821,0.1053,0.0666,0.1077,0.0796,0.102,0.1002,0.0631,0.0675,0.0842,0.1134,0.1151,0.0825,0.1068,0.0658,0.1076,0.0831,0.1037,0.0998,0.0661,0.0635,0.0846,0.1086,0.1068,0.0838,0.1034,0.0686,0.1064,0.0763,0.1013,0.097,0.0646,0.0704,0.085,0.1073,0.11,0.0806,0.105,0.0649,0.1047,0.0753,0.0995,0.0984,0.0698
33030,37,0.0723,0.0865,0.109,0.1054,0.081,0.1039,0.0633,0.104,0.0774,0.1001,0.0992,0.0684,0.0716,0.0911,0.1057,0.102,0.0809,0.1034,0.0716,0.1032,0.0779,0.1003,0.099,0.0655,0.0692,0.0857,0.106,0.1024,0.0807,0.1038,0.0635,0.1053,0.0764,0.1003,0.0989,0.0665,0.0708,0.087,0.1102,0.1087,0.0836,0.1076,0.0711,0.1102,0.0964,0.1028,0.0985,0.0672,0.0682,0.0856,0.1123,0.1146,0.0822,0.1053,0.0654,0.1077,0.0796,0.1022,0.1006,0.0624,0.0653,0.0848,0.1134,0.1144,0.0821,0.1067,0.0648,0.1072,0.0825,0.1039,0.1,0.0672,0.0636,0.0844,0.1084,0.107,0.0841,0.1034,0.0663,0.1069,0.0768,0.1003,0.0968,0.0634,0.0704,0.085,0.1074,0.1101,0.0802,0.1049,0.0656,0.1043,0.0753,0.099,0.0989,0.0717
33120,37,0.0741,0.0871,0.1097,0.1069,0.0815,0.1043,0.0624,0.1039,0.077,0.1,0.0988,0.0648,0.0723,0.088,0.1061,0.1031,0.0813,0.1039,0.0659,0.103,0.0772,0.1001,0.099,0.0671,0.0667,0.0859,0.1062,0.1024,0.0811,0.1041,0.0664,0.1056,0.077,0.1004,0.0985,0.0659,0.069,0.0868,0.1103,0.1082,0.0837,0.1074,0.0683,0.1099,0.0962,0.1022,0.0985,0.066,0.066,0.0856,0.1125,0.1152,0.0828,0.1056,0.0699,0.1081,0.08,0.1021,0.1005,0.0642,0.0671,0.084,0.1135,0.1149,0.0827,0.1071,0.0649,0.1074,0.0837,0.1037,0.1003,0.0678,0.0638,0.0846,0.1085,0.107,0.084,0.1031,0.0669,0.1066,0.0763,0.1009,0.0972,0.0633,0.0693,0.0844,0.1076,0.1099,0.0803,0.1046,0.0634,0.1045,0.076,0.0995,0.0984,0.0698
33210,37,0.0727,0.0863,0.1104,0.1051,0.0806,0.1035,0.0635,0.1035,0.0768,0.0997,0.0994,0.0706,0.071,0.087,0.105,0.1021,0.0807,0.1028,0.0708,0.1025,0.0771,0.0996,0.0985,0.0652,0.0657,0.085,0.1057,0.1017,0.0804,0.1034,0.0648,0.1048,0.0764,0.0996,0.0985,0.0682,0.0706,0.0864,0.1091,0.1077,0.0826,0.1067,0.073,0.1091,0.0966,0.1015,0.0977,0.0625,0.0658,0.0851,0.1118,0.1136,0.0816,0.1045,0.0647,0.1066,0.0795,0.1013,0.0998,0.0626,0.0657,0.084,0.1133,0.1135,0.0817,0.106,0.069,0.1067,0.0826,0.102,0.0987,0.066,0.0634,0.0843,0.1076,0.106,0.0831,0.1025,0.0631,0.1055,0.0763,0.1003,0.0962,0.0645,0.0712,0.0844,0.1071,0.1094,0.0801,0.1048,0.064,0.1037,0.075,0.0985,0.0979,0.0697
33300,37,0.0786,0.086,0.1107,0.1047,0.0802,0.1025,0.0618,0.1027,0.0766,0.0991,0.0982,0.0671,0.0741,0.0872,0.1044,0.1018,0.0803,0.1024,0.0684,0.1022,0.0765,0.0993,0.0985,0.0666,0.0683,0.0856,0.1055,0.1019,0.0805,0.1027,0.0631,0.1045,0.0763,0.0991,0.0982,0.0695,0.0693,0.0865,0.1095,0.1079,0.0826,0.1065,0.0722,0.1088,0.0963,0.1008,0.0979,0.064,0.0669,0.0855,0.1121,0.1136,0.0816,0.1045,0.0649,0.1062,0.0792,0.1008,0.0994,0.0625,0.068,0.0838,0.1133,0.1142,0.0816,0.1064,0.0618,0.1061,0.0818,0.1017,0.0985,0.0666,0.0661,0.0847,0.1084,0.1067,0.0837,0.1027,0.0683,0.1048,0.0754,0.0992,0.0958,0.0645,0.0704,0.085,0.1074,0.1096,0.0802,0.1046,0.062,0.1033,0.075,0.0985,0.0977,0.0693
33390,37,0.0737,0.0872,0.111,0.1055,0.0811,0.1037,0.0634,0.1041,0.0772,0.1002,0.0994,0.0683,0.0721,0.0878,0.1053,0.1023,0.081,0.1032,0.0727,0.1028,0.0775,0.1002,0.0988,0.062,0.0643,0.0857,0.1066,0.1024,0.0811,0.1042,0.0696,0.1053,0.0768,0.1002,0.098,0.0652,0.0713,0.0866,0.11,0.1087,0.0837,0.1079,0.0656,0.1099,0.0966,0.1022,0.0983,0.0665,0.0653,0.086,0.1131,0.1155,0.0829,0.1054,0.0693,0.1076,0.0792,0.1017,0.1004,0.0634,0.0667,0.0843,0.1137,0.1153,0.0827,0.1068,0.0658,0.1073,0.0828,0.1038,0.1005,0.068,0.0639,0.0854,0.1086,0.1068,0.0839,0.1032,0.0675,0.1059,0.0762,0.1013,0.0968,0.0664,0.0693,0.0846,0.1074,0.1096,0.0805,0.1048,0.0645,0.1043,0.0755,0.0991,0.0985,0.067
33480,37,0.074,0.0872,0.1098,0.1052,0.0807,0.1034,0.0641,0.1042,0.0773,0.1002,0.0993,0.0708,0.0742,0.0893,0.1052,0.1026,0.081,0.1035,0.076,0.1032,0.0775,0.1004,0.0991,0.062,0.0638,0.0856,0.1062,0.1021,0.0809,0.1042,0.066,0.1055,0.0765,0.1002,0.0986,0.0686,0.0715,0.0868,0.1093,0.1084,0.083,0.1077,0.0712,0.1102,0.0961,0.1019,0.0985,0.0641,0.0655,0.0861,0.1129,0.1154,0.0828,0.1051,0.0686,0.1071,0.0788,0.1014,0.1004,0.0679,0.067,0.0848,0.1138,0.1156,0.0822,0.1064,0.0645,0.1069,0.0822,0.1053,0.1008,0.0652,0.0641,0.0857,0.1089,0.1065,0.0838,0.1031,0.0686,0.105,0.0757,0.1016,0.0964,0.0667,0.0676,0.086,0.107,0.1094,0.0808,0.1051,0.0648,0.1043,0.0757,0.0997,0.0986,0.0688
33570,37,0.075,0.087,0.1106,0.1043,0.0806,0.1025,0.0638,0.103,0.077,0.0994,0.0984,0.0696,0.0738,0.0877,0.1048,0.1019,0.0806,0.1026,0.0721,0.1024,0.0771,0.0995,0.0983,0.0673,0.067,0.0854,0.1055,0.1018,0.0808,0.1034,0.0663,0.1042,0.076,0.0988,0.0974,0.065,0.0688,0.0865,0.1094,0.1079,0.0831,0.1065,0.0617,0.109,0.0969,0.1004,0.0975,0.0676,0.0665,0.0864,0.1129,0.1147,0.0828,0.1046,0.0726,0.1048,0.0779,0.1001,0.0993,0.0663,0.0652,0.0844,0.1137,0.114,0.0818,0.1056,0.0611,0.1057,0.0823,0.1022,0.0987,0.0656,0.0647,0.0859,0.1086,0.1061,0.0834,0.1026,0.0676,0.1039,0.0752,0.1003,0.0958,0.0693,0.0683,0.0857,0.1062,0.109,0.08,0.1045,0.0626,0.1035,0.0755,0.0993,0.0975,0.0662
33660,37,0.0736,0.0869,0.108,0.1045,0.0806,0.1032,0.0651,0.1038,0.0777,0.1001,0.0982,0.0659,0.0716,0.0871,0.1062,0.102,0.0808,0.1034,0.0684,0.1019,0.0771,0.0992,0.0979,0.0653,0.0646,0.0855,0.106,0.102,0.081,0.1035,0.0734,0.104,0.0759,0.0988,0.0971,0.0633,0.0683,0.0862,0.1096,0.1083,0.0828,0.1068,0.0624,0.1087,0.097,0.1008,0.0975,0.0674,0.0656,0.0868,0.1132,0.1149,0.0849,0.1045,0.072,0.1055,0.0783,0.1003,0.0997,0.0687,0.065,0.0843,0.114,0.1142,0.0818,0.1054,0.0643,0.1062,0.083,0.1026,0.0993,0.0646,0.0652,0.086,0.1086,0.1062,0.0837,0.1026,0.0703,0.1041,0.0752,0.0994,0.096,0.069,0.0677,0.0856,0.1069,0.1093,0.0803,0.1044,0.0636,0.1037,0.0756,0.0985,0.0976,0.0666
33750,37,0.0728,0.0869,0.1112,0.1043,0.0802,0.1025,0.0647,0.1034,0.0771,0.0997,0.0991,0.0715,0.0737,0.0875,0.1043,0.1012,0.0805,0.1025,0.0748,0.102,0.0772,0.0994,0.0982,0.063,0.0648,0.0854,0.1053,0.1013,0.0804,0.1032,0.0647,0.1045,0.0764,0.0992,0.098,0.0656,0.0708,0.0864,0.1088,0.1074,0.0825,0.1068,0.0673,0.1089,0.0972,0.1008,0.0973,0.0625,0.0656,0.0858,0.1119,0.1138,0.0822,0.1042,0.0672,0.1054,0.0787,0.1003,0.0992,0.0646,0.0682,0.0843,0.1137,0.1146,0.0816,0.1055,0.061,0.1059,0.0823,0.1024,0.0989,0.0666,0.0632,0.0857,0.1082,0.1052,0.083,0.1024,0.0666,0.1041,0.0753,0.0991,0.0947,0.0644,0.0676,0.0856,0.1068,0.1091,0.0804,0.1047,0.061,0.1034,0.0748,0.0984,0.0975,0.0679
33840,37,0.0748,0.0871,0.1076,0.1047,0.0811,0.1031,0.0629,0.1024,0.0766,0.0988,0.0983,0.0699,0.0703,0.0878,0.1048,0.1012,0.0808,0.1027,0.067,0.1021,0.0772,0.0992,0.0982,0.069,0.0679,0.0861,0.1054,0.1013,0.0807,0.1029,0.0633,0.1041,0.076,0.0992,0.0979,0.0692,0.0684,0.0871,0.109,0.1072,0.0828,0.1067,0.0689,0.109,0.0966,0.1006,0.0975,0.0648,0.0673,0.0864,0.1118,0.1135,0.0818,0.1042,0.0638,0.1063,0.0793,0.1009,0.0992,0.0627,0.0682,0.0843,0.1135,0.1137,0.0821,0.106,0.0616,0.1059,0.0819,0.1018,0.0986,0.0645,0.0641,0.0855,0.1082,0.1069,0.0841,0.1027,0.0681,0.1052,0.0758,0.0993,0.0958,0.0631,0.0688,0.0854,0.1074,0.1097,0.0803,0.1047,0.0608,0.1034,0.075,0.0981,0.0974,0.0699
33930,37,0.0756,0.0876,0.1103,0.1053,0.0812,0.1038,0.0662,0.1026,0.0766,0.0993,0.0978,0.0655,0.0688,0.0888,0.1053,0.1024,0.0811,0.1032,0.0636,0.1018,0.077,0.0992,0.0979,0.0647,0.0668,0.0869,0.1058,0.1021,0.081,0.1025,0.061,0.104,0.0756,0.0987,0.098,0.0732,0.0698,0.0868,0.1098,0.1074,0.0833,0.1068,0.0717,0.1088,0.0969,0.1012,0.0976,0.0621,0.0682,0.0868,0.112,0.113,0.0816,0.1037,0.0629,0.1065,0.0797,0.1013,0.1001,0.068,0.0676,0.0846,0.1134,0.1136,0.0821,0.1061,0.07,0.1067,0.0826,0.1016,0.0982,0.063,0.0633,0.0851,0.1072,0.1053,0.083,0.102,0.0624,0.1054,0.0766,0.1004,0.0963,0.0664,0.0697,0.0847,0.1064,0.1089,0.0801,0.1045,0.0688,0.1031,0.0754,0.0978,0.097,0.0681
34020,37,0.0737,0.0872,0.1078,0.105,0.0809,0.103,0.0628,0.1029,0.077,0.0997,0.0984,0.0681,0.0701,0.088,0.1049,0.1019,0.0808,0.103,0.0677,0.1021,0.0778,0.0992,0.098,0.0642,0.0656,0.0863,0.1052,0.1016,0.0805,0.1026,0.0622,0.104,0.0759,0.0992,0.0983,0.0745,0.0701,0.087,0.109,0.1075,0.0828,0.1066,0.0746,0.1091,0.0968,0.1009,0.0975,0.0607,0.0675,0.0864,0.1114,0.1128,0.0814,0.1038,0.0636,0.1068,0.0798,0.1014,0.1001,0.0667,0.0684,0.0848,0.1133,0.1134,0.0819,0.1059,0.0698,0.1064,0.0823,0.1015,0.0982,0.0643,0.0661,0.0854,0.1072,0.105,0.083,0.1024,0.0622,0.1051,0.0765,0.0999,0.0958,0.0636,0.0697,0.0853,0.1065,0.1087,0.0802,0.1046,0.0667,0.1032,0.075,0.0978,0.0969,0.07
34110,37,0.0744,0.0877,0.1108,0.1053,0.0819,0.1039,0.063,0.1035,0.077,0.0993,0.0983,0.0679,0.0713,0.0887,0.1055,0.1025,0.0814,0.1036,0.0673,0.1027,0.0778,0.0998,0.0986,0.0682,0.0686,0.0868,0.1053,0.1018,0.0812,0.1033,0.0633,0.105,0.0769,0.1,0.0983,0.0664,0.0681,0.0877,0.1095,0.1075,0.0836,0.1072,0.0697,0.1095,0.0967,0.102,0.0979,0.0678,0.0663,0.0866,0.1123,0.1147,0.0828,0.1053,0.0674,0.1071,0.0799,0.1019,0.0999,0.063,0.0686,0.0852,0.1134,0.1154,0.0828,0.107,0.0625,0.1075,0.0832,0.1037,0.1,0.0674,0.0638,0.0857,0.1085,0.107,0.0847,0.1034,0.0693,0.106,0.0767,0.1006,0.0964,0.0631,0.0686,0.086,0.1075,0.1103,0.0809,0.1049,0.0633,0.1043,0.0756,0.099,0.0997,0.0695
34200,37,0.0728,0.088,0.1082,0.1052,0.0817,0.1041,0.0646,0.1042,0.0778,0.1,0.0989,0.068,0.0717,0.0885,0.1055,0.1024,0.0817,0.1033,0.0723,0.1027,0.0781,0.0998,0.0983,0.0644,0.0666,0.0864,0.106,0.1022,0.0816,0.1037,0.066,0.1052,0.0774,0.1003,0.0983,0.0668,0.0695,0.0876,0.1099,0.108,0.084,0.1076,0.0686,0.1099,0.0969,0.1019,0.0979,0.067,0.066,0.0863,0.1128,0.1154,0.0832,0.1057,0.0708,0.1077,0.0803,0.1017,0.0998,0.0646,0.0674,0.0849,0.1137,0.1152,0.0833,0.1068,0.062,0.1074,0.0835,0.1035,0.1001,0.0676,0.0638,0.086,0.1084,0.1067,0.0845,0.1032,0.0692,0.1062,0.0766,0.101,0.0966,0.0659,0.0684,0.0854,0.1074,0.1095,0.0809,0.1047,0.0668,0.1043,0.0756,0.099,0.0977,0.068
34290,37,0.0731,0.0871,0.1086,0.1046,0.0814,0.1038,0.0654,0.1047,0.0783,0.1001,0.0994,0.0694,0.0738,0.0886,0.105,0.102,0.0814,0.1035,0.0734,0.1031,0.0777,0.0997,0.0984,0.0628,0.0639,0.086,0.1058,0.1019,0.0816,0.1041,0.0691,0.1053,0.0773,0.0998,0.0979,0.0632,0.0688,0.0873,0.1095,0.1077,0.0838,0.1079,0.0682,0.1099,0.0968,0.1021,0.0976,0.0655,0.0651,0.0861,0.1125,0.1151,0.0832,0.1052,0.0701,0.1071,0.0796,0.1015,0.0995,0.0638,0.0656,0.0851,0.1137,0.115,0.0831,0.1069,0.064,0.1072,0.0836,0.1044,0.0998,0.0673,0.0634,0.086,0.1084,0.1066,0.0845,0.1031,0.0703,0.1058,0.0766,0.1013,0.0956,0.0627,0.0674,0.0861,0.1072,0.1092,0.081,0.1049,0.0628,0.1042,0.0754,0.0992,0.0975,0.068
34380,37,0.0753,0.0876,0.1076,0.1048,0.0817,0.1038,0.0639,0.104,0.0782,0.0995,0.0986,0.0678,0.0735,0.0894,0.1048,0.1015,0.0816,0.103,0.0702,0.1023,0.0779,0.0999,0.0982,0.0677,0.0689,0.0863,0.1053,0.1017,0.0813,0.1034,0.0644,0.1049,0.077,0.0997,0.0977,0.0628,0.0681,0.0878,0.1096,0.1078,0.0836,0.1076,0.0673,0.1096,0.0972,0.1019,0.0977,0.0695,0.0662,0.0867,0.1124,0.1149,0.0829,0.1052,0.0694,0.1073,0.08,0.1016,0.0993,0.0647,0.066,0.0855,0.1137,0.1149,0.0828,0.1065,0.0608,0.1068,0.0833,0.1043,0.1,0.0699,0.064,0.086,0.1084,0.1073,0.085,0.1033,0.069,0.1065,0.0766,0.1004,0.0961,0.0629,0.0674,0.086,0.1074,0.1096,0.0809,0.1046,0.0606,0.1036,0.0755,0.0992,0.0981,0.0723
34470,37,0.0735,0.0883,0.1084,0.1055,0.0819,0.104,0.0623,0.1039,0.0776,0.0995,0.0984,0.0638,0.071,0.0892,0.1054,0.102,0.0816,0.1035,0.0636,0.1023,0.0775,0.0998,0.0983,0.0687,0.0672,0.0871,0.1056,0.1021,0.0816,0.1034,0.0642,0.1052,0.0771,0.0998,0.098,0.0668,0.0691,0.0879,0.1099,0.1079,0.084,0.1073,0.0687,0.1096,0.0971,0.102,0.0979,0.066,0.0663,0.0871,0.1125,0.1147,0.0826,0.1047,0.0652,0.1081,0.0807,0.1021,0.1002,0.0657,0.0678,0.0851,0.1136,0.1145,0.0833,0.1068,0.07,0.1076,0.0837,0.104,0.0996,0.0644,0.063,0.086,0.1076,0.1059,0.0842,0.1028,0.0635,0.1068,0.078,0.1021,0.0966,0.0649,0.0712,0.0856,0.107,0.1092,0.0812,0.1049,0.0703,0.1039,0.0757,0.0993,0.0975,0.0688
34560,37,0.0735,0.0876,0.1106,0.1054,0.0818,0.1041,0.0688,0.1042,0.0776,0.0993,0.0982,0.0655,0.0718,0.0888,0.1054,0.1023,0.0815,0.1037,0.0629,0.1024,0.0774,0.0996,0.0982,0.0657,0.0655,0.0872,0.1059,0.1022,0.0818,0.1032,0.061,0.1048,0.0762,0.0993,0.0982,0.0727,0.0695,0.0886,0.1098,0.1078,0.0841,0.1071,0.0747,0.1099,0.0971,0.1021,0.0984,0.0648,0.0674,0.0875,0.1124,0.1144,0.0826,0.1042,0.062,0.1076,0.08,0.1023,0.1006,0.0727,0.0653,0.0861,0.1137,0.114,0.0828,0.1066,0.0728,0.1074,0.0833,0.1045,0.0996,0.0654,0.0644,0.0866,0.1075,0.105,0.0832,0.1022,0.0605,0.1057,0.0777,0.1028,0.0966,0.0695,0.0708,0.0866,0.1063,0.1084,0.0814,0.1049,0.0719,0.1042,0.076,0.0989,0.0975,0.0647
34650,37,0.0742,0.0873,0.1077,0.105,0.0819,0.1039,0.0696,0.1042,0.0778,0.0991,0.0976,0.0634,0.0688,0.0891,0.1067,0.1031,0.0816,0.1035,0.0612,0.1015,0.0777,0.0993,0.0981,0.0693,0.0662,0.0872,0.106,0.1026,0.0823,0.1033,0.0662,0.1042,0.076,0.0985,0.0975,0.066,0.0697,0.0881,0.1098,0.1082,0.084,0.1072,0.0672,0.1093,0.0972,0.102,0.098,0.0671,0.0692,0.0879,0.1126,0.1146,0.0828,0.1043,0.0616,0.107,0.0794,0.1021,0.1001,0.0698,0.0671,0.0864,0.114,0.1144,0.0829,0.1061,0.0702,0.1074,0.0827,0.105,0.1005,0.0658,0.0638,0.0866,0.1078,0.1056,0.0837,0.1024,0.061,0.1056,0.0773,0.1024,0.0963,0.067,0.0692,0.0867,0.1063,0.1082,0.0809,0.1048,0.0705,0.1041,0.0762,0.0987,0.0975,0.0684
34740,37,0.0727,0.0874,0.1088,0.1048,0.0815,0.1036,0.0714,0.1036,0.0776,0.0988,0.0969,0.0637,0.069,0.0891,0.105,0.1017,0.0814,0.1028,0.0604,0.1012,0.077,0.0986,0.0972,0.0698,0.0667,0.0872,0.1056,0.1021,0.0819,0.1029,0.0693,0.1039,0.0758,0.0982,0.097,0.0666,0.0703,0.0875,0.1095,0.1079,0.0836,0.1063,0.066,0.1083,0.097,0.1003,0.0974,0.062,0.0689,0.0877,0.1123,0.1134,0.0822,0.1036,0.0622,0.1063,0.0797,0.1011,0.0997,0.0693,0.0667,0.0859,0.1136,0.1129,0.0825,0.1057,0.0736,0.1065,0.0827,0.102,0.0984,0.0642,0.0648,0.0865,0.1072,0.1046,0.083,0.1015,0.0614,0.1048,0.0771,0.1008,0.096,0.069,0.0714,0.0863,0.1063,0.108,0.0808,0.1044,0.0729,0.1031,0.0758,0.098,0.0967,0.0654
34830,37,0.0728,0.0875,0.1078,0.105,0.0818,0.1039,0.0689,0.1045,0.0779,0.0993,0.098,0.0663,0.0691,0.089,0.105,0.102,0.0815,0.1035,0.0622,0.1022,0.0777,0.0992,0.098,0.0697,0.0662,0.0872,0.106,0.1024,0.0821,0.1037,0.0698,0.1041,0.076,0.0985,0.0976,0.0708,0.0694,0.0884,0.11,0.1079,0.0841,0.1072,0.0707,0.1096,0.0972,0.1018,0.0987,0.0648,0.0673,0.0879,0.1125,0.1145,0.0844,0.1041,0.0622,0.1068,0.0792,0.1015,0.1001,0.0739,0.0637,0.0865,0.1138,0.1138,0.0826,0.1061,0.069,0.1076,0.0835,0.1052,0.1001,0.0658,0.067,0.0874,0.1082,0.1055,0.0839,0.1025,0.0622,0.1046,0.0768,0.1028,0.0963,0.0708,0.0693,0.0873,0.1064,0.1085,0.0813,0.1049,0.0686,0.1043,0.0762,0.099,0.0975,0.0673
34920,37,0.0719,0.088,0.1075,0.1046,0.0816,0.1037,0.0664,0.1047,0.0783,0.0994,0.0978,0.0629,0.071,0.0889,0.1047,0.102,0.0814,0.1033,0.0615,0.1022,0.0776,0.0989,0.0978,0.0715,0.065,0.0873,0.106,0.1022,0.0823,0.104,0.0761,0.1041,0.0767,0.0984,0.0967,0.0649,0.0662,0.0882,0.11,0.1083,0.0843,0.107,0.0626,0.1091,0.0972,0.1008,0.0978,0.0698,0.0665,0.088,0.1132,0.1156,0.0838,0.1051,0.0712,0.106,0.0787,0.101,0.0992,0.0657,0.0682,0.0862,0.1139,0.1153,0.0827,0.1064,0.0623,0.1068,0.0831,0.1042,0.1,0.0659,0.065,0.0874,0.1086,0.1064,0.0845,0.1028,0.0682,0.1049,0.0761,0.1013,0.0962,0.0692,0.0671,0.087,0.1067,0.109,0.0811,0.1046,0.0622,0.104,0.0761,0.0991,0.0973,0.0669
35010,37,0.0734,0.0885,0.1105,0.1044,0.0816,0.1036,0.0652,0.1043,0.0784,0.0998,0.0984,0.0663,0.0737,0.0891,0.1042,0.1022,0.0817,0.1033,0.0695,0.1021,0.078,0.0994,0.0976,0.0669,0.0646,0.0874,0.1059,0.102,0.082,0.1043,0.0742,0.1052,0.0777,0.0994,0.0971,0.0643,0.0697,0.0875,0.1096,0.108,0.084,0.1072,0.063,0.1095,0.0971,0.1018,0.0973,0.0682,0.0661,0.0878,0.1132,0.1154,0.0836,0.105,0.0717,0.1064,0.079,0.1009,0.0994,0.0668,0.0677,0.0857,0.1139,0.1146,0.0833,0.1064,0.0619,0.1072,0.0833,0.1046,0.0995,0.0652,0.0643,0.0873,0.1083,0.1059,0.0845,0.1026,0.0662,0.1051,0.0764,0.1015,0.0963,0.0689,0.0693,0.087,0.1065,0.1088,0.081,0.1048,0.0653,0.1043,0.0764,0.0989,0.0974,0.0679
35100,37,0.0703,0.0882,0.1072,0.104,0.0814,0.1034,0.0646,0.1042,0.0787,0.0995,0.0988,0.0702,0.0743,0.0893,0.1042,0.1013,0.0816,0.1026,0.0727,0.1026,0.0779,0.0991,0.0978,0.0645,0.0636,0.0871,0.1055,0.1015,0.0819,0.1038,0.0703,0.1043,0.0769,0.0988,0.0969,0.0633,0.0684,0.0884,0.1095,0.1078,0.084,0.1072,0.0626,0.1094,0.0963,0.1011,0.0974,0.0681,0.0666,0.0882,0.1129,0.1152,0.0836,0.1047,0.066,0.1059,0.079,0.1009,0.0994,0.0692,0.0648,0.0868,0.114,0.1144,0.0829,0.1063,0.0645,0.1071,0.0836,0.1042,0.0998,0.0658,0.0665,0.0879,0.1088,0.106,0.0848,0.1029,0.0684,0.1044,0.0762,0.1015,0.0957,0.0672,0.069,0.0877,0.1064,0.1088,0.0814,0.1051,0.0632,0.1042,0.0762,0.0989,0.0973,0.0691
35190,37,0.0724,0.0885,0.1073,0.1042,0.0816,0.1034,0.0642,0.1039,0.0786,0.0993,0.0976,0.0636,0.0741,0.0893,0.1045,0.1013,0.0818,0.1031,0.0672,0.1021,0.078,0.0992,0.0974,0.0669,0.0651,0.0874,0.1056,0.1018,0.0822,0.1036,0.0713,0.1043,0.0769,0.0987,0.0967,0.0642,0.0682,0.0881,0.1098,0.1082,0.0843,0.1075,0.0611,0.1091,0.0964,0.1013,0.097,0.0697,0.0661,0.0884,0.1133,0.1157,0.0841,0.1048,0.0723,0.1059,0.079,0.1009,0.0993,0.0665,0.0649,0.0861,0.1142,0.1153,0.0832,0.1065,0.0611,0.1068,0.0834,0.1044,0.0998,0.0647,0.0644,0.0879,0.1086,0.1061,0.0847,0.1028,0.0689,0.1048,0.0761,0.1015,0.0959,0.0698,0.0699,0.087,0.1065,0.1089,0.0812,0.1047,0.0653,0.1039,0.0764,0.0987,0.097,0.0663
35280,37,0.0722,0.0885,0.109,0.1041,0.0815,0.1037,0.0684,0.1044,0.0787,0.0998,0.0983,0.0661,0.0704,0.089,0.1045,0.1014,0.0819,0.1034,0.0696,0.1022,0.0782,0.0992,0.0973,0.0645,0.066,0.0875,0.1056,0.1018,0.0823,0.1038,0.0744,0.1043,0.0765,0.099,0.0976,0.0653,0.0698,0.0882,0.1097,0.1079,0.0841,0.1074,0.0643,0.1096,0.0971,0.1022,0.0975,0.0666,0.0662,0.0886,0.113,0.1156,0.0838,0.1046,0.0659,0.106,0.0793,0.1011,0.0998,0.0737,0.0672,0.0867,0.1139,0.1147,0.0832,0.1062,0.0688,0.1076,0.0836,0.1055,0.0997,0.0662,0.0663,0.0879,0.1077,0.105,0.0838,0.1024,0.062,0.1046,0.077,0.1029,0.0962,0.0714,0.069,0.0874,0.1058,0.1081,0.0815,0.1045,0.0718,0.1045,0.0765,0.0987,0.097,0.0667
35370,37,0.0725,0.0881,0.1094,0.1042,0.0818,0.1036,0.0674,0.1042,0.0782,0.0987,0.0975,0.0662,0.0694,0.089,0.1045,0.1016,0.0818,0.1034,0.0644,0.1021,0.0783,0.0986,0.0975,0.069,0.0655,0.0882,0.1055,0.1021,0.0826,0.1032,0.0654,0.104,0.0763,0.0984,0.0971,0.0667,0.0676,0.0887,0.1101,0.1079,0.0843,0.1072,0.0641,0.1094,0.0977,0.1017,0.0977,0.0673,0.068,0.0891,0.113,0.1149,0.0837,0.1045,0.0646,0.1063,0.0796,0.1014,0.0997,0.0726,0.0655,0.0868,0.114,0.1144,0.083,0.1062,0.0662,0.1074,0.0835,0.105,0.0996,0.0663,0.0707,0.088,0.108,0.1055,0.0845,0.1027,0.0621,0.1051,0.0772,0.1026,0.0959,0.0676,0.0679,0.0877,0.106,0.1083,0.0813,0.1048,0.068,0.1043,0.0762,0.0986,0.0971,0.0667
35460,37,0.0744,0.0884,0.1076,0.1049,0.0823,0.1044,0.0706,0.1045,0.0784,0.0992,0.0972,0.0652,0.0719,0.0906,0.1052,0.1027,0.0818,0.1035,0.0599,0.1019,0.0778,0.099,0.0971,0.0683,0.0671,0.0885,0.106,0.1025,0.0828,0.1029,0.066,0.1045,0.0766,0.0987,0.0974,0.0678,0.0664,0.0888,0.1101,0.1077,0.0846,0.1075,0.0677,0.1095,0.0969,0.1018,0.0977,0.0652,0.068,0.0887,0.1132,0.1149,0.0833,0.1044,0.0613,0.1072,0.0803,0.102,0.1001,0.0708,0.0665,0.0869,0.1136,0.1142,0.0835,0.1069,0.0708,0.1075,0.0835,0.1043,0.0997,0.0649,0.0648,0.0873,0.1074,0.1049,0.0839,0.1022,0.0621,0.1059,0.078,0.1024,0.0963,0.0683,0.0707,0.0873,0.106,0.1088,0.0815,0.1047,0.0708,0.1042,0.0765,0.0984,0.0969,0.0666
35550,37,0.073,0.0877,0.1073,0.1042,0.0818,0.1032,0.0691,0.1034,0.0777,0.0986,0.0971,0.0643,0.0696,0.0889,0.1038,0.1013,0.0816,0.1026,0.0685,0.1014,0.0778,0.0983,0.097,0.0671,0.0654,0.0876,0.1048,0.1011,0.0818,0.102,0.0632,0.1034,0.076,0.0978,0.0969,0.071,0.0691,0.0886,0.109,0.1071,0.0836,0.1062,0.0739,0.1087,0.097,0.1002,0.0971,0.0624,0.068,0.0884,0.1119,0.1131,0.0827,0.1032,0.0623,0.106,0.0796,0.1007,0.0995,0.0768,0.0652,0.0866,0.1137,0.1131,0.0827,0.1051,0.0723,0.1062,0.0827,0.1025,0.0981,0.0622,0.0635,0.0872,0.1068,0.1037,0.083,0.1017,0.0608,0.1044,0.0773,0.1009,0.0951,0.0677,0.0715,0.0874,0.1063,0.108,0.0811,0.1045,0.0725,0.1033,0.0762,0.0976,0.096,0.0664
35640,37,0.0726,0.0883,0.1094,0.1047,0.0823,0.1034,0.0673,0.1027,0.0776,0.098,0.0968,0.0652,0.07,0.0894,0.1048,0.1005,0.0816,0.1027,0.0626,0.101,0.0774,0.0981,0.0972,0.0707,0.0678,0.0882,0.1049,0.1014,0.0822,0.102,0.0623,0.1031,0.076,0.0979,0.097,0.0698,0.067,0.0889,0.1094,0.1066,0.0836,0.1065,0.071,0.1082,0.0972,0.1003,0.0969,0.0627,0.0698,0.0887,0.1119,0.1131,0.0828,0.1035,0.0613,0.1057,0.0797,0.1007,0.0989,0.0683,0.065,0.0866,0.1139,0.1133,0.0826,0.1048,0.0718,0.1062,0.0827,0.1022,0.0985,0.064,0.0662,0.0872,0.1073,0.1049,0.0838,0.1018,0.0599,0.1045,0.0772,0.1006,0.0952,0.0674,0.0667,0.0873,0.106,0.1085,0.0811,0.1045,0.0703,0.1031,0.0761,0.0973,0.0962,0.0655
35730,37,0.0757,0.0888,0.108,0.1049,0.0826,0.104,0.0703,0.1045,0.0787,0.0992,0.0971,0.0641,0.0713,0.0896,0.105,0.1022,0.0821,0.1032,0.0611,0.1018,0.0778,0.0987,0.0973,0.0692,0.0667,0.0883,0.1056,0.1022,0.0828,0.1028,0.0677,0.1042,0.0766,0.0985,0.097,0.0659,0.0682,0.0889,0.1099,0.1071,0.0845,0.1072,0.07,0.1089,0.0971,0.1013,0.0976,0.0642,0.0671,0.0888,0.1129,0.1147,0.0834,0.1041,0.061,0.1073,0.08,0.1019,0.1,0.0721,0.0651,0.0869,0.114,0.1134,0.0837,0.1064,0.0729,0.1076,0.0837,0.1048,0.0997,0.0624,0.0634,0.0874,0.1072,0.1048,0.0841,0.102,0.0627,0.106,0.0781,0.1026,0.0964,0.0697,0.0704,0.0866,0.1067,0.1086,0.0818,0.1048,0.0724,0.104,0.0769,0.0985,0.0968,0.0666
35820,37,0.073,0.0889,0.1076,0.1047,0.0823,0.1038,0.0671,0.1041,0.0781,0.0986,0.0973,0.0644,0.0715,0.0898,0.1047,0.1016,0.082,0.1031,0.064,0.1017,0.0782,0.0987,0.0981,0.0662,0.066,0.0884,0.1053,0.1019,0.0825,0.1026,0.0637,0.1042,0.0761,0.0986,0.0973,0.0737,0.0697,0.0894,0.1096,0.1078,0.0844,0.107,0.0731,0.1092,0.0976,0.1015,0.0979,0.0643,0.0685,0.089,0.1129,0.1146,0.0837,0.1038,0.0627,0.1072,0.08,0.1019,0.1001,0.0751,0.0672,0.0873,0.114,0.1142,0.0833,0.1059,0.0722,0.1075,0.0829,0.1052,0.0999,0.0634,0.0679,0.0878,0.1074,0.1049,0.0841,0.1022,0.0613,0.105,0.0776,0.1031,0.0959,0.0695,0.0715,0.0879,0.1056,0.1077,0.0817,0.1049,0.0721,0.1041,0.0761,0.0986,0.097,0.0658
35910,37,0.0732,0.0881,0.107,0.1044,0.0822,0.1027,0.0661,0.1032,0.0778,0.0981,0.0966,0.0639,0.07,0.0895,0.1044,0.1012,0.0815,0.1026,0.0602,0.1009,0.0774,0.098,0.0971,0.0724,0.0672,0.0883,0.1046,0.1014,0.0822,0.1019,0.065,0.1028,0.0757,0.0973,0.0965,0.069,0.0675,0.0895,0.1094,0.1068,0.0839,0.1065,0.0673,0.1079,0.0973,0.1,0.0966,0.0641,0.0695,0.0891,0.1124,0.1134,0.0833,0.1034,0.0608,0.1058,0.0794,0.1004,0.0988,0.0685,0.0669,0.087,0.1142,0.1132,0.0827,0.1049,0.0705,0.1059,0.0824,0.1018,0.0982,0.0612,0.0661,0.0877,0.1072,0.1046,0.0839,0.1015,0.0608,0.1044,0.0771,0.1007,0.0953,0.0692,0.0686,0.0874,0.1061,0.1082,0.0811,0.1046,0.07,0.1026,0.0763,0.0975,0.0965,0.067
36000,37,0.074,0.0889,0.1096,0.1047,0.0825,0.104,0.0706,0.1044,0.0785,0.0992,0.0975,0.0641,0.0697,0.0901,0.1049,0.1016,0.0825,0.1035,0.0648,0.1018,0.0778,0.099,0.0975,0.0662,0.0656,0.0887,0.1058,0.1021,0.0829,0.103,0.0691,0.1043,0.0766,0.0984,0.0971,0.0714,0.0672,0.0894,0.1093,0.1075,0.0847,0.107,0.0692,0.109,0.0975,0.1017,0.0977,0.0635,0.0669,0.0891,0.1132,0.1151,0.0839,0.1042,0.0627,0.1071,0.0799,0.1017,0.0997,0.0742,0.0662,0.0874,0.1142,0.1141,0.0836,0.1063,0.0722,0.1078,0.0837,0.1053,0.0998,0.0632,0.0654,0.0883,0.1075,0.105,0.0842,0.102,0.0613,0.1051,0.0774,0.1033,0.0963,0.0709,0.0699,0.0881,0.1065,0.1082,0.082,0.1049,0.0706,0.1042,0.0766,0.0987,0.0969,0.0655
36090,37,0.0745,0.089,0.109,0.104,0.0818,0.1034,0.0682,0.1046,0.0787,0.0991,0.0975,0.0662,0.072,0.0902,0.1041,0.101,0.082,0.103,0.0696,0.1018,0.0783,0.0987,0.0972,0.0658,0.0646,0.0884,0.1052,0.1016,0.0827,0.1032,0.0711,0.1038,0.0766,0.0981,0.0966,0.0664,0.0697,0.0893,0.1093,0.1073,0.0843,0.107,0.0652,0.1088,0.0979,0.1014,0.0973,0.067,0.0666,0.0893,0.1131,0.1149,0.084,0.1042,0.064,0.1059,0.0795,0.101,0.099,0.0701,0.0675,0.0876,0.1142,0.1145,0.0836,0.106,0.0668,0.107,0.0838,0.1052,0.0998,0.0664,0.0663,0.0885,0.1081,0.1056,0.0848,0.1022,0.0644,0.1045,0.0769,0.1016,0.0952,0.0654,0.0672,0.0883,0.1058,0.108,0.0819,0.1048,0.0667,0.104,0.0762,0.0988,0.0968,0.0672
36180,37,0.071,0.089,0.1071,0.1041,0.082,0.1034,0.0677,0.1044,0.0787,0.099,0.0969,0.0639,0.0701,0.0903,0.1045,0.1013,0.082,0.1032,0.0629,0.1015,0.078,0.0983,0.0972,0.0674,0.0653,0.0886,0.1055,0.1018,0.083,0.1037,0.0769,0.104,0.077,0.0982,0.0962,0.0637,0.0701,0.0892,0.1099,0.1079,0.0848,0.107,0.0613,0.1087,0.0975,0.1009,0.0968,0.0689,0.0662,0.0894,0.1132,0.1154,0.084,0.1044,0.069,0.1059,0.0793,0.1008,0.0992,0.072,0.0678,0.0871,0.1144,0.1147,0.0838,0.1061,0.0634,0.1068,0.083,0.105,0.0995,0.0652,0.0645,0.0889,0.1082,0.1056,0.0848,0.1024,0.0646,0.105,0.0768,0.102,0.0958,0.069,0.0702,0.0883,0.1066,0.1086,0.0819,0.1048,0.0695,0.1038,0.0767,0.0986,0.0968,0.0658
36270,37,0.0735,0.0893,0.1073,0.1039,0.0816,0.1037,0.0714,0.1049,0.079,0.0992,0.0973,0.0648,0.0724,0.0902,0.1041,0.1006,0.0824,0.1032,0.0677,0.1017,0.0782,0.099,0.097,0.0649,0.0648,0.0882,0.1055,0.1015,0.0827,0.1034,0.0733,0.104,0.077,0.0985,0.0966,0.0647,0.0695,0.0892,0.1094,0.1074,0.0842,0.1078,0.062,0.1087,0.0973,0.1015,0.0969,0.068,0.0657,0.0893,0.1129,0.1147,0.0845,0.1043,0.0612,0.106,0.0795,0.1011,0.0993,0.0727,0.0666,0.0879,0.114,0.1145,0.0837,0.1062,0.0671,0.1071,0.0836,0.1051,0.0993,0.0663,0.064,0.0888,0.1077,0.1047,0.0843,0.1024,0.0628,0.1044,0.077,0.103,0.0955,0.0704,0.0681,0.0886,0.1062,0.1083,0.0824,0.105,0.0668,0.104,0.0765,0.0987,0.0967,0.0648
36360,37,0.0749,0.0893,0.1079,0.1036,0.0822,0.1035,0.0664,0.1043,0.0792,0.0988,0.0968,0.0637,0.0713,0.0905,0.1039,0.1014,0.0821,0.1029,0.0624,0.1014,0.078,0.0987,0.097,0.0644,0.0644,0.0885,0.1051,0.1012,0.0828,0.1036,0.0717,0.1039,0.0771,0.0981,0.0961,0.0644,0.0702,0.0898,0.1095,0.1072,0.0843,0.107,0.0624,0.1087,0.0972,0.1012,0.0968,0.0701,0.0662,0.0893,0.1131,0.1154,0.0842,0.1044,0.0671,0.1056,0.079,0.1003,0.0988,0.0665,0.0675,0.0876,0.1145,0.1146,0.0837,0.1063,0.0632,0.1065,0.0831,0.1047,0.0995,0.0675,0.0649,0.0889,0.1081,0.1055,0.085,0.1027,0.0666,0.1047,0.0766,0.1008,0.0949,0.0662,0.0678,0.0887,0.1061,0.1083,0.0819,0.1048,0.0648,0.1035,0.076,0.0984,0.0965,0.0666
36450,37,0.0739,0.0897,0.1093,0.1038,0.0821,0.1039,0.069,0.1041,0.0788,0.0988,0.0971,0.0637,0.0736,0.0909,0.1043,0.1009,0.0826,0.1027,0.0635,0.1016,0.0781,0.0987,0.0966,0.0685,0.0648,0.0886,0.1052,0.1012,0.0827,0.1041,0.075,0.104,0.0776,0.0982,0.096,0.066,0.0685,0.0893,0.1091,0.1071,0.0841,0.1077,0.0611,0.1087,0.0971,0.101,0.0967,0.0707,0.0657,0.0895,0.1133,0.1158,0.0846,0.105,0.0753,0.106,0.0793,0.1002,0.0986,0.0641,0.0663,0.0874,0.1144,0.1154,0.084,0.1062,0.0592,0.1066,0.0833,0.1043,0.0993,0.0668,0.0645,0.0889,0.108,0.1057,0.0853,0.1028,0.0709,0.1052,0.0765,0.1013,0.0959,0.0685,0.0689,0.088,0.1065,0.1088,0.0818,0.1046,0.0651,0.1036,0.0766,0.0987,0.0966,0.0682
36540,37,0.0718,0.0899,0.1091,0.1036,0.082,0.1036,0.0661,0.1041,0.079,0.0994,0.0977,0.0668,0.0734,0.0906,0.1039,0.1006,0.082,0.103,0.0698,0.1017,0.0784,0.099,0.0967,0.0654,0.0643,0.0886,0.105,0.1005,0.0824,0.1037,0.0698,0.1043,0.0777,0.0987,0.0965,0.0637,0.0691,0.0898,0.1087,0.107,0.0847,0.1074,0.0644,0.1094,0.0965,0.1017,0.0963,0.0679,0.0656,0.0889,0.1125,0.1149,0.0841,0.1048,0.0713,0.106,0.0799,0.1003,0.0983,0.0653,0.0653,0.088,0.1143,0.1148,0.0841,0.1061,0.0595,0.1065,0.0831,0.1052,0.0992,0.0668,0.0638,0.0888,0.1077,0.1054,0.0854,0.1029,0.0699,0.105,0.0767,0.101,0.095,0.0643,0.067,0.0886,0.1067,0.1088,0.0819,0.1047,0.061,0.1035,0.0758,0.0989,0.0966,0.0669
36630,37,0.0742,0.0896,0.1069,0.1036,0.0823,0.1034,0.0632,0.1035,0.0784,0.0988,0.0968,0.065,0.0727,0.0902,0.1033,0.1001,0.0816,0.1022,0.0673,0.1012,0.078,0.0985,0.0966,0.0684,0.0651,0.0888,0.1047,0.1005,0.0824,0.1034,0.0665,0.104,0.0774,0.0986,0.0963,0.0627,0.071,0.0897,0.109,0.1071,0.0846,0.1072,0.0638,0.1092,0.0971,0.1013,0.0962,0.069,0.0662,0.0894,0.1128,0.1152,0.0846,0.105,0.0749,0.1055,0.0794,0.1001,0.0979,0.0646,0.0639,0.0878,0.1147,0.115,0.084,0.1062,0.0608,0.106,0.084,0.1049,0.0993,0.0681,0.0648,0.0888,0.108,0.1059,0.0857,0.103,0.0705,0.105,0.0766,0.1013,0.0951,0.0647,0.0657,0.0884,0.1069,0.109,0.0818,0.1045,0.0624,0.1036,0.076,0.0987,0.0962,0.0682
36720,37,0.0744,0.0898,0.1071,0.1038,0.0824,0.104,0.069,0.1043,0.0793,0.0992,0.0966,0.0651,0.0733,0.0911,0.104,0.1006,0.0827,0.1032,0.0673,0.1013,0.0785,0.0988,0.0965,0.0673,0.0645,0.0887,0.1052,0.1011,0.0829,0.1037,0.0748,0.1043,0.0777,0.0984,0.0957,0.0658,0.0677,0.0894,0.1094,0.1073,0.0852,0.1074,0.0612,0.1085,0.097,0.1014,0.0964,0.0687,0.0662,0.0895,0.1133,0.1158,0.0849,0.1048,0.0748,0.1061,0.0796,0.1004,0.0987,0.0642,0.067,0.0879,0.1145,0.1155,0.0844,0.1064,0.0654,0.1068,0.0838,0.1048,0.0988,0.0661,0.0642,0.0889,0.1077,0.1051,0.085,0.1025,0.0666,0.1053,0.0771,0.1019,0.0956,0.0681,0.0681,0.0887,0.1067,0.1089,0.0825,0.1047,0.069,0.1036,0.0766,0.0986,0.0963,0.0654
36810,37,0.0727,0.089,0.1068,0.1032,0.0818,0.1027,0.0677,0.1038,0.0789,0.0987,0.097,0.0648,0.0712,0.0956,0.1028,0.0999,0.082,0.1024,0.069,0.1007,0.0778,0.0982,0.096,0.0659,0.064,0.0881,0.1043,0.1003,0.0823,0.1027,0.0728,0.1034,0.0769,0.0974,0.0954,0.0645,0.0714,0.0894,0.1083,0.107,0.0842,0.1063,0.0611,0.1074,0.0979,0.1001,0.0958,0.066,0.0654,0.0892,0.1122,0.1137,0.0839,0.1038,0.0711,0.1048,0.0794,0.0991,0.098,0.0671,0.0646,0.0875,0.1148,0.1128,0.0837,0.1049,0.0661,0.1056,0.083,0.1032,0.0972,0.0645,0.0666,0.0886,0.1069,0.1037,0.0842,0.1018,0.0609,0.1039,0.0771,0.1005,0.0945,0.0671,0.0687,0.0889,0.1057,0.1077,0.0818,0.1043,0.0695,0.1025,0.0762,0.0973,0.0956,0.0658
36900,37,0.0731,0.0889,0.1083,0.1036,0.0823,0.1029,0.0696,0.1032,0.0787,0.0979,0.096,0.0634,0.0692,0.0908,0.1033,0.1001,0.0822,0.1022,0.0605,0.1005,0.0777,0.0977,0.0957,0.0692,0.0658,0.0884,0.1045,0.1009,0.0828,0.1022,0.0713,0.1025,0.0764,0.0969,0.0955,0.0643,0.0674,0.0899,0.109,0.106,0.0846,0.1061,0.0626,0.1074,0.0977,0.0996,0.096,0.0668,0.0671,0.0899,0.1122,0.1136,0.0835,0.1034,0.0639,0.1052,0.0795,0.0998,0.0981,0.066,0.068,0.0882,0.1144,0.1136,0.0835,0.105,0.0695,0.1058,0.083,0.1024,0.0974,0.0637,0.0652,0.0885,0.1068,0.1042,0.0845,0.1019,0.062,0.1045,0.0775,0.1003,0.0948,0.0666,0.0687,0.0888,0.106,0.1081,0.0818,0.1044,0.0692,0.1023,0.0763,0.0971,0.0955,0.0646
36990,37,0.0742,0.0893,0.1096,0.1039,0.0829,0.1037,0.0718,0.1035,0.0784,0.0985,0.0961,0.0643,0.0682,0.0905,0.1041,0.1006,0.0823,0.1025,0.0605,0.1002,0.0775,0.0978,0.0961,0.0686,0.0657,0.0891,0.1043,0.1008,0.0828,0.1025,0.0732,0.103,0.0762,0.0971,0.0958,0.0646,0.0676,0.0898,0.1089,0.1064,0.0845,0.1062,0.0646,0.1076,0.0972,0.1,0.096,0.0644,0.0674,0.0898,0.1123,0.1134,0.0834,0.1034,0.061,0.1059,0.0799,0.1003,0.0986,0.0698,0.0657,0.088,0.1145,0.113,0.0838,0.1051,0.0732,0.1062,0.0838,0.1028,0.0972,0.0613,0.0647,0.0887,0.1064,0.1036,0.084,0.1014,0.0614,0.1042,0.0777,0.1016,0.095,0.0698,0.07,0.0885,0.1063,0.1078,0.0821,0.1043,0.0721,0.1026,0.0763,0.0974,0.0955,0.0643
37080,37,0.0718,0.0886,0.1064,0.1031,0.082,0.1025,0.0683,0.104,0.0789,0.098,0.0963,0.0627,0.0694,0.0902,0.1031,0.1002,0.0821,0.1026,0.068,0.1007,0.078,0.0979,0.096,0.0657,0.064,0.0885,0.1042,0.1003,0.0826,0.1026,0.0731,0.1031,0.0767,0.0971,0.0954,0.0638,0.0695,0.0899,0.1086,0.1066,0.0846,0.1063,0.0612,0.1076,0.0972,0.0996,0.0959,0.0674,0.0677,0.0896,0.1123,0.1136,0.0839,0.1035,0.0681,0.1046,0.0793,0.0994,0.0978,0.0695,0.067,0.0883,0.1145,0.1134,0.0836,0.105,0.0629,0.1055,0.0824,0.1028,0.0976,0.0659,0.0666,0.089,0.1072,0.1043,0.0847,0.1016,0.0633,0.1038,0.0767,0.1005,0.0945,0.069,0.0672,0.0896,0.1059,0.1081,0.0823,0.1043,0.0681,0.1024,0.0759,0.0976,0.0954,0.0665
37170,37,0.0737,0.0898,0.1064,0.1032,0.0824,0.1027,0.0658,0.1034,0.0787,0.0978,0.0961,0.0624,0.0709,0.0926,0.1034,0.1003,0.0822,0.1024,0.0663,0.1003,0.0777,0.0976,0.0958,0.068,0.0644,0.0886,0.104,0.1002,0.0826,0.1029,0.0729,0.1031,0.0771,0.0974,0.0948,0.066,0.0708,0.0898,0.1084,0.1066,0.0848,0.1064,0.0607,0.1077,0.0969,0.0991,0.0958,0.0653,0.0662,0.0894,0.1125,0.1145,0.0842,0.1043,0.0729,0.1052,0.0795,0.099,0.0975,0.063,0.0686,0.0874,0.115,0.1138,0.0838,0.1053,0.06,0.1049,0.083,0.1019,0.0972,0.0649,0.0641,0.0888,0.1072,0.105,0.0851,0.102,0.0705,0.104,0.0762,0.0996,0.0945,0.0673,0.0688,0.0882,0.1062,0.1084,0.0818,0.1038,0.0625,0.1024,0.0762,0.0973,0.0957,0.0668
37260,37,0.0742,0.0904,0.107,0.1038,0.0824,0.1034,0.0672,0.1044,0.0792,0.0988,0.0974,0.0675,0.0715,0.0934,0.1041,0.1005,0.0824,0.1031,0.0756,0.1016,0.0791,0.0987,0.0971,0.0648,0.0638,0.0892,0.1043,0.1001,0.0825,0.1034,0.069,0.1041,0.0774,0.0985,0.0963,0.0661,0.0707,0.0902,0.109,0.1068,0.0846,0.1074,0.0685,0.1093,0.0972,0.1016,0.0967,0.0643,0.065,0.0893,0.1126,0.1147,0.0844,0.1046,0.0692,0.1063,0.0801,0.1005,0.0984,0.0652,0.0675,0.0879,0.1149,0.1144,0.0847,0.1063,0.0671,0.1069,0.0841,0.1053,0.099,0.0671,0.0642,0.0892,0.1074,0.1051,0.0853,0.1022,0.0676,0.1048,0.0771,0.1028,0.095,0.0697,0.0687,0.0887,0.1064,0.1082,0.0826,0.1044,0.0635,0.1034,0.0765,0.0987,0.0964,0.0673
37350,37,0.0777,0.0899,0.1061,0.1029,0.082,0.1021,0.0638,0.1026,0.0778,0.0978,0.0966,0.0704,0.0733,0.0941,0.1023,0.099,0.0816,0.1016,0.0733,0.1003,0.0781,0.0975,0.0961,0.0634,0.0671,0.0889,0.1034,0.0993,0.082,0.1024,0.0645,0.103,0.0771,0.0975,0.0958,0.0652,0.0712,0.0902,0.1077,0.1061,0.0844,0.1063,0.0682,0.1079,0.0979,0.0995,0.0956,0.0649,0.0671,0.0896,0.1119,0.1135,0.0851,0.104,0.068,0.105,0.0796,0.099,0.097,0.0632,0.0688,0.0882,0.1147,0.1138,0.0837,0.1054,0.0607,0.1053,0.0828,0.102,0.0977,0.0671,0.0651,0.0891,0.1071,0.105,0.0857,0.102,0.0696,0.1037,0.0762,0.0981,0.0935,0.0633,0.0679,0.0889,0.1068,0.1085,0.0821,0.1041,0.0604,0.1021,0.0759,0.0971,0.0955,0.0671
37440,37,0.0744,0.094,0.1082,0.1038,0.0828,0.1034,0.0644,0.1037,0.0787,0.0984,0.0967,0.0656,0.0738,0.0945,0.1038,0.1005,0.0825,0.1027,0.0706,0.1014,0.0787,0.098,0.0967,0.0668,0.0661,0.0899,0.1046,0.1003,0.0827,0.1033,0.0679,0.104,0.0777,0.0984,0.0958,0.0642,0.0709,0.0905,0.1086,0.1071,0.0851,0.1073,0.0643,0.1087,0.0977,0.101,0.0965,0.067,0.065,0.0898,0.1129,0.115,0.0848,0.1049,0.0712,0.1062,0.0802,0.1004,0.0977,0.064,0.0675,0.0884,0.1145,0.115,0.0849,0.1067,0.0597,0.1064,0.0835,0.1044,0.0992,0.0685,0.0656,0.0895,0.1075,0.1055,0.0859,0.1025,0.0699,0.105,0.0769,0.1011,0.0951,0.0658,0.0683,0.0887,0.1064,0.1086,0.0824,0.1047,0.0617,0.1032,0.0761,0.0984,0.0962,0.0665
37530,37,0.0738,0.0945,0.1088,0.1037,0.0825,0.103,0.0648,0.104,0.0784,0.0987,0.0973,0.0713,0.0738,0.0953,0.1038,0.1001,0.0828,0.1028,0.0758,0.1016,0.0788,0.0988,0.0969,0.0658,0.065,0.0894,0.1044,0.1,0.0828,0.103,0.0668,0.1042,0.0776,0.0986,0.0965,0.0667,0.0714,0.0903,0.1082,0.1068,0.0847,0.1071,0.0707,0.1091,0.0974,0.1014,0.0963,0.0641,0.0652,0.0901,0.1126,0.1148,0.0847,0.1048,0.0698,0.1063,0.0801,0.1005,0.0982,0.067,0.069,0.0888,0.1145,0.1152,0.0845,0.1065,0.0632,0.1072,0.0831,0.1053,0.099,0.067,0.0645,0.0898,0.1074,0.105,0.0855,0.1024,0.0674,0.1044,0.0768,0.1015,0.0949,0.0682,0.0691,0.0894,0.1062,0.1083,0.0829,0.1046,0.0641,0.1037,0.0768,0.0989,0.0962,0.0672
37620,37,0.0748,0.0912,0.1087,0.1033,0.0825,0.103,0.0644,0.1035,0.0788,0.0983,0.0968,0.0702,0.0731,0.0942,0.1033,0.0997,0.0825,0.1026,0.0749,0.1016,0.0789,0.0982,0.0966,0.0645,0.0634,0.0897,0.1044,0.0999,0.0828,0.1031,0.0666,0.1037,0.0775,0.0982,0.096,0.0631,0.0694,0.0907,0.1085,0.1065,0.0847,0.107,0.0662,0.1086,0.0967,0.1008,0.0962,0.068,0.0665,0.0902,0.1124,0.1147,0.0846,0.1049,0.0704,0.1057,0.08,0.1001,0.0978,0.0647,0.0664,0.0891,0.1145,0.1148,0.0846,0.106,0.06,0.1065,0.0833,0.1049,0.0991,0.0694,0.0701,0.0898,0.1076,0.1054,0.0857,0.1024,0.069,0.1041,0.0766,0.1012,0.0949,0.0675,0.0672,0.0896,0.1058,0.1081,0.0825,0.1045,0.0626,0.1034,0.0768,0.0987,0.0962,0.0704
37710,37,0.0731,0.0918,0.109,0.1034,0.0828,0.1034,0.0647,0.1035,0.0789,0.0984,0.0969,0.0673,0.0741,0.0957,0.1035,0.1006,0.0829,0.1023,0.0681,0.1012,0.0788,0.0981,0.0964,0.0665,0.0653,0.0901,0.1047,0.1002,0.083,0.1035,0.0726,0.104,0.0779,0.0982,0.0952,0.064,0.0694,0.0907,0.1085,0.1068,0.0853,0.107,0.0615,0.1085,0.0976,0.1009,0.0961,0.0688,0.0663,0.0907,0.1132,0.1156,0.088,0.1047,0.0738,0.1058,0.08,0.1003,0.098,0.0643,0.0665,0.089,0.1147,0.1152,0.0846,0.1062,0.0612,0.1063,0.0833,0.1052,0.099,0.0663,0.0645,0.0904,0.1079,0.1054,0.0861,0.1025,0.0703,0.1048,0.077,0.1018,0.0951,0.0683,0.0698,0.0898,0.1064,0.1086,0.0825,0.1047,0.0638,0.1036,0.077,0.0984,0.096,0.0675
37800,37,0.0728,0.0958,0.1066,0.1028,0.0824,0.1026,0.0648,0.1026,0.0786,0.0982,0.0968,0.0688,0.074,0.0929,0.1028,0.0994,0.0821,0.102,0.0737,0.1009,0.0782,0.098,0.0957,0.0671,0.0643,0.0893,0.1039,0.0994,0.082,0.1026,0.0669,0.1029,0.0773,0.0975,0.0957,0.0659,0.0717,0.0899,0.1075,0.1055,0.0842,0.1062,0.0682,0.1081,0.0976,0.0998,0.0952,0.0636,0.0647,0.0898,0.1119,0.1134,0.0838,0.1038,0.0662,0.1051,0.08,0.0994,0.0975,0.0632,0.0679,0.0885,0.1147,0.1135,0.0839,0.1053,0.067,0.1061,0.0833,0.102,0.0968,0.0668,0.0636,0.0894,0.1064,0.1041,0.0852,0.1018,0.0672,0.1035,0.0765,0.099,0.0937,0.0651,0.068,0.0891,0.1062,0.1078,0.0821,0.1043,0.0611,0.1026,0.0762,0.0973,0.0952,0.0659
37890,37,0.0755,0.094,0.1062,0.103,0.0827,0.1025,0.0631,0.1018,0.078,0.0972,0.0959,0.0693,0.0724,0.0944,0.1031,0.0993,0.0824,0.1021,0.0714,0.1009,0.0786,0.0976,0.0959,0.0678,0.0691,0.0898,0.1031,0.0989,0.082,0.1022,0.0635,0.1026,0.0771,0.0973,0.0958,0.0667,0.0695,0.0911,0.1079,0.1055,0.0843,0.1061,0.0682,0.1078,0.098,0.0996,0.0951,0.0654,0.0667,0.09,0.1114,0.1133,0.0839,0.1037,0.067,0.1046,0.0799,0.0991,0.097,0.0627,0.0657,0.0886,0.1147,0.1135,0.0839,0.1052,0.06,0.1051,0.0831,0.1015,0.0971,0.0664,0.0655,0.09,0.1072,0.1052,0.0859,0.1022,0.0699,0.1037,0.0763,0.0985,0.0936,0.0644,0.0665,0.0887,0.1062,0.108,0.0819,0.1041,0.0599,0.1022,0.0764,0.097,0.095,0.066
37980,37,0.0747,0.0928,0.1068,0.1036,0.0834,0.1035,0.0632,0.1032,0.0789,0.0983,0.0966,0.0664,0.074,0.0976,0.1037,0.1004,0.083,0.1026,0.0698,0.1015,0.0784,0.0985,0.0963,0.0637,0.0673,0.09,0.1041,0.1,0.0829,0.1032,0.0682,0.104,0.0783,0.0984,0.0958,0.065,0.0696,0.0912,0.1083,0.1064,0.0856,0.1068,0.0657,0.1088,0.098,0.101,0.0958,0.0663,0.0653,0.0904,0.1123,0.115,0.085,0.1048,0.0711,0.1064,0.0806,0.1006,0.0983,0.0629,0.0682,0.0888,0.1148,0.1148,0.085,0.1062,0.0617,0.1069,0.084,0.1043,0.0986,0.0679,0.0646,0.0902,0.1073,0.1053,0.0861,0.1026,0.0686,0.1054,0.0774,0.101,0.0953,0.0657,0.0677,0.0895,0.1069,0.1092,0.0829,0.1047,0.0636,0.1034,0.0767,0.0987,0.0958,0.0654
38070,37,0.075,0.0956,0.107,0.1038,0.0832,0.1034,0.0636,0.1036,0.0786,0.0983,0.0972,0.0728,0.0731,0.0942,0.1033,0.0998,0.0827,0.1024,0.0746,0.1015,0.0789,0.0987,0.0965,0.0634,0.0655,0.0897,0.1041,0.0998,0.0828,0.1029,0.0646,0.1039,0.0778,0.0986,0.0968,0.0678,0.0714,0.0916,0.108,0.1058,0.0853,0.1065,0.0716,0.1089,0.0979,0.1013,0.0963,0.0636,0.0651,0.0902,0.1114,0.1139,0.0843,0.1044,0.0661,0.1065,0.0809,0.1008,0.0986,0.0643,0.0667,0.0891,0.1145,0.1144,0.0853,0.1061,0.0681,0.1069,0.0835,0.1039,0.0979,0.0655,0.0644,0.09,0.1068,0.105,0.0859,0.1025,0.0695,0.1052,0.0778,0.1011,0.0948,0.0658,0.0682,0.0892,0.1065,0.1085,0.0829,0.1045,0.0649,0.1034,0.0766,0.0983,0.0957,0.0659
38160,37,0.0745,0.094,0.1066,0.1033,0.083,0.1025,0.0623,0.1021,0.0779,0.0975,0.096,0.0698,0.0707,0.0948,0.1032,0.0991,0.0824,0.1018,0.0705,0.1004,0.0789,0.0975,0.0958,0.0688,0.0689,0.0902,0.1033,0.0993,0.0825,0.1017,0.0629,0.1027,0.0771,0.0975,0.0957,0.0677,0.0681,0.0914,0.1081,0.1046,0.0847,0.106,0.0713,0.1076,0.0976,0.0997,0.0954,0.0652,0.0688,0.091,0.1117,0.1131,0.0841,0.1037,0.0666,0.105,0.0805,0.0994,0.0976,0.0624,0.0681,0.089,0.1151,0.1129,0.0843,0.1052,0.0646,0.1049,0.0844,0.1017,0.0966,0.0656,0.0649,0.0897,0.1066,0.1048,0.0861,0.1018,0.0687,0.1042,0.0769,0.0978,0.0935,0.0625,0.0654,0.0893,0.106,0.108,0.082,0.104,0.0626,0.1021,0.0761,0.0969,0.0972,0.069
38250,37,0.0747,0.0918,0.1071,0.1035,0.0834,0.1027,0.0622,0.1021,0.0776,0.0974,0.0957,0.0668,0.071,0.0975,0.1032,0.0996,0.0823,0.1016,0.0643,0.1001,0.0781,0.0978,0.0957,0.0663,0.068,0.0906,0.1033,0.0992,0.0825,0.1019,0.0633,0.103,0.0772,0.0975,0.096,0.0683,0.0686,0.091,0.1077,0.1057,0.0846,0.1061,0.0701,0.1079,0.0981,0.1,0.0953,0.0621,0.0654,0.0902,0.1118,0.1133,0.084,0.1036,0.0674,0.1061,0.081,0.0997,0.0975,0.0653,0.0661,0.0886,0.1147,0.1129,0.0845,0.1054,0.0675,0.1055,0.0833,0.1013,0.0967,0.0652,0.0643,0.0894,0.1061,0.1042,0.0854,0.1015,0.0663,0.1046,0.0771,0.0991,0.0937,0.0642,0.0688,0.0891,0.1061,0.1086,0.0824,0.1042,0.0659,0.1022,0.0763,0.097,0.0952,0.0676
38340,37,0.0759,0.0977,0.1082,0.1032,0.083,0.1023,0.0629,0.1025,0.0781,0.0974,0.096,0.0701,0.0733,0.0932,0.1029,0.0992,0.0824,0.1016,0.0748,0.1004,0.0786,0.0976,0.096,0.0662,0.0687,0.0901,0.1032,0.0989,0.0823,0.1019,0.0639,0.1031,0.0772,0.0977,0.0961,0.0693,0.0707,0.0915,0.1077,0.1054,0.0842,0.1058,0.0741,0.1079,0.098,0.1001,0.0956,0.0612,0.0668,0.0903,0.1115,0.1125,0.0838,0.1035,0.0651,0.1051,0.0803,0.0994,0.0971,0.063,0.0662,0.0893,0.1147,0.1132,0.0844,0.1051,0.0697,0.1056,0.0832,0.1022,0.0968,0.0637,0.0652,0.09,0.1066,0.1045,0.0856,0.1016,0.07,0.1038,0.0767,0.0995,0.0937,0.0683,0.0671,0.0899,0.1062,0.1082,0.0826,0.1042,0.0625,0.1025,0.0764,0.0974,0.095,0.0658
38430,37,0.075,0.0918,0.1081,0.1035,0.0837,0.1029,0.064,0.1034,0.0788,0.0977,0.0966,0.0715,0.0739,0.0939,0.103,0.0997,0.0829,0.1018,0.075,0.1009,0.0792,0.0979,0.0965,0.0642,0.0685,0.0908,0.1037,0.0995,0.0831,0.1025,0.0649,0.1038,0.0778,0.0982,0.096,0.0672,0.0688,0.0919,0.1083,0.106,0.0851,0.1067,0.0707,0.1086,0.0975,0.1005,0.0961,0.0671,0.0676,0.091,0.1124,0.1148,0.0853,0.1045,0.072,0.1056,0.08,0.1001,0.0975,0.0639,0.0672,0.0897,0.1148,0.1148,0.0848,0.1062,0.0592,0.1064,0.0833,0.105,0.0991,0.0688,0.0645,0.0906,0.1072,0.1054,0.0865,0.1024,0.0704,0.1051,0.0772,0.1012,0.0945,0.0658,0.0643,0.0903,0.1064,0.1089,0.083,0.1046,0.0615,0.1032,0.0769,0.0987,0.0964,0.0685
38520,37,0.0753,0.0969,0.1094,0.1042,0.0838,0.1033,0.0623,0.1034,0.0785,0.0979,0.0964,0.0685,0.0719,0.0963,0.1034,0.1001,0.0831,0.1026,0.071,0.1009,0.079,0.0978,0.0965,0.0668,0.0678,0.091,0.1039,0.0996,0.0828,0.1028,0.0651,0.1039,0.0779,0.0985,0.0957,0.0661,0.0699,0.0919,0.1082,0.1063,0.0855,0.1072,0.0695,0.1085,0.0979,0.1011,0.0962,0.0652,0.0655,0.0908,0.1126,0.1149,0.0852,0.1044,0.0704,0.1066,0.0809,0.1004,0.0977,0.0627,0.0673,0.0896,0.1148,0.1145,0.0853,0.1064,0.066,0.1066,0.0833,0.1047,0.0989,0.0676,0.0643,0.0904,0.1068,0.1049,0.0862,0.102,0.0696,0.1054,0.0776,0.1011,0.0948,0.0658,0.0666,0.0898,0.1062,0.1085,0.0829,0.1044,0.0639,0.1031,0.077,0.0983,0.0957,0.066
38610,37,0.0762,0.0918,0.1095,0.1035,0.0832,0.1028,0.0641,0.1039,0.079,0.0981,0.0971,0.0729,0.0729,0.0969,0.103,0.0993,0.0827,0.102,0.0758,0.1011,0.0791,0.0981,0.0963,0.0634,0.065,0.0906,0.1037,0.0994,0.0829,0.1028,0.0658,0.1039,0.0777,0.0982,0.0958,0.0668,0.0723,0.0921,0.108,0.1057,0.0856,0.1069,0.0709,0.109,0.0971,0.101,0.096,0.0634,0.0653,0.0909,0.1121,0.1145,0.085,0.1043,0.0686,0.106,0.0805,0.1003,0.0977,0.0647,0.0665,0.0902,0.1148,0.1145,0.0851,0.106,0.0674,0.1067,0.0841,0.1054,0.0986,0.0658,0.0643,0.0909,0.1071,0.1047,0.0861,0.1021,0.069,0.1047,0.0774,0.1016,0.0943,0.0663,0.0672,0.0907,0.1061,0.108,0.0833,0.1046,0.0628,0.1031,0.0765,0.0985,0.0958,0.0669
38700,37,0.0754,0.0932,0.1089,0.1032,0.0836,0.103,0.0643,0.1031,0.079,0.0977,0.0965,0.071,0.071,0.0945,0.1032,0.0998,0.0829,0.1022,0.0739,0.101,0.0792,0.0981,0.0963,0.0667,0.0647,0.0911,0.104,0.0997,0.0833,0.103,0.0675,0.1034,0.0779,0.0979,0.0952,0.0626,0.073,0.0919,0.1083,0.1066,0.0852,0.1066,0.0647,0.1085,0.097,0.1004,0.0962,0.0666,0.0662,0.0916,0.1129,0.1149,0.0855,0.1045,0.0724,0.1057,0.08,0.0999,0.0975,0.0645,0.0682,0.0897,0.1151,0.1152,0.0849,0.1058,0.0632,0.106,0.0831,0.1054,0.0991,0.0668,0.065,0.0913,0.1076,0.1052,0.0863,0.1023,0.0698,0.1046,0.077,0.1011,0.0953,0.0665,0.0662,0.0907,0.1061,0.1083,0.0832,0.1045,0.0629,0.1031,0.0773,0.0984,0.0958,0.0662
38790,37,0.0749,0.0935,0.1073,0.103,0.0831,0.1022,0.0639,0.1026,0.0786,0.0975,0.0958,0.0686,0.0738,0.0938,0.1021,0.0988,0.0825,0.1017,0.0734,0.1002,0.0784,0.0976,0.0956,0.065,0.0641,0.0906,0.1035,0.0992,0.0827,0.1021,0.0686,0.1029,0.0773,0.0972,0.095,0.0663,0.0704,0.0915,0.1073,0.1054,0.085,0.1061,0.0679,0.1075,0.0979,0.0991,0.0952,0.064,0.0654,0.0911,0.1122,0.1138,0.0846,0.1036,0.0696,0.1048,0.08,0.099,0.0969,0.0659,0.0674,0.0897,0.1153,0.1138,0.0844,0.105,0.0612,0.1051,0.0836,0.1019,0.097,0.0654,0.0648,0.0908,0.1064,0.1043,0.0856,0.1013,0.0678,0.1034,0.0768,0.0997,0.0937,0.0682,0.0675,0.0903,0.1056,0.1075,0.0825,0.1041,0.0645,0.1022,0.0769,0.0975,0.0954,0.064
38880,37,0.0753,0.0919,0.1058,0.1025,0.0827,0.1018,0.0647,0.1025,0.0787,0.0974,0.096,0.0729,0.074,0.0937,0.1018,0.0987,0.0824,0.1017,0.0737,0.1003,0.0786,0.097,0.0953,0.0632,0.0636,0.0904,0.1031,0.099,0.0828,0.1021,0.0669,0.1026,0.0774,0.0969,0.0951,0.0662,0.0707,0.0919,0.1075,0.1055,0.0847,0.1062,0.0674,0.1077,0.0978,0.0988,0.0953,0.0625,0.0656,0.0911,0.1117,0.1132,0.0843,0.1036,0.0678,0.1046,0.08,0.0987,0.0971,0.0694,0.0675,0.09,0.1153,0.1133,0.0843,0.1048,0.0608,0.1054,0.0835,0.1025,0.0969,0.0663,0.0645,0.0908,0.1063,0.1039,0.0855,0.1014,0.066,0.1032,0.0766,0.0986,0.0931,0.0655,0.0669,0.0902,0.1053,0.1074,0.0825,0.1041,0.0605,0.1018,0.0758,0.0969,0.0966,0.0663
38970,37,0.0746,0.0971,0.1064,0.103,0.0831,0.1021,0.0627,0.1018,0.078,0.0969,0.0958,0.0716,0.0719,0.0959,0.1025,0.0987,0.0826,0.1014,0.07,0.1,0.0786,0.0971,0.0955,0.0672,0.0678,0.0914,0.1028,0.0987,0.0825,0.1015,0.0637,0.1023,0.077,0.0971,0.0952,0.0673,0.0727,0.092,0.1075,0.1053,0.085,0.1056,0.0711,0.1074,0.0976,0.0995,0.0952,0.0636,0.0678,0.0917,0.1117,0.1132,0.0843,0.1034,0.0654,0.105,0.0807,0.0993,0.0969,0.0621,0.0662,0.0899,0.115,0.1134,0.0846,0.1052,0.0607,0.1049,0.0843,0.1016,0.0964,0.0648,0.0657,0.0909,0.1063,0.1041,0.0857,0.1016,0.0668,0.1041,0.0771,0.0988,0.0935,0.0631,0.0678,0.0902,0.1054,0.1074,0.0822,0.1039,0.061,0.1016,0.0764,0.0969,0.0946,0.0689
39060,37,0.0755,0.0938,0.1072,0.1039,0.0838,0.1035,0.0634,0.1029,0.0785,0.098,0.0963,0.0677,0.0702,0.0974,0.1032,0.0996,0.0832,0.1022,0.0676,0.1006,0.0786,0.0978,0.0959,0.067,0.0676,0.0921,0.1041,0.0999,0.0833,0.1024,0.063,0.1037,0.0774,0.098,0.0961,0.0683,0.0691,0.0926,0.108,0.1057,0.0859,0.107,0.0726,0.1086,0.0977,0.1004,0.0963,0.0647,0.0662,0.092,0.112,0.114,0.0847,0.1042,0.0666,0.1065,0.0812,0.101,0.0983,0.0674,0.0677,0.0904,0.1147,0.1145,0.0855,0.1063,0.0684,0.1069,0.0851,0.1026,0.0977,0.0658,0.0642,0.0911,0.106,0.1042,0.0859,0.102,0.0649,0.1053,0.0778,0.1017,0.0949,0.0668,0.0688,0.0903,0.106,0.1084,0.083,0.1045,0.0657,0.1031,0.0769,0.0981,0.0954,0.0673
39150,37,0.0748,0.0932,0.1068,0.1037,0.0842,0.1032,0.0624,0.1028,0.0792,0.0975,0.0968,0.0723,0.0723,0.0976,0.103,0.0996,0.0834,0.1022,0.0709,0.1009,0.0791,0.0978,0.096,0.0653,0.0681,0.0919,0.1038,0.0996,0.083,0.102,0.0636,0.1036,0.0776,0.0982,0.0962,0.073,0.0709,0.0929,0.1084,0.1058,0.0859,0.1061,0.0748,0.109,0.0977,0.1014,0.0962,0.0619,0.0689,0.0925,0.1114,0.1134,0.0845,0.1037,0.0638,0.1067,0.0812,0.1013,0.0979,0.0664,0.0678,0.0911,0.1147,0.1137,0.0853,0.106,0.0691,0.1072,0.0839,0.1044,0.098,0.0667,0.0641,0.0914,0.106,0.1034,0.0856,0.1018,0.0621,0.1052,0.0783,0.1019,0.094,0.0645,0.0681,0.0912,0.1059,0.108,0.0834,0.1049,0.0668,0.1031,0.077,0.098,0.0956,0.0691
39240,37,0.0744,0.093,0.1064,0.1034,0.084,0.1031,0.0646,0.1017,0.0784,0.0969,0.0951,0.065,0.0701,0.0947,0.103,0.0995,0.0832,0.1016,0.0612,0.0998,0.0784,0.097,0.0952,0.0684,0.0676,0.0921,0.1032,0.0995,0.0834,0.1011,0.0639,0.102,0.0768,0.0966,0.0952,0.0698,0.0689,0.0925,0.1076,0.1054,0.0852,0.1057,0.0687,0.107,0.0977,0.0996,0.0948,0.067,0.0687,0.0923,0.112,0.1129,0.0843,0.1032,0.0625,0.1052,0.0808,0.0998,0.0971,0.0654,0.0676,0.0906,0.115,0.113,0.0846,0.1051,0.0681,0.1052,0.0836,0.1008,0.096,0.0622,0.0646,0.0912,0.1056,0.1033,0.0854,0.1011,0.0629,0.104,0.0778,0.0999,0.0937,0.065,0.0665,0.0904,0.1054,0.1073,0.0827,0.1041,0.0678,0.1017,0.0773,0.0965,0.094,0.0658
39330,37,0.0747,0.0979,0.1065,0.1035,0.0838,0.1032,0.0681,0.102,0.0785,0.0969,0.0952,0.0633,0.071,0.0933,0.1029,0.0993,0.0833,0.1018,0.0624,0.0995,0.0783,0.0969,0.0951,0.0682,0.0666,0.0921,0.1033,0.0993,0.0833,0.1013,0.0622,0.1024,0.0769,0.0967,0.0955,0.0708,0.068,0.0924,0.1076,0.1051,0.0853,0.1055,0.0719,0.1075,0.0979,0.0997,0.0952,0.0644,0.0688,0.0923,0.1116,0.1125,0.0841,0.103,0.0625,0.1059,0.0808,0.1,0.0975,0.0677,0.0679,0.0901,0.1152,0.1124,0.085,0.105,0.073,0.1059,0.0839,0.102,0.0963,0.0641,0.0638,0.091,0.1053,0.1029,0.0854,0.101,0.0622,0.1043,0.0781,0.1002,0.0937,0.0666,0.0695,0.0906,0.106,0.1074,0.0832,0.1044,0.0714,0.1023,0.077,0.0969,0.0942,0.0654
39420,37,0.0732,0.0923,0.106,0.1028,0.0836,0.1028,0.0674,0.1021,0.0786,0.0968,0.0954,0.0638,0.0695,0.0938,0.1023,0.0989,0.0829,0.1015,0.0624,0.0993,0.0782,0.0968,0.095,0.0686,0.067,0.0918,0.1031,0.0992,0.0831,0.1011,0.0624,0.1018,0.0768,0.0965,0.0954,0.0732,0.0713,0.0926,0.1079,0.1047,0.085,0.1056,0.0721,0.1072,0.0979,0.0992,0.0951,0.0654,0.0704,0.0922,0.1111,0.112,0.0838,0.1025,0.062,0.1052,0.0806,0.0997,0.0972,0.0673,0.0656,0.0907,0.1149,0.1122,0.0846,0.1051,0.071,0.1056,0.0828,0.1014,0.0963,0.0638,0.0653,0.0912,0.1055,0.1033,0.0855,0.1012,0.0619,0.1042,0.0778,0.0997,0.0933,0.0645,0.0689,0.0906,0.1056,0.1074,0.0828,0.1041,0.0665,0.1019,0.0764,0.0965,0.0942,0.0693
39510,37,0.0745,0.0929,0.1066,0.1035,0.0844,0.1028,0.0647,0.1014,0.0782,0.0966,0.0951,0.0648,0.0688,0.0942,0.1027,0.0991,0.083,0.1017,0.062,0.0999,0.0786,0.0967,0.0948,0.0662,0.0674,0.0924,0.1036,0.0995,0.0836,0.1009,0.0629,0.1022,0.077,0.0967,0.0951,0.0722,0.0655,0.0929,0.1078,0.1048,0.0856,0.1052,0.0707,0.1071,0.0974,0.0997,0.0952,0.0642,0.07,0.093,0.113,0.1137,0.0848,0.1031,0.0627,0.1051,0.0806,0.0997,0.0974,0.0671,0.0648,0.0912,0.1152,0.1134,0.0848,0.1045,0.0698,0.1058,0.0838,0.1015,0.0963,0.0613,0.0641,0.0914,0.1057,0.1034,0.0858,0.1013,0.0633,0.1045,0.0783,0.1007,0.0938,0.0673,0.07,0.0911,0.1057,0.1075,0.0829,0.1042,0.0702,0.1022,0.077,0.0962,0.0942,0.067
39600,37,0.0757,0.0933,0.1071,0.104,0.0844,0.1034,0.0679,0.1035,0.0787,0.0973,0.096,0.0656,0.0694,0.094,0.1035,0.1,0.0836,0.1024,0.0617,0.1004,0.079,0.0976,0.0958,0.0664,0.0667,0.0929,0.104,0.1002,0.0838,0.1019,0.0629,0.1032,0.0773,0.0977,0.096,0.0754,0.0676,0.0932,0.1084,0.1054,0.0862,0.1064,0.0735,0.1088,0.0978,0.1018,0.0963,0.0655,0.0674,0.0928,0.1125,0.1139,0.085,0.1034,0.062,0.1068,0.0813,0.1014,0.0983,0.0716,0.0661,0.0911,0.1152,0.1131,0.0858,0.106,0.0737,0.1074,0.0843,0.1049,0.0982,0.0648,0.0645,0.092,0.1061,0.1036,0.0858,0.1014,0.062,0.1053,0.0789,0.1042,0.0947,0.0698,0.0701,0.0915,0.1054,0.1076,0.0837,0.1046,0.0724,0.1034,0.0776,0.098,0.0951,0.0634
39690,37,0.076,0.0935,0.1063,0.1031,0.0838,0.1025,0.0651,0.1022,0.0786,0.0966,0.0953,0.0676,0.0695,0.094,0.1026,0.0991,0.083,0.1017,0.0643,0.0996,0.0788,0.0967,0.0954,0.0686,0.0662,0.0924,0.1032,0.0992,0.0835,0.101,0.062,0.1022,0.0769,0.0964,0.0951,0.0739,0.0692,0.0929,0.1076,0.1055,0.0852,0.1054,0.0704,0.1068,0.0983,0.0994,0.0953,0.064,0.069,0.0932,0.1113,0.1124,0.0841,0.1023,0.0625,0.1048,0.0804,0.0998,0.097,0.0734,0.0673,0.0914,0.1155,0.1125,0.0847,0.1048,0.0712,0.1056,0.0829,0.1033,0.097,0.0631,0.0675,0.0918,0.1061,0.1031,0.0854,0.1009,0.0609,0.1034,0.0778,0.101,0.0933,0.068,0.0696,0.0918,0.1054,0.107,0.0836,0.1041,0.0713,0.1021,0.0775,0.0967,0.0945,0.0648
39780,37,0.074,0.0967,0.106,0.1031,0.0842,0.1024,0.0674,0.1026,0.0788,0.0968,0.095,0.0637,0.0707,0.0942,0.1026,0.0989,0.0831,0.1017,0.0595,0.0994,0.0787,0.0965,0.095,0.0712,0.0666,0.0927,0.1035,0.0998,0.0841,0.1014,0.0668,0.1022,0.0771,0.0962,0.0946,0.0648,0.0678,0.0925,0.1082,0.1046,0.0855,0.1055,0.0638,0.1068,0.0985,0.0991,0.095,0.0652,0.0682,0.0931,0.1126,0.1143,0.0853,0.103,0.0673,0.1045,0.0799,0.0989,0.0968,0.0685,0.0674,0.0909,0.1158,0.1137,0.0848,0.1047,0.0655,0.1053,0.0832,0.1031,0.0967,0.0648,0.0653,0.092,0.1064,0.1041,0.0863,0.1012,0.0672,0.1032,0.0774,0.1006,0.0935,0.0701,0.0667,0.0913,0.1052,0.1071,0.0831,0.1038,0.0705,0.1022,0.0773,0.0966,0.0946,0.0637
39870,37,0.073,0.0967,0.1064,0.1032,0.0839,0.103,0.0685,0.1044,0.08,0.0979,0.0963,0.0666,0.0708,0.0944,0.1023,0.0993,0.0834,0.1018,0.0709,0.1003,0.0794,0.0972,0.0954,0.0655,0.0649,0.0925,0.1038,0.0998,0.0841,0.1028,0.0739,0.1036,0.0775,0.0972,0.0947,0.0627,0.0693,0.0931,0.108,0.1061,0.0861,0.1066,0.068,0.1083,0.0977,0.1007,0.0956,0.0679,0.0671,0.0929,0.1129,0.1154,0.086,0.1038,0.0708,0.1061,0.0806,0.1006,0.098,0.0721,0.0652,0.0912,0.1154,0.1144,0.0859,0.1058,0.0672,0.1066,0.0833,0.1055,0.098,0.0637,0.067,0.0926,0.1065,0.1041,0.0864,0.1015,0.064,0.1043,0.078,0.1035,0.0947,0.0713,0.0693,0.092,0.1057,0.1076,0.0843,0.1044,0.0708,0.1034,0.0779,0.0983,0.095,0.063
39960,37,0.0749,0.0938,0.1058,0.1025,0.0839,0.1028,0.0672,0.104,0.0797,0.0974,0.0962,0.0667,0.0705,0.0949,0.1021,0.0989,0.0833,0.1022,0.0719,0.1002,0.0792,0.0973,0.0956,0.0652,0.0642,0.0924,0.1038,0.0997,0.0842,0.1028,0.0723,0.1034,0.0781,0.0973,0.0945,0.064,0.0665,0.0939,0.1084,0.106,0.0864,0.1064,0.062,0.1079,0.0983,0.1007,0.0958,0.0686,0.0684,0.0934,0.1127,0.115,0.0856,0.1036,0.0655,0.1058,0.0804,0.1004,0.0977,0.0712,0.0672,0.092,0.1155,0.1145,0.0856,0.1057,0.0683,0.1069,0.0843,0.106,0.0982,0.0665,0.0661,0.0926,0.1063,0.1037,0.0862,0.1017,0.0615,0.1042,0.0781,0.1037,0.0939,0.0697,0.0693,0.0929,0.1055,0.1074,0.0842,0.1046,0.0682,0.1031,0.0774,0.0986,0.095,0.0658
40050,37,0.0721,0.0933,0.1062,0.1032,0.0844,0.1035,0.071,0.1036,0.0793,0.0972,0.095,0.0642,0.0698,0.0947,0.1028,0.0997,0.0834,0.102,0.0591,0.1002,0.0788,0.0966,0.0955,0.0716,0.0668,0.0933,0.1039,0.1002,0.0844,0.1022,0.0697,0.1031,0.0774,0.097,0.0947,0.0637,0.0672,0.0937,0.1082,0.1057,0.0861,0.1061,0.0639,0.1079,0.0982,0.1006,0.0959,0.0655,0.0688,0.0938,0.113,0.115,0.0858,0.1039,0.0655,0.1058,0.0808,0.1007,0.0978,0.0714,0.0674,0.092,0.1155,0.1138,0.0858,0.1057,0.0686,0.1066,0.083,0.1053,0.0981,0.0619,0.0651,0.093,0.1065,0.1042,0.0863,0.1016,0.0602,0.1044,0.0781,0.1035,0.0942,0.0704,0.0693,0.0925,0.1057,0.1078,0.0841,0.1045,0.0717,0.103,0.0776,0.0982,0.0959,0.0652
40140,37,0.0725,0.0933,0.1059,0.1026,0.0835,0.1025,0.0699,0.1033,0.0793,0.097,0.095,0.0642,0.0722,0.0941,0.102,0.099,0.0831,0.1016,0.0653,0.0996,0.0786,0.0966,0.0947,0.0691,0.0659,0.0926,0.1033,0.0994,0.0839,0.1016,0.0733,0.1024,0.0772,0.0962,0.0943,0.0644,0.0694,0.0932,0.1076,0.1052,0.0855,0.1057,0.0642,0.1071,0.0985,0.0993,0.0948,0.0633,0.0666,0.0934,0.1124,0.1136,0.0848,0.1027,0.0625,0.1047,0.0803,0.0992,0.0971,0.0723,0.0678,0.0917,0.1156,0.1128,0.0849,0.1046,0.0716,0.1059,0.0832,0.1034,0.0961,0.0632,0.0647,0.0927,0.1059,0.1031,0.0854,0.1006,0.0623,0.1032,0.0775,0.1008,0.0934,0.0698,0.0696,0.0927,0.1049,0.1066,0.0837,0.1041,0.0698,0.1021,0.0773,0.0967,0.0941,0.0642
40230,37,0.0705,0.0937,0.1063,0.1028,0.0842,0.103,0.0686,0.1036,0.0798,0.0972,0.0955,0.0645,0.07,0.0949,0.1025,0.0992,0.0834,0.1019,0.0636,0.1004,0.0789,0.0968,0.0953,0.0688,0.0649,0.093,0.1036,0.0995,0.0842,0.1025,0.0716,0.1026,0.0777,0.0969,0.0946,0.0668,0.0684,0.0937,0.1087,0.1058,0.0861,0.1061,0.0652,0.108,0.098,0.1006,0.0957,0.0676,0.067,0.0938,0.1127,0.1148,0.086,0.1033,0.0631,0.1055,0.0804,0.1002,0.0974,0.0712,0.0653,0.0923,0.1156,0.1132,0.0856,0.1056,0.0662,0.1066,0.0839,0.1068,0.0981,0.0671,0.0658,0.0933,0.1066,0.1042,0.0866,0.1017,0.0641,0.1038,0.0778,0.1033,0.0941,0.0695,0.0696,0.0928,0.1048,0.1072,0.0841,0.1045,0.067,0.1031,0.0776,0.0981,0.095,0.0688
40320,37,0.0728,0.0941,0.1062,0.1028,0.0843,0.1029,0.0685,0.1037,0.0797,0.0974,0.0952,0.0647,0.0732,0.0951,0.1022,0.0998,0.0834,0.102,0.0607,0.0999,0.079,0.097,0.0948,0.0678,0.0655,0.0929,0.104,0.0998,0.0844,0.1028,0.0785,0.1028,0.0782,0.097,0.0942,0.0647,0.0687,0.0941,0.1085,0.106,0.0864,0.1064,0.0619,0.1076,0.0979,0.1003,0.0953,0.0692,0.0664,0.094,0.1131,0.1155,0.0862,0.1039,0.0708,0.1056,0.0804,0.1,0.0973,0.0664,0.067,0.0919,0.1157,0.115,0.0859,0.1055,0.0612,0.1063,0.0835,0.1059,0.0981,0.065,0.0647,0.0934,0.1067,0.1043,0.0867,0.1016,0.0657,0.1042,0.0778,0.1027,0.0956,0.0689,0.0666,0.0925,0.1056,0.1078,0.084,0.1043,0.0672,0.103,0.0778,0.0982,0.095,0.0634
40410,37,0.0724,0.0938,0.1054,0.1018,0.0832,0.102,0.067,0.1028,0.0793,0.0969,0.0955,0.0686,0.071,0.0936,0.1015,0.0984,0.0829,0.1012,0.0687,0.0998,0.079,0.0968,0.0943,0.0638,0.0644,0.0923,0.1031,0.0989,0.0835,0.1022,0.0738,0.1022,0.0778,0.0964,0.0938,0.0632,0.0675,0.0935,0.1071,0.1054,0.0856,0.1057,0.0601,0.1068,0.0984,0.0994,0.0944,0.0672,0.0655,0.0934,0.1122,0.1139,0.0855,0.1034,0.0722,0.1042,0.0804,0.0985,0.0962,0.0646,0.0673,0.0919,0.116,0.1133,0.0852,0.1046,0.0608,0.1048,0.0837,0.1029,0.096,0.0639,0.064,0.093,0.1059,0.1032,0.0862,0.1014,0.0659,0.1029,0.077,0.0996,0.0926,0.066,0.0677,0.092,0.1053,0.1069,0.0834,0.1038,0.063,0.102,0.077,0.097,0.0945,0.0659
40500,37,0.0741,0.0941,0.1054,0.1019,0.0838,0.1021,0.0643,0.102,0.0804,0.0966,0.0952,0.0668,0.074,0.0947,0.1012,0.0978,0.083,0.1011,0.0699,0.0996,0.079,0.0965,0.0945,0.0688,0.0647,0.0925,0.1026,0.0983,0.0832,0.102,0.0706,0.102,0.0779,0.0965,0.0935,0.064,0.0693,0.0936,0.1073,0.1052,0.0856,0.1055,0.0604,0.1069,0.0984,0.0992,0.094,0.0679,0.0665,0.0932,0.112,0.1142,0.0856,0.1034,0.0745,0.1036,0.0801,0.0982,0.0958,0.064,0.0676,0.0915,0.1162,0.1145,0.0851,0.1041,0.0609,0.1046,0.0834,0.1026,0.0958,0.0682,0.0649,0.093,0.1061,0.1042,0.0868,0.1016,0.0706,0.1032,0.0771,0.099,0.0924,0.0636,0.0662,0.0926,0.1057,0.1078,0.0838,0.1042,0.0602,0.1017,0.0771,0.097,0.0942,0.0688
40590,37,0.0742,0.0944,0.1058,0.1024,0.084,0.1022,0.064,0.102,0.0792,0.0967,0.0951,0.0674,0.0724,0.0945,0.1018,0.098,0.0831,0.1011,0.0679,0.0992,0.0787,0.0967,0.0942,0.0673,0.0671,0.0932,0.1026,0.0983,0.0832,0.1017,0.0673,0.1023,0.078,0.0966,0.094,0.0645,0.0694,0.0936,0.1071,0.1046,0.0852,0.1056,0.0627,0.1071,0.0988,0.0991,0.0941,0.0673,0.0653,0.0933,0.1121,0.1141,0.0854,0.1035,0.072,0.1044,0.0806,0.0985,0.096,0.0631,0.0673,0.0916,0.1161,0.1134,0.0854,0.1055,0.0605,0.1048,0.083,0.1016,0.096,0.0668,0.065,0.093,0.1059,0.1039,0.0866,0.1015,0.0705,0.1038,0.0773,0.0988,0.0932,0.066,0.0645,0.092,0.1056,0.1078,0.0838,0.1039,0.0632,0.1017,0.0772,0.0965,0.0937,0.066
40680,37,0.0711,0.095,0.106,0.1027,0.0844,0.103,0.0649,0.1035,0.08,0.0972,0.096,0.0694,0.0725,0.0953,0.1019,0.0986,0.0837,0.1022,0.0709,0.1002,0.0795,0.0972,0.095,0.0646,0.064,0.0933,0.1031,0.0985,0.0839,0.1026,0.0689,0.1031,0.0787,0.0973,0.0947,0.063,0.0681,0.0943,0.1074,0.1048,0.0864,0.1068,0.0651,0.1081,0.0982,0.1012,0.0947,0.067,0.0652,0.0935,0.1122,0.115,0.086,0.1043,0.0705,0.1059,0.0812,0.0999,0.0969,0.0646,0.0676,0.0919,0.1156,0.1139,0.0864,0.1057,0.0592,0.1063,0.084,0.105,0.0976,0.0665,0.0642,0.0933,0.106,0.1039,0.0868,0.1019,0.0687,0.1044,0.0778,0.1015,0.0937,0.0672,0.0671,0.093,0.1058,0.1078,0.0841,0.1044,0.0625,0.1029,0.0776,0.0983,0.0944,0.0656
40770,37,0.0733,0.0949,0.106,0.1026,0.0846,0.1029,0.0642,0.103,0.0798,0.0971,0.0954,0.0686,0.0742,0.0956,0.1018,0.0986,0.0837,0.1013,0.0727,0.1002,0.0797,0.0975,0.0947,0.0674,0.0691,0.0935,0.1023,0.0978,0.0836,0.1023,0.0647,0.1029,0.0785,0.0977,0.0945,0.0626,0.0713,0.0948,0.1071,0.1054,0.086,0.1068,0.065,0.1082,0.0982,0.1012,0.0948,0.0674,0.0648,0.0939,0.1121,0.115,0.0862,0.1046,0.0716,0.1058,0.0813,0.0998,0.0965,0.0651,0.0689,0.0924,0.1155,0.1157,0.0862,0.1056,0.0617,0.1058,0.084,0.1052,0.0978,0.0703,0.0648,0.0934,0.1062,0.1046,0.0876,0.1024,0.0715,0.1045,0.0778,0.1002,0.0931,0.0637,0.0657,0.0931,0.1059,0.1083,0.0844,0.1044,0.0618,0.1025,0.0769,0.0985,0.0947,0.0682
40860,37,0.0735,0.0953,0.1062,0.1028,0.0849,0.1032,0.0653,0.1033,0.0796,0.0972,0.0956,0.0654,0.0736,0.0957,0.1024,0.0985,0.0838,0.1017,0.0684,0.1002,0.079,0.0973,0.0947,0.0676,0.066,0.094,0.103,0.0988,0.084,0.1022,0.0677,0.1033,0.0787,0.0976,0.0945,0.0648,0.0691,0.0946,0.1079,0.1056,0.0868,0.1064,0.0646,0.108,0.0991,0.101,0.0945,0.0671,0.0655,0.0937,0.1124,0.1152,0.0863,0.1044,0.0719,0.1061,0.0816,0.1002,0.0968,0.0643,0.0692,0.0926,0.1155,0.1156,0.0866,0.1059,0.0614,0.1063,0.0846,0.1048,0.0979,0.0689,0.0644,0.0934,0.1061,0.1044,0.0871,0.1021,0.0704,0.1051,0.0781,0.1013,0.0963,0.0649,0.0678,0.0923,0.1058,0.1082,0.0841,0.1042,0.0657,0.1028,0.0776,0.0982,0.0947,0.0668
40950,37,0.0722,0.0948,0.1057,0.1026,0.0845,0.1025,0.0641,0.1037,0.0798,0.0973,0.096,0.0701,0.0718,0.0957,0.1019,0.0978,0.0841,0.1018,0.0732,0.1003,0.0798,0.0972,0.0949,0.0639,0.065,0.0934,0.1025,0.0982,0.0838,0.1023,0.0659,0.1029,0.0787,0.0977,0.0948,0.065,0.0686,0.0946,0.1075,0.1051,0.086,0.1066,0.0683,0.1081,0.0983,0.1013,0.0947,0.0653,0.065,0.0936,0.112,0.1145,0.086,0.1042,0.0688,0.106,0.0815,0.1002,0.0965,0.063,0.0666,0.0927,0.1155,0.1143,0.0868,0.1055,0.0617,0.1061,0.0835,0.1055,0.0975,0.0687,0.0644,0.0934,0.1059,0.1043,0.0874,0.1021,0.07,0.105,0.0782,0.1016,0.0937,0.0628,0.0659,0.0932,0.106,0.108,0.0844,0.1044,0.0607,0.1025,0.0771,0.0985,0.0945,0.067
41040,37,0.0736,0.0954,0.1062,0.1037,0.0852,0.1028,0.0643,0.1029,0.0796,0.0967,0.0954,0.0686,0.0706,0.096,0.1022,0.0987,0.084,0.1015,0.0686,0.1001,0.0795,0.0968,0.0949,0.0665,0.0686,0.0941,0.1028,0.0986,0.084,0.1021,0.0646,0.1031,0.0785,0.0976,0.0946,0.0634,0.0699,0.095,0.1072,0.1051,0.0863,0.1059,0.0661,0.1079,0.0978,0.1008,0.095,0.0683,0.067,0.0943,0.1123,0.1147,0.086,0.1043,0.0692,0.1062,0.0816,0.1003,0.0964,0.0638,0.067,0.0927,0.1156,0.1145,0.0867,0.1059,0.0633,0.1062,0.0847,0.1048,0.0975,0.0671,0.065,0.0934,0.106,0.1047,0.0875,0.1019,0.0686,0.1053,0.0783,0.1014,0.0937,0.0629,0.0656,0.0927,0.1059,0.1081,0.0842,0.1044,0.0614,0.1023,0.0772,0.0981,0.0946,0.0656
41130,37,0.0744,0.0953,0.1059,0.1027,0.0843,0.1022,0.0638,0.1022,0.079,0.0965,0.095,0.0677,0.0729,0.0953,0.1012,0.0983,0.0834,0.1008,0.0716,0.0992,0.0791,0.0966,0.0941,0.0657,0.0661,0.0937,0.1021,0.0978,0.0833,0.1011,0.0648,0.1023,0.0781,0.0967,0.0945,0.0681,0.0704,0.0944,0.1068,0.1039,0.0857,0.1053,0.0709,0.107,0.0981,0.0996,0.0942,0.063,0.0664,0.0936,0.1115,0.1134,0.0852,0.1032,0.0663,0.1054,0.0813,0.099,0.0959,0.0629,0.0687,0.0924,0.1159,0.1131,0.0859,0.1051,0.0693,0.1056,0.0838,0.1015,0.0957,0.0652,0.0639,0.093,0.1048,0.1034,0.0865,0.1011,0.0667,0.104,0.0779,0.1003,0.0956,0.0656,0.066,0.0925,0.1057,0.1075,0.0839,0.1038,0.0648,0.1019,0.0772,0.0971,0.0939,0.0646
41220,37,0.0719,0.0954,0.1058,0.1026,0.0847,0.1023,0.0646,0.1033,0.08,0.0969,0.0957,0.0732,0.0732,0.0962,0.1018,0.0981,0.0837,0.1016,0.0751,0.1001,0.0797,0.097,0.0951,0.0642,0.067,0.094,0.1024,0.0983,0.0839,0.1021,0.0656,0.1033,0.0786,0.0976,0.0947,0.0642,0.071,0.0951,0.1075,0.105,0.0864,0.1062,0.0683,0.108,0.0982,0.1009,0.0948,0.0653,0.0658,0.0942,0.112,0.1148,0.0864,0.1039,0.0699,0.1059,0.0813,0.0998,0.0964,0.0643,0.0674,0.0931,0.1158,0.1142,0.0865,0.1056,0.0595,0.1064,0.0835,0.1058,0.098,0.0683,0.0654,0.0939,0.1059,0.1042,0.0873,0.1018,0.07,0.1042,0.0779,0.1021,0.0932,0.0644,0.067,0.0938,0.1058,0.1083,0.0848,0.1045,0.0635,0.1028,0.0778,0.0981,0.0944,0.0673
41310,37,0.0749,0.0955,0.1058,0.1033,0.0847,0.1017,0.0633,0.1018,0.079,0.096,0.0946,0.0705,0.0721,0.0958,0.102,0.0982,0.0835,0.1006,0.0674,0.099,0.0787,0.0961,0.0943,0.067,0.0686,0.094,0.1021,0.098,0.0836,0.101,0.0638,0.1019,0.078,0.0966,0.0942,0.0648,0.0681,0.0949,0.107,0.1041,0.0856,0.1052,0.0685,0.1068,0.0983,0.0991,0.094,0.0654,0.0665,0.0942,0.1116,0.1136,0.0855,0.1032,0.0688,0.1048,0.0812,0.0989,0.0958,0.0624,0.0675,0.0927,0.1162,0.1133,0.0859,0.1047,0.0615,0.1047,0.0836,0.1017,0.0958,0.0652,0.0646,0.0936,0.1054,0.1038,0.0868,0.1012,0.0665,0.1042,0.0778,0.0989,0.0927,0.063,0.0685,0.0925,0.1058,0.1074,0.0838,0.1037,0.0614,0.1011,0.077,0.0964,0.0937,0.0653
41400,37,0.0737,0.0962,0.1066,0.1032,0.0849,0.1026,0.064,0.1032,0.0797,0.0972,0.0957,0.0712,0.0723,0.096,0.102,0.0984,0.0839,0.1014,0.074,0.1,0.0798,0.0971,0.095,0.0649,0.0657,0.0945,0.1027,0.0982,0.0838,0.1019,0.0647,0.103,0.0781,0.0978,0.0949,0.0693,0.0713,0.095,0.107,0.1048,0.0862,0.106,0.0734,0.1083,0.098,0.1012,0.0952,0.063,0.0647,0.0944,0.1116,0.1141,0.0857,0.1034,0.0645,0.1066,0.082,0.1007,0.0971,0.0646,0.0659,0.0933,0.1157,0.1131,0.0868,0.1062,0.0705,0.1068,0.0842,0.1056,0.0972,0.0633,0.0662,0.0938,0.1052,0.1035,0.0867,0.1014,0.0625,0.105,0.0787,0.1023,0.0935,0.0655,0.0693,0.0931,0.1054,0.1075,0.0845,0.1043,0.0672,0.1028,0.0777,0.0982,0.0944,0.0672
41490,37,0.072,0.096,0.1062,0.1029,0.0849,0.1023,0.0629,0.1024,0.0792,0.0962,0.0952,0.0693,0.0716,0.0965,0.1021,0.0989,0.0841,0.1016,0.0687,0.1,0.0797,0.0967,0.0956,0.0631,0.0695,0.0948,0.1027,0.0985,0.0839,0.1012,0.0632,0.1029,0.0778,0.0975,0.095,0.0762,0.0707,0.0956,0.1072,0.1049,0.0861,0.1055,0.0724,0.1081,0.0983,0.1009,0.0956,0.0631,0.0653,0.095,0.1117,0.1136,0.0854,0.1033,0.0646,0.1062,0.0815,0.1004,0.0965,0.0655,0.0677,0.0935,0.1158,0.1136,0.0868,0.1058,0.0669,0.1066,0.0858,0.106,0.0973,0.0653,0.064,0.0943,0.1058,0.1039,0.0872,0.1015,0.0649,0.1048,0.0784,0.1012,0.0928,0.0637,0.0681,0.0933,0.1051,0.1072,0.0844,0.1042,0.0599,0.1024,0.0774,0.0983,0.0947,0.0675
41580,37,0.0746,0.0961,0.1061,0.1029,0.085,0.1019,0.0614,0.101,0.0781,0.0957,0.0937,0.0648,0.0696,0.0956,0.1019,0.0976,0.0837,0.1007,0.0663,0.0986,0.0786,0.096,0.0942,0.0647,0.0677,0.0951,0.1023,0.0981,0.0836,0.1007,0.0622,0.1018,0.0774,0.0961,0.0941,0.0716,0.0668,0.0954,0.1066,0.1037,0.0862,0.1047,0.0707,0.1067,0.0983,0.0995,0.0942,0.063,0.0691,0.0951,0.1115,0.1128,0.0852,0.1027,0.064,0.105,0.0812,0.0988,0.0961,0.0666,0.0678,0.0931,0.116,0.1132,0.0858,0.1049,0.0671,0.105,0.0848,0.102,0.0953,0.0621,0.0644,0.0938,0.105,0.1032,0.0864,0.1005,0.0645,0.1038,0.0782,0.0995,0.0929,0.0672,0.0671,0.0927,0.1051,0.1074,0.0836,0.1037,0.0614,0.1012,0.0772,0.0963,0.094,0.0658
41670,37,0.0757,0.0962,0.1063,0.1029,0.0846,0.102,0.0641,0.1014,0.0786,0.0964,0.0946,0.0718,0.0709,0.0954,0.1018,0.0984,0.0836,0.1008,0.0655,0.0992,0.079,0.0963,0.0943,0.0627,0.0667,0.0946,0.1021,0.0978,0.0835,0.1007,0.0621,0.1018,0.0773,0.0962,0.0945,0.0746,0.0692,0.0953,0.1066,0.1035,0.0858,0.1048,0.0744,0.107,0.0986,0.1,0.0942,0.061,0.0674,0.0946,0.1113,0.1125,0.085,0.1026,0.0638,0.1049,0.0812,0.099,0.0963,0.0687,0.066,0.0933,0.116,0.1125,0.086,0.1047,0.0711,0.1056,0.0851,0.1026,0.0957,0.062,0.0642,0.0941,0.1044,0.1023,0.086,0.1004,0.0623,0.1036,0.0781,0.1005,0.0922,0.0661,0.0691,0.0931,0.1047,0.1066,0.0841,0.1039,0.0627,0.1015,0.0773,0.0966,0.0936,0.0663
41760,37,0.075,0.0962,0.106,0.1026,0.0851,0.1019,0.062,0.1011,0.0787,0.0954,0.0944,0.067,0.0708,0.0963,0.1014,0.0977,0.0835,0.1008,0.0662,0.0988,0.079,0.0958,0.0943,0.0672,0.0687,0.095,0.1018,0.098,0.0836,0.1006,0.0626,0.1015,0.0775,0.0962,0.0943,0.0751,0.0701,0.0955,0.1062,0.1039,0.0857,0.1045,0.0714,0.1068,0.0986,0.0996,0.094,0.0624,0.0679,0.095,0.1115,0.1128,0.0851,0.1027,0.0632,0.1043,0.0811,0.0988,0.0955,0.063,0.0683,0.0934,0.1163,0.1134,0.0856,0.1046,0.0639,0.1049,0.0833,0.102,0.0957,0.0647,0.0648,0.0942,0.1051,0.1034,0.087,0.101,0.0662,0.1037,0.0779,0.0985,0.0921,0.0628,0.0664,0.0933,0.1051,0.1069,0.0838,0.1039,0.0625,0.1015,0.0774,0.0961,0.0934,0.0704
41850,37,0.074,0.0967,0.1067,0.1035,0.0854,0.1031,0.0626,0.102,0.0792,0.0965,0.0949,0.0674,0.0696,0.0966,0.1022,0.0988,0.0843,0.1015,0.0653,0.0993,0.0795,0.0968,0.0948,0.0667,0.068,0.0959,0.1033,0.099,0.0847,0.1016,0.0621,0.103,0.0783,0.0975,0.0949,0.069,0.07,0.0957,0.1074,0.105,0.0867,0.1059,0.0714,0.1082,0.0985,0.1015,0.0946,0.0636,0.0649,0.0953,0.112,0.1142,0.086,0.1034,0.0646,0.1063,0.0818,0.1004,0.097,0.0666,0.0677,0.0937,0.1159,0.1143,0.0869,0.106,0.0685,0.1066,0.0844,0.1044,0.0973,0.0642,0.0651,0.0943,0.1052,0.1035,0.087,0.1012,0.0646,0.1051,0.0785,0.1014,0.0945,0.0683,0.0683,0.0937,0.1057,0.1077,0.0845,0.1044,0.0654,0.1029,0.0779,0.098,0.0943,0.0667
41940,37,0.074,0.0961,0.1059,0.104,0.0847,0.1019,0.062,0.1011,0.0788,0.096,0.0944,0.0688,0.0703,0.096,0.1013,0.0976,0.0837,0.1007,0.0664,0.0992,0.0793,0.096,0.0941,0.0664,0.0663,0.095,0.102,0.0979,0.0836,0.1006,0.0628,0.1016,0.0777,0.0963,0.0943,0.0721,0.0711,0.0956,0.1067,0.1036,0.0859,0.1051,0.0733,0.1076,0.0983,0.0996,0.094,0.0629,0.0683,0.0954,0.1112,0.1123,0.0848,0.1023,0.0632,0.1046,0.0814,0.0992,0.096,0.0686,0.0686,0.0941,0.116,0.1118,0.086,0.1041,0.0719,0.1058,0.0858,0.1025,0.0956,0.0633,0.065,0.0944,0.1047,0.1028,0.0869,0.1007,0.0623,0.104,0.0783,0.0998,0.0925,0.0626,0.0656,0.0936,0.1049,0.1069,0.0843,0.1038,0.0648,0.1015,0.0773,0.0962,0.0934,0.0686
42030,37,0.0743,0.0964,0.1061,0.1027,0.0853,0.1021,0.062,0.1012,0.0789,0.0958,0.0938,0.0654,0.0689,0.0958,0.1015,0.0974,0.0837,0.1006,0.064,0.0987,0.079,0.0958,0.094,0.0685,0.0671,0.0952,0.1023,0.098,0.0839,0.1009,0.062,0.1013,0.0777,0.0962,0.094,0.0697,0.0687,0.0961,0.1065,0.1038,0.086,0.105,0.0683,0.1068,0.098,0.0993,0.0937,0.063,0.0692,0.0955,0.1114,0.1128,0.0854,0.1025,0.0629,0.1047,0.0813,0.099,0.0958,0.0628,0.0664,0.0939,0.1164,0.1131,0.086,0.1044,0.0662,0.1049,0.0843,0.1013,0.0953,0.0653,0.0647,0.0943,0.1048,0.1028,0.0867,0.1009,0.0644,0.1042,0.0786,0.0994,0.0935,0.0643,0.0646,0.0935,0.105,0.1071,0.0842,0.1036,0.0663,0.1012,0.0774,0.096,0.0932,0.069
42120,37,0.074,0.096,0.106,0.1028,0.0851,0.1024,0.0654,0.101,0.0791,0.096,0.0943,0.0679,0.0686,0.0958,0.1014,0.0981,0.0841,0.1009,0.0611,0.0986,0.079,0.0964,0.0937,0.0668,0.0675,0.0953,0.102,0.0979,0.0839,0.1008,0.0612,0.1019,0.078,0.0965,0.0942,0.0686,0.0684,0.0958,0.1065,0.1042,0.0861,0.1051,0.0719,0.107,0.0985,0.1008,0.0937,0.062,0.0667,0.0952,0.1114,0.1129,0.0853,0.1027,0.0653,0.1053,0.0815,0.0989,0.0963,0.064,0.0677,0.0936,0.1165,0.1128,0.0864,0.1049,0.0687,0.105,0.0857,0.1019,0.0949,0.0622,0.0638,0.0942,0.1044,0.1024,0.0867,0.1007,0.0634,0.1043,0.0785,0.0997,0.0927,0.064,0.0679,0.0929,0.1053,0.1072,0.084,0.1035,0.0677,0.1014,0.0773,0.096,0.093,0.0662
42210,37,0.0728,0.0958,0.1057,0.1025,0.0851,0.1019,0.0619,0.1013,0.0795,0.096,0.0945,0.0679,0.0702,0.0955,0.1012,0.0976,0.0836,0.1006,0.068,0.0989,0.0792,0.096,0.0938,0.0643,0.0668,0.0949,0.1016,0.0974,0.0838,0.1006,0.0626,0.1017,0.0781,0.0963,0.0942,0.071,0.0683,0.0959,0.106,0.1038,0.0864,0.1048,0.0726,0.1074,0.0986,0.0997,0.0936,0.0628,0.0664,0.095,0.1111,0.1129,0.0854,0.103,0.0651,0.1049,0.0816,0.0988,0.0955,0.0624,0.0679,0.0939,0.1164,0.1124,0.0864,0.1045,0.0643,0.1048,0.0854,0.1023,0.0952,0.0661,0.0647,0.0942,0.1046,0.1027,0.0872,0.1011,0.0649,0.1041,0.0787,0.0995,0.0918,0.0626,0.0667,0.0939,0.105,0.1071,0.0845,0.1034,0.0638,0.1009,0.077,0.0961,0.093,0.0699
42300,37,0.0744,0.0962,0.1059,0.1029,0.0855,0.1021,0.0619,0.1012,0.079,0.0956,0.0938,0.0647,0.069,0.0962,0.1019,0.0978,0.084,0.1008,0.063,0.0986,0.0792,0.0955,0.0938,0.0666,0.0682,0.0955,0.102,0.0979,0.0843,0.101,0.0619,0.1017,0.078,0.0962,0.094,0.0668,0.0673,0.0959,0.1066,0.1035,0.0863,0.1046,0.0688,0.1067,0.0983,0.0992,0.0936,0.0626,0.0675,0.0954,0.1114,0.113,0.0856,0.1029,0.0638,0.1049,0.0815,0.099,0.0958,0.0636,0.0672,0.094,0.1166,0.1132,0.0862,0.1044,0.0676,0.1049,0.0846,0.1018,0.0954,0.0649,0.0646,0.0942,0.1046,0.1027,0.0868,0.1008,0.0632,0.1043,0.0788,0.1002,0.0925,0.0644,0.0681,0.094,0.1055,0.1072,0.0845,0.1038,0.0696,0.1014,0.0778,0.0956,0.093,0.0674
42390,37,0.0742,0.0955,0.1058,0.1026,0.0852,0.1025,0.0693,0.102,0.0797,0.096,0.0939,0.0634,0.0716,0.0954,0.1014,0.0984,0.084,0.1009,0.0629,0.0984,0.0787,0.0956,0.0932,0.0719,0.0656,0.0955,0.1024,0.0985,0.0846,0.1008,0.0672,0.1019,0.0776,0.0958,0.0936,0.0659,0.0676,0.0956,0.107,0.1041,0.0864,0.1051,0.0684,0.1066,0.0985,0.0997,0.0938,0.0628,0.0684,0.0956,0.1115,0.1126,0.0855,0.1024,0.0623,0.1056,0.0814,0.0994,0.0962,0.0663,0.0677,0.0941,0.1166,0.1123,0.0864,0.1047,0.0734,0.1053,0.084,0.1027,0.0952,0.0635,0.0646,0.0946,0.1044,0.1019,0.0862,0.1004,0.0616,0.1038,0.0789,0.1017,0.0925,0.0673,0.0703,0.0941,0.1052,0.1065,0.0848,0.1034,0.0725,0.1014,0.0778,0.0961,0.0931,0.0632
42480,37,0.0706,0.0953,0.1059,0.1026,0.0855,0.1032,0.0714,0.1032,0.0808,0.0965,0.0944,0.0642,0.0723,0.0961,0.1016,0.0986,0.0844,0.1013,0.0617,0.0993,0.0791,0.0964,0.0939,0.07,0.0653,0.0959,0.1029,0.0988,0.0853,0.1016,0.0668,0.1021,0.078,0.0965,0.0938,0.0672,0.069,0.0962,0.1071,0.1043,0.0872,0.1057,0.0663,0.1074,0.0986,0.1017,0.0948,0.0674,0.0697,0.096,0.1122,0.1143,0.0865,0.1032,0.0625,0.1059,0.0815,0.1004,0.0967,0.0678,0.0673,0.0946,0.1164,0.1132,0.087,0.1049,0.0682,0.1063,0.0838,0.1067,0.0978,0.0643,0.0669,0.095,0.1051,0.1029,0.0873,0.1011,0.061,0.1048,0.079,0.1028,0.0932,0.0667,0.0704,0.0952,0.1051,0.1068,0.0853,0.1043,0.069,0.1024,0.0777,0.0981,0.0939,0.0671
42570,37,0.0703,0.0949,0.105,0.102,0.085,0.102,0.0705,0.1022,0.0803,0.0958,0.0932,0.0655,0.0697,0.0958,0.1008,0.0974,0.0839,0.101,0.06,0.0983,0.0791,0.0952,0.0935,0.0706,0.0657,0.0953,0.1021,0.0983,0.0851,0.1015,0.0751,0.1015,0.078,0.0954,0.0928,0.0647,0.0669,0.096,0.1069,0.1044,0.0866,0.1047,0.0646,0.1059,0.0991,0.0987,0.0936,0.0692,0.0686,0.096,0.1123,0.1138,0.0863,0.1025,0.0656,0.1044,0.0808,0.0988,0.0956,0.0682,0.0651,0.0942,0.1168,0.1132,0.0862,0.1043,0.0688,0.105,0.0835,0.1027,0.0955,0.0607,0.0651,0.0947,0.1048,0.1026,0.0867,0.1004,0.0623,0.1038,0.0784,0.1007,0.0925,0.0659,0.0672,0.0943,0.1054,0.1067,0.0845,0.1038,0.0698,0.1013,0.0778,0.0962,0.0933,0.0641
42660,37,0.073,0.0953,0.1054,0.1022,0.0848,0.1021,0.0734,0.1028,0.0801,0.0961,0.0938,0.0639,0.0719,0.0956,0.1008,0.0974,0.084,0.101,0.0611,0.0985,0.0789,0.0956,0.0934,0.0683,0.0654,0.0948,0.1021,0.0981,0.0847,0.1011,0.0762,0.1014,0.0776,0.0953,0.0928,0.064,0.0676,0.0956,0.1072,0.1041,0.0862,0.105,0.0612,0.1066,0.099,0.0993,0.0938,0.0676,0.0668,0.0959,0.1125,0.1142,0.0866,0.1027,0.0693,0.1044,0.0809,0.0984,0.0956,0.0685,0.0646,0.0941,0.1172,0.1129,0.0862,0.1044,0.0652,0.1049,0.0831,0.1041,0.0957,0.0646,0.0658,0.0949,0.1047,0.1019,0.0862,0.1001,0.0611,0.1036,0.0782,0.1012,0.0923,0.0679,0.068,0.0943,0.1048,0.1063,0.0848,0.1035,0.0706,0.1013,0.0778,0.0972,0.0935,0.0633
42750,37,0.0743,0.0954,0.1056,0.1025,0.0857,0.1029,0.0726,0.1033,0.0802,0.0964,0.0943,0.0634,0.0717,0.0958,0.101,0.098,0.0843,0.1012,0.062,0.0994,0.0795,0.0961,0.0942,0.0682,0.0652,0.0955,0.1027,0.0984,0.0853,0.102,0.0746,0.1022,0.0782,0.0959,0.0932,0.0666,0.0675,0.0962,0.1075,0.1048,0.0873,0.1058,0.065,0.1072,0.0986,0.1014,0.0948,0.0674,0.0675,0.0963,0.1129,0.1152,0.087,0.1031,0.0652,0.1053,0.0811,0.0997,0.0963,0.069,0.062,0.0947,0.1167,0.1142,0.0871,0.1054,0.0652,0.1058,0.0843,0.1072,0.0976,0.066,0.0656,0.0956,0.1051,0.103,0.0871,0.1011,0.0611,0.1044,0.0788,0.1032,0.0935,0.0665,0.071,0.0946,0.1047,0.1068,0.0855,0.1041,0.066,0.1019,0.0777,0.0984,0.0939,0.0665
42840,37,0.0801,0.0958,0.1058,0.1031,0.0854,0.1022,0.0704,0.1015,0.0795,0.0953,0.0929,0.0659,0.0702,0.0958,0.1011,0.0984,0.0841,0.1008,0.0634,0.0982,0.0787,0.0951,0.0936,0.0726,0.0665,0.0955,0.1024,0.0982,0.0848,0.1008,0.0696,0.101,0.0772,0.0949,0.0926,0.0668,0.068,0.0959,0.1072,0.1039,0.0866,0.1049,0.0654,0.1062,0.099,0.099,0.0937,0.0661,0.0676,0.0965,0.1124,0.1138,0.0862,0.1024,0.0642,0.104,0.0808,0.0985,0.0954,0.0691,0.0674,0.0945,0.117,0.1129,0.0862,0.1038,0.0644,0.1048,0.0824,0.1036,0.0961,0.0648,0.0651,0.0952,0.1049,0.1024,0.0867,0.1004,0.0619,0.1037,0.0782,0.1004,0.0924,0.0659,0.0686,0.0941,0.1048,0.1058,0.0845,0.1035,0.066,0.1008,0.0774,0.0962,0.093,0.0637
42930,37,0.0762,0.096,0.1058,0.1025,0.0854,0.1024,0.071,0.1019,0.0796,0.0964,0.0938,0.0638,0.0707,0.0954,0.1014,0.0979,0.0842,0.101,0.0631,0.0984,0.0789,0.0957,0.0936,0.0709,0.0659,0.0956,0.1022,0.0982,0.0848,0.1008,0.0714,0.1012,0.0774,0.0952,0.093,0.0677,0.0699,0.0959,0.107,0.1045,0.0865,0.1052,0.065,0.1062,0.0993,0.0996,0.0937,0.0661,0.0675,0.096,0.112,0.1131,0.0857,0.1019,0.0612,0.1045,0.0809,0.0988,0.0958,0.0718,0.0655,0.0943,0.1168,0.1123,0.0863,0.1041,0.0688,0.1051,0.083,0.1038,0.0958,0.0636,0.0649,0.095,0.1045,0.1022,0.086,0.0998,0.0611,0.1038,0.0785,0.1013,0.0922,0.0676,0.0698,0.0938,0.1045,0.1062,0.0847,0.1035,0.068,0.1012,0.0775,0.0966,0.093,0.0638
43020,37,0.071,0.0951,0.105,0.1017,0.085,0.1018,0.0708,0.1019,0.0794,0.0955,0.0934,0.0642,0.0727,0.0956,0.1007,0.0974,0.0842,0.1006,0.0642,0.098,0.079,0.0953,0.0933,0.0703,0.0648,0.095,0.1022,0.0977,0.0846,0.1011,0.0727,0.101,0.0776,0.0951,0.0925,0.0657,0.0681,0.096,0.1065,0.1042,0.0863,0.1048,0.0648,0.1062,0.0996,0.0992,0.0935,0.0685,0.0682,0.0963,0.112,0.1129,0.0863,0.1021,0.0654,0.1034,0.0804,0.0977,0.0951,0.0692,0.0661,0.0947,0.1172,0.1132,0.0861,0.1037,0.0649,0.1042,0.0834,0.1043,0.0962,0.0678,0.0682,0.0953,0.1051,0.1027,0.087,0.1005,0.0656,0.1031,0.0778,0.0999,0.0915,0.0664,0.0677,0.095,0.105,0.106,0.0849,0.1038,0.0619,0.1014,0.0775,0.0968,0.0933,0.0656
43110,37,0.0723,0.0956,0.1054,0.1019,0.0854,0.1022,0.0677,0.1019,0.0801,0.0956,0.0932,0.0649,0.069,0.0956,0.1009,0.0972,0.0841,0.1005,0.0642,0.0983,0.0787,0.0954,0.0931,0.0701,0.0655,0.0951,0.1019,0.0976,0.0849,0.1012,0.0767,0.1012,0.0781,0.095,0.0921,0.0671,0.0703,0.0955,0.1069,0.1039,0.0864,0.1052,0.0623,0.1063,0.099,0.0985,0.0932,0.0691,0.0664,0.0962,0.1124,0.1142,0.0869,0.1024,0.0704,0.1032,0.0804,0.098,0.0947,0.0647,0.0652,0.0942,0.1174,0.113,0.0861,0.1043,0.0631,0.1042,0.0848,0.1035,0.096,0.0662,0.0655,0.0955,0.1052,0.103,0.0876,0.1008,0.0695,0.1033,0.0779,0.0993,0.092,0.064,0.0681,0.0948,0.105,0.1071,0.085,0.1038,0.0642,0.1013,0.0778,0.096,0.0932,0.065
43200,37,0.0736,0.0957,0.1052,0.1014,0.0848,0.1022,0.0716,0.102,0.0802,0.0964,0.0944,0.066,0.0707,0.0952,0.1003,0.0976,0.084,0.1008,0.0627,0.0986,0.079,0.0956,0.0928,0.0687,0.0654,0.0951,0.1022,0.0979,0.0849,0.1014,0.0777,0.1014,0.0782,0.0953,0.0926,0.0641,0.0679,0.0951,0.1067,0.1042,0.0864,0.1054,0.062,0.1062,0.0994,0.0991,0.093,0.0698,0.0656,0.096,0.1126,0.1144,0.0865,0.1028,0.0754,0.1037,0.0806,0.0978,0.0952,0.0678,0.066,0.0945,0.1174,0.1139,0.0867,0.1045,0.0606,0.1047,0.0787,0.1035,0.0955,0.0653,0.0653,0.0951,0.1046,0.1021,0.0868,0.1005,0.0605,0.1036,0.0786,0.1013,0.0922,0.0666,0.0672,0.0942,0.1048,0.1062,0.085,0.1036,0.0697,0.1015,0.0778,0.0962,0.093,0.0645
43290,37,0.0707,0.0954,0.105,0.1023,0.0847,0.1017,0.068,0.102,0.0801,0.0959,0.0938,0.0645,0.0704,0.0954,0.1005,0.0975,0.0842,0.1007,0.0639,0.0985,0.0796,0.0952,0.0932,0.0684,0.0658,0.0952,0.1018,0.0976,0.085,0.1013,0.0734,0.1011,0.0779,0.0953,0.0927,0.065,0.0691,0.0964,0.107,0.1041,0.0865,0.105,0.0649,0.1064,0.0996,0.0995,0.093,0.0688,0.0673,0.096,0.112,0.1132,0.0871,0.1021,0.0641,0.1041,0.0809,0.0985,0.0955,0.0688,0.0687,0.0948,0.1175,0.1131,0.0867,0.1042,0.0668,0.1052,0.0839,0.1031,0.0955,0.066,0.067,0.095,0.1044,0.1019,0.0867,0.1006,0.0611,0.1034,0.0786,0.101,0.0918,0.0637,0.0692,0.0944,0.1047,0.1064,0.0853,0.1038,0.0667,0.1011,0.0772,0.0964,0.0925,0.0658
43380,37,0.0719,0.0954,0.1052,0.1021,0.0855,0.1024,0.0691,0.1012,0.0799,0.0956,0.0932,0.0656,0.0675,0.0953,0.1009,0.0983,0.0844,0.1007,0.0631,0.0979,0.0794,0.0951,0.0928,0.073,0.0662,0.0953,0.102,0.098,0.0851,0.1007,0.0701,0.1011,0.0779,0.0953,0.0925,0.0642,0.0674,0.0959,0.1069,0.104,0.087,0.1048,0.0618,0.1062,0.0992,0.0993,0.093,0.0678,0.0687,0.0961,0.112,0.1132,0.0865,0.1023,0.0648,0.1042,0.0813,0.0988,0.0954,0.0647,0.0646,0.0948,0.1175,0.1135,0.0866,0.1044,0.0672,0.1049,0.0837,0.1019,0.0952,0.066,0.0644,0.0948,0.1044,0.102,0.0869,0.1004,0.0628,0.104,0.0787,0.1009,0.0924,0.0672,0.0693,0.0945,0.1046,0.1066,0.0851,0.1038,0.0697,0.1012,0.0777,0.0962,0.0927,0.0653
43470,37,0.0727,0.0959,0.106,0.1023,0.0861,0.1031,0.074,0.103,0.0806,0.0963,0.094,0.0648,0.0688,0.0958,0.1017,0.0981,0.0851,0.1013,0.0611,0.0991,0.0799,0.0956,0.0937,0.071,0.0662,0.096,0.1027,0.0986,0.0858,0.1016,0.0708,0.1024,0.0783,0.0964,0.0937,0.0663,0.0704,0.0963,0.1072,0.1048,0.0876,0.1059,0.07,0.1079,0.0989,0.102,0.0942,0.0644,0.0671,0.0956,0.1118,0.114,0.0864,0.103,0.0636,0.1065,0.0825,0.1013,0.0966,0.0668,0.0672,0.0949,0.1171,0.1138,0.0883,0.1052,0.0722,0.1075,0.0843,0.1059,0.097,0.0638,0.0655,0.095,0.1044,0.1017,0.0871,0.1011,0.0623,0.1052,0.08,0.1048,0.0935,0.0665,0.068,0.0939,0.105,0.1068,0.0859,0.1042,0.071,0.1023,0.0781,0.0975,0.0932,0.064
43560,37,0.0703,0.0956,0.1058,0.1032,0.0862,0.103,0.0691,0.1026,0.0805,0.0961,0.0938,0.0644,0.0699,0.096,0.1014,0.0985,0.0848,0.1013,0.0612,0.099,0.0804,0.0958,0.0937,0.0688,0.0655,0.0959,0.1025,0.0982,0.0854,0.1014,0.0635,0.1023,0.0786,0.0968,0.0938,0.0695,0.0687,0.0965,0.1067,0.1038,0.0874,0.1052,0.0742,0.1079,0.0992,0.1021,0.0942,0.0675,0.0693,0.0957,0.1118,0.1138,0.0865,0.1028,0.0622,0.1062,0.0822,0.1009,0.0964,0.068,0.0666,0.0953,0.1169,0.114,0.0878,0.1053,0.072,0.1066,0.0862,0.1066,0.097,0.0655,0.066,0.0951,0.1048,0.1028,0.0877,0.1012,0.0613,0.105,0.0796,0.104,0.0932,0.0645,0.0691,0.0948,0.1047,0.1067,0.0856,0.1043,0.0698,0.1025,0.0783,0.098,0.0934,0.066
43650,37,0.0742,0.0952,0.1054,0.1023,0.0859,0.102,0.0692,0.1017,0.0801,0.0956,0.093,0.0649,0.0696,0.0955,0.1009,0.0981,0.0843,0.1006,0.0626,0.0977,0.0794,0.0949,0.0932,0.0728,0.0673,0.0955,0.102,0.0982,0.0855,0.1008,0.0691,0.1011,0.078,0.0954,0.0928,0.0643,0.0664,0.0962,0.1064,0.104,0.0874,0.1044,0.0629,0.1065,0.099,0.0994,0.0933,0.0647,0.0691,0.0961,0.1121,0.1137,0.0865,0.1022,0.0637,0.1045,0.0817,0.099,0.0955,0.0674,0.0655,0.0946,0.1177,0.1131,0.0871,0.1042,0.0712,0.1052,0.0841,0.1031,0.0955,0.0626,0.0641,0.0946,0.104,0.1023,0.0871,0.1004,0.0621,0.1041,0.0794,0.1015,0.0923,0.0665,0.0692,0.0945,0.1048,0.1064,0.0854,0.1036,0.0706,0.1011,0.0781,0.096,0.093,0.0638
43740,37,0.0706,0.0956,0.1056,0.1026,0.0861,0.103,0.0746,0.1031,0.081,0.0961,0.0941,0.0642,0.0721,0.0952,0.1012,0.0982,0.0849,0.1011,0.0615,0.0988,0.08,0.0956,0.0936,0.0721,0.0653,0.0955,0.1028,0.0986,0.0857,0.1018,0.0739,0.1025,0.0789,0.0967,0.0937,0.0662,0.0686,0.0962,0.1072,0.1046,0.0872,0.1056,0.0693,0.1075,0.0988,0.1016,0.0945,0.0651,0.0662,0.0959,0.1125,0.1146,0.087,0.1029,0.0608,0.1059,0.082,0.1007,0.0965,0.0713,0.0669,0.0957,0.1177,0.1146,0.0884,0.1058,0.074,0.1073,0.0847,0.108,0.0973,0.0645,0.0654,0.0951,0.1047,0.1023,0.0873,0.1007,0.0606,0.1042,0.0794,0.1052,0.0933,0.0704,0.068,0.0947,0.1053,0.1068,0.0862,0.1043,0.0726,0.1026,0.0784,0.098,0.0942,0.0633
43830,37,0.0692,0.0956,0.1051,0.1017,0.0855,0.1023,0.0675,0.1028,0.0811,0.0963,0.0943,0.0691,0.0721,0.0962,0.1006,0.0972,0.0846,0.101,0.0711,0.0991,0.0802,0.0958,0.0936,0.0693,0.0646,0.0949,0.1013,0.0972,0.0851,0.1019,0.0684,0.1025,0.079,0.0968,0.0928,0.0633,0.0706,0.096,0.1065,0.105,0.0873,0.1057,0.0625,0.1078,0.0983,0.1012,0.0941,0.069,0.0657,0.0955,0.1124,0.1155,0.0879,0.1036,0.0752,0.105,0.0816,0.0994,0.0954,0.065,0.0682,0.0948,0.1178,0.116,0.088,0.1055,0.0612,0.1059,0.0851,0.1073,0.0977,0.0676,0.0645,0.0955,0.1056,0.1042,0.0886,0.1016,0.0696,0.1043,0.0786,0.1032,0.0927,0.0671,0.0686,0.0943,0.1046,0.1069,0.0857,0.1039,0.0612,0.1018,0.0778,0.0983,0.0937,0.0669
43920,37,0.0716,0.0957,0.1052,0.1019,0.0855,0.1016,0.064,0.1015,0.08,0.0956,0.0936,0.0684,0.0733,0.0959,0.1003,0.0966,0.0843,0.1003,0.0665,0.0981,0.0795,0.0954,0.0931,0.067,0.0679,0.0948,0.1015,0.0972,0.0846,0.101,0.0681,0.1016,0.079,0.096,0.0924,0.065,0.0694,0.0956,0.1062,0.1037,0.0868,0.1054,0.0625,0.1064,0.0991,0.099,0.0927,0.0655,0.0651,0.0954,0.1125,0.1147,0.0872,0.1031,0.0718,0.1043,0.0814,0.0981,0.0948,0.0634,0.0676,0.0941,0.1177,0.1135,0.0873,0.1043,0.0607,0.1045,0.0834,0.1031,0.0953,0.068,0.0648,0.0947,0.1044,0.103,0.088,0.1005,0.0684,0.1036,0.0782,0.0996,0.0919,0.067,0.064,0.0934,0.1049,0.1067,0.0853,0.1031,0.062,0.1008,0.0778,0.0965,0.0929,0.0665
44010,37,0.0701,0.0953,0.105,0.1015,0.0851,0.1012,0.0641,0.1014,0.0797,0.0954,0.0937,0.0704,0.0728,0.0956,0.1,0.0967,0.0843,0.0998,0.0714,0.0984,0.0798,0.0953,0.0935,0.0634,0.0641,0.0946,0.1014,0.0968,0.0845,0.1011,0.0674,0.102,0.0786,0.0961,0.0929,0.0643,0.0708,0.0957,0.1055,0.1034,0.0866,0.105,0.0678,0.1068,0.0989,0.0989,0.0929,0.0656,0.065,0.0952,0.1117,0.1137,0.0867,0.1027,0.0678,0.1046,0.0816,0.098,0.0946,0.0638,0.068,0.0949,0.1183,0.1136,0.0876,0.1044,0.0607,0.1051,0.0836,0.1038,0.0958,0.068,0.0641,0.0949,0.1046,0.1028,0.088,0.1009,0.0689,0.1037,0.0784,0.0995,0.0914,0.0643,0.0666,0.0943,0.1053,0.1069,0.0856,0.1035,0.0611,0.1007,0.0776,0.0967,0.0929,0.0647
44100,37,0.0729,0.0962,0.1058,0.1021,0.0858,0.102,0.0634,0.1021,0.0803,0.0958,0.0953,0.0685,0.072,0.0962,0.1007,0.0971,0.0847,0.1007,0.068,0.0986,0.0804,0.0958,0.0938,0.0697,0.0676,0.0953,0.1018,0.0971,0.0848,0.1014,0.0643,0.1026,0.0792,0.0971,0.0931,0.0636,0.071,0.0963,0.1062,0.1041,0.0874,0.1056,0.0658,0.1078,0.0987,0.1012,0.0939,0.0682,0.0655,0.0958,0.1124,0.1151,0.0876,0.1037,0.0697,0.1056,0.0821,0.0997,0.0952,0.0638,0.0698,0.0949,0.1177,0.115,0.0882,0.1058,0.0616,0.1062,0.0786,0.1058,0.0974,0.0695,0.0651,0.0954,0.1054,0.104,0.0889,0.1016,0.0707,0.1047,0.0788,0.1013,0.0925,0.0638,0.0655,0.0945,0.1056,0.1076,0.0859,0.1042,0.0607,0.1024,0.078,0.0983,0.0949,0.0667
44190,37,0.0702,0.0957,0.1051,0.1019,0.0853,0.1015,0.0645,0.1015,0.08,0.0957,0.0933,0.0665,0.0735,0.0953,0.1002,0.0963,0.0846,0.1003,0.0674,0.0983,0.0797,0.0952,0.0929,0.0681,0.064,0.0947,0.1019,0.0974,0.085,0.1014,0.0759,0.1017,0.0792,0.0958,0.0924,0.0633,0.0711,0.0955,0.1061,0.1043,0.0871,0.1051,0.0616,0.1065,0.0992,0.0992,0.0926,0.0675,0.0662,0.0959,0.1125,0.1146,0.0874,0.1028,0.0745,0.1039,0.0812,0.0979,0.0946,0.0641,0.0658,0.095,0.1185,0.1144,0.0876,0.1045,0.0604,0.1048,0.0784,0.1034,0.0954,0.0676,0.0651,0.0953,0.1048,0.1026,0.0876,0.1003,0.0658,0.103,0.0782,0.1007,0.0923,0.0686,0.0668,0.0942,0.1047,0.1064,0.0856,0.1036,0.0669,0.1014,0.0781,0.0965,0.0927,0.0638
44280,37,0.0685,0.0959,0.1055,0.1017,0.0854,0.1023,0.0674,0.1028,0.081,0.0963,0.095,0.0744,0.0739,0.0956,0.1004,0.097,0.0848,0.1011,0.0683,0.0987,0.0803,0.096,0.0933,0.0666,0.0644,0.0949,0.1019,0.0975,0.0853,0.102,0.072,0.1023,0.0793,0.0966,0.0926,0.0651,0.0676,0.0962,0.1064,0.1043,0.0874,0.1055,0.0615,0.1074,0.099,0.1017,0.0936,0.0695,0.0666,0.0957,0.1124,0.1152,0.0879,0.1035,0.0722,0.1048,0.0818,0.0995,0.0947,0.065,0.0666,0.0948,0.1176,0.1156,0.0881,0.1052,0.0607,0.1062,0.0838,0.1073,0.0978,0.0693,0.0653,0.0953,0.1052,0.1036,0.0887,0.1013,0.0713,0.1042,0.0782,0.1024,0.0922,0.0647,0.0679,0.0948,0.1052,0.1073,0.0862,0.1045,0.0612,0.1022,0.0781,0.0986,0.0935,0.066
44370,37,0.0697,0.0957,0.1048,0.1016,0.0853,0.1015,0.0636,0.101,0.0802,0.0954,0.093,0.0638,0.0724,0.0955,0.0999,0.0959,0.0844,0.1,0.0625,0.0981,0.0793,0.0949,0.0925,0.0709,0.065,0.0948,0.1013,0.097,0.0849,0.101,0.0725,0.101,0.0791,0.0955,0.0918,0.0659,0.071,0.0955,0.1058,0.1037,0.087,0.1051,0.0608,0.1063,0.0977,0.0986,0.0923,0.0682,0.0661,0.0956,0.1121,0.1145,0.0874,0.1029,0.0731,0.1031,0.0812,0.0974,0.0938,0.065,0.0693,0.0942,0.1183,0.1148,0.0874,0.1049,0.0648,0.104,0.0821,0.1034,0.0952,0.0688,0.0648,0.0951,0.1048,0.1032,0.0884,0.1009,0.0696,0.1037,0.0783,0.099,0.0912,0.0632,0.0651,0.0943,0.1051,0.1074,0.0856,0.1038,0.0617,0.1008,0.0779,0.0966,0.0932,0.0659
44460,37,0.0721,0.0963,0.1055,0.1017,0.0855,0.1015,0.0642,0.101,0.0802,0.0956,0.0937,0.0697,0.0726,0.0957,0.1002,0.0967,0.0848,0.1004,0.0689,0.0983,0.0798,0.0953,0.0928,0.0653,0.0658,0.0949,0.1012,0.0967,0.0846,0.1006,0.0656,0.1017,0.0789,0.0961,0.0928,0.0664,0.0706,0.0958,0.1058,0.1031,0.0868,0.1052,0.0689,0.1067,0.099,0.1001,0.0928,0.0652,0.066,0.0955,0.1115,0.1134,0.0865,0.1025,0.0656,0.105,0.0823,0.0988,0.0947,0.0623,0.0662,0.0948,0.1183,0.1136,0.0881,0.105,0.0686,0.1054,0.0834,0.1029,0.0952,0.0661,0.0639,0.0944,0.1036,0.102,0.0876,0.1005,0.0639,0.104,0.0789,0.0998,0.0915,0.062,0.067,0.0938,0.1052,0.1068,0.0856,0.1036,0.0637,0.101,0.0776,0.096,0.0925,0.0675
44550,37,0.0702,0.0966,0.106,0.104,0.0866,0.1028,0.0646,0.1016,0.0804,0.0952,0.094,0.0676,0.0692,0.0962,0.1012,0.0973,0.0853,0.1009,0.0658,0.0986,0.0804,0.0955,0.0937,0.0669,0.0681,0.0959,0.1015,0.0976,0.0857,0.1005,0.0642,0.1022,0.0788,0.0966,0.0935,0.0724,0.0703,0.0963,0.1065,0.1041,0.0876,0.1054,0.0718,0.1077,0.0978,0.1019,0.0941,0.0633,0.0686,0.096,0.1119,0.1139,0.087,0.1027,0.0628,0.106,0.0826,0.1005,0.0955,0.0657,0.0686,0.095,0.1178,0.1142,0.0886,0.1058,0.0678,0.1067,0.0848,0.1065,0.0975,0.0674,0.0643,0.095,0.1044,0.103,0.0887,0.1014,0.0654,0.1053,0.0795,0.1026,0.0922,0.0625,0.0688,0.0944,0.1052,0.1073,0.0861,0.1041,0.0619,0.1017,0.078,0.0984,0.0934,0.0711
44640,37,0.0745,0.0964,0.1058,0.1026,0.0864,0.1021,0.0651,0.1002,0.0797,0.0952,0.0926,0.0657,0.0692,0.0956,0.1006,0.0968,0.0846,0.1,0.0639,0.0977,0.0793,0.0949,0.0928,0.0678,0.0678,0.0955,0.1011,0.0971,0.0851,0.1002,0.0627,0.1013,0.0785,0.0956,0.0926,0.068,0.0686,0.0958,0.1061,0.1035,0.0874,0.1045,0.0674,0.106,0.0982,0.0996,0.0929,0.0637,0.0674,0.0956,0.1118,0.1134,0.0868,0.1024,0.0669,0.1051,0.0822,0.0988,0.0946,0.0622,0.0693,0.0947,0.1183,0.1137,0.088,0.1046,0.0674,0.105,0.08,0.1029,0.0949,0.0653,0.0645,0.0943,0.1037,0.1027,0.0882,0.1004,0.066,0.1045,0.0793,0.1001,0.0919,0.0636,0.0656,0.0937,0.105,0.1072,0.0851,0.1033,0.0648,0.1011,0.0778,0.0958,0.0924,0.0697
44730,37,0.0693,0.0964,0.1061,0.1029,0.0864,0.1025,0.0646,0.1025,0.0806,0.0957,0.0937,0.0654,0.0701,0.0958,0.1005,0.0972,0.0854,0.1011,0.0667,0.0986,0.0803,0.0956,0.0936,0.066,0.0672,0.0954,0.1015,0.0973,0.0855,0.1009,0.0633,0.1029,0.0791,0.0972,0.0936,0.0667,0.0719,0.0959,0.1064,0.1041,0.0877,0.1058,0.0716,0.1078,0.0981,0.102,0.094,0.0651,0.0649,0.0953,0.1117,0.114,0.0871,0.1027,0.0653,0.1065,0.083,0.101,0.096,0.0645,0.0661,0.0949,0.118,0.1139,0.0893,0.1061,0.0711,0.1069,0.0858,0.1062,0.0967,0.0648,0.0642,0.0946,0.1039,0.1024,0.0883,0.1009,0.0629,0.1054,0.08,0.1035,0.0929,0.0633,0.0663,0.0937,0.1052,0.107,0.0862,0.104,0.0678,0.102,0.0782,0.0983,0.0931,0.0657
44820,37,0.0707,0.0962,0.1059,0.1024,0.0866,0.1025,0.0642,0.1017,0.0803,0.0954,0.0936,0.0662,0.0688,0.096,0.1007,0.0972,0.0851,0.1009,0.0643,0.0985,0.08,0.0956,0.0937,0.066,0.0694,0.0953,0.1014,0.0973,0.0857,0.1004,0.0632,0.1024,0.079,0.097,0.0933,0.0706,0.0713,0.0962,0.1062,0.1042,0.0878,0.1053,0.0729,0.1076,0.0989,0.1022,0.0941,0.0648,0.0684,0.0956,0.1119,0.114,0.0872,0.103,0.064,0.1062,0.083,0.1007,0.0952,0.0629,0.068,0.0952,0.1181,0.1143,0.089,0.1056,0.0678,0.1066,0.0798,0.1063,0.0975,0.0675,0.0642,0.0946,0.1042,0.103,0.0887,0.1009,0.0641,0.1052,0.08,0.1036,0.0921,0.0634,0.0662,0.0938,0.1048,0.1068,0.0862,0.1038,0.0622,0.1013,0.0776,0.0984,0.0934,0.07
44910,37,0.0734,0.0959,0.1056,0.103,0.0865,0.1022,0.0657,0.1003,0.08,0.0951,0.0923,0.0662,0.0698,0.0956,0.1006,0.0971,0.0849,0.0999,0.0637,0.0973,0.0794,0.0947,0.0928,0.0699,0.067,0.0955,0.1014,0.0975,0.0856,0.1002,0.066,0.1013,0.0783,0.0955,0.0925,0.0694,0.0691,0.096,0.1059,0.1034,0.0873,0.1044,0.0682,0.1064,0.0989,0.1,0.0927,0.067,0.0693,0.0957,0.1119,0.1134,0.0868,0.102,0.0636,0.1049,0.0822,0.0992,0.095,0.0663,0.0678,0.0951,0.1188,0.1135,0.0883,0.1052,0.0707,0.1055,0.0859,0.1037,0.0952,0.0654,0.0637,0.0944,0.1036,0.102,0.0877,0.0999,0.0627,0.1045,0.0796,0.1012,0.0919,0.0665,0.0673,0.0941,0.105,0.1066,0.0861,0.1034,0.0697,0.1008,0.0781,0.0959,0.0924,0.0657
45000,37,0.0734,0.0962,0.106,0.1027,0.0868,0.1028,0.0693,0.1022,0.0804,0.0958,0.0937,0.068,0.0706,0.0955,0.1006,0.0972,0.0852,0.101,0.0617,0.0982,0.08,0.0953,0.0935,0.0695,0.0662,0.0957,0.1018,0.0976,0.0859,0.1008,0.062,0.1028,0.0788,0.0971,0.0936,0.0702,0.0703,0.0961,0.106,0.1036,0.0877,0.1057,0.0741,0.1079,0.099,0.1025,0.094,0.0623,0.0679,0.0956,0.1117,0.1139,0.0871,0.1026,0.0642,0.1066,0.0831,0.1012,0.096,0.067,0.0684,0.0956,0.1183,0.114,0.0893,0.1059,0.0739,0.1069,0.0799,0.1073,0.0973,0.0644,0.0646,0.0948,0.1039,0.1021,0.0879,0.1003,0.0633,0.105,0.08,0.1062,0.0928,0.0679,0.0686,0.0945,0.1046,0.1065,0.0869,0.104,0.0687,0.1018,0.0782,0.0994,0.0931,0.0639
45090,37,0.0726,0.0958,0.1053,0.1022,0.0862,0.1014,0.064,0.1008,0.0798,0.0943,0.0926,0.0646,0.07,0.0958,0.1004,0.0969,0.0848,0.1003,0.0634,0.0979,0.0798,0.0945,0.0928,0.0683,0.068,0.0951,0.1008,0.0969,0.085,0.0999,0.0612,0.1012,0.0782,0.0954,0.0928,0.0733,0.0704,0.0959,0.1058,0.1028,0.0874,0.1045,0.071,0.1064,0.0988,0.0999,0.0928,0.0652,0.0698,0.0958,0.1114,0.1129,0.0866,0.1019,0.0627,0.1044,0.082,0.0985,0.0945,0.0651,0.0684,0.0952,0.1188,0.1131,0.0878,0.1048,0.0687,0.1051,0.0849,0.1038,0.0953,0.0661,0.0645,0.0945,0.1038,0.102,0.0879,0.1001,0.0619,0.1036,0.0792,0.1011,0.0916,0.0653,0.0674,0.0942,0.1048,0.1064,0.0862,0.1036,0.0627,0.1005,0.0776,0.0964,0.0922,0.0653
45180,37,0.0737,0.0959,0.1054,0.1022,0.0864,0.1022,0.0712,0.1006,0.08,0.0951,0.0923,0.0654,0.0696,0.0952,0.1004,0.0971,0.0849,0.1001,0.0629,0.0973,0.0791,0.0949,0.0925,0.0694,0.0666,0.0953,0.1012,0.0972,0.0854,0.1001,0.0648,0.1014,0.0782,0.0955,0.0925,0.0697,0.0706,0.0956,0.1061,0.1037,0.0874,0.1046,0.0686,0.1064,0.0989,0.0999,0.0929,0.0638,0.0683,0.096,0.1116,0.1133,0.0869,0.1019,0.0631,0.1046,0.0822,0.0991,0.0949,0.0677,0.0686,0.0948,0.1186,0.1136,0.0879,0.1047,0.0696,0.1052,0.0822,0.1038,0.0954,0.0653,0.0645,0.0947,0.1035,0.1017,0.0874,0.0996,0.0623,0.104,0.0792,0.1017,0.0918,0.0679,0.0702,0.0941,0.1045,0.1061,0.0861,0.1033,0.0689,0.1009,0.0781,0.0964,0.0924,0.0632
45270,37,0.0702,0.0957,0.1056,0.1024,0.0864,0.1023,0.0713,0.1028,0.0809,0.0957,0.0932,0.0632,0.0695,0.0956,0.1005,0.0971,0.0855,0.1009,0.0602,0.0983,0.0799,0.0951,0.0934,0.0702,0.0667,0.0953,0.102,0.0979,0.0864,0.1012,0.0735,0.102,0.0785,0.096,0.0928,0.0684,0.0683,0.0962,0.1066,0.1041,0.0882,0.1054,0.0675,0.107,0.0996,0.1024,0.0942,0.0655,0.0666,0.0961,0.1125,0.1146,0.0878,0.1026,0.0615,0.1055,0.0825,0.1005,0.0959,0.0719,0.0682,0.0955,0.1184,0.1145,0.0885,0.1056,0.0675,0.1064,0.0793,0.1089,0.0977,0.0655,0.0651,0.0955,0.1042,0.1019,0.0878,0.1005,0.0614,0.1046,0.0796,0.105,0.0925,0.0652,0.0706,0.0947,0.1042,0.106,0.0868,0.104,0.068,0.1022,0.0786,0.0986,0.0931,0.0657
45360,37,0.07,0.0956,0.1049,0.1015,0.0862,0.1017,0.0706,0.1005,0.0802,0.0947,0.0927,0.0662,0.0709,0.095,0.1,0.0967,0.0849,0.0999,0.0617,0.0975,0.0792,0.0943,0.0925,0.0726,0.0666,0.0952,0.1013,0.0973,0.086,0.1003,0.0674,0.1006,0.0781,0.0946,0.0919,0.0683,0.0672,0.0958,0.1063,0.1035,0.0876,0.1041,0.0661,0.1062,0.0996,0.0996,0.0932,0.0659,0.0687,0.0965,0.1123,0.1133,0.087,0.1018,0.0614,0.1036,0.0816,0.0986,0.0944,0.0685,0.067,0.0951,0.1187,0.1135,0.0874,0.1041,0.0613,0.1049,0.078,0.1044,0.0957,0.0657,0.0656,0.095,0.1039,0.1019,0.0879,0.0999,0.0618,0.1033,0.0788,0.1006,0.0912,0.0662,0.0688,0.0945,0.1046,0.106,0.0861,0.1038,0.0655,0.1006,0.078,0.0963,0.093,0.0666
45450,37,0.0765,0.0957,0.1055,0.1017,0.0862,0.1022,0.0745,0.101,0.0799,0.0948,0.0922,0.0645,0.0708,0.0949,0.0998,0.0973,0.0849,0.1001,0.0627,0.0973,0.0792,0.0942,0.0924,0.0681,0.066,0.0954,0.1013,0.0972,0.086,0.1003,0.0693,0.1006,0.078,0.0947,0.092,0.0684,0.0666,0.0958,0.106,0.1038,0.0881,0.1044,0.0648,0.1062,0.0996,0.0999,0.0932,0.0652,0.0686,0.0958,0.112,0.113,0.0867,0.1016,0.0614,0.104,0.0818,0.0988,0.095,0.0681,0.068,0.0953,0.1192,0.1134,0.0881,0.1049,0.0696,0.1052,0.0798,0.1038,0.0955,0.0654,0.0644,0.0946,0.1037,0.1018,0.0878,0.0998,0.0634,0.104,0.0789,0.1,0.0917,0.0642,0.0677,0.0939,0.1048,0.1065,0.0858,0.1037,0.0642,0.101,0.0782,0.0963,0.0923,0.0677
45540,37,0.0722,0.0962,0.1054,0.102,0.0861,0.1016,0.0681,0.1002,0.0796,0.0945,0.0926,0.0651,0.0698,0.0951,0.1,0.096,0.085,0.1001,0.0643,0.098,0.0798,0.0946,0.0928,0.0678,0.0672,0.0952,0.1008,0.0965,0.0853,0.0998,0.062,0.1007,0.078,0.0952,0.0926,0.0742,0.0699,0.0961,0.1054,0.1035,0.0873,0.1044,0.0696,0.1066,0.0996,0.1003,0.0929,0.0651,0.0708,0.0957,0.1112,0.1124,0.0865,0.1016,0.0637,0.1046,0.0823,0.0988,0.0947,0.0669,0.0697,0.0953,0.1189,0.1134,0.0884,0.1044,0.0676,0.1052,0.0835,0.1047,0.0955,0.065,0.0648,0.0947,0.1034,0.1016,0.088,0.1,0.062,0.1037,0.0793,0.1002,0.0909,0.0637,0.0679,0.094,0.1044,0.1062,0.0862,0.1034,0.0637,0.1011,0.0779,0.0966,0.0921,0.0666
45630,37,0.0738,0.096,0.1051,0.1018,0.0864,0.1019,0.0687,0.0998,0.0802,0.0947,0.0921,0.0671,0.0689,0.0952,0.1002,0.0966,0.0848,0.1001,0.0638,0.0974,0.0795,0.0941,0.0925,0.0728,0.0671,0.0954,0.101,0.0969,0.0859,0.0999,0.0659,0.1007,0.0782,0.095,0.0918,0.0678,0.0678,0.0959,0.1059,0.1036,0.0877,0.104,0.0648,0.1061,0.0993,0.1,0.0931,0.068,0.0691,0.0961,0.1118,0.1133,0.087,0.102,0.0613,0.1038,0.0821,0.0989,0.0948,0.0683,0.0667,0.0947,0.1192,0.1134,0.0878,0.1043,0.0635,0.1046,0.0785,0.1041,0.0954,0.066,0.0649,0.095,0.1038,0.1024,0.0884,0.1003,0.0642,0.104,0.0796,0.1007,0.0912,0.0639,0.0664,0.0936,0.1045,0.1062,0.086,0.1033,0.0647,0.1008,0.078,0.0964,0.092,0.066
45720,37,0.0741,0.0959,0.105,0.1032,0.0864,0.102,0.0731,0.1005,0.0802,0.095,0.0923,0.0652,0.0682,0.0946,0.1001,0.0965,0.0852,0.1003,0.0619,0.0977,0.0795,0.0946,0.0922,0.0704,0.0662,0.0954,0.1011,0.0973,0.0859,0.1,0.0668,0.1011,0.0781,0.0951,0.0923,0.0714,0.0696,0.0955,0.1061,0.1035,0.0878,0.1045,0.0667,0.1064,0.099,0.1,0.0929,0.0637,0.0677,0.0958,0.1116,0.113,0.0869,0.102,0.0624,0.1047,0.0824,0.0991,0.0955,0.0734,0.0679,0.095,0.119,0.1132,0.0887,0.1048,0.0706,0.1052,0.0798,0.1043,0.0952,0.0643,0.0643,0.0944,0.1032,0.1014,0.0876,0.0997,0.0629,0.1039,0.0794,0.1012,0.0915,0.0641,0.0691,0.094,0.1048,0.1063,0.0865,0.1036,0.0679,0.1012,0.0785,0.0965,0.0921,0.0641
45810,37,0.0714,0.0955,0.1047,0.1015,0.0863,0.1015,0.0701,0.1009,0.0804,0.0948,0.0926,0.0647,0.071,0.0947,0.0996,0.0974,0.0849,0.1,0.0613,0.0974,0.0796,0.0944,0.0924,0.0708,0.0655,0.0952,0.1007,0.0969,0.0861,0.1001,0.0668,0.1005,0.0784,0.0949,0.092,0.0691,0.0698,0.0955,0.106,0.104,0.0877,0.1041,0.0659,0.1058,0.0994,0.0997,0.0928,0.0658,0.0695,0.0961,0.112,0.1135,0.0874,0.1016,0.0651,0.1041,0.0821,0.0987,0.0954,0.0722,0.0691,0.095,0.1193,0.1137,0.0882,0.1041,0.066,0.1048,0.0846,0.1054,0.0952,0.065,0.0699,0.095,0.1038,0.1017,0.0882,0.1001,0.0623,0.1032,0.0791,0.1014,0.0907,0.0646,0.0681,0.0942,0.1044,0.1062,0.0866,0.1033,0.0657,0.101,0.0781,0.0965,0.0923,0.0661
45900,37,0.0711,0.0951,0.1045,0.1024,0.0863,0.1015,0.0714,0.1011,0.0813,0.0949,0.0922,0.065,0.069,0.0946,0.0996,0.0967,0.085,0.0999,0.0629,0.0973,0.0795,0.0941,0.092,0.0685,0.0663,0.0947,0.1008,0.0969,0.0862,0.1008,0.0779,0.1009,0.0789,0.0949,0.0913,0.065,0.0683,0.0953,0.1062,0.1037,0.0879,0.1044,0.0626,0.1057,0.0994,0.099,0.0925,0.069,0.0665,0.0956,0.1125,0.1147,0.0884,0.1026,0.0753,0.1031,0.0816,0.0977,0.0945,0.067,0.0659,0.0944,0.1196,0.1146,0.0883,0.1043,0.0615,0.1042,0.0785,0.1047,0.0957,0.0656,0.065,0.0949,0.1042,0.1027,0.0889,0.1004,0.071,0.1032,0.0785,0.1006,0.0922,0.0688,0.0653,0.094,0.105,0.1067,0.0863,0.1032,0.0628,0.101,0.0785,0.0969,0.0923,0.0638
45990,37,0.0694,0.0956,0.1045,0.101,0.086,0.1012,0.0683,0.1014,0.0809,0.0952,0.093,0.0669,0.074,0.0948,0.0993,0.0957,0.0851,0.1001,0.0707,0.0977,0.0803,0.0948,0.0923,0.0662,0.064,0.0943,0.1008,0.0964,0.0856,0.1007,0.0714,0.1015,0.0791,0.0953,0.092,0.0659,0.0685,0.0949,0.1056,0.1032,0.0877,0.1048,0.066,0.1063,0.0988,0.0994,0.0925,0.0651,0.066,0.0951,0.112,0.1142,0.0881,0.1026,0.0717,0.1039,0.0819,0.0979,0.0946,0.067,0.0656,0.0942,0.1192,0.1136,0.088,0.1043,0.0617,0.1048,0.0791,0.1052,0.0956,0.0671,0.065,0.0944,0.1039,0.1025,0.0888,0.1003,0.0705,0.1033,0.0787,0.1002,0.0914,0.0662,0.0656,0.0939,0.1045,0.1063,0.0861,0.1032,0.062,0.1009,0.078,0.0971,0.0927,0.0658
46080,37,0.07,0.096,0.105,0.1023,0.0868,0.1016,0.0641,0.102,0.0812,0.095,0.0937,0.0694,0.0725,0.0956,0.0999,0.0963,0.0855,0.1003,0.0691,0.0984,0.0805,0.095,0.0931,0.0673,0.0685,0.0948,0.1008,0.0967,0.0862,0.1011,0.0678,0.102,0.0796,0.0964,0.092,0.0649,0.0698,0.0956,0.106,0.1041,0.0882,0.1053,0.0626,0.1072,0.0992,0.1018,0.0936,0.0691,0.0673,0.0953,0.1124,0.1151,0.0887,0.1034,0.0713,0.1052,0.0826,0.0995,0.0946,0.0655,0.0663,0.0946,0.1188,0.1154,0.0892,0.1051,0.0608,0.1061,0.0788,0.1092,0.0981,0.0697,0.065,0.0946,0.1045,0.1037,0.09,0.1011,0.0704,0.1045,0.079,0.1022,0.0921,0.0635,0.0661,0.0943,0.1052,0.1074,0.0869,0.1038,0.061,0.1019,0.0782,0.0992,0.0935,0.0707
46170,37,0.0691,0.0962,0.1054,0.102,0.0868,0.1021,0.0668,0.1022,0.0809,0.0957,0.0931,0.0647,0.0737,0.096,0.0996,0.0965,0.0857,0.1005,0.067,0.0983,0.0805,0.0951,0.0931,0.0675,0.0649,0.0951,0.1011,0.0969,0.0863,0.1014,0.072,0.1024,0.08,0.0965,0.0921,0.0642,0.0711,0.0955,0.1056,0.1041,0.0885,0.1058,0.0621,0.107,0.0992,0.1022,0.0932,0.0683,0.0667,0.0954,0.1125,0.1156,0.0886,0.1036,0.0714,0.106,0.0828,0.0998,0.0948,0.0648,0.0693,0.0941,0.1189,0.1159,0.09,0.105,0.0612,0.1056,0.0801,0.1073,0.0981,0.0688,0.0654,0.0948,0.1045,0.1035,0.0896,0.1011,0.0701,0.105,0.0796,0.1035,0.092,0.0651,0.065,0.0937,0.1052,0.1074,0.087,0.1036,0.06,0.1016,0.0786,0.0986,0.0932,0.0679
46260,37,0.0693,0.0961,0.1054,0.1018,0.0865,0.1018,0.065,0.102,0.0809,0.0956,0.0943,0.0725,0.0716,0.0955,0.0996,0.0961,0.0858,0.0999,0.0725,0.0986,0.0806,0.0955,0.0932,0.0637,0.0659,0.0947,0.1009,0.0964,0.0859,0.1007,0.0656,0.1023,0.0793,0.0966,0.0927,0.0681,0.071,0.0956,0.1054,0.1036,0.0885,0.1056,0.0679,0.1071,0.0992,0.1028,0.0936,0.0651,0.0662,0.0951,0.112,0.1148,0.0884,0.1031,0.0679,0.106,0.0831,0.1001,0.0949,0.0644,0.0681,0.0945,0.1188,0.1146,0.0898,0.1054,0.0602,0.1057,0.08,0.1083,0.098,0.0679,0.0651,0.0946,0.1042,0.103,0.0894,0.1009,0.0706,0.1048,0.0793,0.103,0.0919,0.0642,0.068,0.0942,0.105,0.1072,0.0873,0.1038,0.0608,0.1015,0.078,0.0994,0.0934,0.0652
46350,37,0.0713,0.0962,0.1051,0.1015,0.0864,0.1009,0.0622,0.0998,0.0799,0.0942,0.0926,0.0677,0.0738,0.0955,0.0991,0.0959,0.0854,0.0991,0.0669,0.0975,0.0799,0.0945,0.0925,0.0694,0.0684,0.0946,0.1002,0.0959,0.0854,0.1,0.064,0.1009,0.079,0.0955,0.0916,0.0681,0.0702,0.0957,0.1049,0.1027,0.0876,0.104,0.0635,0.1056,0.0987,0.0997,0.0926,0.0663,0.0695,0.0953,0.1116,0.1132,0.0875,0.1022,0.0659,0.1043,0.0822,0.098,0.0934,0.0635,0.0683,0.0945,0.1194,0.113,0.0885,0.1044,0.0607,0.1045,0.0782,0.1042,0.0955,0.0685,0.065,0.0942,0.1033,0.1023,0.089,0.1003,0.0672,0.104,0.079,0.0996,0.0906,0.0614,0.067,0.0938,0.1049,0.1067,0.0861,0.1032,0.0626,0.1005,0.0781,0.0967,0.0924,0.0704
46440,37,0.0705,0.0962,0.1056,0.1037,0.0868,0.1015,0.0641,0.1002,0.0798,0.0948,0.0922,0.0643,0.0725,0.0955,0.0993,0.0962,0.0854,0.0995,0.0658,0.0971,0.0799,0.0942,0.0924,0.0668,0.067,0.0952,0.1006,0.0964,0.0858,0.0996,0.0613,0.1006,0.0786,0.0952,0.0922,0.072,0.0709,0.0953,0.1049,0.1027,0.0878,0.104,0.0672,0.1062,0.0989,0.1004,0.0925,0.0626,0.0674,0.0954,0.1116,0.1133,0.0873,0.1019,0.0652,0.105,0.0827,0.0987,0.0941,0.0626,0.0676,0.0948,0.1195,0.1142,0.0891,0.1048,0.0671,0.1048,0.087,0.1044,0.0954,0.0652,0.065,0.094,0.103,0.1019,0.0882,0.0994,0.0634,0.104,0.0792,0.0999,0.0913,0.0647,0.0671,0.0932,0.1044,0.1064,0.0861,0.1032,0.0629,0.1005,0.0782,0.0963,0.0922,0.0673
46530,37,0.0722,0.0961,0.1052,0.102,0.0867,0.1012,0.0636,0.1003,0.0797,0.0943,0.0924,0.0663,0.0712,0.095,0.0994,0.0962,0.0853,0.0996,0.0666,0.0975,0.0801,0.0945,0.0925,0.0648,0.0664,0.0948,0.1003,0.0962,0.0856,0.0995,0.0615,0.1007,0.0784,0.095,0.0922,0.0755,0.0712,0.0956,0.1051,0.1028,0.0878,0.1037,0.0728,0.1064,0.0992,0.1004,0.0931,0.0629,0.0693,0.0956,0.1113,0.1126,0.087,0.1016,0.0644,0.1041,0.0824,0.0987,0.094,0.0707,0.069,0.0948,0.1196,0.1132,0.089,0.1041,0.0689,0.1052,0.0792,0.1054,0.0952,0.0656,0.0643,0.0942,0.1031,0.1016,0.0883,0.0995,0.0627,0.1036,0.0791,0.1005,0.0904,0.0639,0.0682,0.0938,0.1044,0.1061,0.0867,0.1035,0.0615,0.1006,0.0779,0.0968,0.0922,0.0665
46620,37,0.072,0.0962,0.1053,0.1023,0.087,0.1012,0.0657,0.0998,0.0799,0.0943,0.0918,0.0673,0.0704,0.0953,0.0996,0.0963,0.0855,0.0996,0.066,0.0971,0.08,0.0939,0.0923,0.07,0.0666,0.0951,0.1005,0.0965,0.086,0.0992,0.0627,0.1005,0.0782,0.0947,0.0918,0.072,0.072,0.0959,0.1054,0.1031,0.0878,0.1041,0.0663,0.106,0.0993,0.0999,0.0929,0.0654,0.0692,0.0959,0.1118,0.1132,0.0874,0.1017,0.0612,0.1038,0.0823,0.0983,0.0939,0.0656,0.0673,0.0947,0.1196,0.1134,0.0886,0.1042,0.0616,0.1047,0.0855,0.1048,0.0957,0.0653,0.0644,0.0945,0.1033,0.1018,0.0883,0.0998,0.0637,0.1037,0.0793,0.1002,0.0908,0.0632,0.068,0.0939,0.1042,0.1065,0.0866,0.1034,0.0618,0.1006,0.0782,0.0966,0.0921,0.0675
46710,37,0.0704,0.0964,0.1059,0.1026,0.0875,0.1024,0.0704,0.1014,0.0805,0.0952,0.0924,0.0656,0.0699,0.0954,0.1002,0.0968,0.0861,0.1003,0.0635,0.0979,0.0804,0.095,0.0926,0.0695,0.0671,0.0959,0.1016,0.0976,0.0871,0.1006,0.0673,0.1016,0.0787,0.0962,0.0924,0.0732,0.0734,0.0956,0.1057,0.1041,0.0887,0.1052,0.0684,0.1074,0.0992,0.103,0.0941,0.0652,0.0677,0.0962,0.1121,0.1145,0.0881,0.1024,0.0622,0.1058,0.0831,0.101,0.0955,0.0713,0.0689,0.0947,0.119,0.1143,0.0899,0.1058,0.0725,0.1069,0.08,0.1089,0.0976,0.0648,0.065,0.0948,0.1038,0.1031,0.0894,0.1003,0.0649,0.1051,0.0798,0.1046,0.0924,0.0653,0.0678,0.0937,0.1046,0.1066,0.0873,0.1041,0.0632,0.1019,0.0788,0.0996,0.0931,0.0647
46800,37,0.0717,0.096,0.1051,0.1017,0.0864,0.101,0.0643,0.0998,0.0799,0.0943,0.0924,0.0654,0.0714,0.095,0.0991,0.0962,0.0854,0.0996,0.0659,0.0973,0.0801,0.0943,0.0924,0.0649,0.0681,0.0952,0.1002,0.0961,0.0859,0.0991,0.0632,0.101,0.0785,0.0952,0.0923,0.0766,0.0677,0.0957,0.1049,0.102,0.088,0.1038,0.071,0.1062,0.0995,0.1007,0.0926,0.0644,0.0683,0.0956,0.111,0.1125,0.087,0.1014,0.0632,0.1042,0.0826,0.0994,0.0942,0.072,0.0687,0.0949,0.1198,0.1131,0.089,0.1045,0.0627,0.1047,0.0787,0.1044,0.0952,0.066,0.0641,0.0944,0.1033,0.1017,0.0887,0.0998,0.0638,0.1037,0.0793,0.1004,0.0903,0.0634,0.0692,0.0939,0.1044,0.1061,0.0869,0.1035,0.0609,0.1008,0.0782,0.0967,0.092,0.0682
46890,37,0.0704,0.0965,0.1052,0.1019,0.087,0.1013,0.0631,0.0993,0.0799,0.0941,0.0919,0.0666,0.0699,0.0952,0.0994,0.0955,0.0856,0.0992,0.0668,0.0972,0.0801,0.0941,0.0924,0.0694,0.0675,0.0954,0.1002,0.0961,0.0859,0.0997,0.0623,0.1007,0.0788,0.0953,0.0919,0.0725,0.0704,0.0954,0.1048,0.1023,0.088,0.1041,0.0659,0.106,0.0991,0.0998,0.0925,0.0652,0.0674,0.0955,0.1114,0.1133,0.0877,0.102,0.0651,0.1038,0.0825,0.0982,0.094,0.0641,0.0676,0.0938,0.1195,0.1138,0.0888,0.104,0.0606,0.1042,0.0788,0.1038,0.0945,0.0654,0.0648,0.0944,0.1036,0.1024,0.0892,0.1001,0.067,0.1039,0.0792,0.0995,0.0916,0.0631,0.0649,0.0934,0.105,0.1068,0.0864,0.1035,0.0606,0.1008,0.0787,0.0969,0.0922,0.0704
46980,37,0.0725,0.0963,0.1053,0.1017,0.087,0.1014,0.0646,0.0996,0.08,0.0945,0.0925,0.0668,0.0711,0.0946,0.0996,0.0958,0.0856,0.0996,0.0645,0.0974,0.0802,0.0945,0.0924,0.0668,0.0669,0.0952,0.1003,0.0961,0.0859,0.0993,0.0629,0.1013,0.0789,0.0954,0.0925,0.0745,0.071,0.0954,0.1044,0.1026,0.0882,0.1042,0.0728,0.1064,0.099,0.1008,0.0926,0.0637,0.0667,0.0955,0.1112,0.1129,0.0872,0.1017,0.0638,0.1044,0.0829,0.0987,0.0941,0.0676,0.0676,0.0941,0.1199,0.1134,0.0893,0.1049,0.0707,0.1052,0.0803,0.1047,0.0947,0.0631,0.0647,0.0941,0.103,0.1018,0.0886,0.0997,0.0646,0.1038,0.0794,0.1002,0.0908,0.0651,0.0672,0.0934,0.1046,0.1062,0.0866,0.1034,0.0643,0.1011,0.0786,0.0965,0.092,0.0651
47070,37,0.0671,0.0965,0.1056,0.1025,0.0873,0.1017,0.0623,0.1008,0.0806,0.0946,0.0932,0.0684,0.073,0.0956,0.1,0.0962,0.086,0.0998,0.0684,0.0983,0.081,0.0951,0.0928,0.0656,0.0687,0.0954,0.1002,0.0962,0.0863,0.1,0.0637,0.1013,0.0794,0.0964,0.0927,0.0765,0.0724,0.0958,0.1051,0.1035,0.0887,0.1049,0.0735,0.1077,0.0983,0.1033,0.0935,0.0657,0.0666,0.0955,0.1118,0.1143,0.0881,0.1026,0.0637,0.1052,0.0833,0.1005,0.095,0.0694,0.0695,0.0951,0.1195,0.1152,0.0898,0.1053,0.0682,0.1065,0.0802,0.1089,0.0968,0.0673,0.0648,0.0946,0.1038,0.1029,0.0897,0.1008,0.0677,0.1046,0.0799,0.1034,0.0915,0.0639,0.0673,0.0939,0.105,0.1071,0.0875,0.104,0.0625,0.1018,0.0785,0.0992,0.0929,0.0681
47160,37,0.0722,0.0963,0.1052,0.1022,0.0873,0.1013,0.0644,0.0996,0.0801,0.0942,0.0921,0.0653,0.0684,0.0948,0.0997,0.0962,0.0856,0.0994,0.0645,0.0971,0.0803,0.094,0.0922,0.0679,0.0675,0.0954,0.1003,0.0964,0.0864,0.0992,0.0636,0.1008,0.0787,0.095,0.0919,0.073,0.0693,0.0955,0.1048,0.1028,0.0885,0.1041,0.0692,0.1064,0.0987,0.1002,0.0925,0.063,0.0684,0.0957,0.1117,0.1138,0.0879,0.1017,0.0622,0.1041,0.0828,0.0987,0.0944,0.0689,0.0658,0.0944,0.1196,0.1132,0.0888,0.104,0.0676,0.1046,0.0794,0.1041,0.095,0.0639,0.0646,0.094,0.103,0.1015,0.0887,0.0996,0.063,0.1038,0.0797,0.1015,0.0908,0.0638,0.066,0.0931,0.1042,0.106,0.0867,0.1033,0.0674,0.1006,0.0788,0.0959,0.0917,0.0645
47250,37,0.0708,0.0958,0.1049,0.1019,0.0872,0.1016,0.0684,0.1004,0.0807,0.0946,0.0922,0.0645,0.0707,0.0948,0.0995,0.0962,0.0859,0.0997,0.0604,0.097,0.0802,0.0941,0.0919,0.0696,0.0668,0.095,0.1003,0.0966,0.0867,0.0993,0.0644,0.1007,0.0784,0.0944,0.0917,0.0715,0.0678,0.0952,0.1052,0.1032,0.0886,0.1038,0.0691,0.1061,0.1,0.1008,0.0925,0.0625,0.069,0.0958,0.1117,0.113,0.0876,0.1014,0.061,0.1046,0.083,0.0992,0.0946,0.0715,0.0679,0.0942,0.1202,0.1136,0.0893,0.1044,0.074,0.1055,0.0796,0.1048,0.0953,0.0643,0.0642,0.0941,0.1029,0.1011,0.0883,0.0993,0.0619,0.1035,0.08,0.1022,0.0911,0.0667,0.0684,0.0938,0.1043,0.106,0.0871,0.1035,0.07,0.1015,0.0788,0.097,0.0918,0.0637
47340,37,0.0693,0.095,0.1046,0.1015,0.087,0.1013,0.0694,0.1005,0.0809,0.0944,0.0923,0.064,0.07,0.0949,0.0991,0.0961,0.0858,0.0996,0.0623,0.0975,0.0804,0.0938,0.092,0.0696,0.0664,0.0948,0.1002,0.0963,0.0866,0.0996,0.0634,0.1005,0.0788,0.0946,0.0914,0.0706,0.0689,0.0952,0.1058,0.1028,0.0884,0.1038,0.0697,0.1057,0.0996,0.1002,0.0928,0.0651,0.0696,0.0957,0.1115,0.1126,0.0875,0.1007,0.0643,0.104,0.0825,0.0992,0.0944,0.075,0.0685,0.0946,0.1206,0.1132,0.0892,0.104,0.0722,0.1054,0.0796,0.1055,0.0955,0.0656,0.065,0.0945,0.1032,0.1008,0.088,0.0994,0.0611,0.1035,0.0799,0.1024,0.0906,0.0669,0.0709,0.0938,0.104,0.1058,0.0876,0.1035,0.0688,0.1009,0.0787,0.0969,0.0917,0.0649
47430,37,0.0707,0.096,0.1049,0.1017,0.0874,0.1013,0.0658,0.0998,0.0807,0.0941,0.0919,0.0654,0.0691,0.0948,0.0994,0.0957,0.0859,0.0993,0.066,0.0968,0.0807,0.0938,0.092,0.0695,0.0669,0.0948,0.1001,0.0963,0.0866,0.0992,0.0636,0.1006,0.0786,0.0947,0.0918,0.0743,0.0694,0.0954,0.1053,0.1028,0.0886,0.104,0.0692,0.106,0.0992,0.1001,0.0927,0.0681,0.0711,0.0958,0.1119,0.1135,0.088,0.1014,0.0623,0.1043,0.0828,0.099,0.0941,0.0683,0.0674,0.0948,0.1204,0.1136,0.0891,0.1043,0.0688,0.1047,0.0793,0.1052,0.0954,0.0664,0.0645,0.0942,0.1031,0.1027,0.0894,0.0997,0.065,0.1038,0.0798,0.1013,0.0912,0.0628,0.0666,0.0935,0.1044,0.1065,0.0872,0.1032,0.0664,0.1006,0.0786,0.0963,0.0918,0.0668
47520,37,0.069,0.096,0.1054,0.1025,0.0879,0.1024,0.0693,0.1011,0.0809,0.0949,0.0931,0.0661,0.0704,0.0952,0.1003,0.0967,0.0865,0.1006,0.0631,0.0978,0.0812,0.0946,0.0924,0.0689,0.0675,0.0957,0.1009,0.0973,0.0873,0.1001,0.0659,0.1017,0.0791,0.0961,0.0922,0.0712,0.0672,0.0954,0.1061,0.104,0.0894,0.105,0.0674,0.1073,0.0998,0.1036,0.0937,0.0676,0.0661,0.0955,0.1122,0.1146,0.0887,0.1023,0.0631,0.1061,0.0838,0.1016,0.0953,0.0698,0.0695,0.0955,0.1209,0.1154,0.0916,0.1064,0.072,0.1071,0.0802,0.1087,0.0978,0.0658,0.0645,0.0942,0.1033,0.1025,0.0894,0.0998,0.0628,0.1053,0.0806,0.1051,0.0918,0.065,0.067,0.094,0.1045,0.1066,0.0877,0.1039,0.0664,0.1017,0.079,0.099,0.0928,0.0641
47610,37,0.0675,0.096,0.1055,0.1024,0.0876,0.1019,0.0665,0.1014,0.0809,0.0946,0.0929,0.0653,0.0703,0.0953,0.0996,0.0966,0.0863,0.1,0.066,0.0979,0.0807,0.0949,0.0928,0.0654,0.066,0.0952,0.1007,0.0968,0.087,0.0998,0.063,0.1021,0.0792,0.0966,0.0925,0.0768,0.0717,0.0959,0.1053,0.1037,0.089,0.1048,0.0751,0.1076,0.0987,0.1033,0.094,0.0638,0.0672,0.0954,0.1115,0.1131,0.0879,0.1021,0.0642,0.1062,0.084,0.1015,0.0951,0.0708,0.0694,0.0956,0.1209,0.1152,0.0913,0.106,0.0739,0.1074,0.0803,0.1095,0.0973,0.0654,0.0638,0.0941,0.103,0.1018,0.089,0.1001,0.0632,0.1048,0.0804,0.1048,0.0913,0.0652,0.0684,0.0937,0.1044,0.1064,0.0877,0.1037,0.0626,0.1016,0.0788,0.0992,0.0929,0.0644
47700,37,0.07,0.0959,0.105,0.1019,0.0875,0.1008,0.0628,0.0998,0.0802,0.094,0.0919,0.0661,0.0703,0.095,0.0993,0.0958,0.0857,0.0991,0.0663,0.0969,0.0807,0.0937,0.0922,0.0684,0.0672,0.0949,0.1,0.0966,0.0867,0.0989,0.0628,0.1006,0.0786,0.0949,0.0917,0.0745,0.0689,0.0954,0.1049,0.103,0.0884,0.1036,0.0704,0.1061,0.0993,0.0998,0.0927,0.0645,0.0693,0.0957,0.1117,0.1134,0.0881,0.1014,0.062,0.104,0.0828,0.0993,0.0941,0.0713,0.0673,0.0957,0.1212,0.1136,0.0898,0.1046,0.0668,0.1052,0.0797,0.1058,0.0959,0.0672,0.0647,0.0942,0.103,0.1017,0.0889,0.0994,0.0614,0.1034,0.0796,0.1014,0.0907,0.0651,0.0674,0.094,0.1044,0.1064,0.0874,0.1034,0.0641,0.1004,0.0786,0.0966,0.092,0.0653
47790,37,0.0704,0.0959,0.1056,0.1024,0.0879,0.1024,0.0731,0.1016,0.0813,0.0949,0.0922,0.0653,0.069,0.0947,0.0999,0.0965,0.0861,0.1,0.0638,0.0972,0.0803,0.0941,0.0923,0.0703,0.0671,0.0954,0.1013,0.0976,0.0877,0.1005,0.0697,0.1014,0.0792,0.0957,0.0918,0.0685,0.068,0.0953,0.1059,0.1039,0.0895,0.105,0.0656,0.1066,0.1,0.1023,0.0938,0.065,0.0668,0.0961,0.1127,0.1152,0.0889,0.1024,0.0641,0.1054,0.0833,0.101,0.0948,0.0705,0.0678,0.0956,0.1211,0.1159,0.0912,0.1062,0.0678,0.1067,0.0801,0.1098,0.098,0.065,0.0655,0.0946,0.1037,0.1022,0.0891,0.0997,0.0612,0.1048,0.0802,0.106,0.0938,0.0676,0.0685,0.0941,0.1047,0.1066,0.0882,0.104,0.0688,0.1019,0.0794,0.0987,0.0929,0.0631
47880,37,0.0672,0.0954,0.1049,0.102,0.0875,0.1022,0.0729,0.1024,0.0815,0.095,0.0933,0.0627,0.0702,0.0945,0.0995,0.0964,0.0865,0.1002,0.0614,0.0979,0.0807,0.0943,0.0925,0.0687,0.0651,0.0945,0.1008,0.097,0.0874,0.1006,0.0746,0.1014,0.0793,0.0955,0.0913,0.0671,0.0693,0.0952,0.1058,0.1039,0.0892,0.1051,0.0656,0.1071,0.0998,0.1027,0.0938,0.0686,0.0662,0.0957,0.1127,0.1152,0.0892,0.1027,0.0655,0.1045,0.0829,0.1005,0.0943,0.0704,0.068,0.0958,0.1215,0.1155,0.0907,0.106,0.0657,0.1065,0.0798,0.1117,0.0987,0.0671,0.0688,0.0948,0.1039,0.1023,0.0893,0.1002,0.0654,0.1033,0.0794,0.1057,0.0916,0.0701,0.0709,0.0946,0.1041,0.1064,0.0883,0.104,0.0647,0.1019,0.0788,0.0992,0.093,0.0648
47970,37,0.0691,0.0952,0.1042,0.1008,0.0866,0.1008,0.0671,0.1007,0.0812,0.0945,0.0918,0.0633,0.0718,0.0949,0.0986,0.0952,0.0858,0.0995,0.0599,0.0971,0.0805,0.0937,0.0915,0.0698,0.0658,0.0938,0.1,0.096,0.0868,0.1001,0.0762,0.1004,0.0791,0.0942,0.0905,0.065,0.0694,0.0949,0.1048,0.1035,0.0886,0.104,0.0635,0.1056,0.0999,0.0992,0.0921,0.0708,0.0676,0.0957,0.1125,0.1146,0.0892,0.1022,0.072,0.1027,0.0817,0.0971,0.0933,0.0674,0.0659,0.0953,0.1217,0.1151,0.09,0.1042,0.0648,0.1048,0.0794,0.1061,0.096,0.0667,0.0661,0.0946,0.1035,0.1019,0.089,0.0997,0.0665,0.1025,0.079,0.1018,0.0904,0.0676,0.0682,0.0939,0.1041,0.106,0.0876,0.1034,0.061,0.1006,0.079,0.097,0.0919,0.0668
48060,37,0.0703,0.0957,0.1049,0.1016,0.0876,0.1024,0.0731,0.1019,0.0819,0.0953,0.0926,0.0639,0.0712,0.0949,0.0993,0.0964,0.0863,0.1,0.0606,0.0979,0.0807,0.0944,0.0918,0.0683,0.0661,0.0947,0.101,0.0967,0.0874,0.101,0.0764,0.1014,0.0796,0.0956,0.0912,0.065,0.0704,0.0948,0.1058,0.1042,0.0894,0.105,0.0612,0.1068,0.1001,0.1014,0.0933,0.0695,0.0657,0.0959,0.113,0.1157,0.0896,0.1027,0.0699,0.1046,0.083,0.1,0.0944,0.0699,0.0683,0.0953,0.1216,0.1157,0.0912,0.1062,0.0641,0.1069,0.08,0.1104,0.0983,0.0674,0.065,0.0951,0.1041,0.1024,0.0896,0.1003,0.0658,0.1037,0.0795,0.1053,0.092,0.0687,0.0696,0.0939,0.1042,0.1064,0.0882,0.1039,0.066,0.1021,0.0795,0.0989,0.0928,0.0636
48150,37,0.0696,0.0953,0.1045,0.1011,0.0871,0.1015,0.0672,0.1019,0.0816,0.0949,0.0928,0.071,0.0724,0.0948,0.0988,0.0954,0.0863,0.1002,0.0704,0.0981,0.0811,0.0946,0.092,0.0675,0.0646,0.0944,0.1003,0.0964,0.0871,0.1007,0.0714,0.1018,0.0798,0.0958,0.0913,0.0661,0.0701,0.095,0.1054,0.1036,0.0891,0.1047,0.0642,0.107,0.0998,0.1017,0.0931,0.0688,0.066,0.0954,0.1125,0.1154,0.0894,0.1028,0.0717,0.1042,0.0827,0.0997,0.0942,0.0687,0.0679,0.0958,0.1217,0.1155,0.0908,0.1057,0.0659,0.1064,0.0803,0.1109,0.0983,0.0668,0.0677,0.0951,0.1042,0.1025,0.09,0.1005,0.0695,0.1035,0.0794,0.1052,0.0914,0.0673,0.0693,0.0943,0.1046,0.1067,0.0885,0.1039,0.0647,0.1018,0.0792,0.0993,0.0928,0.0651
48240,37,0.0719,0.0959,0.1049,0.1015,0.0878,0.1018,0.0653,0.1014,0.0818,0.0947,0.0923,0.0634,0.0732,0.0954,0.0992,0.096,0.0865,0.1,0.0626,0.0978,0.0812,0.0943,0.0918,0.07,0.0668,0.0949,0.1006,0.0968,0.0877,0.1009,0.0768,0.101,0.0797,0.0954,0.0909,0.0651,0.0672,0.095,0.1058,0.1039,0.0894,0.1048,0.0648,0.1067,0.0993,0.1024,0.0934,0.0704,0.067,0.0961,0.113,0.116,0.0899,0.1028,0.07,0.1043,0.0829,0.1,0.0942,0.0696,0.0671,0.0956,0.1213,0.116,0.0909,0.1058,0.0644,0.1062,0.0806,0.1106,0.0981,0.0679,0.0687,0.0952,0.1043,0.103,0.09,0.1006,0.0689,0.1039,0.0795,0.1052,0.0919,0.068,0.0677,0.0938,0.1042,0.1063,0.0878,0.1038,0.0631,0.1021,0.0795,0.0993,0.0928,0.0639
48330,37,0.0674,0.0954,0.1042,0.1007,0.0867,0.1011,0.0686,0.1006,0.0816,0.095,0.0922,0.0659,0.0728,0.0941,0.0983,0.0953,0.086,0.0993,0.0666,0.097,0.0808,0.0937,0.0913,0.0678,0.0656,0.0944,0.1001,0.0962,0.0869,0.1004,0.0764,0.1006,0.0794,0.0946,0.0908,0.0638,0.0705,0.0943,0.1047,0.1027,0.0886,0.1041,0.0618,0.1055,0.0999,0.0994,0.092,0.0688,0.0655,0.0953,0.1122,0.1147,0.0889,0.1018,0.0738,0.1033,0.0823,0.0979,0.0936,0.0698,0.0655,0.0952,0.122,0.1148,0.0902,0.1049,0.0628,0.1054,0.0797,0.1066,0.0956,0.0664,0.0658,0.0947,0.1036,0.1021,0.0892,0.0998,0.0677,0.1027,0.0793,0.103,0.091,0.0678,0.0683,0.0936,0.1041,0.1059,0.0876,0.103,0.0649,0.1014,0.0792,0.0969,0.0918,0.0637
48420,37,0.0697,0.0957,0.1045,0.1012,0.0873,0.1018,0.0654,0.1014,0.0818,0.0948,0.0932,0.0722,0.0738,0.0954,0.0983,0.0956,0.0865,0.0999,0.0715,0.0983,0.0816,0.0945,0.0923,0.0681,0.0644,0.0942,0.1003,0.0963,0.0873,0.1005,0.071,0.1013,0.08,0.0958,0.0913,0.066,0.0708,0.095,0.1055,0.1039,0.0894,0.1046,0.0635,0.1066,0.1,0.1022,0.093,0.0702,0.066,0.0955,0.1125,0.1155,0.0896,0.1025,0.0687,0.1042,0.0831,0.0999,0.0945,0.0697,0.0651,0.0956,0.1217,0.1156,0.0909,0.1054,0.0659,0.1062,0.0802,0.11,0.0979,0.0666,0.0656,0.095,0.1041,0.1026,0.0902,0.1007,0.0692,0.1036,0.0796,0.105,0.0914,0.0667,0.069,0.094,0.1042,0.1064,0.0883,0.1036,0.0634,0.102,0.0793,0.099,0.0926,0.0652
48510,37,0.0679,0.0955,0.104,0.1005,0.0871,0.1009,0.064,0.0998,0.0822,0.0941,0.0918,0.068,0.0739,0.095,0.0984,0.0954,0.0862,0.0994,0.0673,0.0973,0.0809,0.0939,0.0912,0.0677,0.0662,0.0942,0.0998,0.0959,0.0872,0.1,0.0741,0.1004,0.0797,0.0947,0.0905,0.0651,0.0688,0.0947,0.105,0.1031,0.0887,0.1039,0.0608,0.1057,0.1,0.0995,0.0915,0.0681,0.0667,0.0952,0.1122,0.1147,0.0893,0.1018,0.0735,0.1026,0.082,0.0977,0.0932,0.067,0.067,0.0949,0.1221,0.1154,0.0901,0.1045,0.0606,0.1046,0.0792,0.106,0.0954,0.0663,0.065,0.0943,0.1035,0.1022,0.0895,0.0997,0.07,0.1029,0.0792,0.102,0.0905,0.0666,0.0688,0.0941,0.1041,0.1065,0.0876,0.103,0.0627,0.1008,0.0793,0.0971,0.0917,0.0636
48600,37,0.067,0.0955,0.1048,0.1015,0.0879,0.102,0.0702,0.102,0.0825,0.0951,0.0926,0.0642,0.0714,0.0946,0.0992,0.0956,0.0868,0.1001,0.0662,0.098,0.0812,0.0943,0.0919,0.0676,0.065,0.0941,0.1004,0.0965,0.0878,0.1009,0.0783,0.1015,0.0799,0.0957,0.0911,0.0642,0.0681,0.0948,0.1055,0.1042,0.09,0.1048,0.0607,0.1068,0.0996,0.1023,0.0929,0.0691,0.0663,0.0953,0.1128,0.1159,0.0902,0.1028,0.0731,0.1045,0.0833,0.0999,0.0943,0.0677,0.0661,0.0952,0.1216,0.116,0.0915,0.1057,0.0627,0.1065,0.0809,0.1109,0.0982,0.0669,0.0649,0.0947,0.1037,0.1022,0.0899,0.1005,0.0666,0.104,0.08,0.1064,0.0917,0.07,0.0699,0.0939,0.1043,0.1064,0.0884,0.1036,0.0699,0.102,0.0797,0.0993,0.0927,0.0632
48690,37,0.0669,0.095,0.1042,0.1026,0.0876,0.1018,0.0686,0.1018,0.0821,0.0948,0.0928,0.0677,0.0714,0.0946,0.0987,0.0958,0.0865,0.0998,0.068,0.0978,0.0815,0.0944,0.0918,0.0659,0.0657,0.0945,0.1004,0.0967,0.0879,0.1006,0.0714,0.1014,0.0797,0.0955,0.0913,0.0662,0.0686,0.0952,0.1054,0.104,0.0896,0.1047,0.064,0.107,0.1002,0.1029,0.0935,0.0684,0.0686,0.0957,0.1123,0.1145,0.0896,0.1022,0.0646,0.1046,0.0837,0.1012,0.0947,0.0744,0.0684,0.0959,0.1217,0.1158,0.0912,0.1058,0.0693,0.1068,0.0809,0.1113,0.0983,0.0658,0.066,0.0943,0.1033,0.102,0.0897,0.1001,0.0614,0.1043,0.0805,0.1068,0.0915,0.0673,0.0704,0.0938,0.1042,0.1061,0.0886,0.104,0.0687,0.1021,0.0792,0.0993,0.0925,0.0657
48780,37,0.0705,0.0952,0.1049,0.1015,0.0878,0.1012,0.0695,0.1,0.0816,0.094,0.0913,0.0661,0.0691,0.0945,0.0989,0.0956,0.0862,0.0989,0.0635,0.0966,0.0808,0.0934,0.0914,0.0731,0.0667,0.0944,0.0997,0.0962,0.0874,0.0994,0.0668,0.1004,0.0793,0.0942,0.0909,0.0688,0.0645,0.0951,0.1048,0.1024,0.0892,0.1034,0.0663,0.1055,0.1004,0.1,0.0924,0.0655,0.0701,0.0954,0.1119,0.1138,0.0887,0.1014,0.0627,0.1034,0.083,0.0991,0.0935,0.0696,0.0663,0.0955,0.1221,0.1135,0.0906,0.1042,0.0685,0.1051,0.0797,0.1063,0.0953,0.0662,0.066,0.0937,0.1028,0.1019,0.0895,0.0992,0.0634,0.1038,0.0801,0.102,0.0904,0.0645,0.0668,0.0936,0.1045,0.1062,0.0877,0.1034,0.0673,0.1007,0.0792,0.0965,0.0915,0.0636
48870,37,0.0669,0.0956,0.1052,0.1023,0.0882,0.102,0.0728,0.1016,0.0819,0.0944,0.093,0.0647,0.0699,0.0945,0.0993,0.0961,0.0866,0.1,0.0606,0.0976,0.0808,0.094,0.0919,0.0723,0.0662,0.0949,0.1006,0.0969,0.088,0.1002,0.0702,0.1016,0.0795,0.0958,0.0913,0.0702,0.0688,0.0948,0.1053,0.1034,0.0897,0.1048,0.0667,0.1069,0.1,0.103,0.0939,0.066,0.0666,0.0955,0.1126,0.1151,0.0895,0.1022,0.063,0.1055,0.084,0.1012,0.0947,0.0752,0.0669,0.0956,0.1218,0.1153,0.0917,0.1058,0.0725,0.1072,0.0806,0.1109,0.098,0.0659,0.0645,0.0943,0.1029,0.1011,0.0891,0.0992,0.0606,0.1041,0.0805,0.1071,0.0922,0.07,0.0692,0.094,0.1041,0.106,0.0888,0.1036,0.0726,0.1025,0.0797,0.0992,0.0926,0.0626
48960,37,0.0679,0.0953,0.1043,0.1012,0.0877,0.1013,0.0688,0.1001,0.0814,0.0938,0.0914,0.0643,0.069,0.0943,0.0989,0.0952,0.0861,0.0989,0.0627,0.0969,0.0807,0.0932,0.0916,0.0705,0.0666,0.0943,0.0997,0.096,0.0876,0.0993,0.0642,0.1003,0.079,0.0941,0.0907,0.0705,0.0703,0.0949,0.105,0.1023,0.0888,0.1036,0.0665,0.1056,0.1004,0.1,0.0923,0.0676,0.069,0.0955,0.1118,0.1137,0.0889,0.1011,0.0658,0.103,0.0824,0.098,0.0935,0.0713,0.0678,0.0953,0.1228,0.1144,0.0905,0.104,0.0661,0.1053,0.0793,0.1076,0.0959,0.0668,0.0664,0.0948,0.1034,0.1013,0.089,0.0994,0.0635,0.1024,0.0792,0.1023,0.0904,0.0672,0.071,0.0941,0.1041,0.1054,0.0884,0.1033,0.0651,0.1005,0.0791,0.0972,0.0918,0.065
49050,37,0.067,0.095,0.104,0.1017,0.0874,0.1009,0.0678,0.1003,0.0817,0.094,0.0913,0.064,0.0698,0.0942,0.0985,0.0953,0.0862,0.0992,0.0608,0.0964,0.0807,0.0934,0.0912,0.0696,0.066,0.0943,0.0999,0.096,0.0873,0.0996,0.0738,0.1005,0.0793,0.0942,0.0901,0.0646,0.069,0.0947,0.105,0.1036,0.0893,0.1039,0.064,0.1056,0.1,0.0995,0.0921,0.0688,0.0667,0.0953,0.1124,0.1146,0.0893,0.1018,0.0728,0.1025,0.082,0.0973,0.0932,0.0702,0.0653,0.0951,0.1227,0.1151,0.0904,0.1042,0.0654,0.1048,0.0797,0.1068,0.096,0.066,0.0657,0.0946,0.1035,0.1023,0.0902,0.0997,0.0708,0.1027,0.0791,0.1009,0.0902,0.0648,0.0669,0.0937,0.1043,0.1063,0.0878,0.1031,0.0628,0.1009,0.0793,0.0979,0.0916,0.0631
49140,37,0.0698,0.0953,0.1042,0.1007,0.0872,0.1006,0.0666,0.1007,0.0817,0.0943,0.0919,0.0662,0.0721,0.0942,0.0982,0.0946,0.0862,0.0992,0.0658,0.0966,0.0807,0.0937,0.0912,0.0666,0.0644,0.0937,0.0998,0.0955,0.0868,0.1,0.0733,0.1008,0.0796,0.0946,0.0903,0.064,0.0699,0.0943,0.1046,0.1025,0.0889,0.1039,0.0611,0.106,0.0994,0.0997,0.0918,0.0667,0.0654,0.0948,0.1119,0.1144,0.089,0.1018,0.0705,0.1034,0.0826,0.0975,0.0927,0.0659,0.0684,0.095,0.1223,0.1157,0.0906,0.1046,0.0629,0.105,0.0796,0.1062,0.0958,0.0666,0.0655,0.0943,0.1031,0.1018,0.0896,0.0995,0.0704,0.1029,0.079,0.1015,0.09,0.0658,0.0674,0.0938,0.1042,0.1057,0.0878,0.1027,0.0635,0.1007,0.079,0.0975,0.0916,0.0636
49230,37,0.0697,0.0956,0.1045,0.1009,0.0876,0.1015,0.0661,0.1016,0.0832,0.0946,0.0925,0.071,0.0732,0.0951,0.0982,0.095,0.0866,0.0998,0.0664,0.0975,0.0813,0.0942,0.0919,0.0661,0.0648,0.0938,0.0997,0.0957,0.0875,0.1004,0.0695,0.1016,0.08,0.0958,0.0908,0.0652,0.0672,0.0948,0.105,0.103,0.0893,0.1047,0.0609,0.107,0.1001,0.103,0.093,0.068,0.0657,0.0947,0.1121,0.115,0.0897,0.1028,0.0703,0.1039,0.0838,0.0998,0.0937,0.065,0.0676,0.0953,0.1219,0.116,0.0916,0.1055,0.0615,0.1061,0.0802,0.1103,0.0982,0.0691,0.0664,0.0946,0.1036,0.1028,0.0907,0.1004,0.0697,0.1043,0.0794,0.1034,0.0908,0.0649,0.0708,0.0942,0.1041,0.1062,0.0886,0.1037,0.0638,0.1017,0.0793,0.1002,0.0928,0.0662
49320,37,0.069,0.0956,0.1043,0.1009,0.0872,0.1005,0.0625,0.0995,0.0811,0.0939,0.0915,0.066,0.0743,0.0948,0.0982,0.0948,0.0862,0.0986,0.0626,0.097,0.0809,0.0935,0.0912,0.0682,0.0665,0.0938,0.0993,0.095,0.0866,0.0995,0.0666,0.1005,0.0798,0.0948,0.09,0.0642,0.0688,0.0947,0.1045,0.1026,0.0891,0.104,0.0622,0.1055,0.0994,0.0996,0.0913,0.0673,0.0666,0.0946,0.1118,0.114,0.0891,0.102,0.0712,0.1032,0.0826,0.0974,0.0924,0.0646,0.0658,0.0947,0.1223,0.1147,0.0908,0.1047,0.0631,0.1045,0.0793,0.1061,0.0955,0.0694,0.0655,0.0941,0.1033,0.1027,0.0903,0.0997,0.0691,0.1032,0.0793,0.1,0.0898,0.0638,0.0681,0.0934,0.1042,0.1063,0.0877,0.1032,0.0619,0.1004,0.079,0.0975,0.0918,0.0653
49410,37,0.0688,0.0963,0.1054,0.1021,0.0879,0.1016,0.0643,0.101,0.0824,0.0944,0.0926,0.0686,0.0742,0.0952,0.0988,0.0955,0.0869,0.0998,0.0697,0.0978,0.0813,0.0944,0.0919,0.065,0.0675,0.0945,0.1,0.0958,0.0871,0.1003,0.0669,0.1015,0.0803,0.0965,0.0915,0.067,0.073,0.0948,0.1046,0.1032,0.0898,0.105,0.0644,0.1071,0.1006,0.1031,0.0926,0.0681,0.0655,0.095,0.1122,0.1154,0.0898,0.1033,0.0706,0.1049,0.0838,0.1003,0.0941,0.0655,0.0684,0.095,0.1221,0.1164,0.0926,0.106,0.0621,0.1066,0.0813,0.1098,0.0983,0.0688,0.0649,0.0943,0.1033,0.1026,0.0905,0.1002,0.0693,0.1046,0.0801,0.1036,0.0913,0.0656,0.0647,0.0929,0.1042,0.1063,0.0883,0.1037,0.0599,0.1017,0.0793,0.0997,0.0926,0.0651
49500,37,0.0682,0.0962,0.1047,0.1013,0.0878,0.1006,0.0616,0.0996,0.0811,0.0938,0.0919,0.0683,0.0731,0.0946,0.0981,0.0946,0.0866,0.0989,0.0691,0.097,0.081,0.0936,0.0914,0.0666,0.0649,0.0939,0.099,0.0947,0.0865,0.0993,0.0648,0.1008,0.0799,0.095,0.0909,0.0703,0.0702,0.0948,0.1038,0.1022,0.089,0.104,0.0694,0.1061,0.0997,0.101,0.0917,0.0653,0.0674,0.0947,0.1112,0.1134,0.0889,0.1016,0.0657,0.1037,0.0831,0.098,0.0927,0.0647,0.0695,0.095,0.1223,0.1149,0.0909,0.1043,0.0633,0.1046,0.0797,0.1063,0.0953,0.0687,0.0649,0.0938,0.1027,0.1019,0.0903,0.1,0.0689,0.1034,0.0798,0.1008,0.0894,0.0628,0.0662,0.0934,0.1043,0.1062,0.0879,0.1032,0.0612,0.1005,0.0787,0.0973,0.0913,0.0676
49590,37,0.0688,0.096,0.1048,0.1014,0.0881,0.1009,0.0637,0.0992,0.0818,0.0937,0.0912,0.0673,0.0709,0.0948,0.0988,0.0952,0.0866,0.0986,0.0627,0.0966,0.0806,0.0936,0.0912,0.071,0.0675,0.0944,0.099,0.0954,0.0871,0.0989,0.0629,0.1003,0.0795,0.095,0.091,0.0688,0.0675,0.095,0.1044,0.1023,0.0895,0.1029,0.0634,0.1056,0.0992,0.1005,0.0919,0.0634,0.0674,0.0948,0.1114,0.1133,0.0888,0.1017,0.0668,0.104,0.0834,0.0987,0.0931,0.0627,0.068,0.0948,0.1222,0.1145,0.0913,0.105,0.0625,0.1047,0.08,0.1056,0.0949,0.0656,0.0667,0.0936,0.1024,0.1019,0.0903,0.0996,0.0663,0.1041,0.0803,0.101,0.09,0.0626,0.0645,0.0931,0.1044,0.1063,0.0878,0.103,0.0617,0.1003,0.079,0.0969,0.0913,0.0682
49680,37,0.0674,0.0956,0.1047,0.1016,0.0882,0.1014,0.0692,0.0995,0.0815,0.0937,0.0914,0.0653,0.068,0.0945,0.0987,0.095,0.0867,0.0992,0.0617,0.0965,0.0808,0.0934,0.0912,0.0702,0.0671,0.094,0.0991,0.0952,0.0872,0.0989,0.0625,0.1006,0.0793,0.0948,0.091,0.0705,0.0678,0.0946,0.1043,0.1022,0.0892,0.1037,0.0724,0.1061,0.0997,0.1011,0.0919,0.0645,0.0681,0.0944,0.1112,0.113,0.0884,0.1015,0.0641,0.1048,0.084,0.099,0.0933,0.0633,0.0696,0.0948,0.1224,0.114,0.0915,0.1051,0.0697,0.1051,0.0809,0.105,0.0951,0.0654,0.0645,0.0932,0.1019,0.1013,0.0896,0.0991,0.063,0.104,0.0807,0.1019,0.0904,0.0632,0.0666,0.0936,0.1041,0.1059,0.0882,0.1031,0.0672,0.1006,0.0792,0.0968,0.0911,0.0665
49770,37,0.0657,0.0951,0.1044,0.1012,0.0882,0.1011,0.067,0.0998,0.0821,0.0934,0.0913,0.0662,0.069,0.0945,0.0983,0.0953,0.0867,0.0989,0.0623,0.0965,0.0806,0.0933,0.0911,0.0694,0.0668,0.094,0.0991,0.0953,0.0875,0.0989,0.064,0.1004,0.0795,0.0946,0.0907,0.0691,0.0672,0.095,0.1043,0.1023,0.0895,0.1031,0.0676,0.1057,0.1004,0.1002,0.0919,0.0673,0.0694,0.0949,0.1111,0.1128,0.0888,0.1013,0.0618,0.104,0.0837,0.0993,0.0929,0.0665,0.0671,0.0956,0.1225,0.1143,0.0913,0.1048,0.0689,0.1051,0.0799,0.1067,0.0952,0.0659,0.0647,0.0934,0.1021,0.1012,0.0898,0.0991,0.0631,0.1035,0.0804,0.1022,0.0898,0.062,0.0654,0.0933,0.1039,0.1054,0.0881,0.1028,0.0645,0.1,0.0785,0.0968,0.0909,0.0673
49860,37,0.0668,0.095,0.1043,0.1016,0.0883,0.1015,0.0727,0.1003,0.0823,0.0939,0.0907,0.0652,0.0704,0.0943,0.0983,0.0954,0.0865,0.0987,0.0629,0.0963,0.0804,0.093,0.0905,0.0707,0.0666,0.0938,0.0994,0.096,0.0878,0.0996,0.0749,0.1001,0.0793,0.094,0.0902,0.0642,0.0681,0.0944,0.1055,0.1027,0.0897,0.104,0.0622,0.1056,0.1007,0.1,0.0918,0.0673,0.0665,0.0952,0.1124,0.1145,0.0895,0.1015,0.0697,0.1036,0.0832,0.0986,0.0931,0.0652,0.0697,0.0949,0.1229,0.1147,0.0914,0.1046,0.0699,0.1053,0.0805,0.107,0.0959,0.0653,0.0654,0.0938,0.1026,0.1014,0.0897,0.0991,0.062,0.1035,0.08,0.1033,0.0904,0.0652,0.0642,0.0935,0.1043,0.1056,0.0884,0.1031,0.0696,0.1006,0.0794,0.097,0.0914,0.0634
49950,37,0.0693,0.0949,0.1046,0.1014,0.088,0.102,0.0712,0.1021,0.083,0.0948,0.0923,0.0638,0.07,0.0949,0.0986,0.0959,0.0871,0.1,0.0687,0.0978,0.082,0.0941,0.0916,0.0685,0.0639,0.0936,0.1,0.0958,0.0879,0.1007,0.0747,0.1018,0.0806,0.0956,0.0906,0.0645,0.0687,0.0943,0.105,0.1038,0.0901,0.1048,0.0608,0.1067,0.0994,0.1026,0.0932,0.0681,0.067,0.0949,0.1127,0.1157,0.0904,0.1025,0.0734,0.105,0.0839,0.1004,0.0938,0.0666,0.0662,0.0949,0.1226,0.1156,0.0925,0.1059,0.066,0.1063,0.0811,0.1111,0.0982,0.0654,0.0648,0.0943,0.1032,0.102,0.0901,0.0998,0.0618,0.104,0.0808,0.1072,0.0916,0.0694,0.0693,0.0941,0.1042,0.1061,0.0894,0.1038,0.0683,0.1016,0.0797,0.0997,0.0926,0.0633
50040,37,0.071,0.0947,0.1035,0.1001,0.0874,0.1004,0.0665,0.1008,0.0825,0.0938,0.0916,0.0662,0.0726,0.0943,0.0978,0.0944,0.0865,0.099,0.0682,0.0965,0.0811,0.0931,0.0906,0.0642,0.064,0.0933,0.0989,0.0948,0.0871,0.0996,0.0699,0.1006,0.0801,0.0943,0.0897,0.0645,0.0708,0.0945,0.1044,0.1027,0.0894,0.1037,0.062,0.1055,0.0998,0.1,0.0915,0.0697,0.0667,0.0948,0.1121,0.1146,0.09,0.1016,0.0734,0.1027,0.0826,0.0976,0.0925,0.0654,0.0648,0.0951,0.1231,0.1149,0.091,0.1042,0.0655,0.1045,0.08,0.1076,0.0956,0.0667,0.0657,0.094,0.103,0.1017,0.0902,0.0995,0.0664,0.1028,0.0797,0.1034,0.0899,0.0675,0.0696,0.094,0.1042,0.1057,0.0888,0.1033,0.0643,0.1005,0.0792,0.0973,0.0914,0.0651
50130,37,0.0705,0.095,0.1046,0.1017,0.0885,0.1017,0.0698,0.1018,0.0829,0.0945,0.0915,0.0654,0.069,0.0946,0.0986,0.0956,0.0872,0.0997,0.0616,0.0973,0.0814,0.0937,0.0914,0.0683,0.0653,0.094,0.1001,0.0962,0.0884,0.1004,0.078,0.1014,0.0802,0.0956,0.09,0.0661,0.0692,0.0944,0.1056,0.1037,0.0905,0.1048,0.0626,0.1065,0.1003,0.102,0.0932,0.0708,0.067,0.0952,0.113,0.1158,0.0906,0.1028,0.0741,0.1051,0.084,0.1006,0.0938,0.0677,0.0665,0.0952,0.1226,0.1161,0.0923,0.1058,0.0638,0.1063,0.0809,0.1116,0.0982,0.0649,0.0646,0.0942,0.1032,0.1024,0.0904,0.0998,0.0649,0.1041,0.0805,0.1064,0.0917,0.0683,0.0674,0.0935,0.1042,0.1061,0.089,0.1036,0.0678,0.1018,0.0797,0.0993,0.0924,0.0632
50220,37,0.0668,0.0947,0.104,0.1008,0.0876,0.101,0.0723,0.1009,0.0822,0.0941,0.0912,0.0642,0.0723,0.0944,0.0982,0.0949,0.087,0.0993,0.0622,0.0968,0.0812,0.0932,0.091,0.0658,0.0656,0.0934,0.0994,0.0956,0.0877,0.0996,0.0772,0.1002,0.0792,0.0938,0.0901,0.0649,0.0671,0.094,0.1044,0.103,0.0896,0.1039,0.0636,0.1055,0.1002,0.1005,0.0919,0.0671,0.0664,0.0949,0.1119,0.1136,0.089,0.1008,0.0625,0.1033,0.0832,0.0986,0.0933,0.0734,0.0651,0.0953,0.123,0.1132,0.0914,0.104,0.0688,0.1053,0.0802,0.1082,0.096,0.0661,0.0649,0.0938,0.102,0.1005,0.0892,0.0988,0.0608,0.1029,0.0802,0.1035,0.0899,0.0676,0.0688,0.0936,0.1036,0.1046,0.089,0.103,0.0666,0.1006,0.0795,0.0976,0.0913,0.0629
50310,37,0.067,0.0949,0.1041,0.1009,0.0879,0.1007,0.0688,0.1004,0.0818,0.0934,0.0909,0.0644,0.069,0.0942,0.098,0.0952,0.0868,0.0986,0.0635,0.0962,0.081,0.0929,0.091,0.0714,0.0655,0.0938,0.0996,0.0954,0.0877,0.0992,0.0676,0.0997,0.0791,0.0938,0.0901,0.0703,0.0663,0.0949,0.1041,0.1022,0.0894,0.1032,0.0665,0.1051,0.1001,0.1002,0.0923,0.0668,0.0702,0.0951,0.1116,0.113,0.0888,0.1008,0.0619,0.1036,0.0833,0.0991,0.093,0.0678,0.0691,0.0953,0.1228,0.1142,0.0911,0.1044,0.063,0.1049,0.0798,0.1075,0.0959,0.0678,0.0656,0.0938,0.1023,0.1009,0.0896,0.0987,0.0608,0.1029,0.0801,0.1029,0.0897,0.0646,0.0694,0.0942,0.1035,0.1053,0.089,0.1034,0.0641,0.1004,0.0791,0.0973,0.0912,0.068
50400,37,0.0656,0.0947,0.1041,0.1014,0.0881,0.101,0.0717,0.1004,0.0824,0.0938,0.0905,0.0653,0.0696,0.0943,0.0985,0.0951,0.0869,0.0989,0.0631,0.0965,0.081,0.0929,0.0907,0.0707,0.0662,0.0943,0.0996,0.0958,0.088,0.0997,0.0713,0.0996,0.079,0.094,0.0899,0.0671,0.0662,0.0946,0.1045,0.1024,0.0899,0.1034,0.0652,0.1054,0.1001,0.1,0.0918,0.0658,0.0671,0.0955,0.1119,0.1137,0.089,0.101,0.0625,0.1035,0.0834,0.0987,0.0933,0.0678,0.0702,0.095,0.1232,0.1148,0.0916,0.1045,0.0695,0.1054,0.0803,0.1069,0.0952,0.0626,0.0649,0.0941,0.1024,0.1011,0.0896,0.0989,0.062,0.1037,0.0803,0.1033,0.0902,0.0667,0.0662,0.0933,0.1036,0.1054,0.0884,0.1031,0.0649,0.1006,0.0796,0.0968,0.0912,0.0646
50490,37,0.0671,0.0952,0.1045,0.1015,0.0883,0.1013,0.0724,0.1002,0.0823,0.0939,0.0913,0.0625,0.068,0.094,0.0982,0.0949,0.0872,0.099,0.06,0.0966,0.0814,0.0931,0.0907,0.0687,0.0659,0.094,0.0997,0.0956,0.0879,0.0991,0.0688,0.1006,0.0793,0.0941,0.0904,0.0687,0.0669,0.0944,0.1044,0.102,0.0895,0.1035,0.0649,0.106,0.1007,0.1008,0.0917,0.0648,0.0667,0.0952,0.1116,0.1131,0.0889,0.1009,0.0611,0.1036,0.0837,0.0989,0.0932,0.0715,0.0669,0.0943,0.1229,0.1134,0.0909,0.1041,0.0705,0.1052,0.0802,0.1074,0.0952,0.0624,0.0642,0.0938,0.102,0.1006,0.0892,0.0987,0.062,0.1032,0.0804,0.1039,0.09,0.0647,0.0674,0.0937,0.1035,0.1052,0.0891,0.1033,0.0679,0.1007,0.0795,0.0968,0.0911,0.0651
50580,37,0.067,0.0951,0.1041,0.101,0.0884,0.101,0.0703,0.0998,0.0816,0.0933,0.0907,0.0671,0.0703,0.0943,0.0982,0.0952,0.087,0.0989,0.0619,0.0966,0.0807,0.0927,0.0907,0.0722,0.0662,0.0941,0.0992,0.0956,0.0882,0.0989,0.067,0.0998,0.0792,0.0937,0.0902,0.0696,0.0664,0.0946,0.1048,0.1022,0.0898,0.1036,0.0648,0.1056,0.0995,0.1007,0.0917,0.0664,0.0678,0.0952,0.1121,0.1136,0.0893,0.101,0.0647,0.1034,0.0834,0.0986,0.0929,0.0669,0.0685,0.0953,0.1235,0.1143,0.091,0.1045,0.0619,0.1052,0.0803,0.107,0.0956,0.0675,0.0656,0.094,0.1025,0.1011,0.09,0.099,0.0613,0.1033,0.0803,0.1029,0.0897,0.0648,0.0673,0.0938,0.1036,0.1053,0.089,0.1032,0.0627,0.1003,0.0793,0.0973,0.0911,0.069
50670,37,0.0679,0.0953,0.1043,0.1012,0.0887,0.1016,0.0745,0.1003,0.0819,0.0936,0.0907,0.0657,0.0696,0.0942,0.0984,0.095,0.0871,0.0991,0.0634,0.0964,0.0809,0.093,0.0903,0.0702,0.066,0.094,0.0992,0.0956,0.0881,0.0991,0.0681,0.1001,0.0795,0.0939,0.0898,0.0658,0.0673,0.0947,0.1045,0.103,0.0898,0.1037,0.0642,0.1053,0.1004,0.1005,0.0915,0.0642,0.0668,0.0949,0.1118,0.1136,0.0891,0.1009,0.0622,0.1036,0.0835,0.0988,0.0932,0.0663,0.0662,0.0948,0.1232,0.1145,0.0917,0.1046,0.0693,0.1054,0.0813,0.1072,0.0956,0.0636,0.0669,0.0938,0.102,0.1008,0.0898,0.0992,0.0628,0.1035,0.0806,0.1038,0.0906,0.0668,0.0657,0.0932,0.1038,0.1057,0.0889,0.1031,0.0675,0.1007,0.0797,0.0972,0.091,0.0649
50760,37,0.0682,0.095,0.104,0.1009,0.0883,0.1012,0.0713,0.1001,0.0821,0.0935,0.092,0.0656,0.0698,0.094,0.098,0.0944,0.0873,0.099,0.0617,0.0966,0.0813,0.093,0.0905,0.0679,0.0657,0.0938,0.0992,0.0954,0.0881,0.099,0.0673,0.1001,0.0798,0.0942,0.0902,0.0705,0.0671,0.0944,0.1043,0.1019,0.0895,0.1034,0.0652,0.1059,0.1003,0.1009,0.0915,0.0646,0.0715,0.0949,0.111,0.1128,0.089,0.1008,0.062,0.1038,0.0841,0.0993,0.0934,0.0719,0.0675,0.0951,0.1231,0.114,0.0918,0.1045,0.0681,0.1051,0.0807,0.1076,0.0954,0.0664,0.0644,0.0937,0.1018,0.1005,0.0898,0.0991,0.0613,0.1032,0.0805,0.1031,0.0897,0.0641,0.0678,0.0936,0.1036,0.1052,0.089,0.103,0.0636,0.1002,0.0793,0.0977,0.091,0.0648
50850,37,0.0693,0.0951,0.104,0.1012,0.0887,0.1014,0.0703,0.0996,0.0823,0.0933,0.0905,0.0667,0.0677,0.0941,0.0983,0.0948,0.0871,0.0988,0.0615,0.0965,0.0811,0.0927,0.0906,0.072,0.0677,0.094,0.0991,0.0956,0.0885,0.099,0.0669,0.1003,0.0797,0.0943,0.09,0.0671,0.0668,0.0946,0.1047,0.1024,0.0897,0.1033,0.0645,0.1054,0.1002,0.1003,0.0915,0.0671,0.068,0.0948,0.1113,0.1133,0.0893,0.1011,0.0612,0.1041,0.0839,0.099,0.0927,0.0623,0.0698,0.0948,0.1231,0.1147,0.0917,0.1046,0.0688,0.1049,0.0807,0.1063,0.0952,0.0662,0.0645,0.0931,0.1019,0.1012,0.0901,0.099,0.0637,0.104,0.0807,0.1028,0.0901,0.064,0.067,0.0935,0.104,0.1059,0.0887,0.103,0.0638,0.1,0.0795,0.0975,0.091,0.0661
50940,37,0.0657,0.0952,0.1049,0.1018,0.0892,0.1022,0.074,0.101,0.0831,0.094,0.0917,0.0652,0.0679,0.0946,0.0988,0.0956,0.0877,0.0994,0.0613,0.0971,0.0815,0.0938,0.0914,0.0701,0.0672,0.0942,0.0996,0.0956,0.0884,0.0992,0.0631,0.1019,0.0801,0.0965,0.0911,0.0703,0.0678,0.0947,0.1048,0.1031,0.0906,0.1042,0.0699,0.1071,0.0998,0.1042,0.0927,0.0655,0.0677,0.0948,0.1119,0.1143,0.0899,0.1022,0.0634,0.106,0.0854,0.1017,0.0939,0.0656,0.0696,0.0948,0.1228,0.1154,0.0934,0.1063,0.0714,0.1066,0.082,0.1114,0.0974,0.0644,0.0645,0.0932,0.102,0.1017,0.0908,0.0997,0.0648,0.1056,0.0817,0.1066,0.0928,0.0663,0.0671,0.0933,0.1042,0.1062,0.0893,0.1037,0.0633,0.1015,0.0796,0.1,0.0921,0.0647
51030,37,0.0693,0.0953,0.1042,0.1013,0.0886,0.1006,0.065,0.0996,0.0821,0.0932,0.0919,0.0684,0.07,0.0942,0.0979,0.0943,0.0871,0.0985,0.0642,0.0967,0.0812,0.0931,0.0907,0.0645,0.0671,0.0937,0.0988,0.0948,0.0879,0.0986,0.063,0.1008,0.08,0.095,0.0907,0.0716,0.0706,0.0945,0.1038,0.1019,0.0899,0.1033,0.0717,0.106,0.0997,0.1014,0.0915,0.0645,0.0698,0.0942,0.1106,0.1124,0.089,0.101,0.0636,0.104,0.0843,0.0991,0.0928,0.0645,0.0667,0.095,0.1231,0.1138,0.0922,0.1044,0.0676,0.1049,0.0801,0.1061,0.095,0.066,0.0648,0.0928,0.1015,0.101,0.0904,0.099,0.0636,0.1038,0.0809,0.102,0.0892,0.0621,0.0664,0.0936,0.1041,0.1058,0.0893,0.1031,0.063,0.1002,0.0792,0.0977,0.0911,0.0675
51120,37,0.0686,0.0953,0.1044,0.1014,0.089,0.1011,0.0665,0.0994,0.0819,0.093,0.0906,0.0674,0.0699,0.0943,0.0981,0.0946,0.0872,0.0986,0.0638,0.0962,0.0812,0.0929,0.0908,0.0707,0.0673,0.0938,0.0987,0.0952,0.0882,0.0985,0.0646,0.1004,0.0798,0.0946,0.0902,0.0669,0.0693,0.0941,0.1042,0.102,0.0902,0.1034,0.0648,0.1056,0.1003,0.1012,0.0917,0.0668,0.0695,0.0945,0.1113,0.1133,0.0893,0.1012,0.0638,0.1041,0.0844,0.0992,0.0927,0.0635,0.0674,0.0949,0.1234,0.1141,0.0924,0.1047,0.0698,0.1049,0.0811,0.1063,0.0948,0.0655,0.0643,0.093,0.1017,0.1014,0.0907,0.0989,0.0644,0.1042,0.0808,0.1023,0.0901,0.0644,0.0651,0.0931,0.1037,0.1056,0.0884,0.1028,0.0628,0.0998,0.0792,0.0971,0.0911,0.0657
51210,37,0.0685,0.0955,0.1051,0.1024,0.0894,0.102,0.0694,0.1012,0.0827,0.0938,0.0921,0.0637,0.0691,0.0946,0.0984,0.0952,0.0879,0.0995,0.0615,0.0969,0.0816,0.0937,0.0915,0.068,0.0656,0.0942,0.0998,0.096,0.0887,0.0995,0.0663,0.1017,0.0802,0.097,0.0911,0.0692,0.0696,0.0946,0.1048,0.1032,0.0907,0.1042,0.0702,0.1072,0.097,0.1044,0.0931,0.0646,0.0677,0.0948,0.1121,0.1142,0.09,0.1016,0.0621,0.106,0.0853,0.1021,0.0941,0.0696,0.0693,0.095,0.1232,0.1153,0.0935,0.1063,0.0747,0.1069,0.0819,0.1104,0.0978,0.0659,0.0658,0.0937,0.1022,0.1012,0.0904,0.099,0.0616,0.1044,0.0817,0.1085,0.0922,0.0677,0.0658,0.0938,0.104,0.1057,0.0901,0.1034,0.0724,0.1016,0.0802,0.1,0.0919,0.0637
51300,37,0.0676,0.0946,0.1041,0.1013,0.0891,0.1017,0.0701,0.101,0.0828,0.0939,0.0921,0.0643,0.071,0.0944,0.0981,0.0956,0.0876,0.0992,0.0604,0.0971,0.0818,0.0934,0.0913,0.0694,0.0657,0.0939,0.0995,0.0956,0.0889,0.0995,0.065,0.1011,0.0801,0.0956,0.0904,0.0695,0.0694,0.095,0.1051,0.1034,0.0909,0.1044,0.0678,0.1069,0.094,0.1038,0.0933,0.0645,0.0678,0.0949,0.1125,0.1149,0.0904,0.1017,0.0619,0.1053,0.0849,0.1018,0.094,0.0718,0.0678,0.0953,0.1234,0.1156,0.0932,0.1058,0.0677,0.1064,0.081,0.112,0.0979,0.067,0.066,0.0941,0.1024,0.1016,0.0907,0.0996,0.0612,0.1042,0.0812,0.1075,0.0912,0.067,0.0688,0.0935,0.1038,0.1054,0.0901,0.1037,0.0703,0.1015,0.0801,0.0999,0.0921,0.0654
51390,37,0.0687,0.0948,0.1044,0.1017,0.0892,0.102,0.0733,0.1009,0.0827,0.0939,0.0913,0.066,0.0685,0.0943,0.0988,0.096,0.0877,0.0994,0.0616,0.0971,0.0818,0.0927,0.0912,0.0705,0.0667,0.094,0.0998,0.096,0.089,0.0998,0.0703,0.1011,0.0801,0.0957,0.0899,0.0651,0.0689,0.0946,0.1048,0.1033,0.0909,0.1042,0.0653,0.1063,0.0994,0.1031,0.0933,0.0651,0.0687,0.0951,0.1126,0.1154,0.0907,0.1021,0.0634,0.1052,0.0851,0.1019,0.0938,0.069,0.0688,0.0954,0.1238,0.1151,0.0932,0.1057,0.0691,0.1069,0.0816,0.1108,0.0978,0.0655,0.0645,0.0937,0.1025,0.1018,0.091,0.0995,0.0624,0.1044,0.0813,0.1069,0.0917,0.0667,0.0666,0.0938,0.1043,0.1059,0.0898,0.1038,0.0676,0.1016,0.0805,0.0997,0.0922,0.064
51480,37,0.0655,0.0952,0.1047,0.102,0.0894,0.1023,0.073,0.101,0.0824,0.0939,0.0917,0.0652,0.0677,0.0944,0.0984,0.0948,0.088,0.0994,0.0608,0.097,0.0819,0.0933,0.091,0.0702,0.0666,0.094,0.0997,0.0957,0.0886,0.0994,0.0649,0.1016,0.08,0.0962,0.0906,0.07,0.0691,0.0947,0.1045,0.103,0.0907,0.1045,0.0692,0.1072,0.0923,0.1046,0.0929,0.0642,0.0672,0.0946,0.1119,0.1142,0.0899,0.1017,0.0646,0.1063,0.0855,0.1021,0.094,0.0656,0.0698,0.0948,0.1235,0.1151,0.0939,0.1061,0.0721,0.1068,0.0819,0.1104,0.0974,0.0644,0.0643,0.0937,0.102,0.1012,0.0906,0.0991,0.0618,0.1044,0.0815,0.1076,0.0918,0.0669,0.0655,0.0932,0.1037,0.1054,0.0898,0.1036,0.0684,0.1017,0.0801,0.0996,0.0925,0.0642
51570,37,0.0671,0.0952,0.1045,0.1017,0.0894,0.102,0.0716,0.1006,0.0823,0.0938,0.0915,0.0661,0.0676,0.0947,0.0983,0.0946,0.0876,0.0994,0.0623,0.097,0.0819,0.0932,0.0913,0.0701,0.0656,0.0939,0.0995,0.0955,0.0886,0.0991,0.0628,0.1012,0.08,0.0962,0.0903,0.071,0.0682,0.095,0.1045,0.1028,0.0906,0.1041,0.0678,0.1069,0.0909,0.1047,0.0931,0.0672,0.0687,0.0952,0.112,0.1143,0.0902,0.1017,0.0618,0.1053,0.0852,0.1018,0.0934,0.0666,0.0679,0.0953,0.1238,0.1152,0.0934,0.1058,0.0646,0.1063,0.0816,0.1122,0.0983,0.0676,0.0653,0.0941,0.1026,0.1016,0.0908,0.0996,0.0613,0.1043,0.081,0.1068,0.0912,0.066,0.0689,0.0935,0.1033,0.1052,0.09,0.1036,0.0636,0.1014,0.08,0.1004,0.0921,0.0671
51660,37,0.0659,0.0952,0.1047,0.102,0.0895,0.1022,0.0746,0.1004,0.0824,0.0938,0.0908,0.0656,0.0673,0.0943,0.0985,0.0954,0.0878,0.0993,0.0629,0.0968,0.0816,0.0929,0.091,0.0723,0.0668,0.0942,0.0996,0.096,0.0893,0.0994,0.0673,0.1009,0.0803,0.0952,0.0901,0.0661,0.0674,0.0945,0.1053,0.1028,0.0912,0.1042,0.0648,0.1067,0.0969,0.104,0.0929,0.0651,0.0678,0.0952,0.1127,0.1153,0.0907,0.102,0.0628,0.1052,0.0848,0.1014,0.0939,0.0674,0.0695,0.0949,0.1237,0.116,0.093,0.1059,0.0663,0.1062,0.0818,0.1103,0.0985,0.0655,0.0644,0.094,0.1025,0.1014,0.0905,0.0993,0.0622,0.1045,0.0811,0.1066,0.0914,0.0653,0.0663,0.0932,0.1039,0.1056,0.0899,0.1038,0.0665,0.1016,0.0802,0.0996,0.092,0.0643
51750,37,0.0678,0.0948,0.1042,0.1009,0.0884,0.101,0.0728,0.1006,0.0823,0.0936,0.0907,0.0631,0.0693,0.0936,0.0977,0.0946,0.0874,0.0989,0.0638,0.0963,0.0812,0.0929,0.09,0.069,0.0663,0.0938,0.099,0.0952,0.0884,0.099,0.0696,0.1003,0.0797,0.094,0.0898,0.0678,0.0699,0.0942,0.1041,0.1027,0.0902,0.1034,0.0648,0.1059,0.0915,0.1006,0.0915,0.064,0.0679,0.0949,0.1114,0.1135,0.0894,0.1007,0.0613,0.1039,0.0844,0.1005,0.0935,0.0749,0.0656,0.0948,0.124,0.114,0.0926,0.1046,0.0693,0.1052,0.0811,0.1073,0.0948,0.0644,0.0646,0.0936,0.1017,0.1005,0.09,0.0986,0.0613,0.103,0.0806,0.1039,0.0899,0.0652,0.0676,0.0935,0.1035,0.1052,0.0898,0.1032,0.0675,0.1007,0.08,0.0975,0.0908,0.0644
51840,37,0.0659,0.095,0.104,0.101,0.0889,0.1009,0.0709,0.0997,0.0821,0.0931,0.0907,0.0669,0.0707,0.0939,0.0977,0.0946,0.0874,0.0984,0.0612,0.0962,0.0815,0.0926,0.0903,0.0699,0.0668,0.0936,0.0988,0.0952,0.0887,0.0987,0.0663,0.0997,0.0795,0.0935,0.0898,0.0714,0.0694,0.0947,0.1039,0.1026,0.0904,0.1035,0.0657,0.1059,0.0887,0.1008,0.0918,0.0672,0.071,0.0952,0.1118,0.1138,0.0901,0.1008,0.0641,0.1035,0.0837,0.099,0.0927,0.0699,0.0688,0.095,0.1243,0.1147,0.0917,0.1044,0.0634,0.1047,0.0812,0.1077,0.0958,0.0662,0.0652,0.0937,0.1021,0.1009,0.0905,0.099,0.0607,0.1026,0.0803,0.1038,0.0893,0.067,0.0684,0.0929,0.103,0.1054,0.0895,0.1029,0.0646,0.1003,0.0796,0.0977,0.0908,0.0658
51930,37,0.067,0.0947,0.1039,0.1011,0.089,0.1009,0.0714,0.1003,0.0823,0.0934,0.0902,0.0659,0.0699,0.0935,0.0977,0.0948,0.0876,0.0988,0.0641,0.0961,0.0817,0.0922,0.0901,0.0701,0.0663,0.0934,0.0989,0.0953,0.0887,0.0992,0.0726,0.1,0.08,0.0936,0.0893,0.0646,0.0691,0.094,0.1043,0.1032,0.0905,0.1031,0.0622,0.1053,0.0916,0.1003,0.0912,0.0688,0.0669,0.0949,0.1124,0.1145,0.0905,0.1012,0.0702,0.1031,0.0837,0.0985,0.0925,0.068,0.068,0.0944,0.1245,0.1153,0.0921,0.1046,0.0642,0.1049,0.0809,0.1076,0.0953,0.067,0.0657,0.0939,0.1024,0.1011,0.0905,0.099,0.0632,0.103,0.0804,0.1055,0.0902,0.0692,0.0685,0.0936,0.1036,0.1058,0.0896,0.1031,0.0682,0.1006,0.0801,0.0978,0.0909,0.0645
52020,37,0.0671,0.0948,0.1038,0.1007,0.0889,0.101,0.0712,0.1003,0.0826,0.0936,0.0912,0.0652,0.0691,0.0929,0.0976,0.0946,0.0878,0.0988,0.0611,0.0964,0.0817,0.0927,0.0902,0.0703,0.0653,0.0932,0.0985,0.0948,0.0884,0.0991,0.076,0.1004,0.08,0.0935,0.0897,0.0657,0.067,0.0939,0.1043,0.1025,0.0905,0.1035,0.063,0.1057,0.0879,0.1012,0.0914,0.0664,0.0686,0.0948,0.1114,0.1136,0.09,0.1007,0.0633,0.1038,0.0847,0.0996,0.0929,0.0744,0.0688,0.0944,0.1243,0.1142,0.0923,0.1043,0.0694,0.105,0.0811,0.1076,0.0948,0.0639,0.0647,0.0933,0.1016,0.1004,0.09,0.0984,0.0615,0.1034,0.0811,0.1055,0.0898,0.0643,0.0665,0.0937,0.1036,0.1056,0.09,0.1031,0.0667,0.1004,0.0795,0.098,0.0909,0.0657
52110,37,0.0698,0.0946,0.1037,0.1009,0.0891,0.1006,0.0689,0.0998,0.0824,0.0924,0.0906,0.0691,0.0692,0.0941,0.0973,0.0945,0.0876,0.0985,0.061,0.0961,0.0816,0.092,0.0902,0.0723,0.066,0.0937,0.0986,0.0951,0.0889,0.0986,0.0668,0.1,0.08,0.0938,0.0898,0.0685,0.0668,0.0944,0.104,0.1026,0.0902,0.103,0.0654,0.1055,0.0882,0.1009,0.0916,0.0663,0.0705,0.0948,0.1115,0.1134,0.0899,0.1007,0.0621,0.1034,0.0844,0.0993,0.0925,0.0663,0.0658,0.0949,0.1239,0.1132,0.0923,0.1045,0.0636,0.1046,0.0807,0.1071,0.0953,0.0675,0.0645,0.093,0.1014,0.1009,0.0908,0.0988,0.0634,0.1037,0.0809,0.1032,0.0896,0.0627,0.0652,0.0934,0.104,0.1057,0.0896,0.103,0.0624,0.1001,0.0797,0.0976,0.0907,0.0693
52200,37,0.0655,0.0948,0.1041,0.1011,0.0894,0.1012,0.0749,0.0999,0.0822,0.0931,0.0903,0.066,0.069,0.0936,0.0978,0.0944,0.0878,0.0984,0.0627,0.096,0.0813,0.0923,0.0902,0.0699,0.0667,0.0937,0.0991,0.0954,0.0889,0.0986,0.0694,0.1001,0.0799,0.0942,0.0897,0.0667,0.0658,0.0941,0.104,0.1026,0.0905,0.1033,0.0634,0.1055,0.0893,0.1007,0.0916,0.0651,0.0687,0.0946,0.1117,0.1138,0.0898,0.1006,0.0614,0.104,0.0846,0.0992,0.093,0.0684,0.0687,0.0947,0.124,0.115,0.0929,0.1044,0.0708,0.1053,0.0812,0.1071,0.0953,0.0657,0.0651,0.0932,0.1016,0.101,0.0904,0.0984,0.0622,0.104,0.0813,0.1058,0.0902,0.066,0.0655,0.0932,0.1038,0.1054,0.0895,0.1028,0.0693,0.1007,0.08,0.0971,0.0909,0.0649
52290,37,0.0659,0.0945,0.1038,0.1014,0.0894,0.101,0.0727,0.1002,0.0827,0.0935,0.091,0.062,0.0686,0.0936,0.0977,0.0943,0.0878,0.0987,0.0596,0.096,0.0818,0.0926,0.0903,0.068,0.0672,0.0936,0.0984,0.095,0.0886,0.0983,0.0647,0.1002,0.08,0.0941,0.0902,0.0689,0.0663,0.0941,0.1038,0.1014,0.0907,0.1029,0.068,0.1056,0.0887,0.1016,0.0913,0.0631,0.0689,0.0945,0.1114,0.1135,0.09,0.1007,0.0604,0.1041,0.0847,0.0992,0.0925,0.0684,0.0652,0.0948,0.1246,0.1135,0.0928,0.1046,0.0732,0.1052,0.0811,0.1084,0.0953,0.0642,0.0654,0.0931,0.1014,0.1004,0.0904,0.0985,0.061,0.1033,0.0813,0.1042,0.0897,0.0654,0.0658,0.0931,0.1037,0.105,0.0899,0.1029,0.0688,0.1003,0.0797,0.0978,0.0909,0.0636
52380,37,0.0654,0.0943,0.1036,0.1008,0.0892,0.1007,0.0717,0.0998,0.0827,0.093,0.0902,0.0653,0.0684,0.0938,0.0976,0.0945,0.0876,0.0986,0.063,0.0958,0.0815,0.0922,0.0903,0.0708,0.0664,0.0932,0.0985,0.0951,0.089,0.0987,0.0682,0.1,0.0802,0.0938,0.0894,0.0664,0.0662,0.0942,0.1043,0.1022,0.0904,0.103,0.0667,0.1053,0.087,0.1002,0.0915,0.0665,0.0688,0.0947,0.1118,0.1139,0.0903,0.1009,0.064,0.1034,0.0844,0.099,0.0924,0.0669,0.0672,0.0947,0.1245,0.1147,0.0926,0.1042,0.0645,0.1047,0.0811,0.108,0.0958,0.0663,0.0656,0.0932,0.1019,0.1012,0.0911,0.099,0.0605,0.1031,0.081,0.1044,0.0898,0.0648,0.0651,0.0933,0.1038,0.1054,0.0899,0.103,0.0674,0.1001,0.0799,0.0978,0.0908,0.0637
52470,37,0.0668,0.0946,0.1043,0.1016,0.0899,0.102,0.0742,0.1015,0.0835,0.0939,0.0912,0.0649,0.0698,0.0946,0.0983,0.0951,0.0882,0.0995,0.0635,0.0971,0.0818,0.0931,0.0905,0.0697,0.0656,0.0937,0.0996,0.096,0.0896,0.0999,0.0788,0.1014,0.0811,0.096,0.0901,0.0645,0.0663,0.094,0.1045,0.1033,0.0914,0.1044,0.063,0.1065,0.0892,0.1034,0.0927,0.0681,0.0661,0.0946,0.113,0.1161,0.0914,0.1018,0.0711,0.1047,0.085,0.1007,0.0934,0.0695,0.0687,0.0945,0.1245,0.1165,0.0938,0.106,0.0653,0.1064,0.0822,0.113,0.0982,0.0662,0.0649,0.0939,0.1025,0.1021,0.0917,0.0993,0.0622,0.1042,0.0816,0.1085,0.0915,0.0674,0.0667,0.0934,0.1041,0.1062,0.0904,0.1035,0.0678,0.1017,0.0805,0.1009,0.0925,0.0641
52560,37,0.0678,0.0938,0.1032,0.1002,0.0884,0.1003,0.0677,0.1006,0.0829,0.0936,0.091,0.07,0.071,0.0934,0.0969,0.0933,0.0875,0.0984,0.067,0.0959,0.0818,0.0925,0.0901,0.0636,0.0633,0.0925,0.0984,0.0945,0.0882,0.0992,0.0721,0.1005,0.0805,0.0941,0.0894,0.0645,0.0671,0.0938,0.1034,0.1021,0.0904,0.1033,0.0606,0.1054,0.0857,0.1006,0.0913,0.0669,0.0651,0.0937,0.1117,0.1141,0.0905,0.1011,0.071,0.1034,0.084,0.0978,0.0918,0.0659,0.0664,0.0944,0.1249,0.1147,0.0925,0.1044,0.065,0.1043,0.0808,0.1089,0.0954,0.0667,0.0658,0.0937,0.1023,0.1016,0.0912,0.0988,0.0674,0.1024,0.0804,0.1039,0.0899,0.0666,0.0699,0.0932,0.1036,0.1051,0.0899,0.1026,0.066,0.1004,0.0799,0.0987,0.0909,0.0643
52650,37,0.0727,0.0953,0.1043,0.1012,0.0896,0.1013,0.0658,0.1013,0.0831,0.0935,0.0912,0.0648,0.0725,0.0944,0.0975,0.0943,0.088,0.0988,0.0606,0.0968,0.0823,0.0928,0.0907,0.0692,0.0652,0.0933,0.099,0.0953,0.0891,0.0995,0.0714,0.1014,0.0808,0.0953,0.0895,0.066,0.0686,0.0942,0.1046,0.103,0.091,0.1042,0.0634,0.1066,0.0896,0.1033,0.0921,0.0693,0.0661,0.0946,0.1123,0.1154,0.0916,0.1022,0.0743,0.1036,0.0845,0.0997,0.0925,0.0653,0.0671,0.0948,0.1249,0.1162,0.0939,0.1059,0.0641,0.1058,0.0812,0.1135,0.0984,0.0685,0.0649,0.0941,0.1029,0.1025,0.092,0.0998,0.0695,0.1034,0.0806,0.1064,0.0908,0.0662,0.0703,0.0936,0.1038,0.1061,0.0909,0.104,0.0636,0.1016,0.0805,0.1013,0.0924,0.0648
52740,37,0.0692,0.095,0.1042,0.1013,0.0895,0.1014,0.0683,0.1017,0.0831,0.094,0.0916,0.0644,0.0717,0.0943,0.0976,0.0946,0.0881,0.099,0.0613,0.0969,0.0819,0.093,0.0906,0.0687,0.0655,0.0935,0.0992,0.0954,0.0892,0.1,0.0759,0.1015,0.0811,0.0957,0.0895,0.0653,0.0687,0.0939,0.1044,0.1032,0.0916,0.1042,0.0616,0.1064,0.0885,0.1037,0.0922,0.0674,0.0655,0.0945,0.1128,0.1159,0.0917,0.1023,0.0754,0.1038,0.0847,0.0999,0.0931,0.0677,0.0646,0.0945,0.125,0.1162,0.094,0.1061,0.0619,0.1063,0.0816,0.1122,0.0985,0.0668,0.0646,0.0941,0.1028,0.1021,0.0918,0.0994,0.0698,0.104,0.0806,0.1069,0.0912,0.0696,0.0703,0.0931,0.1042,0.1063,0.0908,0.1036,0.0653,0.102,0.0809,0.1009,0.0925,0.0637
52830,37,0.0705,0.0952,0.1041,0.101,0.0893,0.1013,0.0678,0.1014,0.0831,0.0938,0.092,0.0713,0.0718,0.0939,0.0973,0.0942,0.0881,0.0994,0.0701,0.0975,0.0822,0.0932,0.0909,0.0674,0.0644,0.0934,0.099,0.095,0.0889,0.0997,0.0715,0.1014,0.0809,0.0956,0.09,0.0662,0.072,0.0938,0.1045,0.1034,0.0914,0.1043,0.0638,0.1075,0.0907,0.1037,0.0925,0.0682,0.066,0.0948,0.1127,0.1157,0.0915,0.1023,0.0694,0.1041,0.085,0.1006,0.093,0.0698,0.0675,0.0947,0.125,0.1162,0.0941,0.1055,0.0656,0.1065,0.0821,0.1135,0.0986,0.0672,0.0662,0.0945,0.1027,0.1014,0.0914,0.0995,0.0663,0.1032,0.0808,0.1078,0.0912,0.07,0.0703,0.0934,0.104,0.1061,0.091,0.1038,0.0667,0.1021,0.0805,0.1012,0.0923,0.0647
52920,37,0.0727,0.0951,0.104,0.1011,0.0895,0.1014,0.0678,0.1008,0.0832,0.0937,0.0919,0.0642,0.0719,0.0946,0.0978,0.0943,0.0882,0.099,0.0606,0.097,0.0823,0.093,0.0906,0.0704,0.0654,0.0934,0.0988,0.0951,0.0894,0.0997,0.0758,0.1005,0.0811,0.0953,0.0894,0.0654,0.0711,0.094,0.1045,0.1038,0.0913,0.1041,0.0635,0.1065,0.0894,0.1032,0.0922,0.0706,0.0661,0.0947,0.113,0.1163,0.092,0.1022,0.0722,0.1039,0.0846,0.0994,0.0925,0.0662,0.0662,0.0949,0.1251,0.1166,0.0937,0.106,0.0632,0.1061,0.0814,0.1128,0.0988,0.0688,0.0653,0.0943,0.103,0.1023,0.0919,0.0999,0.0695,0.1035,0.0809,0.1071,0.0908,0.0683,0.071,0.0935,0.1039,0.106,0.0909,0.1036,0.0622,0.1019,0.0806,0.1012,0.092,0.0647
53010,37,0.0678,0.0948,0.1035,0.1004,0.089,0.1007,0.0702,0.1001,0.083,0.0933,0.0903,0.0638,0.0715,0.0936,0.0971,0.0942,0.0878,0.0986,0.0616,0.0959,0.082,0.0924,0.0896,0.068,0.0655,0.093,0.0982,0.0944,0.0885,0.0991,0.074,0.1004,0.0811,0.0942,0.0891,0.0658,0.071,0.0937,0.1036,0.1029,0.0908,0.1037,0.0624,0.1056,0.0904,0.1002,0.0906,0.0678,0.0656,0.094,0.1121,0.1149,0.0909,0.1016,0.075,0.1029,0.0843,0.0979,0.0918,0.0651,0.0702,0.0935,0.1252,0.1162,0.0929,0.104,0.0603,0.1044,0.0814,0.1071,0.0953,0.0674,0.0652,0.0938,0.1022,0.1016,0.0913,0.099,0.0713,0.1027,0.0804,0.1026,0.0895,0.0655,0.0683,0.0926,0.1038,0.1053,0.0898,0.1028,0.0617,0.1006,0.0801,0.098,0.0913,0.0649
53100,37,0.0713,0.0955,0.1043,0.1012,0.0895,0.1012,0.0646,0.1012,0.0831,0.0937,0.092,0.071,0.0738,0.0948,0.0973,0.0938,0.0883,0.0991,0.0732,0.0974,0.0827,0.0932,0.0908,0.0674,0.0643,0.0934,0.0985,0.0946,0.0887,0.0995,0.0663,0.1016,0.0812,0.0964,0.0903,0.0665,0.07,0.0942,0.1035,0.1025,0.091,0.1045,0.0692,0.1075,0.0881,0.1047,0.0921,0.0642,0.0651,0.0939,0.1122,0.115,0.0914,0.1023,0.0709,0.1046,0.0854,0.1,0.0927,0.0649,0.0681,0.0944,0.1248,0.1165,0.0944,0.1058,0.064,0.106,0.0814,0.1114,0.0983,0.0692,0.064,0.0937,0.1023,0.1021,0.0921,0.0999,0.0707,0.1042,0.0811,0.1056,0.0903,0.0654,0.0688,0.0929,0.104,0.1067,0.0906,0.1035,0.0607,0.1017,0.0802,0.1014,0.0923,0.066
53190,37,0.074,0.0957,0.1044,0.1015,0.09,0.1009,0.0632,0.0999,0.0827,0.0931,0.0922,0.0673,0.0726,0.0943,0.0977,0.0945,0.0883,0.0988,0.066,0.097,0.0824,0.0931,0.091,0.0682,0.069,0.0935,0.0984,0.0945,0.089,0.099,0.0644,0.1016,0.0815,0.0965,0.09,0.0652,0.0675,0.0944,0.104,0.1024,0.0913,0.1043,0.064,0.1068,0.0915,0.1038,0.0922,0.0693,0.0662,0.0944,0.112,0.1148,0.0912,0.1021,0.0669,0.105,0.0858,0.1007,0.0923,0.0638,0.0688,0.0946,0.1247,0.1163,0.0945,0.1066,0.0628,0.1059,0.0817,0.1118,0.0981,0.0687,0.065,0.0933,0.1022,0.1025,0.0924,0.0998,0.0702,0.105,0.0812,0.1046,0.0908,0.0638,0.0681,0.093,0.1043,0.1069,0.0906,0.1036,0.0614,0.1018,0.0802,0.101,0.0922,0.0662
53280,37,0.0707,0.0953,0.104,0.1013,0.0898,0.1005,0.0646,0.0992,0.0822,0.0929,0.0909,0.0635,0.0708,0.0938,0.0974,0.094,0.0884,0.098,0.062,0.0961,0.0816,0.0925,0.0901,0.0656,0.0676,0.0938,0.0981,0.0943,0.0887,0.0982,0.0614,0.1006,0.0807,0.095,0.09,0.0691,0.0704,0.0939,0.1033,0.102,0.0908,0.1034,0.0695,0.1056,0.0927,0.1015,0.091,0.0633,0.0681,0.0939,0.1113,0.1136,0.0902,0.1009,0.0663,0.1047,0.0852,0.099,0.0921,0.0628,0.069,0.094,0.1245,0.1148,0.0937,0.1053,0.0694,0.1049,0.0815,0.1066,0.0952,0.0655,0.0646,0.0927,0.1012,0.1013,0.0918,0.0988,0.067,0.104,0.0811,0.1018,0.0897,0.0638,0.065,0.0924,0.1037,0.1058,0.0895,0.1026,0.0615,0.0999,0.0799,0.098,0.0909,0.0658
53370,37,0.0694,0.0954,0.1042,0.1013,0.0897,0.1005,0.0634,0.0995,0.0823,0.0927,0.0911,0.0648,0.0708,0.0939,0.0971,0.0939,0.088,0.0981,0.0657,0.0959,0.0822,0.0924,0.0903,0.0649,0.0674,0.093,0.0978,0.094,0.0883,0.0981,0.0639,0.1006,0.0808,0.0949,0.0903,0.073,0.0719,0.0936,0.103,0.1018,0.0906,0.1031,0.0712,0.1058,0.0921,0.1005,0.0911,0.0649,0.0672,0.0936,0.1109,0.1131,0.0902,0.1008,0.0649,0.1044,0.0852,0.099,0.0916,0.0628,0.067,0.0944,0.1245,0.1145,0.0935,0.1052,0.0643,0.1046,0.0809,0.1075,0.0955,0.066,0.0642,0.0926,0.1013,0.1014,0.0918,0.0991,0.0677,0.1034,0.081,0.1023,0.0891,0.0628,0.0661,0.0927,0.1038,0.1057,0.0898,0.1025,0.0602,0.1,0.0794,0.0982,0.0907,0.0683
53460,37,0.069,0.0957,0.1048,0.1022,0.0906,0.1015,0.0644,0.1002,0.0826,0.0932,0.0919,0.0667,0.0697,0.0947,0.0978,0.0942,0.0886,0.0986,0.0664,0.0968,0.0825,0.0929,0.091,0.0699,0.0693,0.094,0.0984,0.0949,0.0896,0.0987,0.064,0.1013,0.0812,0.0967,0.0902,0.0695,0.0701,0.0945,0.1036,0.1029,0.0915,0.104,0.067,0.1066,0.0892,0.1034,0.0925,0.0673,0.0676,0.0941,0.1122,0.1149,0.0914,0.1019,0.0651,0.1056,0.0861,0.1013,0.0926,0.063,0.0694,0.0942,0.1248,0.1164,0.0947,0.1066,0.0626,0.1059,0.082,0.1121,0.0981,0.0676,0.0647,0.0932,0.102,0.1024,0.0927,0.1,0.0691,0.105,0.0818,0.1054,0.0907,0.0634,0.0673,0.0928,0.104,0.1068,0.0902,0.1034,0.0601,0.1009,0.08,0.1013,0.0929,0.0653
53550,37,0.0739,0.0958,0.1048,0.1023,0.0905,0.1015,0.0634,0.1009,0.0829,0.0936,0.0923,0.0663,0.0726,0.0948,0.0976,0.0948,0.0884,0.0985,0.068,0.0971,0.0825,0.0933,0.0906,0.0678,0.066,0.0933,0.0983,0.0946,0.089,0.0989,0.0648,0.1017,0.0812,0.0968,0.0903,0.0679,0.0716,0.094,0.1031,0.1024,0.0917,0.1038,0.0698,0.1069,0.0883,0.104,0.0923,0.0643,0.0651,0.0938,0.1125,0.1154,0.0918,0.1022,0.0701,0.1058,0.0859,0.1005,0.0926,0.0643,0.0704,0.094,0.1248,0.1162,0.095,0.1067,0.0626,0.1062,0.082,0.1125,0.0985,0.0681,0.0646,0.0932,0.102,0.1022,0.0926,0.0996,0.0693,0.105,0.0814,0.1064,0.0914,0.0658,0.0683,0.093,0.1044,0.1067,0.0907,0.1034,0.0628,0.1018,0.0807,0.1017,0.0922,0.0651
53640,37,0.0757,0.0951,0.1042,0.1016,0.09,0.1009,0.0635,0.1011,0.0834,0.0937,0.0931,0.0719,0.0733,0.0948,0.0969,0.0937,0.0886,0.0986,0.0746,0.0973,0.0829,0.0933,0.0911,0.064,0.0663,0.093,0.0982,0.0943,0.089,0.0992,0.0659,0.1014,0.0813,0.0964,0.09,0.064,0.0706,0.0943,0.1037,0.1029,0.0915,0.1044,0.0658,0.1068,0.0876,0.1038,0.0922,0.0664,0.0657,0.0939,0.1123,0.1152,0.0916,0.1021,0.071,0.1044,0.0855,0.1004,0.0923,0.0651,0.0698,0.0943,0.1254,0.1167,0.0945,0.106,0.0616,0.106,0.0818,0.113,0.0982,0.0688,0.0646,0.0935,0.1025,0.1025,0.0927,0.0998,0.0707,0.1041,0.0812,0.1053,0.0902,0.0631,0.07,0.0929,0.1041,0.1066,0.0909,0.1036,0.0635,0.1011,0.0803,0.1014,0.0922,0.0659
53730,37,0.0701,0.0952,0.1042,0.1013,0.0897,0.1002,0.0619,0.0993,0.0823,0.0928,0.0908,0.0658,0.0724,0.094,0.097,0.0937,0.0881,0.0978,0.0642,0.096,0.0817,0.0923,0.0901,0.0684,0.0682,0.0932,0.0977,0.0941,0.0885,0.0982,0.0635,0.1002,0.0808,0.0949,0.0894,0.0646,0.0678,0.0936,0.103,0.1015,0.0909,0.103,0.0627,0.1052,0.0874,0.101,0.0909,0.0656,0.067,0.0938,0.1116,0.1139,0.0906,0.1011,0.0681,0.1044,0.0853,0.0986,0.0915,0.0626,0.0693,0.0938,0.125,0.1153,0.0939,0.1048,0.0626,0.1043,0.0814,0.1072,0.0947,0.066,0.0646,0.0929,0.1012,0.1014,0.0918,0.0984,0.0649,0.1037,0.0813,0.1024,0.0892,0.0637,0.0646,0.0925,0.1035,0.1056,0.0901,0.1026,0.0612,0.0997,0.0799,0.0981,0.0908,0.066
53820,37,0.0716,0.0955,0.1047,0.1021,0.0906,0.1014,0.0665,0.1007,0.0826,0.0932,0.092,0.0652,0.0693,0.0943,0.0979,0.0944,0.0886,0.0986,0.0654,0.0966,0.0828,0.093,0.0912,0.064,0.0672,0.0938,0.0987,0.0949,0.0891,0.0985,0.0625,0.1014,0.0808,0.0964,0.0905,0.0735,0.0713,0.0943,0.1038,0.1025,0.0914,0.104,0.0718,0.1073,0.0867,0.1052,0.0928,0.0618,0.0665,0.0942,0.1116,0.1142,0.0908,0.1015,0.0645,0.1057,0.0866,0.1018,0.0929,0.069,0.0677,0.0947,0.1253,0.1153,0.0954,0.1069,0.071,0.1068,0.0827,0.113,0.0983,0.0664,0.0645,0.0933,0.1012,0.101,0.0916,0.0988,0.0625,0.1046,0.0824,0.1083,0.0907,0.0665,0.0662,0.0929,0.1038,0.106,0.0911,0.1034,0.0635,0.101,0.0803,0.1016,0.0921,0.0667
53910,37,0.0703,0.095,0.104,0.1013,0.09,0.1004,0.0652,0.0989,0.0822,0.0923,0.0903,0.0675,0.0722,0.0943,0.0969,0.0937,0.0884,0.098,0.0659,0.096,0.0816,0.092,0.0902,0.0692,0.067,0.0934,0.098,0.0945,0.089,0.0976,0.0628,0.0997,0.0803,0.0942,0.09,0.0744,0.0679,0.0943,0.1028,0.1022,0.0907,0.1029,0.0688,0.1057,0.085,0.1015,0.0913,0.0675,0.0697,0.0943,0.1112,0.113,0.0903,0.1005,0.0632,0.1039,0.0852,0.0991,0.0916,0.0662,0.0683,0.0946,0.1255,0.114,0.0933,0.1048,0.0637,0.1048,0.0812,0.1076,0.0952,0.0665,0.0658,0.0931,0.1012,0.1009,0.0913,0.0983,0.0632,0.1032,0.0812,0.1028,0.0892,0.0635,0.067,0.0933,0.1037,0.1056,0.0905,0.1031,0.061,0.1002,0.0802,0.0986,0.0908,0.0668
54000,37,0.0664,0.0951,0.1041,0.1014,0.0902,0.1011,0.0708,0.0991,0.0825,0.0928,0.0898,0.066,0.0704,0.0936,0.097,0.0944,0.0884,0.0981,0.0637,0.0956,0.0816,0.0921,0.0898,0.0688,0.0675,0.0939,0.0983,0.0949,0.0895,0.0982,0.0663,0.1,0.0801,0.0942,0.0893,0.0691,0.066,0.0937,0.1036,0.1018,0.0908,0.1031,0.0649,0.1055,0.0857,0.1013,0.091,0.063,0.0676,0.0944,0.1116,0.1135,0.0904,0.1005,0.0625,0.1041,0.0853,0.099,0.0923,0.0717,0.0658,0.0942,0.1257,0.1146,0.0936,0.1044,0.0692,0.1048,0.0817,0.1076,0.0956,0.0659,0.0651,0.0932,0.1011,0.1007,0.0912,0.098,0.0622,0.1036,0.0814,0.1037,0.0897,0.0645,0.0652,0.0929,0.1036,0.1056,0.0907,0.1031,0.0626,0.1003,0.0805,0.0982,0.0909,0.0647
54090,37,0.0648,0.0951,0.1045,0.102,0.0906,0.1017,0.0718,0.1008,0.0831,0.0933,0.0911,0.0661,0.0696,0.0939,0.0973,0.0942,0.0888,0.0989,0.0623,0.0966,0.0826,0.0925,0.0906,0.0706,0.0668,0.0939,0.0988,0.0953,0.0901,0.0988,0.0646,0.1014,0.0805,0.0958,0.09,0.0722,0.0715,0.0942,0.1035,0.1028,0.0918,0.1037,0.0681,0.1069,0.0838,0.1049,0.0922,0.0636,0.0683,0.0945,0.1115,0.1141,0.0908,0.101,0.0628,0.1055,0.0867,0.1022,0.0933,0.0712,0.0674,0.0946,0.1251,0.1147,0.0949,0.106,0.0712,0.1067,0.0829,0.1123,0.0975,0.0662,0.0647,0.0935,0.1014,0.1011,0.0917,0.099,0.0628,0.1047,0.0822,0.1072,0.0907,0.0654,0.0662,0.0932,0.1035,0.1058,0.0915,0.1038,0.0635,0.1015,0.0805,0.1014,0.0921,0.0657
54180,37,0.0677,0.0956,0.1045,0.102,0.0906,0.1017,0.065,0.0999,0.0824,0.0931,0.0914,0.0673,0.0742,0.0949,0.0975,0.0939,0.0892,0.0986,0.0661,0.0967,0.0828,0.0924,0.091,0.0689,0.07,0.0939,0.098,0.0947,0.0895,0.0986,0.063,0.1012,0.0809,0.0964,0.09,0.0727,0.0717,0.0942,0.1038,0.1026,0.0918,0.1036,0.066,0.1068,0.0825,0.1048,0.0922,0.0664,0.0659,0.0942,0.1117,0.1143,0.0913,0.1015,0.0634,0.1051,0.086,0.1004,0.0924,0.0643,0.0682,0.0946,0.1254,0.116,0.0952,0.106,0.0621,0.1058,0.083,0.1117,0.098,0.0681,0.0675,0.0934,0.1021,0.1023,0.0927,0.0996,0.0691,0.1048,0.0815,0.1052,0.0905,0.0632,0.0676,0.0925,0.1038,0.1063,0.0908,0.1035,0.0609,0.1012,0.0802,0.1019,0.0924,0.0696
54270,37,0.071,0.0957,0.1048,0.1019,0.0906,0.1013,0.0638,0.1002,0.0825,0.0934,0.0918,0.065,0.0714,0.0945,0.0976,0.0941,0.0889,0.0986,0.0637,0.0968,0.0827,0.0929,0.0904,0.0687,0.0682,0.0933,0.0985,0.0946,0.0894,0.0994,0.0686,0.1016,0.0815,0.0966,0.0897,0.0644,0.0697,0.0939,0.1038,0.1024,0.092,0.1038,0.0642,0.1067,0.0844,0.1049,0.0913,0.0671,0.0659,0.0939,0.1124,0.1151,0.0918,0.1022,0.0709,0.1053,0.0863,0.1001,0.0922,0.0654,0.0702,0.094,0.1252,0.117,0.0953,0.1063,0.0625,0.1059,0.0826,0.1122,0.0979,0.0688,0.0645,0.0932,0.1019,0.1022,0.0925,0.0996,0.0685,0.1051,0.0819,0.1058,0.091,0.0636,0.0664,0.0927,0.1043,0.1067,0.0908,0.1035,0.0619,0.1016,0.0806,0.1017,0.0921,0.0654
54360,37,0.07,0.0956,0.1047,0.1021,0.0906,0.1015,0.0647,0.1006,0.0831,0.0935,0.0933,0.071,0.0712,0.0943,0.0975,0.094,0.0892,0.0983,0.0685,0.097,0.0829,0.093,0.0906,0.068,0.0661,0.0932,0.0978,0.0944,0.0895,0.0987,0.0644,0.1016,0.0814,0.0969,0.0904,0.0729,0.0695,0.094,0.1035,0.1022,0.0918,0.1036,0.0714,0.1071,0.0857,0.1052,0.0916,0.0651,0.0666,0.0939,0.1114,0.1139,0.0911,0.1017,0.0637,0.1056,0.0868,0.1014,0.0926,0.0653,0.067,0.0944,0.1254,0.1155,0.0956,0.1063,0.0686,0.1062,0.0826,0.1128,0.0975,0.0662,0.0636,0.0934,0.1014,0.1014,0.0926,0.0996,0.0658,0.1049,0.0822,0.1066,0.0914,0.0634,0.066,0.0931,0.104,0.1066,0.0915,0.1033,0.0617,0.1016,0.0805,0.103,0.0918,0.0659
54450,37,0.067,0.095,0.1038,0.1012,0.0905,0.1007,0.0657,0.0987,0.0828,0.092,0.0908,0.0674,0.0696,0.0937,0.0967,0.0937,0.0886,0.098,0.0657,0.0955,0.0822,0.0919,0.09,0.0697,0.0681,0.0935,0.0976,0.0944,0.0897,0.0977,0.064,0.1001,0.0807,0.0945,0.0898,0.072,0.0675,0.094,0.1033,0.1017,0.0917,0.1024,0.0663,0.1057,0.0834,0.1016,0.0908,0.0658,0.0691,0.0943,0.1111,0.1132,0.0907,0.1005,0.0612,0.1035,0.0857,0.0993,0.0917,0.0622,0.069,0.0942,0.1257,0.1141,0.0939,0.1048,0.0678,0.1046,0.0819,0.1078,0.0953,0.0651,0.0644,0.0927,0.1013,0.1012,0.0918,0.0984,0.0651,0.1039,0.0817,0.1039,0.0896,0.0634,0.0644,0.0927,0.1034,0.1057,0.0905,0.1027,0.0639,0.1003,0.0802,0.0981,0.0911,0.0683
54540,37,0.0654,0.0951,0.1044,0.1021,0.0911,0.1021,0.0755,0.101,0.0835,0.0931,0.0923,0.0647,0.071,0.0938,0.0976,0.0952,0.0892,0.0988,0.0595,0.0966,0.0827,0.0922,0.0907,0.0704,0.0672,0.0935,0.0988,0.0955,0.0904,0.0992,0.0702,0.1013,0.081,0.0956,0.09,0.0687,0.0684,0.094,0.104,0.1032,0.0925,0.104,0.0661,0.1069,0.0828,0.106,0.092,0.0645,0.0678,0.0945,0.1126,0.1147,0.0916,0.101,0.0623,0.1054,0.0869,0.102,0.0936,0.0706,0.0699,0.0945,0.1261,0.1164,0.0955,0.1066,0.0734,0.1067,0.0835,0.1127,0.099,0.0659,0.0639,0.0934,0.1014,0.1012,0.0916,0.0986,0.0625,0.1047,0.0827,0.11,0.0917,0.0673,0.0657,0.0927,0.1037,0.1056,0.0914,0.1032,0.0684,0.1014,0.0808,0.1012,0.092,0.0637
54630,37,0.07,0.0943,0.1034,0.1015,0.0906,0.1015,0.0713,0.1017,0.0841,0.0933,0.0915,0.0634,0.0696,0.0938,0.0971,0.0941,0.089,0.0988,0.0662,0.0967,0.0831,0.0926,0.0902,0.0689,0.0653,0.0928,0.0984,0.0949,0.0902,0.0997,0.0775,0.1011,0.0815,0.0953,0.0897,0.0658,0.0701,0.0936,0.1036,0.1033,0.0922,0.1039,0.0629,0.1066,0.0821,0.1043,0.0922,0.0682,0.0657,0.0941,0.1126,0.1155,0.0924,0.1018,0.0704,0.1037,0.0861,0.1006,0.0927,0.0682,0.0687,0.0944,0.1264,0.1166,0.095,0.1057,0.0655,0.1061,0.0821,0.1148,0.099,0.068,0.0658,0.0937,0.1022,0.1022,0.0929,0.0996,0.0696,0.1036,0.0818,0.1081,0.0907,0.0681,0.0707,0.0937,0.1038,0.1063,0.0922,0.1036,0.0661,0.1017,0.081,0.1021,0.0924,0.0651
54720,37,0.0736,0.0951,0.1037,0.1014,0.0907,0.1011,0.0642,0.101,0.0838,0.0935,0.0928,0.0673,0.0712,0.0943,0.0972,0.0938,0.089,0.0986,0.0679,0.0969,0.0828,0.0926,0.0904,0.0687,0.0667,0.0928,0.0982,0.0947,0.0899,0.0994,0.0728,0.1015,0.082,0.0955,0.0895,0.0639,0.0701,0.0935,0.1035,0.1029,0.0922,0.1041,0.0608,0.1067,0.0817,0.1038,0.0918,0.0695,0.0666,0.094,0.113,0.1161,0.0928,0.1022,0.077,0.1043,0.0858,0.1,0.0922,0.0649,0.0693,0.0941,0.1264,0.1171,0.0953,0.106,0.0625,0.1055,0.0824,0.113,0.0988,0.0684,0.0648,0.0933,0.1022,0.1023,0.0931,0.0996,0.0707,0.1042,0.0816,0.1072,0.0908,0.0681,0.0692,0.093,0.1042,0.1066,0.0918,0.1037,0.0647,0.1016,0.0812,0.102,0.0922,0.0643
54810,37,0.0765,0.095,0.1039,0.1016,0.0907,0.101,0.0643,0.1012,0.0838,0.0937,0.0923,0.0724,0.0726,0.0943,0.0969,0.0938,0.0891,0.0986,0.0713,0.0967,0.0831,0.0928,0.0905,0.0676,0.0657,0.0928,0.0979,0.0942,0.0895,0.0992,0.069,0.1018,0.0817,0.0967,0.0899,0.064,0.0701,0.0934,0.1033,0.1029,0.0923,0.1037,0.0669,0.1067,0.0826,0.1047,0.0914,0.0647,0.0652,0.0934,0.1122,0.1152,0.0922,0.1022,0.0695,0.1055,0.0867,0.1013,0.0927,0.0661,0.0681,0.0939,0.126,0.1162,0.096,0.1065,0.0635,0.1062,0.0823,0.1128,0.0983,0.0687,0.065,0.093,0.1013,0.102,0.093,0.0994,0.0686,0.1046,0.082,0.1062,0.0907,0.0655,0.0661,0.0926,0.1039,0.1062,0.0917,0.1035,0.0622,0.1014,0.0808,0.1025,0.0931,0.0647
54900,37,0.0732,0.0951,0.1041,0.1014,0.0907,0.1008,0.0625,0.1008,0.0836,0.0932,0.0923,0.0693,0.0728,0.0944,0.0967,0.0936,0.0889,0.0982,0.07,0.097,0.083,0.0927,0.0907,0.0642,0.0684,0.0928,0.0976,0.0939,0.0893,0.0989,0.0649,0.1012,0.0816,0.0966,0.0897,0.0689,0.0687,0.0939,0.1034,0.1022,0.092,0.1038,0.0646,0.1067,0.0821,0.1052,0.0915,0.0672,0.0661,0.0936,0.1121,0.115,0.0922,0.102,0.0699,0.105,0.0865,0.1008,0.0897,0.0652,0.0694,0.0942,0.1261,0.1167,0.0953,0.1061,0.0612,0.1058,0.0818,0.1129,0.0993,0.0707,0.0651,0.0933,0.1018,0.1024,0.0933,0.0996,0.0708,0.1045,0.0818,0.1059,0.09,0.0643,0.0712,0.093,0.1042,0.1066,0.0918,0.1036,0.0622,0.1012,0.0805,0.1027,0.0927,0.0667
54990,37,0.0723,0.0952,0.1042,0.102,0.0908,0.1009,0.062,0.1003,0.083,0.0932,0.0919,0.0669,0.0735,0.0948,0.097,0.094,0.0888,0.0983,0.0662,0.0966,0.0828,0.0927,0.0906,0.0676,0.0674,0.0932,0.098,0.0942,0.0895,0.099,0.066,0.1013,0.0815,0.0962,0.0897,0.0668,0.072,0.0941,0.1035,0.1031,0.0924,0.1044,0.0651,0.107,0.0818,0.1048,0.0918,0.0655,0.0657,0.0938,0.1126,0.1154,0.0922,0.1022,0.0705,0.1056,0.0868,0.1008,0.0902,0.0636,0.0693,0.0939,0.126,0.1164,0.0959,0.1065,0.0625,0.1061,0.0828,0.1125,0.0986,0.0686,0.0652,0.0934,0.1017,0.1022,0.0929,0.099,0.0662,0.1047,0.0822,0.1059,0.0903,0.0646,0.067,0.0925,0.1041,0.1069,0.0915,0.1034,0.06,0.1014,0.0812,0.1022,0.0923,0.0652
55080,37,0.0709,0.0955,0.1047,0.1022,0.091,0.1015,0.0664,0.1004,0.083,0.0929,0.0924,0.0666,0.0694,0.0938,0.0972,0.0938,0.0892,0.0984,0.0672,0.0965,0.0832,0.0926,0.0908,0.065,0.0673,0.0937,0.0982,0.0948,0.0898,0.0986,0.0629,0.1019,0.0815,0.0966,0.0905,0.0747,0.0711,0.0938,0.1034,0.1024,0.0921,0.1034,0.0729,0.1071,0.0829,0.1054,0.092,0.0621,0.0658,0.0938,0.1117,0.1141,0.0914,0.1011,0.0648,0.1058,0.0874,0.1021,0.0904,0.0668,0.0685,0.0942,0.1264,0.1149,0.0964,0.1072,0.0682,0.1065,0.0831,0.1132,0.0978,0.0666,0.0643,0.093,0.1013,0.1014,0.0924,0.0986,0.0629,0.1049,0.0822,0.1066,0.0908,0.0652,0.0667,0.0929,0.1038,0.1059,0.092,0.1035,0.061,0.1015,0.0809,0.1021,0.0923,0.0646
55170,37,0.0716,0.0955,0.1045,0.1022,0.0914,0.1017,0.0683,0.1003,0.0833,0.0928,0.0917,0.0672,0.0701,0.0943,0.0972,0.0943,0.0892,0.0984,0.0665,0.0965,0.0826,0.0925,0.0907,0.0687,0.068,0.0938,0.0982,0.0949,0.0901,0.0983,0.0632,0.1011,0.0809,0.0959,0.0899,0.0756,0.0684,0.0943,0.1031,0.1022,0.0918,0.1035,0.0704,0.1071,0.082,0.1053,0.0922,0.0666,0.0672,0.0942,0.1117,0.1139,0.0914,0.1012,0.0621,0.1051,0.0872,0.1022,0.0904,0.07,0.0695,0.0946,0.1264,0.1156,0.0959,0.1066,0.0661,0.1063,0.0827,0.114,0.0984,0.0669,0.0642,0.0933,0.1014,0.1017,0.0926,0.0989,0.0661,0.1045,0.0817,0.106,0.0897,0.0649,0.067,0.0933,0.1036,0.1061,0.0917,0.1036,0.0609,0.1016,0.081,0.1024,0.0925,0.0664
55260,37,0.0662,0.095,0.1039,0.1013,0.0907,0.1005,0.0648,0.0986,0.0823,0.0922,0.09,0.0681,0.07,0.0937,0.0969,0.0933,0.0888,0.0974,0.0664,0.0956,0.0822,0.0915,0.0898,0.0682,0.0682,0.0934,0.0975,0.0939,0.0893,0.098,0.0616,0.1,0.0808,0.0946,0.0892,0.0721,0.0677,0.0939,0.1031,0.1015,0.0917,0.1026,0.066,0.1061,0.0811,0.1016,0.0906,0.0638,0.0666,0.094,0.1112,0.1133,0.091,0.1008,0.0644,0.1038,0.0853,0.0986,0.0887,0.0631,0.0687,0.0942,0.1264,0.1146,0.0942,0.1051,0.0614,0.1045,0.0816,0.1082,0.0955,0.0656,0.0653,0.093,0.1008,0.1012,0.0922,0.098,0.0642,0.1037,0.0816,0.1027,0.0893,0.0635,0.0646,0.0928,0.1035,0.1058,0.0912,0.103,0.0618,0.1003,0.0809,0.099,0.0905,0.0661
55350,37,0.067,0.095,0.1043,0.1021,0.0915,0.1024,0.0772,0.1011,0.0836,0.0935,0.0916,0.065,0.0707,0.0938,0.0972,0.0948,0.0894,0.0987,0.0616,0.0967,0.0828,0.0925,0.0902,0.0701,0.0671,0.0938,0.0986,0.0953,0.0904,0.0987,0.0679,0.1012,0.0808,0.095,0.0893,0.0682,0.0663,0.0935,0.1045,0.1028,0.0928,0.1036,0.0659,0.1068,0.0823,0.1057,0.092,0.0651,0.0665,0.0947,0.1126,0.115,0.0917,0.101,0.0614,0.105,0.087,0.1017,0.0908,0.0717,0.0664,0.0947,0.1264,0.1153,0.0959,0.1063,0.0693,0.1068,0.0835,0.1137,0.0984,0.0665,0.0642,0.0938,0.1014,0.1008,0.0916,0.0984,0.0608,0.104,0.0824,0.1099,0.0912,0.0676,0.0657,0.0933,0.1033,0.1054,0.0926,0.1036,0.0688,0.1019,0.0816,0.1022,0.0926,0.0634
55440,37,0.0657,0.0942,0.1032,0.1006,0.0904,0.1002,0.0692,0.0994,0.0832,0.0922,0.0908,0.065,0.0689,0.0932,0.0965,0.0937,0.0888,0.098,0.0604,0.096,0.0827,0.0916,0.0895,0.0705,0.0652,0.0928,0.0976,0.0942,0.0896,0.0982,0.069,0.1,0.0808,0.0933,0.089,0.0679,0.066,0.0932,0.1035,0.1018,0.0922,0.1024,0.0651,0.106,0.0806,0.1021,0.0901,0.0674,0.0684,0.0947,0.1115,0.1134,0.091,0.0999,0.064,0.103,0.0856,0.099,0.0897,0.0731,0.0648,0.0944,0.1266,0.1141,0.094,0.1046,0.0658,0.105,0.0813,0.1099,0.0958,0.0665,0.0658,0.0934,0.101,0.1004,0.0918,0.0981,0.0612,0.1027,0.0815,0.1051,0.0891,0.066,0.0683,0.0933,0.1033,0.105,0.0924,0.103,0.0664,0.1008,0.081,0.099,0.0908,0.0662
55530,37,0.0652,0.0948,0.1037,0.1011,0.0908,0.1007,0.0703,0.0991,0.0831,0.0924,0.0898,0.066,0.0691,0.093,0.0965,0.0937,0.0887,0.0978,0.0617,0.0956,0.0824,0.0915,0.0892,0.0708,0.0671,0.0932,0.0976,0.0944,0.0901,0.0983,0.0686,0.0995,0.0808,0.0933,0.0887,0.0669,0.0688,0.0932,0.1038,0.1023,0.0918,0.1027,0.0654,0.1054,0.0806,0.101,0.0902,0.0668,0.0673,0.0945,0.1119,0.114,0.0913,0.1003,0.0671,0.1027,0.0852,0.0991,0.0894,0.0714,0.067,0.0947,0.1268,0.1142,0.0938,0.1048,0.0637,0.1048,0.0816,0.1091,0.0953,0.0635,0.0649,0.0933,0.1013,0.1017,0.0923,0.0983,0.0657,0.1028,0.0815,0.1047,0.0892,0.0659,0.066,0.093,0.1036,0.1059,0.092,0.1031,0.0624,0.1003,0.0809,0.0987,0.0905,0.064
55620,37,0.0653,0.0947,0.1039,0.1013,0.0911,0.1012,0.0761,0.0993,0.0834,0.0925,0.0899,0.0646,0.0696,0.0929,0.0967,0.0939,0.0888,0.0979,0.0604,0.0957,0.0824,0.0915,0.0891,0.0705,0.0665,0.0933,0.0977,0.0944,0.09,0.0982,0.0697,0.0999,0.0807,0.0937,0.0887,0.0669,0.0644,0.0932,0.1031,0.1021,0.0917,0.1029,0.0638,0.1053,0.0816,0.1015,0.0904,0.0662,0.0669,0.0944,0.112,0.1141,0.0914,0.1002,0.0668,0.1032,0.0858,0.0996,0.0898,0.073,0.0663,0.0942,0.1269,0.1152,0.0937,0.1047,0.0668,0.105,0.0825,0.1095,0.0954,0.066,0.0653,0.0935,0.1009,0.1005,0.0915,0.0981,0.0606,0.1029,0.0821,0.1075,0.0898,0.0673,0.0657,0.0928,0.103,0.1054,0.0916,0.1027,0.0679,0.1007,0.0808,0.0985,0.0905,0.0636
55710,37,0.0721,0.0947,0.1037,0.1018,0.0913,0.1018,0.0705,0.1009,0.0842,0.0934,0.0919,0.0649,0.0692,0.0935,0.0969,0.0938,0.0894,0.0986,0.0624,0.0967,0.0833,0.0925,0.09,0.0698,0.0662,0.0931,0.0983,0.095,0.0905,0.0991,0.0742,0.101,0.0818,0.0952,0.0895,0.0695,0.0679,0.0933,0.1039,0.1029,0.0925,0.1035,0.0653,0.1065,0.0823,0.1053,0.0913,0.0683,0.0657,0.0942,0.1126,0.1151,0.0921,0.101,0.0668,0.1042,0.0865,0.1017,0.0906,0.0725,0.0677,0.0945,0.1272,0.1158,0.0956,0.1062,0.0672,0.1067,0.0829,0.115,0.0982,0.0669,0.0665,0.0938,0.1018,0.1019,0.0929,0.099,0.0654,0.1036,0.0825,0.1096,0.0911,0.068,0.0682,0.0935,0.1035,0.1059,0.0932,0.1039,0.0705,0.1021,0.0814,0.102,0.0921,0.0653
55800,37,0.0654,0.0943,0.1032,0.1008,0.0909,0.1004,0.0683,0.0995,0.0836,0.0923,0.0902,0.0646,0.0689,0.0932,0.0959,0.0931,0.0888,0.0979,0.062,0.0956,0.0824,0.0916,0.0889,0.0689,0.0663,0.0929,0.0972,0.0942,0.09,0.0983,0.0729,0.0997,0.0813,0.0936,0.0884,0.0647,0.068,0.0933,0.1031,0.1026,0.0921,0.103,0.0622,0.1056,0.0814,0.101,0.09,0.0687,0.0659,0.0939,0.1122,0.1146,0.092,0.1006,0.0719,0.1022,0.085,0.0976,0.0892,0.0669,0.0674,0.094,0.1276,0.1153,0.0946,0.1044,0.0614,0.1045,0.0817,0.1096,0.0958,0.0666,0.0653,0.0932,0.1017,0.1018,0.0928,0.0988,0.0708,0.1028,0.0812,0.1038,0.0895,0.0651,0.0705,0.0929,0.104,0.1061,0.0918,0.1029,0.0627,0.1006,0.0809,0.0993,0.0907,0.0639
55890,37,0.0694,0.0944,0.1032,0.1005,0.0905,0.1003,0.0677,0.1001,0.0837,0.0929,0.0905,0.0668,0.0712,0.0931,0.0958,0.0931,0.0889,0.0976,0.0692,0.0957,0.0829,0.0918,0.0891,0.0659,0.0653,0.0923,0.0972,0.0937,0.0893,0.0984,0.0721,0.1004,0.0816,0.0944,0.0888,0.0643,0.0677,0.093,0.1025,0.1017,0.0919,0.103,0.064,0.1057,0.0816,0.101,0.09,0.0647,0.066,0.0932,0.1113,0.1138,0.0916,0.1008,0.0712,0.1034,0.0858,0.0976,0.0891,0.0646,0.0692,0.0933,0.1268,0.1157,0.0945,0.1043,0.0642,0.1048,0.0824,0.1085,0.0953,0.0663,0.0651,0.0929,0.101,0.1014,0.0925,0.0982,0.0688,0.1032,0.0815,0.105,0.0891,0.0667,0.0671,0.0918,0.1042,0.106,0.0913,0.1026,0.0611,0.1004,0.0809,0.0994,0.0906,0.0649
55980,37,0.0699,0.095,0.1035,0.1008,0.0907,0.0999,0.0624,0.0992,0.0834,0.0927,0.0915,0.07,0.0724,0.0935,0.0962,0.0927,0.089,0.0974,0.0712,0.0959,0.0829,0.0921,0.0893,0.0649,0.0675,0.0922,0.0967,0.0931,0.089,0.0977,0.0642,0.1003,0.0816,0.0947,0.0891,0.0678,0.0694,0.0934,0.1026,0.1016,0.0918,0.1028,0.0708,0.1056,0.082,0.1019,0.09,0.0665,0.0659,0.0931,0.1108,0.1135,0.0913,0.1002,0.065,0.1036,0.0858,0.098,0.0892,0.0659,0.0685,0.0942,0.127,0.115,0.0948,0.1043,0.0604,0.1046,0.0821,0.109,0.0955,0.0682,0.066,0.093,0.1015,0.102,0.0933,0.0988,0.0707,0.1028,0.0813,0.1024,0.0887,0.0659,0.0717,0.0929,0.1038,0.106,0.0918,0.1026,0.063,0.1005,0.0805,0.1006,0.0907,0.0663
56070,37,0.0676,0.0951,0.1038,0.1012,0.0912,0.1001,0.0622,0.099,0.0833,0.092,0.0904,0.0657,0.075,0.0938,0.0959,0.0932,0.0889,0.0975,0.0698,0.0957,0.083,0.0918,0.0895,0.0675,0.0688,0.0928,0.0967,0.0935,0.0895,0.0975,0.0632,0.1004,0.0816,0.095,0.0893,0.0676,0.0706,0.0928,0.1026,0.102,0.0922,0.1029,0.0703,0.1058,0.0821,0.1016,0.0902,0.0653,0.0668,0.0932,0.1115,0.114,0.0917,0.1008,0.0686,0.1036,0.0861,0.0984,0.0888,0.0628,0.0696,0.0937,0.127,0.1152,0.0946,0.1051,0.0632,0.1045,0.0823,0.1082,0.0956,0.0666,0.0644,0.0926,0.1009,0.1019,0.0932,0.0985,0.0678,0.1037,0.0818,0.1016,0.0892,0.0635,0.0676,0.0923,0.1037,0.1059,0.0912,0.1026,0.0607,0.1001,0.0806,0.0987,0.0909,0.0662
56160,37,0.072,0.0953,0.1045,0.1023,0.0915,0.1012,0.0627,0.1007,0.0837,0.0931,0.092,0.0671,0.072,0.0937,0.0965,0.0937,0.0893,0.0981,0.07,0.0966,0.0837,0.0924,0.0902,0.0678,0.068,0.0928,0.0974,0.0941,0.0896,0.0984,0.0649,0.1014,0.0819,0.0969,0.0898,0.0681,0.07,0.0934,0.1032,0.1025,0.093,0.1041,0.071,0.1071,0.0833,0.1056,0.0916,0.0647,0.0652,0.0933,0.1117,0.1147,0.0924,0.1015,0.0683,0.1055,0.0875,0.101,0.0898,0.0639,0.068,0.0941,0.1268,0.1164,0.0965,0.1068,0.0679,0.1065,0.0839,0.1125,0.0985,0.0678,0.0647,0.0928,0.1012,0.1019,0.0933,0.099,0.0684,0.1046,0.0828,0.1075,0.0908,0.0655,0.066,0.0925,0.104,0.1066,0.0927,0.1035,0.0622,0.1014,0.0812,0.1037,0.0926,0.0661
56250,37,0.0727,0.0952,0.1041,0.102,0.0917,0.1011,0.0615,0.1003,0.0838,0.0929,0.0926,0.0701,0.072,0.094,0.0968,0.0937,0.0898,0.0982,0.0722,0.0968,0.0835,0.0926,0.0904,0.0676,0.0682,0.0931,0.0973,0.094,0.09,0.0981,0.0639,0.1016,0.0819,0.0972,0.0898,0.073,0.0701,0.0939,0.1022,0.1023,0.0928,0.1031,0.0746,0.1068,0.0833,0.1056,0.0916,0.0662,0.0672,0.0935,0.1115,0.114,0.0918,0.101,0.0647,0.1051,0.0876,0.1016,0.0898,0.0649,0.0687,0.0945,0.1271,0.1158,0.0966,0.1067,0.064,0.106,0.0837,0.1126,0.0987,0.0683,0.0639,0.0927,0.1008,0.1016,0.0935,0.099,0.0668,0.1048,0.0829,0.1071,0.09,0.0642,0.0667,0.0932,0.1039,0.1065,0.0924,0.1038,0.0602,0.1014,0.081,0.1028,0.0922,0.0683
56340,37,0.0713,0.0949,0.1037,0.1014,0.0913,0.0999,0.0628,0.0991,0.0833,0.092,0.0906,0.0664,0.0701,0.0935,0.0961,0.0927,0.0892,0.0968,0.0651,0.0954,0.0826,0.0915,0.0894,0.069,0.0697,0.0925,0.0967,0.0934,0.0894,0.0977,0.0635,0.1004,0.0816,0.0947,0.0886,0.0624,0.0717,0.0934,0.102,0.1017,0.092,0.1024,0.0634,0.1052,0.0817,0.1008,0.0903,0.0662,0.0658,0.0932,0.1119,0.1143,0.092,0.1011,0.0723,0.1036,0.0859,0.0977,0.0885,0.0651,0.0691,0.0937,0.1275,0.1154,0.0947,0.1046,0.0627,0.1038,0.082,0.1086,0.0963,0.0676,0.0654,0.0927,0.101,0.102,0.0932,0.0987,0.0696,0.1033,0.0815,0.1024,0.0887,0.0645,0.07,0.0924,0.104,0.1063,0.0917,0.1028,0.0603,0.1004,0.081,0.0998,0.0911,0.0654
56430,37,0.0703,0.0952,0.1043,0.1019,0.0916,0.1012,0.0644,0.1009,0.0843,0.0938,0.0924,0.0706,0.073,0.0942,0.0966,0.0934,0.0896,0.0978,0.0674,0.0968,0.0835,0.0924,0.0907,0.0653,0.0676,0.0929,0.0977,0.094,0.0897,0.099,0.0666,0.1018,0.0821,0.0969,0.0894,0.0648,0.0709,0.093,0.1029,0.1025,0.0925,0.1037,0.0676,0.1068,0.0833,0.1054,0.0915,0.0669,0.065,0.0933,0.1121,0.115,0.0927,0.1018,0.068,0.1056,0.0878,0.1012,0.09,0.0638,0.0686,0.0939,0.127,0.1167,0.0966,0.1067,0.0622,0.106,0.0841,0.1129,0.0985,0.0682,0.0648,0.093,0.1012,0.102,0.0932,0.0989,0.0669,0.1046,0.0827,0.1071,0.0904,0.0657,0.0654,0.0925,0.1038,0.1062,0.0923,0.1034,0.0609,0.1013,0.081,0.1036,0.0924,0.0663
56520,37,0.0722,0.095,0.1039,0.1017,0.0914,0.101,0.0632,0.1006,0.0838,0.0931,0.0926,0.0693,0.0728,0.094,0.0964,0.0933,0.0893,0.0979,0.0698,0.0966,0.0836,0.0922,0.0905,0.0664,0.0674,0.0926,0.0973,0.0936,0.0894,0.0987,0.065,0.1015,0.0822,0.0967,0.0892,0.0674,0.0695,0.0939,0.103,0.1026,0.0926,0.1039,0.0662,0.1071,0.0825,0.1048,0.0914,0.0677,0.0659,0.0933,0.1119,0.1148,0.0924,0.1017,0.0676,0.1051,0.0877,0.1008,0.0895,0.0634,0.0682,0.0942,0.1272,0.1158,0.0962,0.1062,0.0618,0.1059,0.0838,0.1127,0.0988,0.0692,0.0648,0.093,0.1012,0.102,0.0936,0.0989,0.0684,0.1044,0.0825,0.1058,0.0897,0.0629,0.0668,0.0931,0.104,0.1066,0.0929,0.1037,0.0609,0.1017,0.081,0.1029,0.0923,0.0666
56610,37,0.07,0.0948,0.1037,0.1014,0.0913,0.1002,0.0633,0.099,0.0831,0.0923,0.0907,0.0656,0.0705,0.0937,0.0962,0.093,0.0889,0.0972,0.0658,0.0953,0.0822,0.0912,0.0895,0.0675,0.0686,0.0929,0.0971,0.0936,0.0894,0.0979,0.0607,0.1002,0.0813,0.0934,0.0884,0.0673,0.0708,0.0934,0.1025,0.1016,0.0916,0.1027,0.0653,0.1058,0.081,0.1014,0.0903,0.0637,0.0658,0.0935,0.1113,0.1133,0.0914,0.1007,0.0666,0.1041,0.0866,0.0988,0.0889,0.0629,0.0694,0.0939,0.1269,0.1144,0.0946,0.105,0.0614,0.1046,0.0815,0.1078,0.0955,0.0655,0.0665,0.0926,0.1006,0.1016,0.0928,0.0982,0.0668,0.1039,0.082,0.1018,0.0885,0.0632,0.0658,0.0926,0.1037,0.106,0.0916,0.1028,0.0602,0.1002,0.0806,0.0996,0.091,0.0685
56700,37,0.0697,0.0953,0.1046,0.1024,0.0919,0.1014,0.0645,0.1005,0.0834,0.0928,0.0924,0.0649,0.072,0.094,0.0966,0.0941,0.0895,0.0979,0.0654,0.0963,0.0833,0.0921,0.0903,0.0676,0.0686,0.0932,0.0977,0.0942,0.0897,0.0984,0.0636,0.1014,0.0817,0.0966,0.0897,0.0704,0.0708,0.0934,0.1033,0.1027,0.0928,0.1038,0.0704,0.1072,0.0826,0.1056,0.0916,0.0654,0.0649,0.0936,0.112,0.1148,0.0922,0.1017,0.0671,0.1054,0.088,0.1014,0.0902,0.0652,0.071,0.0938,0.127,0.1164,0.0968,0.1071,0.0661,0.1062,0.0836,0.1122,0.0984,0.0673,0.0644,0.0929,0.1008,0.1016,0.0931,0.0987,0.0661,0.105,0.0825,0.1054,0.0904,0.0648,0.0658,0.0921,0.1036,0.1061,0.0924,0.1033,0.06,0.1014,0.0812,0.1025,0.0922,0.0653
56790,37,0.0681,0.0949,0.1036,0.1009,0.0911,0.1001,0.0641,0.099,0.0834,0.0923,0.0918,0.0688,0.0746,0.0936,0.0955,0.0927,0.0887,0.0974,0.0659,0.0957,0.0825,0.0915,0.0894,0.064,0.066,0.0923,0.0967,0.0929,0.0889,0.0977,0.0644,0.1,0.0817,0.0946,0.0889,0.0713,0.0732,0.0935,0.1016,0.1012,0.0917,0.1026,0.0719,0.1058,0.0825,0.1019,0.0901,0.0645,0.0658,0.0933,0.1114,0.1139,0.0916,0.1006,0.0702,0.1032,0.086,0.0978,0.0885,0.0645,0.0684,0.094,0.1279,0.1149,0.0948,0.1042,0.0616,0.1049,0.0827,0.1091,0.0964,0.0689,0.0655,0.0933,0.1011,0.1017,0.093,0.0985,0.0707,0.1027,0.0812,0.1027,0.0882,0.0643,0.0718,0.0928,0.1039,0.1057,0.0923,0.1028,0.064,0.1006,0.0809,0.1004,0.091,0.0664
56880,37,0.0713,0.0952,0.1041,0.1018,0.0917,0.101,0.0616,0.1,0.0836,0.0931,0.093,0.0675,0.074,0.0943,0.0965,0.0926,0.0895,0.098,0.0666,0.0965,0.0836,0.0918,0.0904,0.067,0.0673,0.093,0.0977,0.0942,0.0899,0.0992,0.0727,0.1013,0.0823,0.0963,0.0887,0.0652,0.0704,0.0937,0.1029,0.1029,0.0929,0.1041,0.0608,0.1066,0.0829,0.1041,0.091,0.0678,0.0659,0.0937,0.1124,0.1156,0.0929,0.102,0.0719,0.1044,0.0871,0.1,0.0896,0.0655,0.0683,0.094,0.128,0.1169,0.096,0.1063,0.0642,0.1054,0.0826,0.1129,0.0988,0.0692,0.0657,0.0938,0.102,0.1025,0.0936,0.0992,0.0723,0.1043,0.082,0.106,0.0903,0.0651,0.0719,0.0927,0.1042,0.1069,0.0928,0.1039,0.0622,0.1019,0.0816,0.1033,0.0922,0.0663
56970,37,0.0696,0.095,0.1036,0.1007,0.091,0.1004,0.066,0.0995,0.0839,0.0927,0.0915,0.0715,0.074,0.0932,0.0954,0.0928,0.0892,0.0974,0.0681,0.0957,0.0826,0.0917,0.0892,0.0679,0.0648,0.0923,0.0973,0.0936,0.0892,0.0983,0.0732,0.0999,0.0819,0.094,0.0886,0.0642,0.068,0.0926,0.1024,0.102,0.092,0.1029,0.0615,0.1056,0.0818,0.1007,0.0897,0.0654,0.0653,0.0936,0.112,0.1145,0.092,0.1005,0.0738,0.1028,0.0857,0.0978,0.0891,0.0665,0.0686,0.0936,0.1283,0.1152,0.0949,0.1043,0.0622,0.1048,0.0825,0.1093,0.0953,0.0666,0.0678,0.0935,0.1012,0.1014,0.0927,0.0983,0.0696,0.1024,0.0814,0.1039,0.0888,0.0676,0.0699,0.0927,0.1038,0.1059,0.0927,0.1028,0.0642,0.1011,0.0814,0.0998,0.0908,0.0637
57060,37,0.0706,0.0946,0.1029,0.1003,0.0906,0.0998,0.0634,0.0993,0.0839,0.0922,0.0921,0.0682,0.0735,0.0938,0.095,0.0919,0.0893,0.0972,0.0717,0.0957,0.0835,0.0918,0.0894,0.0668,0.0663,0.0922,0.0967,0.0931,0.0893,0.0984,0.0689,0.1002,0.0818,0.0941,0.0885,0.0643,0.0695,0.093,0.1026,0.1019,0.0918,0.1028,0.0626,0.1056,0.0816,0.1013,0.0895,0.0689,0.0665,0.0935,0.1116,0.1142,0.092,0.1006,0.0727,0.1025,0.0858,0.0977,0.0886,0.0646,0.0701,0.094,0.1282,0.1159,0.0945,0.1045,0.0634,0.1043,0.0826,0.1092,0.096,0.0691,0.0656,0.0934,0.1015,0.102,0.0936,0.0989,0.0715,0.1032,0.0816,0.1025,0.0883,0.064,0.0739,0.0928,0.1041,0.1064,0.0926,0.1032,0.0624,0.1007,0.0809,0.1001,0.0919,0.0663
57150,37,0.0702,0.0954,0.1042,0.102,0.092,0.1014,0.0625,0.1003,0.0841,0.093,0.0932,0.0653,0.0742,0.094,0.0966,0.0937,0.0898,0.0976,0.0665,0.0965,0.0836,0.0922,0.0902,0.0673,0.0685,0.093,0.0974,0.0939,0.0898,0.0987,0.0658,0.1013,0.0823,0.0966,0.089,0.0649,0.0688,0.0932,0.1028,0.1029,0.093,0.1035,0.0624,0.1064,0.0827,0.1053,0.0909,0.0685,0.0656,0.0935,0.1124,0.1155,0.0933,0.102,0.0728,0.1047,0.0877,0.1001,0.0895,0.0651,0.0687,0.094,0.1279,0.1173,0.0967,0.1065,0.063,0.1055,0.0838,0.1124,0.0986,0.0695,0.0657,0.0932,0.1013,0.1024,0.094,0.0991,0.0701,0.1048,0.0827,0.1057,0.0908,0.0654,0.0704,0.0925,0.1042,0.107,0.0928,0.1035,0.06,0.1017,0.0815,0.1035,0.0924,0.0661
57240,37,0.0711,0.0953,0.1043,0.1024,0.092,0.1014,0.0631,0.1008,0.0843,0.0929,0.0935,0.0669,0.0696,0.0937,0.0963,0.0935,0.0899,0.0981,0.0713,0.0965,0.0839,0.0922,0.0902,0.0682,0.0679,0.0929,0.0976,0.094,0.0899,0.0983,0.0641,0.1016,0.0823,0.0968,0.0895,0.0678,0.0677,0.0934,0.1026,0.1023,0.0928,0.1034,0.0712,0.1069,0.0834,0.1046,0.0913,0.065,0.0668,0.0934,0.1118,0.1146,0.0923,0.1016,0.0664,0.1055,0.0887,0.1021,0.0896,0.0628,0.0696,0.0945,0.1273,0.1165,0.0971,0.1067,0.0694,0.1063,0.0842,0.1126,0.0981,0.0667,0.0643,0.0926,0.1002,0.1012,0.0932,0.0986,0.0648,0.1052,0.0837,0.1073,0.0909,0.0654,0.0652,0.0923,0.1033,0.1061,0.0932,0.1033,0.0625,0.1013,0.0814,0.1022,0.092,0.0664
57330,37,0.0721,0.095,0.104,0.1022,0.0922,0.1016,0.0652,0.1002,0.084,0.0929,0.093,0.0661,0.0695,0.0937,0.0962,0.0933,0.0896,0.0977,0.0656,0.0962,0.0835,0.0919,0.0902,0.0664,0.0678,0.0931,0.0972,0.094,0.0901,0.0979,0.0636,0.1013,0.0821,0.0969,0.0898,0.0762,0.0716,0.0936,0.1029,0.1025,0.0928,0.1031,0.0712,0.1069,0.0837,0.1057,0.0915,0.0643,0.0686,0.0935,0.1111,0.1133,0.0916,0.1008,0.0635,0.1053,0.0887,0.1021,0.0899,0.0662,0.0697,0.0948,0.1277,0.115,0.0966,0.1067,0.0683,0.106,0.0838,0.1133,0.0982,0.0678,0.0638,0.0926,0.1003,0.1013,0.0933,0.0987,0.0646,0.1045,0.0836,0.1067,0.0904,0.0635,0.0652,0.0928,0.1035,0.1063,0.0934,0.1036,0.0616,0.1013,0.0812,0.1031,0.092,0.0693
57420,37,0.0689,0.0946,0.1037,0.1018,0.0917,0.1004,0.0661,0.0986,0.0835,0.0919,0.0917,0.0671,0.0718,0.0933,0.0959,0.0929,0.089,0.0969,0.0662,0.095,0.0831,0.0913,0.0894,0.0692,0.069,0.0928,0.0966,0.0936,0.0897,0.0972,0.0623,0.1,0.0815,0.0948,0.0887,0.0701,0.0665,0.0935,0.1021,0.1018,0.0922,0.102,0.0662,0.1056,0.0822,0.1017,0.0902,0.0636,0.0682,0.0933,0.1114,0.1137,0.0917,0.1002,0.0655,0.1039,0.0871,0.099,0.0888,0.0626,0.0683,0.0945,0.1276,0.1151,0.0953,0.105,0.0656,0.1045,0.0828,0.108,0.095,0.0651,0.0652,0.0923,0.1003,0.1016,0.093,0.098,0.0675,0.1038,0.0824,0.103,0.0886,0.0635,0.0683,0.0928,0.1041,0.1065,0.0922,0.1029,0.0608,0.1001,0.0811,0.1002,0.0916,0.0678
57510,37,0.0681,0.0948,0.1038,0.1018,0.0917,0.1008,0.0663,0.0992,0.0836,0.0924,0.0916,0.0642,0.074,0.0934,0.096,0.0929,0.0891,0.0974,0.0634,0.0955,0.0831,0.0914,0.0893,0.0668,0.0684,0.0928,0.0968,0.0935,0.0894,0.0973,0.0611,0.1004,0.0814,0.0948,0.0891,0.0705,0.0706,0.0932,0.102,0.102,0.0919,0.1028,0.0743,0.1064,0.0818,0.1024,0.0904,0.062,0.065,0.093,0.1112,0.1134,0.0913,0.1003,0.0667,0.1045,0.0875,0.099,0.0891,0.0631,0.0685,0.0937,0.1281,0.1149,0.0957,0.1048,0.07,0.105,0.083,0.1083,0.0951,0.0652,0.0654,0.0923,0.1002,0.1014,0.0931,0.098,0.0663,0.104,0.0826,0.1033,0.0889,0.0651,0.0662,0.0923,0.1038,0.1059,0.0925,0.1026,0.0618,0.1003,0.0812,0.1003,0.0909,0.0645
57600,37,0.0685,0.0948,0.104,0.1024,0.0922,0.1015,0.0643,0.1004,0.0842,0.0928,0.0932,0.0673,0.0724,0.0938,0.0966,0.0932,0.0898,0.098,0.0674,0.0962,0.0838,0.0918,0.0906,0.0682,0.0683,0.093,0.0972,0.0941,0.09,0.0978,0.0635,0.1014,0.082,0.097,0.0897,0.076,0.0713,0.0936,0.1029,0.1026,0.0929,0.1032,0.0746,0.1071,0.0833,0.1059,0.0918,0.0626,0.069,0.0936,0.1115,0.1141,0.092,0.1004,0.0654,0.1058,0.0888,0.1031,0.0903,0.0702,0.0688,0.0947,0.1278,0.1152,0.0971,0.1065,0.0679,0.1062,0.084,0.1136,0.0986,0.0667,0.0646,0.0927,0.1003,0.1012,0.0932,0.0982,0.0628,0.1045,0.0835,0.1084,0.09,0.0642,0.0662,0.0932,0.1037,0.1063,0.0937,0.1035,0.0632,0.1016,0.0817,0.1038,0.092,0.0661
57690,37,0.07,0.0944,0.1035,0.1015,0.0919,0.1005,0.0668,0.0989,0.0837,0.0919,0.0914,0.0683,0.0694,0.0937,0.096,0.0929,0.0892,0.0974,0.066,0.0953,0.0828,0.091,0.0895,0.0706,0.069,0.093,0.0967,0.0938,0.0898,0.0973,0.0628,0.1002,0.0814,0.0947,0.0886,0.072,0.0676,0.0935,0.1028,0.1018,0.0923,0.1026,0.0679,0.1061,0.082,0.1019,0.0903,0.0638,0.0691,0.0934,0.1113,0.1133,0.0916,0.1001,0.0639,0.1039,0.0871,0.0989,0.0889,0.0649,0.0692,0.0942,0.1284,0.1145,0.0953,0.1051,0.0674,0.1046,0.0829,0.1083,0.0956,0.0653,0.0652,0.0923,0.1002,0.1014,0.0929,0.0977,0.0662,0.1037,0.0827,0.1028,0.0885,0.0627,0.0668,0.0922,0.1035,0.1062,0.0922,0.1028,0.0605,0.1001,0.0811,0.1003,0.091,0.0673
57780,37,0.0701,0.0952,0.1042,0.1028,0.0923,0.1015,0.0659,0.1007,0.0842,0.093,0.0936,0.0657,0.0703,0.0936,0.0964,0.0935,0.0895,0.0975,0.0636,0.0961,0.0833,0.0919,0.0902,0.0653,0.0684,0.0929,0.0974,0.0943,0.0897,0.0982,0.063,0.1013,0.0822,0.0965,0.0895,0.0695,0.0705,0.0935,0.1029,0.1029,0.0931,0.1033,0.072,0.1073,0.0839,0.1058,0.0917,0.0638,0.0657,0.0931,0.1117,0.1145,0.0922,0.1014,0.0668,0.1057,0.0891,0.1018,0.0898,0.0636,0.0674,0.0946,0.1281,0.1161,0.0972,0.1072,0.0692,0.1063,0.0841,0.1132,0.0985,0.0652,0.0646,0.0925,0.1004,0.1018,0.0934,0.0985,0.0658,0.1048,0.0835,0.1072,0.0907,0.0645,0.0655,0.0926,0.1038,0.1063,0.0934,0.1037,0.0621,0.1016,0.0816,0.1045,0.0926,0.0648
57870,37,0.0693,0.0949,0.104,0.1024,0.0924,0.1014,0.0638,0.1001,0.0841,0.0925,0.0937,0.066,0.0718,0.0938,0.096,0.0929,0.0896,0.0975,0.0667,0.096,0.0836,0.0916,0.0904,0.0644,0.0676,0.0929,0.0972,0.0941,0.0898,0.0979,0.0623,0.1012,0.0822,0.0967,0.0892,0.0733,0.0707,0.0937,0.1024,0.1023,0.0928,0.1032,0.0718,0.1071,0.0833,0.1064,0.0918,0.0641,0.0668,0.0938,0.112,0.1142,0.0922,0.1008,0.0621,0.1052,0.0891,0.1027,0.0902,0.0692,0.0691,0.095,0.1286,0.1158,0.0968,0.1065,0.0669,0.1063,0.0841,0.1143,0.0985,0.0676,0.0655,0.0931,0.1006,0.1012,0.0928,0.0979,0.0622,0.1041,0.0836,0.1082,0.0893,0.0646,0.0671,0.0933,0.1036,0.1063,0.0942,0.1037,0.0636,0.1017,0.0817,0.1038,0.092,0.0652
57960,37,0.0671,0.0942,0.1033,0.1016,0.0918,0.1006,0.071,0.0992,0.0838,0.0919,0.091,0.0665,0.0688,0.0932,0.0961,0.0938,0.0894,0.0972,0.0629,0.0952,0.0829,0.0907,0.0891,0.0702,0.0672,0.0929,0.097,0.0943,0.0903,0.0976,0.0691,0.0995,0.0811,0.0932,0.088,0.0688,0.0683,0.0936,0.1028,0.1026,0.0925,0.1026,0.0662,0.1054,0.082,0.1016,0.0904,0.0651,0.0667,0.0942,0.1123,0.1144,0.0918,0.0999,0.0646,0.1034,0.0868,0.099,0.089,0.0667,0.0679,0.0945,0.1288,0.1147,0.0949,0.1048,0.065,0.1046,0.0828,0.1096,0.096,0.065,0.0653,0.0929,0.1005,0.1009,0.0922,0.0973,0.0627,0.1032,0.0824,0.1048,0.089,0.0646,0.0663,0.0931,0.1036,0.1057,0.0933,0.103,0.0635,0.1006,0.0816,0.1003,0.0906,0.0652
58050,37,0.0661,0.0942,0.1032,0.1017,0.0918,0.1009,0.0761,0.0998,0.0843,0.092,0.0911,0.0655,0.0686,0.0926,0.0956,0.0935,0.0894,0.0974,0.0626,0.095,0.0828,0.0908,0.0892,0.0688,0.0666,0.0928,0.097,0.0941,0.0898,0.0977,0.0702,0.1,0.0812,0.0932,0.0883,0.0687,0.0662,0.0932,0.1024,0.1024,0.0924,0.1024,0.0654,0.106,0.0822,0.1026,0.0904,0.0638,0.0674,0.0938,0.1118,0.1136,0.0914,0.0998,0.0612,0.104,0.0875,0.0997,0.0893,0.0722,0.0695,0.0942,0.1289,0.1145,0.0953,0.1049,0.071,0.1053,0.0836,0.1094,0.096,0.0655,0.0647,0.0928,0.0999,0.1002,0.0919,0.0971,0.0618,0.1032,0.0828,0.1052,0.0888,0.0653,0.0669,0.0928,0.1033,0.1056,0.0935,0.1032,0.0676,0.1008,0.0816,0.1,0.0907,0.0641
58140,37,0.0642,0.0939,0.1029,0.1009,0.0913,0.1002,0.0684,0.0994,0.0842,0.0918,0.0916,0.0649,0.0688,0.0924,0.0952,0.0924,0.0888,0.0967,0.0624,0.0951,0.0829,0.0905,0.0892,0.0706,0.0668,0.0927,0.0967,0.0938,0.0898,0.0975,0.0647,0.0998,0.0811,0.0932,0.0886,0.0733,0.0665,0.0933,0.1026,0.1024,0.0921,0.1021,0.067,0.1055,0.0831,0.102,0.0906,0.0652,0.0706,0.0941,0.1115,0.1136,0.0915,0.0995,0.0629,0.1033,0.087,0.0995,0.0892,0.0735,0.0672,0.0948,0.1288,0.114,0.0949,0.1043,0.0666,0.1051,0.0829,0.1103,0.0962,0.0672,0.0657,0.0931,0.1003,0.1006,0.0924,0.0976,0.0612,0.1028,0.083,0.1048,0.0885,0.0645,0.0657,0.093,0.1033,0.1059,0.0935,0.1031,0.0616,0.1007,0.0816,0.1014,0.0906,0.0648
58230,37,0.0662,0.0946,0.1035,0.1017,0.092,0.1011,0.0718,0.0987,0.0836,0.0918,0.091,0.0668,0.0704,0.0932,0.0958,0.093,0.0893,0.0971,0.0633,0.0949,0.0832,0.0909,0.089,0.0713,0.0673,0.0929,0.0968,0.0941,0.09,0.0975,0.0679,0.0996,0.0815,0.0934,0.0878,0.0708,0.0676,0.0935,0.1023,0.1021,0.0924,0.1021,0.0651,0.1058,0.0822,0.1024,0.0901,0.0657,0.0694,0.0944,0.112,0.114,0.0918,0.1,0.0637,0.1032,0.0869,0.0993,0.0893,0.0709,0.0666,0.0948,0.129,0.1143,0.095,0.1048,0.0645,0.1049,0.0828,0.1094,0.0959,0.0653,0.0646,0.093,0.1002,0.1008,0.0923,0.0974,0.0628,0.1029,0.0825,0.1043,0.0887,0.0642,0.0664,0.0926,0.1035,0.1058,0.0934,0.1032,0.0642,0.101,0.0817,0.1002,0.0906,0.065
58320,37,0.0681,0.0949,0.1041,0.1025,0.0925,0.1023,0.0764,0.1006,0.0847,0.0928,0.0926,0.0648,0.0684,0.0932,0.0965,0.0936,0.0897,0.0981,0.0616,0.0961,0.0836,0.0915,0.0897,0.0725,0.067,0.0931,0.0976,0.0946,0.0905,0.0983,0.0699,0.101,0.0819,0.0952,0.0888,0.069,0.0678,0.0935,0.103,0.1031,0.0929,0.1032,0.0655,0.1072,0.0836,0.1052,0.0914,0.0646,0.0664,0.094,0.1126,0.115,0.0924,0.1008,0.0611,0.1048,0.0889,0.1028,0.0907,0.0735,0.0702,0.0947,0.1291,0.1161,0.097,0.1068,0.0727,0.1071,0.0846,0.1141,0.0987,0.0652,0.0649,0.0933,0.1006,0.101,0.0923,0.0981,0.0625,0.1042,0.0834,0.1101,0.0907,0.0673,0.0668,0.093,0.1036,0.1062,0.0944,0.104,0.0678,0.1019,0.0822,0.1035,0.0921,0.0638
58410,37,0.0655,0.0944,0.1036,0.1023,0.0923,0.1016,0.0696,0.101,0.085,0.0928,0.0927,0.0652,0.0691,0.0936,0.0961,0.0937,0.0898,0.098,0.0623,0.0964,0.0837,0.0914,0.0896,0.0706,0.0665,0.0925,0.0971,0.0942,0.0904,0.0983,0.0712,0.1005,0.0817,0.095,0.0882,0.0681,0.0665,0.0932,0.1034,0.1033,0.0927,0.1033,0.0648,0.1067,0.0828,0.1048,0.0914,0.069,0.0685,0.0941,0.1124,0.115,0.0925,0.1006,0.0636,0.1047,0.0886,0.1023,0.0903,0.0713,0.0702,0.0948,0.1289,0.1157,0.0963,0.106,0.0641,0.1064,0.0845,0.1146,0.0992,0.0675,0.065,0.093,0.1006,0.101,0.0927,0.0983,0.0615,0.1038,0.0834,0.1096,0.0902,0.0638,0.066,0.0929,0.1037,0.1061,0.0943,0.1041,0.0642,0.1019,0.0821,0.1036,0.0919,0.0663
58500,37,0.0651,0.0934,0.1025,0.1007,0.0912,0.1003,0.0736,0.0996,0.0841,0.0919,0.091,0.0653,0.0683,0.0922,0.0952,0.0928,0.0889,0.097,0.0622,0.0947,0.0829,0.0906,0.0884,0.0705,0.0673,0.0931,0.0968,0.0941,0.0901,0.0976,0.0691,0.0995,0.0817,0.0935,0.0881,0.0672,0.0678,0.0936,0.1021,0.102,0.0923,0.1021,0.0628,0.1057,0.0826,0.1014,0.0899,0.0655,0.0687,0.0936,0.1123,0.1139,0.0917,0.1,0.0626,0.104,0.0878,0.0995,0.0891,0.0625,0.0702,0.0941,0.1288,0.1152,0.0954,0.1047,0.0677,0.1046,0.0836,0.1082,0.0952,0.0652,0.0646,0.0926,0.1,0.1008,0.0925,0.0975,0.0637,0.1039,0.0834,0.1047,0.0892,0.0629,0.0661,0.0925,0.1037,0.1056,0.093,0.1032,0.0638,0.1006,0.0813,0.0999,0.0902,0.0663
58590,37,0.0665,0.0943,0.1035,0.102,0.092,0.1009,0.0762,0.0998,0.0843,0.092,0.0914,0.0653,0.0683,0.0927,0.096,0.0927,0.0895,0.0972,0.0601,0.0951,0.0833,0.0909,0.0888,0.0697,0.0668,0.0928,0.0963,0.0934,0.0896,0.0972,0.0635,0.1,0.0818,0.0942,0.0888,0.0695,0.0686,0.0928,0.102,0.1017,0.0927,0.1022,0.0707,0.1058,0.083,0.1024,0.0898,0.0665,0.0683,0.0933,0.1111,0.1131,0.0913,0.1001,0.0642,0.1044,0.0886,0.0999,0.0892,0.0661,0.0692,0.0943,0.1286,0.1137,0.0961,0.1047,0.0728,0.1051,0.0844,0.1093,0.0952,0.0636,0.0645,0.0923,0.0997,0.1002,0.0922,0.0976,0.0625,0.1033,0.0834,0.1059,0.089,0.0641,0.0663,0.0926,0.1029,0.1052,0.0934,0.1028,0.0672,0.1005,0.0815,0.0999,0.0901,0.0646
58680,37,0.065,0.0933,0.1022,0.1004,0.0914,0.1004,0.0714,0.0988,0.0842,0.0917,0.0912,0.0648,0.0689,0.0931,0.0953,0.0923,0.0891,0.0968,0.0613,0.0951,0.0834,0.0907,0.0888,0.0682,0.0666,0.0923,0.0963,0.0933,0.0898,0.0971,0.0641,0.0997,0.0819,0.0941,0.0885,0.0701,0.0702,0.0931,0.1021,0.1021,0.0921,0.1023,0.0683,0.1058,0.0829,0.1023,0.0897,0.068,0.0699,0.0936,0.1113,0.1133,0.0915,0.0998,0.0614,0.1035,0.0882,0.0999,0.0888,0.0652,0.07,0.0949,0.1289,0.1146,0.0954,0.1048,0.0707,0.1052,0.0837,0.1082,0.0954,0.0662,0.0648,0.0918,0.0995,0.1007,0.0927,0.0977,0.065,0.1035,0.083,0.1042,0.0883,0.0628,0.0662,0.0924,0.1032,0.1058,0.093,0.1029,0.0609,0.0999,0.081,0.1003,0.0906,0.0696
58770,37,0.0669,0.0942,0.1034,0.1019,0.0922,0.101,0.0712,0.0992,0.0845,0.0919,0.0912,0.0655,0.0694,0.0933,0.0957,0.0931,0.0896,0.097,0.0593,0.0951,0.0831,0.0908,0.0886,0.0683,0.0682,0.0925,0.0965,0.0938,0.0897,0.0975,0.0652,0.1001,0.0819,0.0946,0.0883,0.0687,0.0682,0.0933,0.1018,0.1018,0.0925,0.1022,0.0686,0.1056,0.0829,0.102,0.0897,0.0653,0.0681,0.0933,0.1114,0.1136,0.0916,0.0999,0.0641,0.1043,0.0882,0.0997,0.0888,0.0641,0.0709,0.0944,0.1286,0.1154,0.0961,0.1051,0.0708,0.1049,0.0839,0.1081,0.0949,0.0654,0.0643,0.0917,0.0994,0.1008,0.0927,0.0974,0.064,0.1039,0.0837,0.1041,0.0888,0.064,0.0663,0.0925,0.1035,0.1062,0.0931,0.1029,0.0643,0.1004,0.0814,0.0998,0.0906,0.0646
58860,37,0.0678,0.0943,0.1035,0.1017,0.0918,0.1004,0.0665,0.1,0.0844,0.0922,0.0917,0.0665,0.0736,0.0934,0.0954,0.0923,0.0895,0.0968,0.0668,0.0955,0.084,0.091,0.089,0.0645,0.0678,0.092,0.0963,0.0931,0.089,0.0972,0.0648,0.1006,0.0823,0.0951,0.0888,0.0686,0.0714,0.0932,0.101,0.1017,0.092,0.1025,0.0721,0.1058,0.0832,0.1021,0.0898,0.0636,0.0658,0.0925,0.1111,0.1136,0.0917,0.1005,0.0674,0.1041,0.0881,0.0985,0.0886,0.0625,0.0706,0.094,0.1288,0.1145,0.0956,0.1053,0.0654,0.1044,0.0837,0.1088,0.0953,0.0646,0.0642,0.092,0.0999,0.1013,0.0927,0.0979,0.0669,0.1038,0.083,0.1032,0.0884,0.0636,0.068,0.0924,0.1036,0.106,0.0931,0.1028,0.0608,0.1,0.0813,0.101,0.0908,0.0665
58950,37,0.0721,0.0949,0.1039,0.1022,0.0924,0.1009,0.0636,0.1006,0.0851,0.093,0.0934,0.0673,0.0739,0.0938,0.0957,0.093,0.0894,0.0974,0.0653,0.0962,0.0842,0.0913,0.0897,0.0688,0.0708,0.0925,0.0967,0.0935,0.0897,0.098,0.0641,0.1014,0.0828,0.097,0.0885,0.0672,0.0712,0.0934,0.1021,0.1026,0.0927,0.1031,0.0689,0.107,0.0837,0.1052,0.091,0.0656,0.0679,0.0929,0.1123,0.1151,0.0928,0.1017,0.0682,0.1055,0.0893,0.1011,0.0892,0.0649,0.0697,0.0946,0.1291,0.1169,0.0972,0.1066,0.0626,0.1061,0.0839,0.1138,0.0989,0.0686,0.0652,0.0923,0.1006,0.1022,0.0938,0.0985,0.069,0.1049,0.0836,0.106,0.0898,0.0635,0.069,0.0926,0.1042,0.1069,0.0939,0.1039,0.0605,0.1014,0.0821,0.1046,0.0926,0.0681
59040,37,0.0713,0.095,0.104,0.1026,0.0925,0.1014,0.0636,0.101,0.085,0.0931,0.0938,0.0661,0.0722,0.0937,0.096,0.0934,0.0898,0.0974,0.0642,0.0961,0.084,0.0917,0.0896,0.0673,0.0654,0.0925,0.0969,0.0938,0.0896,0.0985,0.0694,0.1021,0.0832,0.0965,0.0885,0.0642,0.0704,0.093,0.1023,0.103,0.093,0.1038,0.0642,0.1068,0.0842,0.1049,0.0912,0.0668,0.0648,0.0928,0.1124,0.1154,0.0931,0.1019,0.0717,0.1056,0.09,0.101,0.0893,0.0649,0.0715,0.0941,0.1291,0.1176,0.0976,0.1071,0.0629,0.106,0.0851,0.1131,0.0984,0.0696,0.0656,0.0928,0.1007,0.1021,0.0935,0.0983,0.0672,0.1048,0.0838,0.1069,0.0907,0.063,0.0674,0.0922,0.1041,0.1068,0.0939,0.1036,0.0606,0.1016,0.0823,0.1049,0.0926,0.0651
59130,37,0.0706,0.0945,0.1037,0.1022,0.0922,0.101,0.0629,0.1011,0.0852,0.093,0.0934,0.0686,0.0724,0.0938,0.0956,0.0926,0.0896,0.0976,0.0701,0.0963,0.0845,0.0917,0.0898,0.0638,0.0667,0.0922,0.0965,0.0936,0.0894,0.0983,0.0668,0.1017,0.083,0.0967,0.0888,0.0651,0.0698,0.0932,0.1025,0.1027,0.0927,0.1036,0.0671,0.1071,0.084,0.1056,0.0912,0.0653,0.0639,0.0927,0.1123,0.1152,0.0929,0.1016,0.0693,0.1051,0.0896,0.1011,0.0891,0.064,0.0691,0.094,0.1297,0.1164,0.097,0.1065,0.061,0.1057,0.0851,0.1142,0.0993,0.0686,0.0647,0.0928,0.1007,0.1015,0.0932,0.0984,0.0677,0.1037,0.0836,0.1076,0.0896,0.0648,0.0699,0.0928,0.1041,0.1066,0.0943,0.1037,0.0646,0.1017,0.0822,0.1064,0.0925,0.0653
59220,37,0.0729,0.0945,0.1033,0.1017,0.0922,0.1009,0.0634,0.101,0.0854,0.0932,0.0928,0.0678,0.0721,0.094,0.0957,0.0925,0.0895,0.0974,0.0653,0.0962,0.0843,0.0914,0.0895,0.0675,0.069,0.0922,0.0966,0.0935,0.0895,0.0985,0.067,0.1015,0.0832,0.0963,0.0876,0.0649,0.0692,0.0932,0.1025,0.1028,0.0926,0.1031,0.0627,0.107,0.0829,0.1052,0.0911,0.0687,0.0655,0.093,0.1127,0.1157,0.0932,0.1019,0.0726,0.1043,0.0886,0.1007,0.0889,0.066,0.0692,0.0945,0.1297,0.1179,0.0966,0.1067,0.0634,0.1055,0.0845,0.114,0.0993,0.0698,0.0688,0.093,0.1011,0.1027,0.094,0.0987,0.0708,0.104,0.083,0.1067,0.09,0.0658,0.0716,0.0926,0.1038,0.1066,0.0943,0.1038,0.0641,0.1016,0.0825,0.105,0.0925,0.0675
59310,37,0.0701,0.0946,0.1038,0.1021,0.0923,0.1014,0.0635,0.101,0.0851,0.0933,0.0928,0.0695,0.0728,0.0937,0.0959,0.0932,0.0895,0.0975,0.0646,0.096,0.0844,0.0914,0.0896,0.0658,0.0662,0.0922,0.0969,0.0939,0.0895,0.0985,0.0709,0.1016,0.0832,0.0964,0.0881,0.065,0.0702,0.0925,0.1023,0.1028,0.0929,0.1032,0.0618,0.1068,0.0835,0.105,0.091,0.0677,0.0651,0.0931,0.1125,0.1156,0.0931,0.1017,0.0717,0.1053,0.0893,0.1006,0.0892,0.0647,0.0683,0.0943,0.1297,0.1171,0.0978,0.1067,0.063,0.1058,0.0847,0.1127,0.0991,0.0693,0.0652,0.0928,0.1006,0.1023,0.0937,0.0983,0.0681,0.1042,0.0838,0.107,0.0898,0.0657,0.0706,0.0925,0.104,0.1068,0.094,0.1039,0.0601,0.1019,0.0826,0.105,0.0925,0.0656
59400,37,0.0686,0.0947,0.1038,0.1022,0.092,0.1008,0.063,0.1008,0.0849,0.0932,0.0935,0.07,0.0728,0.0937,0.0956,0.0928,0.0896,0.0975,0.0695,0.0962,0.0845,0.0918,0.0894,0.0664,0.0677,0.0923,0.0967,0.0935,0.0892,0.0979,0.0651,0.1017,0.0831,0.0969,0.0887,0.0668,0.0705,0.0932,0.1023,0.1024,0.0926,0.1035,0.0674,0.1072,0.0842,0.1054,0.0909,0.0647,0.0648,0.0929,0.1121,0.1148,0.0926,0.1015,0.0681,0.1051,0.0895,0.1007,0.0892,0.0643,0.0685,0.0941,0.1296,0.1161,0.0972,0.1063,0.0624,0.1058,0.0849,0.1139,0.0983,0.069,0.0645,0.0932,0.1008,0.1019,0.0934,0.0986,0.0695,0.1038,0.0835,0.1078,0.0901,0.0665,0.0696,0.0928,0.104,0.1065,0.0944,0.1038,0.0631,0.1019,0.0822,0.1057,0.0924,0.0657
59490,37,0.0721,0.0941,0.1025,0.1005,0.0912,0.1,0.0638,0.0995,0.0848,0.092,0.0914,0.0694,0.0731,0.0931,0.0942,0.0917,0.089,0.0967,0.0674,0.0951,0.0834,0.0907,0.0883,0.0693,0.0663,0.092,0.0962,0.0932,0.0892,0.098,0.0718,0.1001,0.0828,0.0937,0.0873,0.0663,0.0704,0.0928,0.1019,0.1024,0.0922,0.1024,0.061,0.1059,0.0828,0.1013,0.0895,0.0678,0.0672,0.0935,0.1124,0.1148,0.0925,0.1005,0.0755,0.1021,0.087,0.0976,0.0885,0.0656,0.0676,0.0944,0.1306,0.1156,0.0952,0.1034,0.0628,0.1044,0.0834,0.1097,0.0958,0.0658,0.0668,0.093,0.1003,0.1007,0.092,0.0976,0.0614,0.1022,0.0823,0.1053,0.0885,0.0645,0.0697,0.0929,0.1036,0.1059,0.094,0.103,0.0652,0.1013,0.0822,0.1013,0.0908,0.0644
59580,37,0.0672,0.094,0.1028,0.1008,0.0914,0.1006,0.0683,0.1001,0.085,0.0923,0.0909,0.0658,0.0688,0.0925,0.095,0.0928,0.089,0.097,0.0618,0.0948,0.0838,0.0905,0.0882,0.0684,0.0665,0.0922,0.0966,0.0937,0.0894,0.0979,0.0782,0.1001,0.082,0.0933,0.0874,0.0647,0.0662,0.0929,0.1029,0.1026,0.0924,0.1024,0.0627,0.1055,0.083,0.1015,0.0898,0.0699,0.0661,0.0936,0.1124,0.1143,0.0918,0.0997,0.0672,0.1033,0.088,0.0988,0.0892,0.0684,0.0669,0.0945,0.1303,0.1147,0.0956,0.1044,0.0651,0.1048,0.0839,0.1095,0.0953,0.0665,0.0653,0.0925,0.0999,0.1003,0.0918,0.0972,0.0623,0.103,0.0831,0.1058,0.089,0.0645,0.067,0.093,0.1035,0.1057,0.0942,0.1032,0.0684,0.1014,0.0823,0.1003,0.0907,0.0629
59670,37,0.0691,0.0936,0.1025,0.1006,0.0913,0.1006,0.0698,0.1001,0.0852,0.0924,0.0912,0.0643,0.0682,0.0924,0.0947,0.0921,0.0889,0.0971,0.0636,0.095,0.084,0.0908,0.0881,0.0665,0.065,0.0914,0.0963,0.0934,0.0895,0.0981,0.0752,0.0997,0.0823,0.0933,0.0875,0.0651,0.067,0.0926,0.1022,0.1026,0.0921,0.1024,0.0618,0.1058,0.0833,0.102,0.0898,0.0687,0.0653,0.0933,0.112,0.1143,0.092,0.0997,0.0658,0.103,0.088,0.0988,0.0892,0.0693,0.069,0.0945,0.1304,0.1153,0.0956,0.1048,0.0639,0.1048,0.0841,0.1104,0.0954,0.0652,0.0666,0.093,0.1003,0.1008,0.0921,0.0977,0.0655,0.1024,0.0829,0.1062,0.0888,0.0646,0.0651,0.093,0.1034,0.1056,0.0943,0.1033,0.0641,0.1011,0.0819,0.1013,0.0909,0.0679
59760,37,0.0744,0.0944,0.103,0.1014,0.0924,0.1018,0.0683,0.1009,0.0859,0.0929,0.0924,0.0635,0.0693,0.0932,0.0952,0.0928,0.0895,0.0976,0.064,0.0958,0.0845,0.0912,0.0886,0.0704,0.0668,0.0923,0.0964,0.0939,0.0901,0.0987,0.0771,0.1003,0.0831,0.0952,0.0878,0.0648,0.0678,0.093,0.1032,0.1034,0.0929,0.1032,0.0619,0.1068,0.0836,0.1049,0.0911,0.0712,0.066,0.0936,0.1132,0.1163,0.0936,0.1018,0.0744,0.1037,0.0887,0.1005,0.0896,0.0655,0.0696,0.0945,0.1307,0.1171,0.0967,0.1066,0.0614,0.1059,0.0848,0.1144,0.0984,0.0686,0.0651,0.0932,0.101,0.1025,0.0937,0.099,0.0712,0.1037,0.0833,0.108,0.0897,0.0644,0.0708,0.0926,0.1034,0.1069,0.0946,0.1038,0.0618,0.1021,0.0829,0.1047,0.0925,0.0653
59850,37,0.0752,0.0942,0.1031,0.1018,0.0924,0.102,0.0708,0.1011,0.0859,0.0934,0.0925,0.0651,0.0694,0.0932,0.0952,0.0926,0.0894,0.0975,0.0673,0.0955,0.0846,0.091,0.0887,0.069,0.0663,0.0921,0.0968,0.094,0.0899,0.0991,0.0798,0.101,0.0837,0.0955,0.0874,0.0668,0.0689,0.0925,0.1028,0.1037,0.0932,0.1032,0.0623,0.1066,0.0847,0.1049,0.0905,0.07,0.066,0.0932,0.1131,0.1162,0.0936,0.1019,0.0764,0.1047,0.0896,0.101,0.0897,0.0635,0.0684,0.0943,0.1305,0.1177,0.0971,0.1068,0.0604,0.1057,0.0855,0.1139,0.0984,0.0682,0.0649,0.0929,0.1009,0.1023,0.0937,0.0986,0.0717,0.1042,0.0838,0.1087,0.0912,0.067,0.0714,0.0924,0.104,0.1072,0.0946,0.1039,0.0616,0.1023,0.0831,0.1049,0.0925,0.0643
59940,37,0.0738,0.0938,0.1024,0.1009,0.0915,0.1003,0.065,0.1002,0.0855,0.0924,0.0922,0.0702,0.0706,0.0917,0.0935,0.0911,0.0884,0.0961,0.0716,0.0948,0.0839,0.0905,0.0881,0.0644,0.0651,0.0912,0.0958,0.0928,0.089,0.0977,0.0701,0.1005,0.0832,0.0938,0.088,0.0639,0.0702,0.0922,0.1016,0.1022,0.0919,0.1029,0.0649,0.1059,0.084,0.1021,0.089,0.0645,0.0657,0.0932,0.112,0.1144,0.0924,0.1003,0.0734,0.1033,0.0885,0.0985,0.0889,0.0662,0.0681,0.0943,0.1305,0.1151,0.0956,0.1048,0.0632,0.1048,0.0843,0.11,0.0949,0.0651,0.0663,0.0924,0.1,0.1009,0.0924,0.0975,0.0611,0.1025,0.0836,0.1069,0.0892,0.0661,0.0643,0.093,0.1038,0.106,0.0944,0.1031,0.0708,0.1012,0.0823,0.1008,0.0908,0.0628
60030,37,0.073,0.0939,0.103,0.1017,0.0924,0.1014,0.0675,0.1016,0.0862,0.0932,0.0926,0.0633,0.0674,0.0922,0.0942,0.0919,0.0886,0.0966,0.0623,0.0952,0.0842,0.0906,0.0888,0.069,0.067,0.092,0.0965,0.094,0.0903,0.098,0.0706,0.1009,0.0829,0.0951,0.088,0.065,0.0673,0.0932,0.1029,0.1034,0.0933,0.1031,0.063,0.1068,0.0838,0.1051,0.0915,0.0692,0.0673,0.0937,0.1132,0.1158,0.0932,0.101,0.0695,0.1047,0.0902,0.1018,0.0898,0.0656,0.0697,0.0949,0.1306,0.1163,0.0971,0.1066,0.0644,0.1061,0.0854,0.1148,0.0981,0.067,0.0649,0.0924,0.1003,0.1015,0.0927,0.098,0.0616,0.1041,0.0844,0.1106,0.0903,0.0637,0.066,0.0931,0.1036,0.1062,0.0951,0.1039,0.0664,0.1019,0.0827,0.1045,0.0921,0.0656
60120,37,0.0657,0.0941,0.1033,0.1026,0.0931,0.1022,0.0756,0.1015,0.0861,0.0929,0.0925,0.0665,0.0665,0.0916,0.0948,0.0925,0.0887,0.0962,0.0607,0.0952,0.0838,0.0905,0.089,0.0707,0.0696,0.0931,0.097,0.0947,0.0907,0.0984,0.0712,0.1012,0.083,0.0957,0.0886,0.066,0.0675,0.093,0.1026,0.1033,0.0931,0.1027,0.0666,0.1067,0.085,0.1064,0.0912,0.0656,0.0666,0.0935,0.1126,0.1152,0.0925,0.1009,0.0617,0.1059,0.0912,0.1035,0.0902,0.0676,0.0678,0.0947,0.1301,0.1166,0.098,0.1072,0.072,0.1069,0.086,0.1141,0.098,0.0661,0.0663,0.0924,0.0999,0.1011,0.0926,0.0978,0.0624,0.1044,0.0853,0.1116,0.0904,0.0662,0.0644,0.0927,0.1037,0.1064,0.095,0.104,0.0688,0.102,0.0829,0.1037,0.0922,0.0639
60210,37,0.0645,0.0935,0.1027,0.1017,0.092,0.1007,0.072,0.1001,0.0854,0.092,0.0916,0.0639,0.0653,0.091,0.0942,0.0915,0.0882,0.096,0.0612,0.0945,0.0834,0.09,0.0881,0.0677,0.066,0.092,0.0958,0.0934,0.0893,0.097,0.0659,0.1,0.0823,0.0939,0.088,0.0699,0.0684,0.0928,0.1017,0.1018,0.0921,0.1019,0.0676,0.1059,0.0833,0.1021,0.0902,0.0637,0.0668,0.093,0.1112,0.113,0.0912,0.0994,0.0629,0.1042,0.0898,0.1007,0.0892,0.0684,0.0686,0.0951,0.1301,0.114,0.0959,0.1052,0.0748,0.1055,0.0848,0.1101,0.0947,0.066,0.0654,0.0919,0.0991,0.0998,0.0914,0.0966,0.0611,0.1033,0.0841,0.1064,0.0886,0.0663,0.0682,0.0927,0.1028,0.105,0.0945,0.103,0.0686,0.1003,0.0822,0.1006,0.0909,0.0639
60300,37,0.0697,0.0947,0.1038,0.1028,0.0929,0.1018,0.0667,0.1006,0.0857,0.0928,0.093,0.0657,0.069,0.0924,0.0946,0.0918,0.0886,0.0964,0.0644,0.095,0.0841,0.0905,0.0893,0.0689,0.0687,0.0927,0.0966,0.0939,0.0897,0.0972,0.064,0.1013,0.083,0.0965,0.0887,0.0725,0.0709,0.0931,0.1021,0.1028,0.0928,0.1025,0.0706,0.1071,0.0846,0.1053,0.0915,0.0665,0.0676,0.0932,0.1122,0.1146,0.0924,0.1007,0.0641,0.1057,0.0915,0.1034,0.0897,0.0633,0.0699,0.095,0.1303,0.1161,0.0975,0.1072,0.0687,0.1062,0.0857,0.114,0.0979,0.0661,0.0645,0.0924,0.1,0.1015,0.093,0.0979,0.0632,0.1046,0.0848,0.1089,0.0898,0.0627,0.0654,0.0927,0.1036,0.1066,0.0948,0.1038,0.0628,0.1017,0.083,0.1039,0.0928,0.0672
60390,37,0.0693,0.0944,0.1037,0.103,0.093,0.1021,0.0742,0.1011,0.0859,0.0929,0.0932,0.0661,0.0662,0.092,0.0952,0.0922,0.0885,0.0967,0.0604,0.0948,0.0841,0.0906,0.0889,0.0687,0.0682,0.093,0.097,0.0943,0.0898,0.0974,0.0618,0.1016,0.0829,0.0966,0.0888,0.0696,0.0681,0.0932,0.1022,0.1027,0.0928,0.103,0.0711,0.1072,0.0845,0.1062,0.0912,0.0665,0.0641,0.0928,0.1125,0.1147,0.092,0.1015,0.0667,0.106,0.0914,0.103,0.0896,0.0672,0.0688,0.0946,0.1299,0.1161,0.0979,0.1078,0.07,0.1061,0.086,0.1138,0.0968,0.0656,0.0643,0.092,0.0998,0.1016,0.093,0.0978,0.0655,0.1048,0.0847,0.1083,0.0907,0.0653,0.067,0.0926,0.1038,0.1067,0.0948,0.1041,0.0621,0.1015,0.0828,0.1058,0.0933,0.0652
60480,37,0.0712,0.0945,0.1036,0.1032,0.0925,0.1015,0.0648,0.1008,0.0857,0.0928,0.0937,0.0661,0.0687,0.0921,0.0943,0.0919,0.0886,0.0964,0.0652,0.0953,0.0842,0.0909,0.0893,0.0657,0.0677,0.0923,0.0966,0.0938,0.0893,0.0972,0.0625,0.1016,0.0831,0.0966,0.0887,0.0698,0.0713,0.0931,0.1018,0.1029,0.0921,0.1029,0.0703,0.107,0.0847,0.1063,0.0914,0.0643,0.0654,0.0928,0.1117,0.1145,0.0919,0.1011,0.0651,0.1058,0.0914,0.1023,0.0892,0.0634,0.0696,0.0946,0.1305,0.116,0.0979,0.1074,0.0679,0.1065,0.0864,0.1147,0.097,0.0673,0.0646,0.0925,0.0998,0.1015,0.0929,0.0981,0.0657,0.1044,0.0848,0.1077,0.0899,0.064,0.0668,0.0926,0.1035,0.1064,0.0948,0.104,0.06,0.1016,0.0824,0.106,0.0937,0.0658
60570,37,0.0679,0.094,0.1031,0.1013,0.0917,0.1,0.0638,0.099,0.0845,0.0918,0.0914,0.0665,0.0697,0.093,0.0948,0.0922,0.0886,0.0963,0.0652,0.0949,0.0842,0.0903,0.0887,0.0698,0.0677,0.092,0.0956,0.0928,0.0888,0.097,0.0636,0.1001,0.0829,0.0941,0.0877,0.0636,0.0712,0.093,0.1015,0.1022,0.0916,0.102,0.0671,0.1062,0.0835,0.1019,0.0893,0.065,0.0646,0.0927,0.1117,0.1142,0.0919,0.1004,0.0701,0.1035,0.0888,0.0981,0.0878,0.0642,0.0684,0.0943,0.1307,0.1155,0.0954,0.1049,0.0627,0.1041,0.0839,0.108,0.0946,0.0676,0.0654,0.0924,0.1,0.1017,0.0928,0.0976,0.0685,0.1029,0.0825,0.1025,0.0876,0.0635,0.0725,0.0925,0.1038,0.1063,0.0939,0.1032,0.0607,0.1007,0.0824,0.101,0.0923,0.0659
60660,37,0.0732,0.0945,0.1034,0.1023,0.0925,0.102,0.0694,0.1011,0.0859,0.0935,0.0929,0.0679,0.0732,0.0933,0.0952,0.0928,0.0894,0.0969,0.0681,0.0961,0.085,0.0913,0.089,0.0693,0.0663,0.092,0.0965,0.0934,0.0889,0.0985,0.0718,0.1016,0.0836,0.0966,0.0882,0.0657,0.071,0.0929,0.1021,0.1029,0.0925,0.1033,0.0636,0.1071,0.0848,0.1051,0.091,0.0661,0.0647,0.0927,0.1124,0.1155,0.0928,0.1015,0.0713,0.105,0.0904,0.1014,0.0894,0.0646,0.0693,0.0939,0.1307,0.117,0.0975,0.1071,0.0623,0.106,0.0857,0.1124,0.0971,0.0686,0.065,0.0932,0.1006,0.102,0.0934,0.0984,0.0702,0.1038,0.0838,0.1081,0.0908,0.0698,0.0708,0.0919,0.1035,0.1063,0.0947,0.1037,0.0609,0.102,0.083,0.1058,0.0942,0.0641
60750,37,0.0737,0.0943,0.1031,0.1019,0.0921,0.1013,0.0646,0.1012,0.086,0.0933,0.0935,0.0704,0.0726,0.0936,0.095,0.0924,0.0895,0.0973,0.0722,0.0964,0.0848,0.0913,0.0891,0.0673,0.0652,0.0918,0.0961,0.0932,0.0888,0.0981,0.0672,0.1014,0.0835,0.0962,0.088,0.0635,0.0692,0.0928,0.1019,0.1026,0.0929,0.103,0.0651,0.1072,0.0846,0.1046,0.0908,0.0679,0.0646,0.093,0.1124,0.1151,0.0928,0.1015,0.0699,0.1048,0.0907,0.1011,0.0891,0.0648,0.0694,0.094,0.1312,0.1173,0.0969,0.106,0.0615,0.106,0.0855,0.115,0.0967,0.0694,0.0655,0.0934,0.1009,0.1018,0.0932,0.0982,0.0678,0.1034,0.0837,0.1096,0.0898,0.0673,0.0665,0.093,0.1034,0.1064,0.0953,0.1041,0.0639,0.1021,0.0832,0.1058,0.0948,0.0656
60840,37,0.0716,0.0937,0.1023,0.1004,0.0915,0.1003,0.0652,0.0998,0.0856,0.0923,0.0913,0.0638,0.0719,0.0927,0.0943,0.0915,0.0888,0.0964,0.061,0.0947,0.0837,0.0901,0.088,0.0674,0.0671,0.0917,0.0957,0.0928,0.089,0.0974,0.0726,0.0999,0.0833,0.0932,0.0868,0.0665,0.0694,0.0924,0.1017,0.1026,0.0917,0.1022,0.0614,0.1054,0.0832,0.1,0.089,0.0693,0.0654,0.0931,0.1122,0.1146,0.0923,0.1005,0.0761,0.1028,0.0879,0.097,0.0875,0.0664,0.0696,0.0942,0.1313,0.1167,0.0948,0.1042,0.0649,0.104,0.0838,0.1083,0.0946,0.0689,0.0659,0.0928,0.1005,0.102,0.0928,0.0978,0.0711,0.1027,0.0823,0.1033,0.0887,0.0646,0.0721,0.0925,0.1038,0.1066,0.094,0.1031,0.061,0.1008,0.0827,0.1023,0.0933,0.066
60930,37,0.0723,0.0947,0.1033,0.102,0.0923,0.1019,0.068,0.1011,0.0864,0.0935,0.0928,0.0674,0.0711,0.0937,0.0956,0.0926,0.0898,0.0971,0.0671,0.0958,0.085,0.0911,0.0888,0.0686,0.0668,0.092,0.0961,0.0933,0.0892,0.0983,0.0732,0.1014,0.0837,0.0956,0.0876,0.067,0.0685,0.0925,0.1019,0.103,0.0928,0.1032,0.0622,0.107,0.0841,0.1051,0.0906,0.0676,0.0649,0.093,0.1128,0.1158,0.0931,0.1015,0.0735,0.1048,0.0904,0.1007,0.089,0.0647,0.0705,0.0939,0.1312,0.1176,0.0974,0.1072,0.0623,0.1058,0.0861,0.1133,0.0968,0.0685,0.0651,0.093,0.1004,0.1021,0.0934,0.0983,0.0709,0.1046,0.0844,0.1086,0.0906,0.0661,0.0727,0.0928,0.1042,0.1073,0.0948,0.1038,0.0602,0.1025,0.0834,0.1055,0.0966,0.0653
61020,37,0.0725,0.0944,0.1029,0.1014,0.092,0.1012,0.0642,0.1013,0.0864,0.0938,0.0939,0.0722,0.0718,0.093,0.0949,0.0922,0.0896,0.0967,0.0725,0.0961,0.0852,0.0913,0.0892,0.0673,0.0665,0.0919,0.0958,0.093,0.0892,0.0981,0.0683,0.1016,0.0843,0.0964,0.0882,0.0645,0.0693,0.0929,0.1019,0.1028,0.0924,0.1034,0.0662,0.1072,0.0854,0.1059,0.0909,0.0662,0.0654,0.0929,0.1124,0.1153,0.0929,0.1017,0.0713,0.1048,0.0906,0.1009,0.089,0.0654,0.0694,0.0945,0.1313,0.1175,0.0973,0.1066,0.0631,0.1059,0.0855,0.1147,0.0966,0.0691,0.0664,0.0928,0.1004,0.1022,0.0936,0.0986,0.0705,0.1041,0.0844,0.1085,0.0892,0.0648,0.0701,0.0925,0.1036,0.1068,0.0948,0.1035,0.0607,0.102,0.0826,0.1067,0.0964,0.0669
61110,37,0.0698,0.094,0.1024,0.1008,0.0915,0.0999,0.0622,0.0996,0.0856,0.0922,0.0919,0.0663,0.0718,0.0925,0.0942,0.0916,0.0887,0.0961,0.0632,0.0945,0.0841,0.0902,0.088,0.0653,0.0658,0.0914,0.0954,0.0927,0.0889,0.0973,0.0686,0.1002,0.0834,0.0939,0.0871,0.0646,0.0685,0.0927,0.1015,0.102,0.0921,0.1023,0.0612,0.1057,0.0834,0.1017,0.089,0.0681,0.0655,0.0928,0.1118,0.1146,0.0924,0.1006,0.0733,0.1036,0.0889,0.0975,0.0879,0.0661,0.0705,0.094,0.1314,0.1168,0.0956,0.1046,0.0631,0.104,0.084,0.1085,0.094,0.0679,0.0662,0.0925,0.1002,0.102,0.093,0.0977,0.0707,0.1031,0.0836,0.103,0.0881,0.0639,0.0722,0.0921,0.1034,0.1069,0.0935,0.1024,0.0595,0.1006,0.0823,0.1021,0.0952,0.0695
61200,37,0.0693,0.0939,0.1025,0.101,0.0915,0.1002,0.0641,0.1001,0.0859,0.0924,0.0918,0.0692,0.0716,0.0924,0.0944,0.0917,0.0888,0.0964,0.0709,0.095,0.0841,0.0904,0.0882,0.0645,0.0655,0.0914,0.0954,0.0927,0.0887,0.097,0.0681,0.1008,0.0832,0.0941,0.0876,0.0641,0.0711,0.0924,0.101,0.1021,0.0918,0.1024,0.065,0.106,0.0842,0.1026,0.0893,0.0641,0.0648,0.0925,0.112,0.1142,0.0921,0.1005,0.0706,0.1042,0.0897,0.0983,0.0883,0.0635,0.069,0.0942,0.1308,0.1158,0.096,0.105,0.0622,0.1045,0.0847,0.1091,0.0938,0.0663,0.0652,0.0919,0.0994,0.1014,0.0924,0.0972,0.0687,0.1034,0.084,0.1041,0.0882,0.065,0.0708,0.0925,0.1038,0.1066,0.0938,0.1031,0.0609,0.1008,0.0825,0.1023,0.0957,0.0651
61290,37,0.0689,0.094,0.1026,0.101,0.0915,0.1,0.0627,0.0998,0.0858,0.0924,0.0932,0.0699,0.0723,0.093,0.0942,0.0916,0.089,0.0961,0.0733,0.0952,0.0847,0.0905,0.0884,0.064,0.0683,0.0914,0.0951,0.0925,0.0886,0.0972,0.0666,0.1005,0.0834,0.0943,0.0876,0.0633,0.0688,0.0927,0.1014,0.1016,0.0918,0.1023,0.0673,0.1057,0.0846,0.1026,0.0894,0.0662,0.0664,0.0924,0.1116,0.1142,0.0919,0.1003,0.0699,0.1039,0.0896,0.0986,0.088,0.0645,0.0705,0.0943,0.1308,0.116,0.0954,0.1049,0.0631,0.1044,0.0839,0.1104,0.0937,0.0688,0.0677,0.0919,0.0995,0.1015,0.0928,0.0974,0.0688,0.103,0.0836,0.1032,0.088,0.0627,0.0729,0.0925,0.1039,0.1065,0.0942,0.1033,0.0623,0.1002,0.082,0.1026,0.096,0.0663
61380,37,0.0686,0.0942,0.1033,0.1018,0.0919,0.1001,0.0626,0.0991,0.0853,0.0919,0.0922,0.0663,0.0707,0.0932,0.0948,0.0916,0.0888,0.0964,0.0647,0.0951,0.084,0.0903,0.0883,0.0672,0.0687,0.0918,0.0952,0.0927,0.0888,0.0966,0.0639,0.1,0.083,0.0944,0.0874,0.0635,0.0706,0.0928,0.1012,0.102,0.092,0.1021,0.0655,0.1057,0.0843,0.1016,0.09,0.0654,0.066,0.0928,0.1117,0.114,0.0918,0.1002,0.0687,0.1043,0.0902,0.0989,0.0879,0.0633,0.0693,0.0944,0.1308,0.1156,0.0957,0.1054,0.0634,0.1042,0.0843,0.1087,0.093,0.0641,0.0647,0.0918,0.099,0.1013,0.0926,0.0972,0.0662,0.1038,0.0841,0.1037,0.088,0.0631,0.0695,0.092,0.1034,0.1063,0.0934,0.1026,0.0607,0.1,0.0822,0.1011,0.0973,0.0716
61470,37,0.0673,0.0943,0.1033,0.1019,0.092,0.1006,0.0678,0.0997,0.0853,0.0925,0.092,0.0684,0.0728,0.0932,0.0948,0.0922,0.0891,0.0965,0.0642,0.0949,0.0844,0.0904,0.0887,0.0643,0.0666,0.0921,0.0957,0.093,0.0884,0.0964,0.0621,0.1004,0.0826,0.0944,0.0882,0.0725,0.0698,0.0927,0.1013,0.102,0.0917,0.1022,0.0733,0.1063,0.0843,0.1035,0.0901,0.0618,0.0688,0.0927,0.1114,0.1133,0.091,0.0996,0.0645,0.1045,0.0909,0.0999,0.0887,0.0662,0.0683,0.0943,0.1308,0.1144,0.0959,0.1056,0.0701,0.105,0.0848,0.11,0.0927,0.0634,0.0666,0.0918,0.0989,0.1006,0.0919,0.0968,0.063,0.1034,0.0844,0.1046,0.0877,0.0642,0.0665,0.0919,0.1034,0.1062,0.0942,0.1028,0.0616,0.1003,0.0824,0.103,0.0972,0.068
61560,37,0.0705,0.0945,0.1034,0.1027,0.0928,0.1012,0.0634,0.1003,0.086,0.0929,0.0937,0.0675,0.0699,0.0933,0.0951,0.0924,0.0894,0.097,0.0665,0.0956,0.0843,0.0907,0.0894,0.067,0.0687,0.0925,0.096,0.0935,0.0892,0.0967,0.0633,0.1012,0.083,0.0962,0.0882,0.0739,0.068,0.0934,0.1019,0.1024,0.0914,0.1025,0.0686,0.1073,0.0848,0.1061,0.0921,0.065,0.0649,0.093,0.1124,0.1144,0.0921,0.1008,0.0642,0.1057,0.0917,0.1021,0.089,0.0642,0.0697,0.0949,0.1308,0.1164,0.0972,0.1074,0.0632,0.1059,0.0858,0.1143,0.0954,0.0686,0.0653,0.0923,0.0997,0.1018,0.0928,0.0977,0.0656,0.1049,0.0846,0.1077,0.089,0.0632,0.0677,0.093,0.1037,0.1069,0.0952,0.1042,0.0609,0.1015,0.0831,0.1064,0.0986,0.0671
61650,37,0.0681,0.0946,0.1035,0.1025,0.0921,0.1004,0.0665,0.0992,0.085,0.0917,0.0913,0.067,0.0705,0.0931,0.0949,0.0922,0.0888,0.0963,0.0644,0.0948,0.0842,0.0899,0.0884,0.0657,0.067,0.0923,0.0957,0.0928,0.0886,0.0965,0.0614,0.1001,0.0827,0.0941,0.0876,0.068,0.0695,0.0926,0.1014,0.102,0.0915,0.1018,0.0668,0.1059,0.0845,0.102,0.0898,0.0651,0.065,0.0929,0.1117,0.1139,0.0914,0.1,0.068,0.1045,0.0905,0.0991,0.0881,0.0636,0.0689,0.0945,0.1313,0.1158,0.0956,0.1058,0.0623,0.1044,0.0846,0.1094,0.093,0.0651,0.0646,0.0922,0.0992,0.1013,0.0921,0.097,0.0656,0.104,0.084,0.1034,0.0883,0.0628,0.068,0.0919,0.1033,0.1062,0.0937,0.103,0.0611,0.1003,0.0825,0.1019,0.0979,0.0654
61740,37,0.0681,0.0948,0.1034,0.1019,0.0917,0.1005,0.0628,0.0996,0.0852,0.0922,0.0919,0.0663,0.0726,0.0928,0.0947,0.0919,0.0887,0.0963,0.0646,0.095,0.0846,0.0903,0.0883,0.0655,0.0665,0.0921,0.0955,0.0924,0.0882,0.0965,0.0651,0.1002,0.0828,0.0944,0.0878,0.0693,0.0703,0.0924,0.1011,0.1017,0.0917,0.1016,0.0714,0.1062,0.0848,0.103,0.0899,0.0633,0.0659,0.0929,0.1112,0.1131,0.0907,0.0998,0.0648,0.1043,0.0904,0.0995,0.0881,0.0632,0.0697,0.0945,0.1316,0.1151,0.096,0.1059,0.0678,0.105,0.0852,0.1099,0.0929,0.0626,0.0653,0.0922,0.099,0.1008,0.0917,0.0968,0.0642,0.1037,0.0838,0.1036,0.088,0.0636,0.0662,0.0924,0.1035,0.1062,0.0942,0.103,0.0606,0.1008,0.0828,0.1021,0.0976,0.0664
61830,37,0.0664,0.0942,0.103,0.1017,0.0918,0.1003,0.0642,0.0994,0.0852,0.0918,0.0918,0.0672,0.0709,0.093,0.0945,0.0916,0.0889,0.0961,0.0659,0.0945,0.0842,0.09,0.0884,0.0652,0.0669,0.0923,0.0953,0.0927,0.0886,0.0963,0.063,0.0998,0.0827,0.0941,0.0878,0.0729,0.0712,0.0929,0.1012,0.1016,0.0915,0.1015,0.0649,0.106,0.0842,0.1025,0.09,0.0641,0.0669,0.0932,0.1114,0.1134,0.0909,0.0999,0.064,0.104,0.0902,0.0998,0.0879,0.0634,0.0701,0.0947,0.1309,0.1155,0.0952,0.1049,0.0604,0.1041,0.0851,0.11,0.0933,0.0664,0.0656,0.0924,0.0993,0.1014,0.0922,0.0973,0.066,0.103,0.0836,0.1028,0.0877,0.0634,0.0709,0.0926,0.1034,0.1065,0.0945,0.1034,0.06,0.1004,0.0824,0.1022,0.0978,0.0704
61920,37,0.0664,0.0945,0.1033,0.1021,0.0923,0.1008,0.0676,0.099,0.085,0.0919,0.0915,0.0673,0.0738,0.0935,0.0948,0.0919,0.0889,0.0964,0.0647,0.0948,0.0842,0.0903,0.0882,0.067,0.0684,0.0925,0.0954,0.0928,0.0886,0.0964,0.0619,0.0998,0.0827,0.0941,0.0875,0.0697,0.0705,0.0928,0.1014,0.1019,0.0917,0.1018,0.0646,0.1057,0.0839,0.1023,0.0897,0.0657,0.0665,0.0929,0.1117,0.1138,0.0911,0.1,0.0678,0.1042,0.0902,0.0988,0.088,0.0632,0.0703,0.0943,0.1314,0.1164,0.0954,0.1054,0.0618,0.1042,0.0853,0.1094,0.0927,0.0646,0.0647,0.0921,0.099,0.1009,0.0921,0.097,0.0656,0.1036,0.0841,0.1036,0.0883,0.0635,0.069,0.0922,0.1036,0.1067,0.0937,0.1033,0.0614,0.1005,0.0828,0.102,0.0978,0.0677
62010,37,0.0661,0.0942,0.1029,0.1021,0.0916,0.1005,0.0674,0.0992,0.0853,0.0925,0.0917,0.0658,0.0701,0.0924,0.0946,0.0915,0.0888,0.0961,0.0627,0.095,0.0843,0.0902,0.0882,0.0644,0.0674,0.0918,0.0952,0.0926,0.0881,0.0963,0.0637,0.1001,0.0829,0.0943,0.0878,0.0699,0.0715,0.0928,0.1002,0.1016,0.0916,0.1018,0.0704,0.106,0.0848,0.1036,0.0896,0.0635,0.0648,0.0927,0.1112,0.1134,0.091,0.0998,0.065,0.1043,0.0909,0.0998,0.0886,0.063,0.0703,0.0945,0.1308,0.1149,0.0959,0.1058,0.0683,0.105,0.0856,0.1093,0.0924,0.0639,0.0656,0.0921,0.0987,0.1005,0.0917,0.0971,0.0639,0.1035,0.0844,0.1044,0.0883,0.064,0.0672,0.0923,0.1035,0.1061,0.0942,0.1031,0.0613,0.1008,0.0829,0.1037,0.097,0.0677
62100,37,0.0666,0.0935,0.1022,0.101,0.0915,0.1002,0.066,0.0989,0.0852,0.0915,0.0912,0.0674,0.0693,0.0923,0.0941,0.0914,0.0883,0.096,0.064,0.0948,0.0844,0.0899,0.0881,0.0689,0.0691,0.0923,0.095,0.0928,0.0887,0.0962,0.0634,0.0998,0.0827,0.0936,0.0874,0.0713,0.07,0.0928,0.1011,0.1021,0.0916,0.1014,0.0672,0.106,0.0849,0.103,0.0897,0.0686,0.0696,0.0933,0.1116,0.1135,0.091,0.0994,0.0625,0.1039,0.0906,0.0995,0.0886,0.0655,0.0695,0.095,0.1313,0.115,0.0951,0.1046,0.065,0.1047,0.0846,0.1102,0.0925,0.0645,0.0651,0.0923,0.0992,0.1007,0.0916,0.097,0.0629,0.1032,0.0843,0.1054,0.0885,0.0635,0.0666,0.0924,0.1034,0.1062,0.0944,0.1032,0.0609,0.1004,0.0828,0.102,0.0967,0.068
62190,37,0.0652,0.0941,0.1029,0.102,0.0924,0.1014,0.0737,0.0992,0.0859,0.092,0.0913,0.0666,0.0695,0.0928,0.0976,0.0923,0.089,0.0966,0.0644,0.0944,0.084,0.0901,0.0879,0.0695,0.0667,0.0923,0.0955,0.0936,0.0895,0.0967,0.068,0.0996,0.0829,0.0936,0.0872,0.0664,0.0666,0.0927,0.1015,0.1018,0.0917,0.1015,0.0631,0.1055,0.0841,0.1024,0.0894,0.0685,0.0694,0.0934,0.1121,0.1139,0.0915,0.0995,0.0636,0.1036,0.0904,0.0998,0.0886,0.0665,0.0682,0.0946,0.1319,0.1147,0.0954,0.1055,0.0678,0.1045,0.085,0.1102,0.0925,0.0656,0.0663,0.0922,0.099,0.1004,0.0915,0.0968,0.0632,0.1032,0.0846,0.1057,0.0892,0.0645,0.0664,0.0926,0.1035,0.1062,0.0945,0.1032,0.0633,0.1009,0.0829,0.1022,0.0967,0.0665
62280,37,0.0664,0.0935,0.1021,0.1014,0.0919,0.1013,0.0738,0.1003,0.0866,0.0927,0.0911,0.0635,0.0696,0.0916,0.096,0.0921,0.0886,0.0961,0.0623,0.0944,0.084,0.0898,0.0877,0.0693,0.0655,0.0918,0.0955,0.0932,0.0891,0.0969,0.0754,0.0999,0.0831,0.093,0.0874,0.0687,0.0676,0.0922,0.1016,0.1025,0.0917,0.1017,0.0627,0.1059,0.0843,0.1031,0.0899,0.0666,0.0683,0.0932,0.1123,0.1143,0.0916,0.0994,0.0657,0.1034,0.0903,0.0996,0.0888,0.0713,0.0689,0.0946,0.1321,0.115,0.0956,0.1054,0.0711,0.1053,0.0856,0.1118,0.0922,0.0653,0.0657,0.0923,0.0989,0.0998,0.091,0.0966,0.0618,0.1029,0.0846,0.1066,0.0891,0.0648,0.0635,0.0927,0.1037,0.1062,0.0947,0.1033,0.0682,0.101,0.0833,0.1027,0.0967,0.0644
62370,37,0.0662,0.0943,0.1032,0.1028,0.093,0.1021,0.0708,0.1009,0.0869,0.0931,0.093,0.0654,0.0707,0.0934,0.0971,0.0928,0.0895,0.097,0.0624,0.0956,0.0855,0.0905,0.089,0.0704,0.0678,0.0924,0.0957,0.0937,0.0895,0.0969,0.0648,0.101,0.0832,0.0954,0.088,0.0716,0.068,0.0931,0.1021,0.1029,0.0927,0.1023,0.0682,0.107,0.0861,0.1061,0.0915,0.0662,0.0701,0.0933,0.1121,0.1144,0.092,0.1005,0.0617,0.1055,0.0928,0.1028,0.0894,0.0649,0.0672,0.0949,0.1318,0.1162,0.097,0.1074,0.0692,0.1064,0.0875,0.116,0.0943,0.0669,0.0647,0.0925,0.0997,0.1012,0.0926,0.0977,0.0624,0.1045,0.0858,0.1093,0.0905,0.0642,0.0668,0.0927,0.1036,0.1069,0.0955,0.1039,0.0622,0.1018,0.0833,0.1068,0.0981,0.0691
62460,37,0.0645,0.0939,0.1029,0.1022,0.0925,0.1012,0.0715,0.0998,0.086,0.0917,0.0916,0.0669,0.07,0.0929,0.0949,0.0922,0.0891,0.0963,0.0628,0.0945,0.0847,0.0898,0.0881,0.0686,0.0674,0.0921,0.0954,0.0934,0.0894,0.0966,0.0686,0.0994,0.0828,0.0931,0.0869,0.0669,0.0672,0.0921,0.1007,0.1012,0.0909,0.0992,0.0624,0.1032,0.083,0.0992,0.0868,0.0629,0.0665,0.0957,0.1116,0.1135,0.0911,0.0994,0.0629,0.1044,0.091,0.0998,0.0882,0.0634,0.0676,0.0946,0.1319,0.1151,0.0959,0.105,0.0691,0.1047,0.0862,0.1074,0.0925,0.0637,0.0646,0.0917,0.0987,0.1008,0.0919,0.0967,0.0646,0.1038,0.0847,0.1058,0.089,0.0636,0.0683,0.0926,0.1035,0.1068,0.0947,0.1033,0.0632,0.1005,0.0833,0.1028,0.0965,0.0679
62550,37,0.0668,0.0942,0.1029,0.1024,0.0924,0.1013,0.0725,0.0997,0.0862,0.0921,0.0914,0.0654,0.0701,0.0927,0.0946,0.0924,0.0889,0.0963,0.0607,0.0946,0.0851,0.09,0.0883,0.0671,0.0662,0.0921,0.095,0.0929,0.0886,0.0963,0.0619,0.1004,0.0833,0.0943,0.0878,0.0705,0.0679,0.0926,0.1009,0.1019,0.0914,0.1017,0.0718,0.1063,0.0849,0.103,0.0899,0.0629,0.0671,0.0943,0.1112,0.1132,0.091,0.0994,0.0643,0.1046,0.092,0.1008,0.0884,0.0651,0.0684,0.0946,0.131,0.1147,0.0961,0.1053,0.0716,0.1051,0.0862,0.1103,0.0922,0.0618,0.0646,0.0917,0.0986,0.1007,0.0918,0.0965,0.0628,0.1037,0.0851,0.1058,0.0895,0.0648,0.0665,0.0924,0.1034,0.1062,0.0943,0.103,0.0663,0.1008,0.0831,0.1033,0.0961,0.0653
62640,37,0.0666,0.0932,0.102,0.1015,0.0915,0.1004,0.0663,0.0991,0.0859,0.092,0.0918,0.0668,0.0684,0.092,0.0941,0.0919,0.0885,0.0959,0.0631,0.0947,0.0846,0.0897,0.0881,0.0672,0.0668,0.0921,0.095,0.0929,0.0891,0.0961,0.0626,0.0994,0.0825,0.0937,0.0873,0.0731,0.067,0.0928,0.1013,0.1017,0.0918,0.1013,0.0687,0.1059,0.085,0.1031,0.0903,0.0665,0.0695,0.096,0.1114,0.1132,0.091,0.0991,0.0616,0.1037,0.0911,0.1004,0.0884,0.0698,0.0666,0.0949,0.1319,0.1145,0.0955,0.1058,0.0675,0.105,0.0856,0.1116,0.0924,0.0666,0.0651,0.0918,0.099,0.1011,0.0918,0.0966,0.0617,0.1034,0.0846,0.106,0.0891,0.0654,0.0643,0.0929,0.1034,0.106,0.0948,0.1033,0.0643,0.1007,0.0831,0.1033,0.0962,0.0664
62730,37,0.0647,0.0938,0.1027,0.1019,0.0923,0.1013,0.0754,0.0998,0.0862,0.092,0.0911,0.0666,0.0688,0.0928,0.0947,0.0923,0.0887,0.0963,0.0631,0.0943,0.0847,0.0895,0.088,0.0687,0.0661,0.092,0.0955,0.0936,0.0893,0.0967,0.0695,0.0997,0.0832,0.0933,0.087,0.0667,0.0683,0.0925,0.1015,0.1021,0.092,0.1013,0.0636,0.1054,0.0844,0.1022,0.09,0.0646,0.0667,0.0933,0.1123,0.1141,0.0913,0.0992,0.0655,0.1038,0.0909,0.1,0.0886,0.0694,0.0674,0.0945,0.1327,0.1157,0.0957,0.1042,0.0683,0.1048,0.0856,0.1113,0.092,0.0626,0.0669,0.092,0.099,0.1009,0.0915,0.0963,0.0627,0.1033,0.0848,0.1074,0.0899,0.0645,0.0664,0.0926,0.1034,0.1062,0.0949,0.1034,0.0666,0.1007,0.0838,0.1026,0.0963,0.0662
62820,37,0.0642,0.0932,0.1021,0.1016,0.0921,0.1011,0.0724,0.1005,0.0869,0.0924,0.0915,0.0638,0.0702,0.0921,0.0944,0.0925,0.0888,0.0966,0.0598,0.0946,0.0847,0.0895,0.0882,0.0659,0.0657,0.0917,0.0954,0.0934,0.0892,0.0968,0.0748,0.1,0.0832,0.0935,0.0872,0.0681,0.0678,0.0923,0.1016,0.102,0.0916,0.1017,0.0654,0.1055,0.0852,0.1025,0.0904,0.0647,0.0677,0.093,0.1115,0.1137,0.091,0.099,0.0613,0.104,0.0916,0.1004,0.0888,0.0724,0.0663,0.0948,0.1321,0.1135,0.096,0.1056,0.0729,0.1052,0.0865,0.1117,0.0921,0.0632,0.0655,0.092,0.0987,0.1003,0.0911,0.0962,0.0618,0.1028,0.0849,0.1079,0.0907,0.0653,0.067,0.093,0.1033,0.106,0.0951,0.1035,0.0685,0.1009,0.0837,0.1041,0.0957,0.069
62910,37,0.0671,0.0937,0.1026,0.1018,0.092,0.1013,0.0715,0.0998,0.0865,0.0922,0.0914,0.067,0.0702,0.0927,0.0943,0.0922,0.0888,0.0961,0.0619,0.0946,0.0846,0.0896,0.0881,0.0679,0.0659,0.0919,0.0954,0.0933,0.089,0.0962,0.0664,0.0996,0.0829,0.0934,0.0869,0.0693,0.0668,0.0931,0.1014,0.1027,0.0915,0.1016,0.0665,0.1057,0.085,0.1031,0.0904,0.0664,0.0676,0.0934,0.1121,0.1138,0.091,0.0989,0.0617,0.1034,0.0906,0.0997,0.0883,0.0656,0.0686,0.0948,0.1324,0.1146,0.0953,0.1054,0.064,0.1046,0.0857,0.1121,0.0923,0.0639,0.0652,0.0923,0.0992,0.1011,0.0917,0.0962,0.0626,0.1034,0.0846,0.1063,0.0895,0.0646,0.0666,0.0928,0.1034,0.1063,0.095,0.1036,0.0614,0.1006,0.0834,0.1036,0.0956,0.0678
63000,37,0.0657,0.0932,0.1021,0.1017,0.0916,0.101,0.0752,0.0994,0.0861,0.092,0.0908,0.0657,0.0684,0.0921,0.0943,0.0921,0.0885,0.096,0.0634,0.0941,0.0842,0.0892,0.0878,0.068,0.0666,0.0922,0.0956,0.0933,0.089,0.0967,0.0711,0.0996,0.0828,0.093,0.0868,0.067,0.07,0.0927,0.1013,0.1027,0.0918,0.1015,0.0647,0.1055,0.0851,0.1029,0.0901,0.0651,0.0665,0.0935,0.112,0.1136,0.0909,0.0992,0.0612,0.104,0.091,0.0999,0.0887,0.0696,0.0696,0.0946,0.1327,0.1157,0.0956,0.1055,0.0691,0.105,0.0859,0.1114,0.0919,0.0631,0.0648,0.0924,0.099,0.1006,0.0912,0.0962,0.0622,0.1033,0.0849,0.1064,0.0899,0.0666,0.0657,0.0923,0.1032,0.1061,0.0947,0.1034,0.0639,0.1008,0.0839,0.1033,0.0953,0.0641
63090,37,0.0649,0.0944,0.1034,0.103,0.0928,0.1025,0.075,0.1011,0.0875,0.0936,0.093,0.0652,0.0709,0.0928,0.0947,0.0927,0.0893,0.0969,0.0606,0.0955,0.0853,0.0906,0.0888,0.0692,0.0671,0.0923,0.096,0.0938,0.0897,0.0973,0.0702,0.1008,0.0836,0.0957,0.088,0.0706,0.0695,0.0932,0.1017,0.103,0.0924,0.1025,0.0671,0.1072,0.0867,0.1069,0.0918,0.0626,0.0669,0.0932,0.1119,0.1141,0.0912,0.1006,0.064,0.1055,0.0942,0.104,0.09,0.0715,0.0701,0.095,0.1327,0.1164,0.0978,0.1079,0.072,0.1069,0.0883,0.1167,0.094,0.066,0.0642,0.0928,0.0996,0.101,0.0917,0.0972,0.0626,0.1043,0.0863,0.1105,0.0909,0.0648,0.0639,0.0928,0.1034,0.1069,0.0958,0.1045,0.063,0.1018,0.0845,0.1083,0.097,0.0666
63180,37,0.0674,0.0941,0.1028,0.1017,0.0919,0.1008,0.0672,0.0991,0.0862,0.0922,0.0915,0.0676,0.0714,0.0927,0.0945,0.0919,0.0882,0.096,0.0635,0.0943,0.084,0.0895,0.0884,0.0695,0.0673,0.0923,0.095,0.0928,0.0887,0.096,0.0643,0.0994,0.0832,0.094,0.0872,0.072,0.0708,0.093,0.1009,0.1024,0.0916,0.1017,0.0652,0.1058,0.0851,0.1021,0.0904,0.0652,0.0675,0.0936,0.1118,0.1134,0.0908,0.0996,0.0631,0.1039,0.0916,0.1001,0.0878,0.0636,0.0694,0.0948,0.1322,0.1154,0.0952,0.1052,0.0609,0.1044,0.0855,0.109,0.0918,0.0681,0.0652,0.0921,0.099,0.1015,0.0921,0.0969,0.0667,0.1036,0.0844,0.104,0.0892,0.0635,0.0734,0.0926,0.1034,0.1066,0.0944,0.1035,0.0604,0.1006,0.0834,0.104,0.0951,0.071
63270,37,0.0706,0.0948,0.1038,0.1034,0.0928,0.1023,0.0679,0.1006,0.0869,0.0935,0.0939,0.0647,0.072,0.0936,0.095,0.0924,0.089,0.0968,0.0624,0.0955,0.0852,0.0907,0.0889,0.0689,0.0676,0.0927,0.0964,0.0936,0.089,0.0973,0.0632,0.1017,0.0843,0.0968,0.0876,0.0665,0.068,0.0929,0.1017,0.1024,0.0924,0.1026,0.0635,0.1067,0.0872,0.1065,0.0912,0.067,0.0656,0.0932,0.1127,0.1149,0.0919,0.1012,0.0666,0.1058,0.0941,0.1033,0.0894,0.0642,0.0689,0.0944,0.1326,0.117,0.0979,0.1082,0.0635,0.1059,0.0874,0.1146,0.0938,0.0666,0.0649,0.0926,0.0994,0.1016,0.0923,0.0974,0.0651,0.1049,0.0861,0.1094,0.0914,0.0646,0.0694,0.0924,0.1036,0.1071,0.0952,0.1044,0.062,0.102,0.0847,0.1092,0.0967,0.0677
63360,37,0.0679,0.0948,0.1034,0.1033,0.0929,0.1022,0.0684,0.1008,0.0875,0.0935,0.0949,0.0648,0.0707,0.0932,0.0949,0.0924,0.0892,0.0972,0.0628,0.0956,0.0855,0.0906,0.0889,0.0673,0.0665,0.0926,0.0957,0.0931,0.0891,0.097,0.0616,0.101,0.084,0.0966,0.0882,0.074,0.0692,0.0929,0.1014,0.1028,0.092,0.1024,0.0718,0.1076,0.0872,0.108,0.0914,0.0623,0.0657,0.093,0.1121,0.1142,0.0914,0.1008,0.0645,0.1057,0.0946,0.104,0.0901,0.0695,0.0683,0.0946,0.1327,0.1166,0.0979,0.1079,0.0695,0.1064,0.0887,0.1156,0.0928,0.0654,0.0642,0.0923,0.0992,0.1014,0.0919,0.0972,0.0642,0.1048,0.0862,0.1102,0.0911,0.0654,0.0664,0.0927,0.1032,0.1066,0.0953,0.1043,0.0617,0.1018,0.0842,0.1094,0.0961,0.0659
63450,37,0.0678,0.0945,0.103,0.1028,0.0922,0.101,0.0673,0.0993,0.0864,0.0922,0.0926,0.0679,0.0695,0.0927,0.0943,0.0916,0.0885,0.096,0.0656,0.0946,0.0846,0.0897,0.0881,0.0696,0.0668,0.0922,0.0949,0.0928,0.0886,0.096,0.0636,0.0999,0.0832,0.0943,0.0873,0.0704,0.0664,0.0928,0.1004,0.1012,0.0914,0.1013,0.0658,0.1057,0.0851,0.1036,0.0896,0.0651,0.0676,0.0932,0.1117,0.114,0.0911,0.0998,0.0636,0.1039,0.092,0.1001,0.0882,0.0625,0.0682,0.0946,0.1324,0.1156,0.0954,0.1052,0.0625,0.1044,0.0857,0.1107,0.0917,0.067,0.0652,0.0919,0.0987,0.1013,0.092,0.097,0.0669,0.1037,0.0849,0.1051,0.0893,0.0633,0.0708,0.0926,0.1035,0.1068,0.0944,0.1035,0.0621,0.1005,0.0834,0.1058,0.0945,0.0693
63540,37,0.0673,0.0943,0.103,0.1025,0.0925,0.1017,0.0739,0.1,0.0866,0.0924,0.0924,0.0656,0.0695,0.0925,0.0946,0.0923,0.0886,0.096,0.0617,0.0943,0.0847,0.0897,0.0878,0.0706,0.0672,0.0922,0.0949,0.093,0.0887,0.096,0.0642,0.1001,0.0833,0.094,0.0874,0.0689,0.0708,0.0927,0.1007,0.1025,0.0915,0.1015,0.0662,0.1059,0.0857,0.104,0.0897,0.0663,0.0666,0.0927,0.1118,0.1136,0.0908,0.0994,0.0641,0.1044,0.0927,0.1006,0.0885,0.0657,0.0691,0.0946,0.1325,0.1157,0.0962,0.1059,0.0697,0.1047,0.0868,0.1104,0.0917,0.0655,0.0639,0.0918,0.0983,0.1006,0.0916,0.0964,0.0642,0.104,0.0857,0.1058,0.0898,0.0635,0.0681,0.0924,0.1035,0.1069,0.094,0.1033,0.0616,0.1007,0.0839,0.1037,0.0945,0.0674
63630,37,0.0713,0.0947,0.1034,0.1034,0.0928,0.1022,0.0653,0.1008,0.0877,0.0944,0.0953,0.0662,0.0705,0.0927,0.0948,0.0921,0.089,0.0965,0.066,0.0959,0.0857,0.0905,0.0892,0.0641,0.0667,0.0916,0.0951,0.0929,0.0887,0.0967,0.0637,0.1011,0.0845,0.0969,0.088,0.07,0.0679,0.0927,0.1014,0.1022,0.0921,0.1025,0.0723,0.1073,0.0878,0.1074,0.0914,0.0631,0.0647,0.0924,0.1117,0.1145,0.0918,0.1012,0.0671,0.1057,0.095,0.1035,0.0895,0.063,0.0677,0.0944,0.1328,0.1163,0.0982,0.108,0.0694,0.1063,0.0889,0.1168,0.0936,0.0674,0.0638,0.092,0.0988,0.1015,0.0927,0.0978,0.0668,0.1048,0.0866,0.1093,0.0909,0.0639,0.0724,0.0927,0.104,0.1074,0.0954,0.1043,0.0602,0.1015,0.0842,0.1089,0.0958,0.0654
63720,37,0.0703,0.0947,0.1031,0.1023,0.0921,0.101,0.0647,0.0994,0.0871,0.0927,0.0932,0.0667,0.0715,0.0931,0.0944,0.0917,0.0885,0.0958,0.0648,0.0949,0.0851,0.0898,0.0883,0.0694,0.0668,0.0916,0.0942,0.0922,0.0882,0.0964,0.0645,0.1002,0.0842,0.0943,0.0869,0.063,0.0705,0.0926,0.1004,0.102,0.0912,0.1016,0.0644,0.1056,0.086,0.1023,0.0896,0.0674,0.0665,0.0927,0.1118,0.114,0.0916,0.1002,0.0697,0.1041,0.0918,0.0992,0.0875,0.064,0.0694,0.0944,0.1328,0.1164,0.0956,0.1059,0.0635,0.1042,0.085,0.1108,0.0921,0.0692,0.0649,0.0916,0.0987,0.1016,0.0924,0.0973,0.0685,0.1035,0.0851,0.1046,0.0891,0.0631,0.0728,0.092,0.1036,0.1069,0.094,0.103,0.0601,0.1002,0.0836,0.1044,0.0943,0.0681
63810,37,0.0712,0.0947,0.1035,0.1036,0.093,0.1023,0.0659,0.1012,0.088,0.0942,0.0956,0.0647,0.0721,0.0932,0.095,0.0927,0.0891,0.0966,0.0658,0.0959,0.0856,0.0906,0.089,0.0673,0.0682,0.0917,0.0954,0.0932,0.0887,0.0973,0.0671,0.1016,0.0848,0.0968,0.0876,0.0639,0.0719,0.0927,0.101,0.103,0.0923,0.1032,0.0688,0.1072,0.0872,0.1059,0.0913,0.0676,0.0646,0.0923,0.1131,0.1157,0.0927,0.1013,0.071,0.1058,0.0947,0.1025,0.0891,0.0635,0.0697,0.0942,0.1331,0.1177,0.0983,0.1081,0.0622,0.1058,0.0888,0.1129,0.0945,0.0698,0.0648,0.0922,0.0995,0.1023,0.0927,0.0977,0.0713,0.1046,0.0862,0.1107,0.0912,0.066,0.0722,0.0924,0.1041,0.1074,0.0949,0.1041,0.0606,0.102,0.0849,0.1084,0.0959,0.065
63900,37,0.0727,0.0942,0.1029,0.1028,0.0923,0.102,0.064,0.1014,0.0888,0.0953,0.0965,0.0715,0.0712,0.093,0.0943,0.0919,0.089,0.0967,0.073,0.096,0.086,0.0906,0.089,0.0648,0.0655,0.0911,0.0951,0.0929,0.0885,0.0976,0.0698,0.1015,0.0848,0.0962,0.0874,0.0643,0.0695,0.0926,0.1016,0.1028,0.0922,0.1025,0.066,0.1071,0.0877,0.1064,0.0913,0.0648,0.065,0.0924,0.1121,0.115,0.0925,0.1014,0.07,0.1053,0.0942,0.1024,0.0891,0.065,0.0688,0.0946,0.1335,0.1172,0.098,0.1082,0.062,0.106,0.0882,0.117,0.0946,0.0689,0.0649,0.0924,0.0996,0.1022,0.0928,0.0976,0.0698,0.1042,0.086,0.1104,0.0908,0.0648,0.0704,0.0928,0.104,0.1076,0.0953,0.1044,0.0642,0.1018,0.0851,0.1096,0.0955,0.0664
63990,37,0.0727,0.0945,0.1031,0.1027,0.0927,0.1018,0.0637,0.1012,0.0884,0.0941,0.096,0.0664,0.0707,0.0932,0.0947,0.092,0.0887,0.0966,0.0658,0.0956,0.0855,0.0903,0.089,0.0683,0.0677,0.0919,0.0951,0.093,0.0887,0.097,0.0651,0.1012,0.0847,0.0955,0.0867,0.0662,0.0707,0.0926,0.1011,0.103,0.0922,0.1022,0.0608,0.1066,0.0873,0.1057,0.091,0.0674,0.0653,0.0928,0.1135,0.116,0.093,0.1014,0.0756,0.1047,0.0936,0.102,0.0887,0.0651,0.0704,0.0946,0.1339,0.119,0.0975,0.1074,0.0621,0.1057,0.0879,0.1162,0.0948,0.0707,0.0656,0.0924,0.0998,0.1029,0.0928,0.0975,0.071,0.1045,0.0858,0.1089,0.091,0.0661,0.0707,0.0925,0.1039,0.1074,0.0949,0.1042,0.0618,0.1017,0.0851,0.11,0.0955,0.0674
64080,37,0.0723,0.0942,0.1028,0.1018,0.0916,0.1009,0.0616,0.1,0.0874,0.0933,0.0938,0.0691,0.0727,0.0929,0.0942,0.0918,0.0883,0.0958,0.0678,0.0949,0.0851,0.0902,0.0879,0.0639,0.0658,0.0915,0.0945,0.0922,0.0877,0.0966,0.0659,0.1008,0.0842,0.0947,0.087,0.0635,0.0703,0.0922,0.1006,0.1018,0.0914,0.1016,0.0684,0.106,0.0857,0.103,0.0895,0.0638,0.0653,0.0923,0.1117,0.1138,0.091,0.1,0.068,0.1046,0.0927,0.1,0.0878,0.0628,0.0679,0.0942,0.1326,0.1162,0.0957,0.1062,0.0665,0.1046,0.0868,0.1101,0.0916,0.0642,0.0646,0.0915,0.0985,0.1013,0.0916,0.0962,0.0658,0.1036,0.0852,0.1056,0.0895,0.0642,0.0683,0.0924,0.1036,0.1065,0.0943,0.1035,0.0604,0.1004,0.084,0.1049,0.0938,0.0698
64170,37,0.0668,0.0941,0.1028,0.1023,0.0918,0.1011,0.0654,0.0999,0.0873,0.0928,0.0946,0.0671,0.0732,0.0929,0.0942,0.0914,0.0886,0.0956,0.0657,0.0947,0.0853,0.0897,0.0883,0.0628,0.066,0.0916,0.0944,0.0922,0.0879,0.096,0.0647,0.1002,0.0838,0.0947,0.0875,0.0696,0.0699,0.0923,0.1004,0.1016,0.0914,0.1011,0.0696,0.1059,0.0862,0.1036,0.0898,0.0634,0.067,0.0925,0.111,0.113,0.0902,0.0995,0.0647,0.1039,0.093,0.1,0.0877,0.0632,0.0693,0.0949,0.1325,0.1149,0.096,0.1058,0.0665,0.1051,0.0861,0.1117,0.0917,0.0662,0.0649,0.0919,0.0985,0.1008,0.0915,0.0964,0.0646,0.1034,0.0854,0.1064,0.0885,0.0631,0.0662,0.0924,0.1031,0.1062,0.0944,0.1032,0.0598,0.1004,0.0842,0.105,0.0931,0.0669
64260,37,0.0673,0.0941,0.1029,0.1023,0.0918,0.1011,0.0661,0.0991,0.087,0.0925,0.0938,0.0683,0.0694,0.0927,0.0943,0.0918,0.0886,0.0958,0.0657,0.0943,0.085,0.0894,0.088,0.0671,0.0668,0.0921,0.095,0.0927,0.0883,0.0964,0.0613,0.0999,0.0838,0.0944,0.0872,0.0678,0.0686,0.0926,0.1006,0.102,0.0916,0.1006,0.065,0.1058,0.0862,0.1028,0.0895,0.0643,0.0676,0.0929,0.1116,0.1136,0.0906,0.0997,0.0643,0.1041,0.0928,0.1002,0.0878,0.063,0.0705,0.0948,0.1332,0.1156,0.0958,0.1052,0.0633,0.1045,0.0863,0.1108,0.0913,0.0674,0.0651,0.0917,0.0985,0.1012,0.0916,0.0964,0.0655,0.1036,0.0855,0.1054,0.0891,0.0627,0.07,0.0927,0.1034,0.1069,0.0946,0.1037,0.0609,0.1006,0.0843,0.1047,0.0935,0.0676
64350,37,0.0688,0.0949,0.1037,0.1043,0.0932,0.1029,0.0698,0.101,0.0881,0.0942,0.0946,0.064,0.0712,0.0933,0.0948,0.0926,0.0891,0.0965,0.0635,0.0955,0.0856,0.0905,0.089,0.0667,0.0663,0.0926,0.0956,0.0932,0.0886,0.0968,0.0617,0.1013,0.0842,0.097,0.0883,0.0731,0.0694,0.093,0.1015,0.103,0.0921,0.1023,0.0706,0.1075,0.0881,0.1081,0.0917,0.0633,0.0657,0.0926,0.1123,0.1147,0.0915,0.1005,0.0648,0.1059,0.0955,0.104,0.0893,0.0658,0.0699,0.0948,0.1332,0.1164,0.0983,0.1089,0.0701,0.1066,0.0895,0.1161,0.094,0.0669,0.0653,0.0922,0.0987,0.1012,0.0917,0.0968,0.0627,0.1045,0.0869,0.1108,0.0917,0.0658,0.0669,0.0925,0.1036,0.1067,0.0957,0.1046,0.0636,0.1022,0.0856,0.109,0.0944,0.0647
64440,37,0.0676,0.0944,0.1031,0.1023,0.0919,0.1011,0.0649,0.0993,0.087,0.0928,0.0943,0.0667,0.0732,0.0928,0.0938,0.091,0.0884,0.0959,0.0662,0.0943,0.0854,0.0894,0.0883,0.0642,0.0688,0.092,0.0945,0.0923,0.0878,0.0956,0.0637,0.1002,0.0838,0.0945,0.0873,0.0738,0.0686,0.0929,0.1006,0.1011,0.091,0.1013,0.0651,0.1059,0.086,0.1037,0.0901,0.0645,0.0687,0.0928,0.1114,0.1133,0.0905,0.0992,0.0634,0.1038,0.0925,0.0994,0.0876,0.0629,0.0671,0.0949,0.1335,0.1153,0.0956,0.1058,0.0639,0.1043,0.0862,0.1119,0.0918,0.067,0.0651,0.092,0.0986,0.101,0.0913,0.0964,0.0656,0.1033,0.0848,0.1054,0.091,0.0629,0.0703,0.0925,0.1032,0.1065,0.0943,0.1035,0.0607,0.1008,0.084,0.1053,0.0932,0.0716
64530,37,0.0671,0.0945,0.1032,0.1026,0.0922,0.1012,0.0676,0.0993,0.0869,0.0923,0.0923,0.0681,0.0693,0.0925,0.0942,0.092,0.0883,0.0958,0.065,0.0948,0.0848,0.0894,0.088,0.0666,0.0674,0.0922,0.0946,0.0927,0.0882,0.0958,0.0619,0.0997,0.0838,0.0945,0.0871,0.0679,0.0699,0.0926,0.1008,0.1022,0.0911,0.1013,0.0642,0.1062,0.0856,0.1035,0.0897,0.0661,0.0659,0.0929,0.1119,0.1139,0.0909,0.0995,0.067,0.1038,0.0925,0.0992,0.0875,0.0624,0.0683,0.0944,0.1334,0.116,0.0956,0.1056,0.0614,0.1044,0.0865,0.1108,0.0916,0.0663,0.0656,0.0921,0.0987,0.101,0.0915,0.0965,0.066,0.1035,0.0852,0.1054,0.0891,0.0646,0.072,0.0919,0.1034,0.1069,0.0941,0.1035,0.0608,0.1006,0.0846,0.105,0.0932,0.071
64620,37,0.0677,0.0945,0.1032,0.1027,0.0918,0.1014,0.0661,0.0995,0.0867,0.0928,0.0932,0.0651,0.0699,0.0927,0.0943,0.091,0.0883,0.0962,0.0627,0.0949,0.0853,0.0895,0.0882,0.0666,0.0647,0.0924,0.0948,0.0924,0.0881,0.0957,0.062,0.0999,0.0837,0.0945,0.0876,0.0735,0.0693,0.0924,0.1006,0.1016,0.0911,0.1014,0.0707,0.1064,0.0864,0.1051,0.0899,0.0622,0.0662,0.0928,0.1115,0.1132,0.0903,0.0991,0.0647,0.104,0.0932,0.1003,0.0882,0.0666,0.0688,0.0948,0.1332,0.1152,0.0962,0.1061,0.069,0.1051,0.0874,0.1113,0.0918,0.0639,0.0644,0.092,0.0983,0.1009,0.091,0.0963,0.0641,0.1033,0.0853,0.1073,0.0894,0.0656,0.0685,0.0927,0.1035,0.1065,0.0946,0.1038,0.0618,0.1011,0.0849,0.105,0.0928,0.0672
64710,37,0.066,0.0943,0.1029,0.1025,0.0921,0.1014,0.0675,0.0994,0.0874,0.0929,0.0937,0.067,0.069,0.0925,0.094,0.0915,0.0884,0.0957,0.0635,0.0946,0.0851,0.0894,0.088,0.0701,0.0655,0.092,0.0944,0.0927,0.0884,0.0955,0.0642,0.0993,0.0834,0.0938,0.087,0.0714,0.0705,0.0932,0.1009,0.1023,0.0908,0.1011,0.0676,0.1064,0.086,0.1045,0.0899,0.0682,0.0711,0.0932,0.1116,0.1132,0.0905,0.0988,0.0618,0.1032,0.0931,0.1002,0.0882,0.0679,0.0698,0.0951,0.1335,0.1155,0.0954,0.1058,0.0653,0.1047,0.0874,0.1129,0.0918,0.0668,0.0653,0.0922,0.0986,0.1008,0.0912,0.0964,0.0634,0.1035,0.0857,0.1065,0.089,0.0658,0.068,0.0927,0.1031,0.1064,0.0946,0.1036,0.0612,0.1006,0.084,0.1051,0.0922,0.067
64800,37,0.0674,0.0942,0.1028,0.1028,0.0924,0.1018,0.0724,0.0998,0.0874,0.0924,0.0928,0.0675,0.0691,0.0925,0.0945,0.092,0.0884,0.0962,0.0641,0.0942,0.085,0.0895,0.0874,0.0698,0.0665,0.0922,0.0949,0.0933,0.089,0.096,0.0674,0.0994,0.0833,0.0936,0.0868,0.0687,0.0689,0.0925,0.1009,0.1024,0.091,0.1012,0.0636,0.1057,0.0864,0.104,0.0897,0.0676,0.0689,0.0929,0.1122,0.1139,0.0908,0.0993,0.0636,0.1039,0.0934,0.1003,0.0881,0.0653,0.0679,0.0948,0.1339,0.1152,0.0957,0.1063,0.068,0.1048,0.087,0.1111,0.0916,0.0661,0.0648,0.092,0.0984,0.1008,0.091,0.0964,0.0641,0.104,0.0856,0.1079,0.0897,0.0636,0.069,0.0927,0.1036,0.1067,0.0947,0.1038,0.0625,0.1008,0.085,0.1051,0.0924,0.0683
64890,37,0.0661,0.0941,0.1028,0.1025,0.0921,0.1016,0.0731,0.1001,0.0876,0.093,0.0938,0.0645,0.0699,0.0923,0.0938,0.0916,0.0884,0.0959,0.0602,0.0943,0.0856,0.0894,0.0879,0.068,0.0669,0.0916,0.0946,0.0928,0.0881,0.0958,0.0612,0.1005,0.0841,0.0945,0.0876,0.0701,0.0693,0.0924,0.1007,0.1023,0.0914,0.1012,0.0733,0.1064,0.0871,0.1049,0.0898,0.0644,0.066,0.0925,0.1113,0.1129,0.0901,0.0991,0.0648,0.1043,0.0946,0.1022,0.0884,0.066,0.0679,0.0946,0.1336,0.1153,0.0964,0.1062,0.0698,0.105,0.0876,0.1114,0.0915,0.0641,0.0647,0.0914,0.0979,0.1009,0.0911,0.0963,0.0654,0.1037,0.086,0.1072,0.0897,0.0667,0.0698,0.0925,0.1035,0.1065,0.0943,0.1034,0.0615,0.1008,0.0848,0.1053,0.0927,0.0664
64980,37,0.0721,0.0947,0.1032,0.1034,0.0928,0.1025,0.0657,0.1007,0.0888,0.0947,0.0964,0.0677,0.0714,0.0934,0.0943,0.0922,0.0888,0.0962,0.0662,0.0956,0.0862,0.0903,0.089,0.0656,0.0692,0.0919,0.0947,0.0928,0.0886,0.0967,0.0642,0.1012,0.0851,0.097,0.0876,0.0706,0.0705,0.093,0.1013,0.103,0.0913,0.1024,0.0686,0.1073,0.088,0.1075,0.0916,0.0677,0.0654,0.0925,0.1127,0.1146,0.0917,0.1008,0.0658,0.1056,0.0958,0.1028,0.0886,0.0653,0.0699,0.0947,0.1336,0.1172,0.0978,0.108,0.0631,0.1059,0.0884,0.1164,0.0943,0.0682,0.0638,0.0918,0.0986,0.1019,0.0923,0.0976,0.0672,0.105,0.0872,0.1103,0.0908,0.064,0.0716,0.0928,0.1036,0.1076,0.0953,0.1046,0.0614,0.1016,0.0854,0.1093,0.0938,0.0699
65070,37,0.0682,0.0944,0.1033,0.1031,0.0926,0.1016,0.0682,0.0994,0.0876,0.0929,0.0933,0.0664,0.0705,0.0926,0.0939,0.0921,0.0882,0.0955,0.0635,0.0944,0.0853,0.0896,0.0879,0.0657,0.0687,0.092,0.0945,0.0929,0.0887,0.0958,0.0633,0.1001,0.0843,0.0944,0.0872,0.0691,0.0672,0.0923,0.1007,0.1022,0.0912,0.1009,0.07,0.1058,0.0875,0.1035,0.0901,0.0648,0.0669,0.0925,0.1118,0.1136,0.0908,0.0995,0.0657,0.1046,0.0946,0.1011,0.0879,0.0628,0.069,0.0943,0.1338,0.1156,0.0961,0.106,0.0686,0.1046,0.0881,0.1113,0.0922,0.066,0.0647,0.0913,0.0979,0.101,0.0914,0.096,0.0653,0.104,0.0864,0.1066,0.09,0.0624,0.07,0.0928,0.1038,0.1071,0.0944,0.1036,0.0618,0.1009,0.0847,0.1052,0.0928,0.0693
65160,37,0.0695,0.0944,0.1033,0.1036,0.0933,0.1031,0.07,0.1016,0.0893,0.0944,0.0953,0.0655,0.069,0.0929,0.0942,0.0926,0.089,0.0968,0.0639,0.0956,0.0862,0.09,0.089,0.068,0.066,0.0923,0.0953,0.0934,0.0888,0.0964,0.0614,0.1016,0.0851,0.097,0.0881,0.0729,0.0698,0.0927,0.101,0.1032,0.0919,0.1023,0.0759,0.1074,0.0885,0.1087,0.092,0.0631,0.0664,0.0927,0.1128,0.1146,0.0914,0.1003,0.0646,0.1058,0.0971,0.1048,0.0894,0.0662,0.0704,0.0951,0.1341,0.1169,0.0986,0.1089,0.0707,0.1068,0.0897,0.1172,0.0943,0.0672,0.0639,0.0919,0.0986,0.1019,0.092,0.0968,0.0641,0.105,0.0879,0.1135,0.0911,0.067,0.0682,0.0924,0.1035,0.1069,0.0951,0.1045,0.064,0.1017,0.0862,0.1099,0.0938,0.068
65250,37,0.0665,0.0942,0.1029,0.1028,0.0922,0.1014,0.0671,0.0995,0.0879,0.0926,0.0934,0.0675,0.0721,0.093,0.0935,0.0916,0.0885,0.0955,0.0656,0.0943,0.0856,0.0889,0.0884,0.0646,0.0683,0.0917,0.0943,0.0925,0.088,0.0956,0.0624,0.1002,0.0839,0.0943,0.0868,0.0716,0.0724,0.0931,0.0997,0.1022,0.091,0.1013,0.0677,0.1062,0.0864,0.1036,0.0903,0.0653,0.0672,0.0924,0.112,0.1135,0.0906,0.0995,0.0646,0.1042,0.0941,0.1004,0.0876,0.0637,0.0698,0.0949,0.134,0.1155,0.0961,0.1064,0.0626,0.1046,0.0869,0.1114,0.0919,0.0668,0.065,0.0915,0.0984,0.1016,0.0916,0.0964,0.0661,0.1037,0.086,0.1061,0.0887,0.0624,0.073,0.0928,0.1038,0.1068,0.0945,0.1036,0.0602,0.1001,0.0848,0.106,0.0924,0.0705
65340,37,0.0668,0.0943,0.1031,0.1034,0.0927,0.102,0.0726,0.1,0.0883,0.093,0.0941,0.0663,0.0699,0.0924,0.0937,0.0915,0.0881,0.0958,0.0638,0.0941,0.0851,0.0892,0.088,0.0665,0.0676,0.092,0.0948,0.093,0.0883,0.0955,0.0633,0.1001,0.0838,0.0941,0.0869,0.0699,0.0685,0.0923,0.1007,0.1023,0.091,0.1009,0.0646,0.1056,0.087,0.1034,0.09,0.0654,0.0664,0.093,0.1122,0.1136,0.0905,0.0992,0.0632,0.1044,0.0947,0.1014,0.0884,0.0668,0.0696,0.0949,0.1341,0.1153,0.0958,0.1062,0.0696,0.105,0.0874,0.1126,0.0922,0.0649,0.0647,0.0919,0.0984,0.101,0.0907,0.0956,0.0626,0.1036,0.0866,0.1079,0.0896,0.0653,0.0676,0.0924,0.1031,0.1063,0.0947,0.1036,0.0652,0.1007,0.0852,0.1058,0.092,0.0647
65430,37,0.0684,0.0946,0.1035,0.104,0.0932,0.1033,0.0717,0.1013,0.0893,0.0952,0.0952,0.0652,0.0705,0.0927,0.0943,0.0919,0.0887,0.0965,0.0638,0.0954,0.086,0.0898,0.0893,0.0692,0.0666,0.0921,0.0953,0.0935,0.0887,0.0964,0.0638,0.1011,0.0843,0.0963,0.0875,0.0737,0.0671,0.0928,0.1011,0.1028,0.0918,0.1016,0.0706,0.1075,0.0883,0.1083,0.0921,0.0656,0.0664,0.0934,0.1132,0.1147,0.0915,0.1001,0.0619,0.1053,0.0963,0.1048,0.0903,0.0736,0.0679,0.0951,0.1348,0.1156,0.0978,0.1082,0.0703,0.1068,0.091,0.1191,0.0946,0.067,0.0645,0.0926,0.099,0.1009,0.091,0.0968,0.0619,0.1039,0.0877,0.1135,0.0905,0.0655,0.0656,0.093,0.1036,0.1069,0.0959,0.1047,0.0655,0.1022,0.0863,0.1115,0.0933,0.0679
65520,37,0.0707,0.0936,0.1022,0.1018,0.0918,0.1018,0.0706,0.1,0.0884,0.0933,0.0922,0.0664,0.0699,0.0923,0.0937,0.0917,0.088,0.0957,0.0629,0.094,0.0852,0.089,0.0874,0.0683,0.0658,0.0916,0.0947,0.0928,0.0885,0.0963,0.0725,0.0993,0.084,0.0932,0.0861,0.0658,0.0674,0.0924,0.1011,0.1029,0.0913,0.101,0.066,0.1056,0.0867,0.103,0.0901,0.0685,0.0669,0.0935,0.1128,0.1144,0.091,0.0991,0.0671,0.1029,0.0926,0.1003,0.0884,0.0686,0.0707,0.095,0.1346,0.1163,0.0952,0.1057,0.0638,0.1048,0.0872,0.114,0.0924,0.0674,0.0665,0.0926,0.0991,0.1016,0.0912,0.0964,0.0621,0.1028,0.0856,0.1087,0.0891,0.0643,0.067,0.093,0.1038,0.1067,0.0952,0.104,0.0611,0.101,0.0855,0.106,0.0919,0.0662
65610,37,0.0648,0.0939,0.1024,0.1018,0.092,0.1021,0.0716,0.1007,0.0888,0.0938,0.0936,0.0643,0.0696,0.0922,0.0936,0.0921,0.0879,0.0962,0.063,0.0943,0.0851,0.0894,0.0874,0.0682,0.065,0.0915,0.0949,0.0928,0.0883,0.0964,0.078,0.0996,0.0842,0.0933,0.0861,0.0643,0.0667,0.0925,0.1009,0.103,0.0911,0.1016,0.0629,0.1055,0.087,0.103,0.0899,0.0696,0.0658,0.0932,0.1132,0.1148,0.0909,0.0991,0.0703,0.1035,0.0935,0.1001,0.0895,0.0709,0.0691,0.095,0.1347,0.1163,0.0959,0.1062,0.0662,0.1052,0.0887,0.114,0.092,0.0665,0.0658,0.0925,0.0988,0.1004,0.0904,0.0961,0.0617,0.1025,0.0862,0.1096,0.0902,0.0662,0.0644,0.0931,0.1037,0.1066,0.0952,0.1041,0.0688,0.1015,0.0858,0.106,0.0921,0.0646
65700,37,0.0716,0.0934,0.1019,0.1012,0.0914,0.1016,0.0671,0.1008,0.0891,0.0938,0.0928,0.0658,0.0686,0.0922,0.0933,0.0914,0.088,0.096,0.0673,0.0946,0.0859,0.0893,0.0872,0.065,0.0633,0.0908,0.0943,0.0923,0.088,0.0969,0.0743,0.0997,0.0846,0.0934,0.0865,0.0635,0.0671,0.0922,0.1005,0.1024,0.0907,0.1012,0.0614,0.1058,0.0861,0.1029,0.0895,0.0699,0.0648,0.0927,0.1126,0.1144,0.0913,0.0997,0.0754,0.1026,0.0929,0.0996,0.0889,0.0655,0.0684,0.0949,0.1352,0.1162,0.0958,0.1058,0.0614,0.1048,0.0876,0.1136,0.0918,0.0669,0.0647,0.0928,0.099,0.1011,0.0914,0.0968,0.0679,0.1024,0.0856,0.1072,0.0891,0.0669,0.0645,0.0932,0.1038,0.1072,0.0952,0.104,0.0635,0.101,0.0855,0.1064,0.0916,0.0647
65790,37,0.0761,0.0943,0.1028,0.1027,0.0925,0.1028,0.0638,0.1019,0.0902,0.0958,0.095,0.0681,0.0696,0.0934,0.0938,0.0917,0.0886,0.0966,0.0675,0.0953,0.0865,0.0898,0.0885,0.0705,0.0655,0.0913,0.0947,0.0927,0.0884,0.0973,0.0722,0.1013,0.0857,0.0956,0.0868,0.0656,0.067,0.0924,0.1011,0.1036,0.092,0.1024,0.0612,0.1068,0.0884,0.1059,0.0908,0.0699,0.0652,0.0926,0.1137,0.1158,0.0924,0.1017,0.0731,0.105,0.0954,0.102,0.0952,0.0659,0.0672,0.0948,0.1353,0.1181,0.0977,0.108,0.0636,0.1057,0.0891,0.1166,0.0949,0.0707,0.0649,0.0927,0.0996,0.1023,0.0922,0.0978,0.0713,0.1042,0.0866,0.1102,0.0908,0.0646,0.0693,0.0923,0.1037,0.1076,0.0949,0.1045,0.0608,0.1018,0.0866,0.1101,0.093,0.0671
65880,37,0.074,0.0945,0.1032,0.103,0.0925,0.1025,0.062,0.1016,0.0902,0.0956,0.0966,0.0714,0.0698,0.0928,0.0941,0.0922,0.0885,0.0965,0.0698,0.0956,0.0863,0.0901,0.0886,0.0676,0.0655,0.0915,0.0948,0.0925,0.0882,0.0973,0.071,0.1019,0.0861,0.0971,0.0873,0.0658,0.0674,0.0922,0.1006,0.1031,0.0916,0.1021,0.0638,0.1069,0.0888,0.1068,0.0908,0.0673,0.0647,0.0923,0.1132,0.1154,0.0923,0.1014,0.0715,0.1058,0.0967,0.1026,0.092,0.0648,0.0693,0.0943,0.1351,0.1182,0.0982,0.1079,0.0641,0.1059,0.0894,0.1164,0.0944,0.0693,0.0645,0.0923,0.099,0.102,0.0922,0.0974,0.0701,0.1048,0.0878,0.1116,0.0913,0.0664,0.0718,0.0921,0.1038,0.1075,0.0945,0.1043,0.0605,0.1019,0.0864,0.1109,0.093,0.0656
65970,37,0.0715,0.0944,0.1032,0.1037,0.0927,0.1027,0.0627,0.1014,0.0901,0.0959,0.0962,0.0682,0.0733,0.0927,0.0941,0.0917,0.0889,0.096,0.0713,0.0959,0.0865,0.0903,0.0884,0.0671,0.0664,0.0916,0.0945,0.0925,0.0881,0.0967,0.0647,0.1019,0.0859,0.0973,0.0876,0.0678,0.0706,0.0926,0.1001,0.1028,0.0915,0.1026,0.0706,0.1072,0.0896,0.1074,0.0908,0.0671,0.0654,0.0921,0.1127,0.1148,0.0918,0.1016,0.0686,0.1054,0.097,0.1038,0.0934,0.0641,0.0689,0.0949,0.1344,0.1174,0.0985,0.1083,0.0634,0.1063,0.0904,0.1176,0.0945,0.0695,0.0637,0.092,0.0988,0.1022,0.0924,0.0974,0.0699,0.1046,0.0878,0.1102,0.0903,0.0652,0.0701,0.0926,0.104,0.1078,0.0952,0.1045,0.0602,0.1017,0.0866,0.1108,0.0929,0.0668
66060,37,0.0753,0.0947,0.1036,0.1038,0.0932,0.103,0.0627,0.1015,0.0902,0.0955,0.0964,0.0663,0.0714,0.0934,0.0937,0.0918,0.0887,0.0959,0.0687,0.0957,0.0866,0.09,0.0887,0.0654,0.068,0.0916,0.0943,0.0927,0.0883,0.0968,0.0648,0.1015,0.0859,0.097,0.0871,0.0642,0.0697,0.0924,0.1006,0.103,0.0915,0.1021,0.0663,0.107,0.0884,0.1066,0.0911,0.0662,0.0659,0.0929,0.1136,0.1154,0.0923,0.1017,0.0705,0.1058,0.0973,0.1036,0.0927,0.0651,0.0702,0.0951,0.1348,0.1183,0.0987,0.1094,0.0646,0.106,0.0899,0.1157,0.0945,0.0676,0.0646,0.092,0.099,0.1025,0.0926,0.0977,0.0692,0.105,0.0879,0.1112,0.0904,0.0629,0.0728,0.0925,0.104,0.1076,0.0946,0.1045,0.0615,0.1015,0.0862,0.1106,0.0927,0.0657
66150,37,0.0721,0.0946,0.1034,0.1036,0.0929,0.103,0.0632,0.1016,0.0907,0.0964,0.0966,0.0718,0.0703,0.0931,0.0942,0.0919,0.0889,0.0963,0.0694,0.0955,0.0865,0.0903,0.0891,0.0689,0.0678,0.0919,0.095,0.093,0.0884,0.0968,0.0641,0.102,0.0861,0.0978,0.088,0.0675,0.0681,0.0923,0.1007,0.1028,0.0915,0.1021,0.0709,0.1074,0.0896,0.1079,0.0915,0.0641,0.0655,0.0924,0.1129,0.1147,0.0914,0.101,0.065,0.1063,0.0986,0.1051,0.0936,0.0665,0.0685,0.0948,0.1346,0.1166,0.0992,0.1087,0.0714,0.1067,0.0913,0.1148,0.0942,0.0655,0.0639,0.0917,0.0982,0.1014,0.0917,0.097,0.0639,0.1052,0.0892,0.1143,0.0908,0.064,0.0681,0.0924,0.1035,0.1074,0.0953,0.1048,0.0643,0.102,0.0867,0.1107,0.0929,0.0654
66240,37,0.0701,0.0945,0.1033,0.1038,0.0931,0.1032,0.0656,0.1014,0.0904,0.0957,0.0951,0.0653,0.073,0.0929,0.094,0.0919,0.0886,0.0962,0.0678,0.0956,0.0868,0.0896,0.089,0.0645,0.0659,0.0918,0.095,0.0933,0.0888,0.0963,0.0631,0.1015,0.0856,0.0975,0.0878,0.0739,0.0686,0.093,0.1006,0.1025,0.0919,0.1018,0.0735,0.1072,0.0902,0.108,0.0941,0.0649,0.0688,0.0926,0.1128,0.1144,0.0912,0.1003,0.0626,0.1058,0.0977,0.1057,0.0955,0.0674,0.068,0.0952,0.1352,0.1167,0.0987,0.109,0.0724,0.1065,0.0911,0.1181,0.0951,0.0674,0.0652,0.092,0.0985,0.1014,0.0916,0.0968,0.0627,0.1045,0.089,0.1139,0.0902,0.0645,0.068,0.0931,0.1038,0.1072,0.0961,0.105,0.0651,0.1019,0.0866,0.1108,0.0926,0.0662
66330,37,0.0665,0.094,0.1028,0.1027,0.0925,0.1021,0.0713,0.0999,0.0887,0.0933,0.0945,0.066,0.0697,0.0924,0.0937,0.0916,0.088,0.0957,0.0639,0.094,0.0857,0.0888,0.0877,0.0715,0.0665,0.0919,0.0945,0.0932,0.0886,0.0955,0.0651,0.1003,0.0846,0.0944,0.0866,0.0675,0.0711,0.0925,0.1003,0.1019,0.0911,0.101,0.0644,0.1058,0.0868,0.1032,0.0907,0.0644,0.0665,0.0927,0.1121,0.1138,0.0904,0.0993,0.0641,0.1043,0.0953,0.1009,0.0923,0.065,0.0696,0.0957,0.1351,0.1159,0.0963,0.107,0.0685,0.1049,0.0887,0.1113,0.0925,0.0659,0.0647,0.0917,0.0981,0.1012,0.091,0.0959,0.0639,0.1035,0.0874,0.1082,0.089,0.0641,0.0685,0.0929,0.1036,0.1069,0.0948,0.104,0.0631,0.1009,0.0857,0.1062,0.0916,0.0701
66420,37,0.0671,0.094,0.1028,0.1028,0.0923,0.1021,0.0733,0.1002,0.0889,0.0938,0.0942,0.064,0.0686,0.0922,0.0938,0.0916,0.0881,0.0956,0.0608,0.0943,0.0858,0.0888,0.0878,0.0693,0.0641,0.0918,0.0947,0.0929,0.0881,0.0956,0.0629,0.1006,0.0846,0.0947,0.087,0.0728,0.0711,0.0921,0.1001,0.1023,0.0906,0.101,0.0709,0.1062,0.088,0.1037,0.0933,0.0627,0.0669,0.0924,0.1118,0.1134,0.0901,0.0991,0.0638,0.1048,0.096,0.1015,0.0937,0.0662,0.0688,0.0955,0.1351,0.1148,0.0963,0.107,0.0739,0.1056,0.0884,0.1132,0.0926,0.0645,0.0644,0.0917,0.0975,0.1001,0.0902,0.0956,0.0626,0.1035,0.0874,0.1092,0.089,0.0642,0.0666,0.093,0.1034,0.1065,0.0947,0.104,0.0663,0.101,0.0861,0.1063,0.0916,0.0648
66510,37,0.0699,0.0943,0.1034,0.104,0.0934,0.1036,0.0731,0.1017,0.0902,0.0954,0.0947,0.0663,0.0692,0.0928,0.0942,0.0923,0.0883,0.0963,0.0628,0.0954,0.0863,0.0896,0.089,0.069,0.0651,0.092,0.095,0.0935,0.0887,0.0964,0.0623,0.1013,0.0851,0.0968,0.0873,0.0736,0.0714,0.0929,0.1008,0.1028,0.0912,0.1019,0.0731,0.1078,0.0903,0.1088,0.0958,0.0672,0.0683,0.093,0.113,0.1137,0.0905,0.1001,0.0622,0.1056,0.0978,0.1048,0.0975,0.0692,0.0704,0.0955,0.1351,0.1166,0.0986,0.1091,0.0706,0.1068,0.091,0.1182,0.0948,0.066,0.067,0.0922,0.0985,0.1011,0.0911,0.0967,0.063,0.1046,0.0884,0.1129,0.0898,0.0644,0.0675,0.0928,0.1036,0.1069,0.0957,0.1051,0.0605,0.1018,0.0871,0.1113,0.0928,0.069
66600,37,0.0675,0.0942,0.1029,0.103,0.0922,0.1016,0.066,0.0997,0.0887,0.0937,0.0943,0.0676,0.0733,0.093,0.0935,0.0914,0.088,0.0957,0.0643,0.0948,0.0859,0.0893,0.0882,0.0674,0.0655,0.0914,0.094,0.0921,0.0875,0.0958,0.0633,0.1004,0.0851,0.0951,0.0867,0.0662,0.0687,0.0926,0.1002,0.102,0.0906,0.1011,0.0679,0.1062,0.0877,0.1034,0.0916,0.0672,0.0647,0.0925,0.1121,0.1137,0.0904,0.0998,0.0679,0.1039,0.0944,0.1005,0.0929,0.0635,0.0679,0.0954,0.135,0.1161,0.0961,0.1067,0.0623,0.1043,0.0877,0.112,0.0924,0.0678,0.0652,0.0917,0.0982,0.1017,0.0914,0.0962,0.0673,0.1035,0.0865,0.1058,0.0883,0.063,0.0732,0.0923,0.1039,0.1074,0.0941,0.1041,0.0605,0.1007,0.0859,0.1075,0.0915,0.0672
66690,37,0.0677,0.0947,0.1035,0.1043,0.0929,0.1031,0.0652,0.1015,0.0905,0.0964,0.0957,0.0679,0.0699,0.0934,0.094,0.0921,0.0888,0.0962,0.0687,0.0956,0.0865,0.09,0.0888,0.0675,0.066,0.092,0.0947,0.0927,0.0882,0.0966,0.0665,0.1021,0.086,0.0973,0.087,0.0655,0.0675,0.0926,0.101,0.1035,0.0917,0.1027,0.0655,0.1074,0.0905,0.1077,0.0946,0.0665,0.0651,0.0925,0.1135,0.1152,0.092,0.1016,0.0713,0.1054,0.0965,0.1025,0.0964,0.0642,0.0699,0.0951,0.1356,0.1186,0.0983,0.1093,0.0603,0.106,0.0916,0.1161,0.0952,0.0691,0.0649,0.0928,0.0992,0.1021,0.0918,0.097,0.0706,0.1042,0.0877,0.1133,0.0903,0.0666,0.0662,0.0928,0.1039,0.1075,0.0956,0.105,0.0624,0.1026,0.0882,0.1124,0.0929,0.0639
66780,37,0.0729,0.094,0.1022,0.1015,0.0913,0.1013,0.0635,0.1005,0.0895,0.0947,0.0937,0.0691,0.0693,0.0924,0.093,0.0905,0.0879,0.0957,0.071,0.0946,0.0863,0.0894,0.0877,0.0645,0.0665,0.0907,0.0938,0.0916,0.0871,0.0958,0.0662,0.1005,0.0851,0.0945,0.0864,0.0637,0.0683,0.0922,0.0998,0.1021,0.0909,0.1012,0.0634,0.106,0.0873,0.1028,0.092,0.0674,0.0644,0.0923,0.1123,0.1136,0.0908,0.1001,0.0718,0.1029,0.0937,0.0991,0.0937,0.0645,0.0672,0.0955,0.1362,0.1157,0.0956,0.1062,0.0628,0.1045,0.0886,0.1137,0.0933,0.0688,0.0654,0.0923,0.0985,0.1016,0.0913,0.0962,0.0704,0.1027,0.0858,0.1071,0.0879,0.065,0.068,0.093,0.104,0.1072,0.0947,0.1041,0.0642,0.1011,0.0862,0.108,0.0917,0.067
66870,37,0.071,0.0946,0.103,0.1024,0.0916,0.1013,0.0632,0.0996,0.0889,0.0938,0.0939,0.0676,0.0731,0.0924,0.0929,0.0911,0.0878,0.0953,0.0642,0.0947,0.086,0.089,0.0877,0.0692,0.0668,0.0914,0.0939,0.092,0.0876,0.0959,0.0635,0.1004,0.0851,0.0944,0.0863,0.0638,0.0704,0.0923,0.1001,0.1024,0.0908,0.1012,0.0613,0.1061,0.0876,0.1032,0.0965,0.0682,0.0654,0.0924,0.1125,0.1142,0.0908,0.0998,0.0708,0.1035,0.0938,0.0992,0.0937,0.0648,0.0696,0.0957,0.1362,0.1173,0.0957,0.1063,0.0649,0.1041,0.0874,0.1116,0.093,0.0699,0.066,0.0926,0.099,0.1022,0.0915,0.0968,0.0708,0.1031,0.0856,0.106,0.0884,0.0654,0.0706,0.0922,0.1033,0.107,0.0942,0.1039,0.0619,0.1008,0.0862,0.1082,0.0917,0.0677
66960,37,0.0708,0.0946,0.1034,0.1035,0.0926,0.1029,0.0617,0.1015,0.0905,0.0963,0.0956,0.0713,0.0738,0.093,0.0938,0.0918,0.0886,0.0962,0.067,0.0955,0.0866,0.09,0.0886,0.065,0.0663,0.0918,0.0946,0.0928,0.0882,0.0969,0.069,0.1017,0.0863,0.0968,0.0872,0.0653,0.0688,0.0923,0.1007,0.1033,0.0914,0.1024,0.0646,0.1074,0.0902,0.1074,0.097,0.0685,0.065,0.0927,0.1134,0.1152,0.092,0.1012,0.0698,0.1056,0.0973,0.1034,0.0964,0.0628,0.0674,0.0952,0.1362,0.1181,0.0981,0.1087,0.063,0.1063,0.0907,0.1164,0.0951,0.0687,0.0651,0.0928,0.0992,0.1023,0.092,0.0974,0.0711,0.1046,0.0878,0.1112,0.0897,0.0662,0.07,0.0926,0.1038,0.1078,0.0953,0.105,0.0601,0.1023,0.0875,0.1118,0.0927,0.0653
67050,37,0.074,0.0941,0.1026,0.1028,0.0925,0.1027,0.0628,0.1017,0.0912,0.0965,0.0964,0.07,0.0736,0.0934,0.0932,0.0914,0.0886,0.096,0.0721,0.0957,0.0868,0.09,0.0886,0.0677,0.0683,0.0914,0.094,0.0922,0.0879,0.0964,0.0645,0.1018,0.0861,0.0969,0.0869,0.0649,0.0684,0.0925,0.1006,0.1028,0.0912,0.1023,0.0687,0.1077,0.0903,0.1088,0.0968,0.0671,0.0666,0.0924,0.1128,0.1146,0.0914,0.1012,0.0684,0.1054,0.0973,0.1036,0.0966,0.0647,0.0671,0.0956,0.136,0.1177,0.0987,0.1091,0.0635,0.1061,0.0909,0.1166,0.0954,0.0702,0.0644,0.0924,0.0989,0.1023,0.0919,0.0971,0.0691,0.1045,0.088,0.1113,0.0895,0.0646,0.0691,0.0928,0.1041,0.108,0.0954,0.1051,0.0612,0.1022,0.0875,0.1125,0.093,0.0676
67140,37,0.0743,0.0947,0.1033,0.1038,0.0928,0.1032,0.0624,0.1012,0.0905,0.0962,0.0961,0.0662,0.072,0.0933,0.0939,0.092,0.0885,0.0963,0.0665,0.0955,0.0867,0.0896,0.0886,0.0692,0.0668,0.0918,0.0942,0.0928,0.0884,0.0966,0.064,0.1015,0.0863,0.0972,0.0873,0.0636,0.0698,0.0928,0.1006,0.1036,0.0914,0.1022,0.0656,0.1076,0.0901,0.1074,0.0959,0.0693,0.0661,0.0925,0.1135,0.1154,0.0918,0.1013,0.0696,0.1057,0.0975,0.104,0.096,0.0647,0.0693,0.0955,0.136,0.1185,0.0984,0.1095,0.0627,0.1063,0.0903,0.1165,0.0953,0.0697,0.0654,0.0922,0.099,0.1026,0.0921,0.0971,0.0695,0.1054,0.088,0.1112,0.0897,0.0625,0.074,0.093,0.1044,0.1084,0.0949,0.1051,0.0619,0.102,0.0876,0.1119,0.0928,0.0681
67230,37,0.0714,0.0949,0.1036,0.1042,0.0931,0.1035,0.0656,0.1017,0.091,0.0969,0.0972,0.068,0.0711,0.0929,0.0939,0.092,0.0884,0.0962,0.0701,0.0956,0.0866,0.0897,0.0887,0.0666,0.0653,0.0917,0.0943,0.0927,0.0882,0.0966,0.0672,0.1019,0.0863,0.0972,0.0873,0.0645,0.0694,0.0924,0.1007,0.1036,0.0914,0.1028,0.0662,0.1072,0.0904,0.1082,0.099,0.0663,0.0645,0.0921,0.1134,0.1154,0.0921,0.1013,0.0709,0.1056,0.0977,0.1033,0.0966,0.0642,0.0677,0.0951,0.1361,0.1182,0.0987,0.11,0.0629,0.1063,0.0911,0.1172,0.0955,0.0682,0.065,0.0919,0.0984,0.102,0.0919,0.0971,0.0693,0.1049,0.0883,0.1124,0.0901,0.0656,0.0731,0.0923,0.1041,0.1081,0.0951,0.1048,0.0602,0.1022,0.088,0.1124,0.0928,0.0658
67320,37,0.0753,0.0944,0.1033,0.1035,0.0927,0.103,0.0622,0.1017,0.0913,0.0969,0.0967,0.0695,0.0728,0.0931,0.0934,0.0917,0.0884,0.0959,0.0696,0.0956,0.0867,0.0899,0.0888,0.0643,0.069,0.0912,0.0937,0.0922,0.088,0.0965,0.0648,0.1018,0.0864,0.0968,0.087,0.0656,0.07,0.0924,0.1006,0.1032,0.091,0.1021,0.0665,0.1074,0.0904,0.1078,0.097,0.0664,0.0655,0.0922,0.1134,0.1149,0.0917,0.1011,0.0687,0.1051,0.0976,0.1035,0.097,0.0646,0.068,0.0955,0.136,0.1178,0.0982,0.1087,0.0637,0.1062,0.0908,0.1179,0.0955,0.0704,0.0648,0.092,0.0986,0.1024,0.0921,0.0972,0.0702,0.1047,0.0883,0.1117,0.0892,0.0645,0.0704,0.0923,0.1038,0.1078,0.0947,0.1045,0.061,0.1018,0.0874,0.1133,0.093,0.0676
67410,37,0.0701,0.0945,0.103,0.1036,0.0922,0.1018,0.0653,0.0999,0.0892,0.0945,0.0945,0.0654,0.0726,0.0929,0.0932,0.0913,0.0879,0.0954,0.0633,0.0946,0.0857,0.089,0.0876,0.0649,0.0693,0.0914,0.0935,0.0922,0.0879,0.0958,0.0634,0.1006,0.0853,0.0942,0.0864,0.0642,0.0695,0.0923,0.0998,0.1021,0.0908,0.1014,0.0655,0.1057,0.0883,0.1038,0.0957,0.066,0.0655,0.0922,0.1127,0.114,0.0906,0.0998,0.0689,0.1048,0.0959,0.1006,0.0947,0.0644,0.0698,0.0955,0.1356,0.1165,0.0964,0.1072,0.0625,0.1044,0.0881,0.1126,0.0917,0.0667,0.065,0.0914,0.098,0.1017,0.0914,0.0961,0.0676,0.1039,0.0874,0.1069,0.0882,0.0632,0.073,0.0928,0.1042,0.108,0.0938,0.1041,0.0607,0.1008,0.0867,0.108,0.0917,0.0706
67500,37,0.0705,0.0946,0.1034,0.104,0.0932,0.1034,0.0656,0.1014,0.0912,0.0966,0.0972,0.0688,0.0708,0.0929,0.0936,0.092,0.0882,0.0959,0.0693,0.0957,0.0866,0.0899,0.0888,0.0673,0.0661,0.0917,0.0978,0.093,0.0881,0.0961,0.064,0.1018,0.0862,0.0977,0.0878,0.069,0.07,0.0922,0.1006,0.1031,0.0915,0.1017,0.0719,0.1075,0.0908,0.1092,0.0986,0.0637,0.0658,0.0918,0.113,0.1149,0.0916,0.1012,0.0664,0.1061,0.0995,0.1058,0.0976,0.0659,0.0686,0.0954,0.1359,0.1169,0.0993,0.1105,0.0699,0.1068,0.0916,0.1193,0.0951,0.0652,0.0639,0.0917,0.098,0.1013,0.0914,0.0968,0.0651,0.105,0.0891,0.1129,0.0893,0.0645,0.069,0.0928,0.1039,0.1078,0.0953,0.1052,0.0628,0.1021,0.0882,0.1127,0.0927,0.0661
67590,37,0.0711,0.0943,0.1033,0.1042,0.0933,0.1034,0.0645,0.1016,0.0914,0.0961,0.0959,0.0672,0.0724,0.0933,0.0935,0.0919,0.0883,0.0961,0.0654,0.0956,0.0865,0.0895,0.089,0.0655,0.0695,0.0918,0.0944,0.0932,0.0886,0.0956,0.0646,0.1014,0.0858,0.0967,0.0874,0.075,0.0709,0.0932,0.1007,0.1033,0.091,0.1018,0.0698,0.1072,0.0914,0.1082,0.0994,0.0672,0.0689,0.0931,0.1132,0.1145,0.0909,0.1004,0.0626,0.1056,0.0988,0.1053,0.0973,0.0687,0.0701,0.0963,0.1361,0.117,0.0984,0.1098,0.0673,0.1065,0.0922,0.1199,0.0959,0.0675,0.0642,0.092,0.0983,0.1019,0.0916,0.0964,0.0648,0.1047,0.0893,0.1131,0.0899,0.0649,0.0678,0.093,0.1038,0.1077,0.0958,0.1053,0.0616,0.1019,0.0881,0.1127,0.0926,0.0682
67680,37,0.0679,0.0942,0.1029,0.1033,0.0927,0.1026,0.0728,0.1002,0.0895,0.0942,0.0928,0.0673,0.0703,0.0928,0.0934,0.0919,0.0879,0.0955,0.0645,0.094,0.0858,0.0884,0.0878,0.0698,0.0659,0.092,0.0945,0.093,0.0882,0.0953,0.0657,0.1,0.0848,0.094,0.0865,0.0682,0.0694,0.0925,0.0999,0.1025,0.0906,0.1008,0.0656,0.106,0.0885,0.1045,0.0961,0.066,0.067,0.0929,0.1128,0.1137,0.0902,0.0992,0.063,0.1044,0.0961,0.1019,0.0947,0.0653,0.0687,0.0959,0.1366,0.1159,0.0962,0.1071,0.0698,0.105,0.0902,0.1128,0.0936,0.0652,0.0646,0.092,0.0979,0.1015,0.0907,0.0953,0.0638,0.104,0.0875,0.1093,0.0891,0.0647,0.0682,0.0929,0.104,0.1075,0.095,0.1045,0.063,0.1009,0.0874,0.1082,0.0915,0.0666
67770,37,0.0676,0.094,0.1026,0.1031,0.0925,0.1027,0.0732,0.1006,0.0899,0.0945,0.0939,0.0651,0.069,0.0922,0.0932,0.0919,0.0883,0.0957,0.0622,0.0943,0.0862,0.0887,0.088,0.0679,0.0646,0.0916,0.0941,0.0927,0.0878,0.0953,0.0632,0.1003,0.0849,0.0944,0.0867,0.0729,0.0691,0.0923,0.0998,0.1022,0.0905,0.101,0.0723,0.1064,0.0892,0.1042,0.097,0.063,0.0667,0.0926,0.112,0.1131,0.0899,0.0993,0.064,0.1048,0.0971,0.1025,0.0951,0.0697,0.0695,0.0956,0.136,0.1155,0.0966,0.1074,0.0714,0.1052,0.0904,0.1145,0.0929,0.0645,0.0644,0.0917,0.0975,0.101,0.0906,0.0955,0.0632,0.1036,0.0876,0.1089,0.0879,0.0661,0.068,0.093,0.1039,0.1072,0.0949,0.1044,0.0622,0.1011,0.0873,0.1083,0.0914,0.0653
67860,37,0.0676,0.0942,0.1027,0.103,0.0923,0.1021,0.0672,0.1,0.0895,0.0941,0.0936,0.0674,0.0693,0.0925,0.0932,0.0918,0.0877,0.0952,0.0657,0.0944,0.0859,0.0888,0.088,0.0693,0.0654,0.0918,0.094,0.0926,0.088,0.0952,0.0634,0.0996,0.0845,0.0941,0.0864,0.0715,0.0665,0.0927,0.1,0.1021,0.0903,0.1006,0.0685,0.1062,0.0892,0.1045,0.0964,0.0676,0.0683,0.0929,0.1119,0.1132,0.0899,0.0991,0.0619,0.1039,0.0952,0.1008,0.0942,0.0647,0.0691,0.096,0.1364,0.1158,0.0961,0.1074,0.0616,0.1045,0.0895,0.1133,0.0929,0.0678,0.0644,0.0921,0.098,0.1016,0.0911,0.096,0.0652,0.1035,0.087,0.1069,0.088,0.0648,0.0697,0.0931,0.1038,0.1072,0.0946,0.1044,0.0601,0.1009,0.0869,0.1084,0.0914,0.0733
67950,37,0.0665,0.0943,0.103,0.1034,0.0925,0.1027,0.0699,0.0998,0.089,0.0939,0.0927,0.0677,0.0731,0.0926,0.0931,0.091,0.0878,0.0955,0.0652,0.0943,0.0854,0.0885,0.0881,0.0697,0.068,0.092,0.0942,0.093,0.0881,0.0952,0.0638,0.1,0.0848,0.0942,0.0863,0.0695,0.0703,0.0928,0.1,0.1026,0.0902,0.1011,0.0649,0.1061,0.0886,0.1046,0.0971,0.0649,0.0668,0.0929,0.1128,0.1137,0.09,0.0991,0.0646,0.1041,0.096,0.1018,0.0943,0.0643,0.0691,0.0959,0.1367,0.1162,0.0962,0.1074,0.0629,0.1047,0.0894,0.113,0.0933,0.0658,0.0648,0.0922,0.0977,0.101,0.0903,0.0955,0.0638,0.1035,0.0873,0.1094,0.0882,0.0656,0.069,0.0929,0.1035,0.1074,0.0944,0.1045,0.062,0.1011,0.0873,0.1087,0.0911,0.0679
68040,37,0.0652,0.0942,0.1026,0.1031,0.0924,0.103,0.0758,0.1,0.0893,0.0947,0.0934,0.0659,0.0712,0.0923,0.093,0.0912,0.0877,0.0955,0.0608,0.0942,0.0856,0.0885,0.0878,0.0705,0.0647,0.0918,0.0942,0.0928,0.088,0.0953,0.0652,0.1003,0.0844,0.0942,0.0866,0.0707,0.0701,0.0943,0.0996,0.1023,0.0899,0.1009,0.0686,0.1064,0.0887,0.1048,0.0963,0.0669,0.0667,0.0928,0.1121,0.1133,0.0896,0.0986,0.0626,0.1044,0.0963,0.1016,0.0947,0.0708,0.0694,0.0959,0.1364,0.1152,0.0967,0.1073,0.0711,0.1052,0.0912,0.1146,0.0927,0.0663,0.0644,0.0923,0.0975,0.1002,0.0894,0.0955,0.0626,0.1031,0.088,0.1109,0.0879,0.0646,0.0644,0.0932,0.1036,0.1068,0.095,0.1045,0.0627,0.1011,0.0876,0.1087,0.0912,0.0642
68130,37,0.0678,0.094,0.1022,0.1026,0.0922,0.1027,0.0721,0.1004,0.0898,0.0946,0.0931,0.0679,0.0696,0.0925,0.0931,0.0912,0.0878,0.0954,0.0639,0.0939,0.0855,0.0886,0.0875,0.0717,0.0653,0.0917,0.094,0.0929,0.0884,0.0951,0.0667,0.0998,0.0843,0.0933,0.0863,0.0718,0.0682,0.0928,0.0999,0.1023,0.0901,0.1007,0.0663,0.1059,0.0894,0.104,0.0961,0.0675,0.0709,0.0932,0.1124,0.1135,0.0898,0.099,0.0614,0.1037,0.095,0.1012,0.0941,0.0683,0.0684,0.0962,0.137,0.1153,0.0955,0.107,0.0626,0.1049,0.0899,0.1138,0.0933,0.0682,0.0649,0.0922,0.098,0.1013,0.0908,0.0959,0.0632,0.1033,0.0873,0.11,0.0888,0.0639,0.0681,0.0932,0.1038,0.1072,0.0952,0.1046,0.0617,0.101,0.0872,0.1086,0.0912,0.0689
68220,37,0.067,0.0945,0.1029,0.1038,0.0925,0.1031,0.0739,0.1,0.089,0.0944,0.0935,0.0672,0.0695,0.0922,0.0933,0.0916,0.0877,0.0952,0.0649,0.094,0.0857,0.0883,0.0878,0.0721,0.0671,0.0921,0.0941,0.0929,0.0883,0.0956,0.0664,0.1,0.0849,0.094,0.0863,0.0686,0.0693,0.0926,0.0996,0.102,0.0906,0.1007,0.0646,0.1059,0.0895,0.1041,0.0954,0.067,0.0645,0.0927,0.1124,0.1135,0.09,0.0994,0.0654,0.1042,0.0964,0.1012,0.0935,0.0636,0.0689,0.0957,0.1369,0.1164,0.0962,0.1073,0.0643,0.1048,0.0899,0.113,0.0929,0.0664,0.0645,0.0919,0.0975,0.1009,0.0905,0.0957,0.0647,0.1037,0.0876,0.1089,0.0882,0.0645,0.072,0.0928,0.1039,0.1076,0.0945,0.1043,0.0628,0.1011,0.0874,0.1083,0.0913,0.0671
68310,37,0.0683,0.0948,0.1035,0.1055,0.0934,0.1044,0.07,0.101,0.0909,0.097,0.096,0.0663,0.0726,0.093,0.0938,0.0918,0.0884,0.0962,0.0628,0.0956,0.0866,0.0895,0.0891,0.0666,0.0655,0.0923,0.0945,0.0932,0.0881,0.0959,0.0629,0.1014,0.0861,0.097,0.0876,0.0724,0.068,0.0926,0.1005,0.1032,0.091,0.1018,0.0716,0.1077,0.0922,0.1092,0.0972,0.0645,0.0657,0.0928,0.113,0.1143,0.0907,0.1008,0.0643,0.1058,0.0995,0.1054,0.0952,0.0674,0.0704,0.0957,0.1369,0.1172,0.0991,0.1104,0.0698,0.1064,0.0935,0.1195,0.0951,0.0668,0.0646,0.0919,0.0978,0.1014,0.0912,0.0968,0.0661,0.105,0.0892,0.1135,0.0894,0.0648,0.0723,0.0931,0.104,0.1081,0.0953,0.1053,0.0607,0.1023,0.0889,0.1136,0.0925,0.0668
68400,37,0.0678,0.0945,0.1029,0.1032,0.0924,0.1023,0.0669,0.0997,0.0894,0.0948,0.0943,0.0679,0.0713,0.0925,0.093,0.0912,0.0876,0.095,0.0646,0.0943,0.0856,0.089,0.0878,0.0675,0.065,0.0917,0.0934,0.0923,0.0877,0.0953,0.0625,0.1,0.0853,0.0945,0.0864,0.0681,0.0711,0.0929,0.0997,0.1023,0.09,0.1008,0.0661,0.1062,0.0891,0.1041,0.0951,0.0644,0.0676,0.0927,0.1123,0.1132,0.0899,0.0994,0.0628,0.104,0.0963,0.1012,0.0932,0.0621,0.0676,0.0959,0.1368,0.1162,0.0965,0.1066,0.0636,0.1049,0.0894,0.1136,0.0928,0.0674,0.0653,0.0916,0.0975,0.1016,0.0912,0.0961,0.0676,0.1042,0.0876,0.1079,0.0885,0.0628,0.0734,0.0925,0.1034,0.1075,0.0943,0.1042,0.0624,0.1006,0.0869,0.1086,0.0914,0.067
68490,37,0.0668,0.0946,0.103,0.1036,0.0927,0.103,0.0688,0.1,0.0895,0.0951,0.0935,0.0656,0.0723,0.0928,0.093,0.0911,0.0878,0.0953,0.0611,0.0946,0.086,0.089,0.0876,0.0653,0.067,0.0913,0.0935,0.0922,0.0876,0.0955,0.0631,0.1007,0.0854,0.095,0.0864,0.0631,0.0698,0.0922,0.0998,0.1023,0.0906,0.1009,0.0686,0.1062,0.0896,0.1043,0.0947,0.0648,0.0654,0.0922,0.1124,0.114,0.0907,0.0998,0.0694,0.1047,0.0965,0.101,0.0925,0.0648,0.0701,0.0956,0.1366,0.1173,0.0967,0.1073,0.0642,0.1045,0.0893,0.1122,0.093,0.0678,0.0654,0.0918,0.0979,0.1018,0.091,0.0961,0.0689,0.1038,0.0876,0.1083,0.0885,0.0658,0.0731,0.0926,0.1044,0.1079,0.094,0.1044,0.0616,0.1007,0.0876,0.1089,0.0913,0.0651
68580,37,0.071,0.0947,0.1031,0.104,0.0928,0.1034,0.0632,0.102,0.0925,0.0983,0.0973,0.0701,0.0725,0.0931,0.093,0.0915,0.0881,0.0961,0.0725,0.0958,0.0871,0.09,0.089,0.064,0.0668,0.0911,0.0937,0.0925,0.0878,0.0965,0.0668,0.1021,0.087,0.0976,0.087,0.0655,0.0678,0.0922,0.1005,0.1032,0.0912,0.1022,0.0685,0.1073,0.0922,0.1088,0.0961,0.0663,0.0661,0.0921,0.1133,0.1152,0.0914,0.1013,0.0693,0.1058,0.0993,0.1044,0.0945,0.0636,0.067,0.0955,0.1372,0.1174,0.0994,0.1095,0.0635,0.1062,0.0926,0.1198,0.0956,0.0682,0.0669,0.0919,0.0982,0.1022,0.0916,0.0969,0.0697,0.1046,0.0892,0.1128,0.0892,0.0646,0.0712,0.0929,0.1043,0.1082,0.0954,0.1051,0.0629,0.1019,0.0892,0.1145,0.0927,0.0662
68670,37,0.0706,0.0945,0.103,0.1032,0.0923,0.1025,0.0645,0.1001,0.09,0.0953,0.0946,0.0669,0.0737,0.0927,0.0929,0.091,0.0876,0.0948,0.0658,0.0946,0.0859,0.0885,0.0878,0.0669,0.0701,0.0911,0.0932,0.092,0.0876,0.0949,0.0636,0.1004,0.0855,0.0946,0.0864,0.0682,0.0708,0.0926,0.0994,0.1024,0.0904,0.1006,0.0679,0.1063,0.0893,0.104,0.0942,0.067,0.0672,0.0924,0.1126,0.1139,0.0903,0.0994,0.0656,0.1045,0.0969,0.1011,0.0922,0.0635,0.0674,0.0961,0.1368,0.1159,0.0967,0.1074,0.0624,0.1047,0.0903,0.114,0.0928,0.0672,0.0648,0.0915,0.0977,0.1019,0.0911,0.096,0.0678,0.104,0.0877,0.1081,0.0881,0.0643,0.0738,0.0932,0.104,0.108,0.0943,0.1042,0.061,0.1008,0.0875,0.1094,0.0914,0.0721
68760,37,0.0677,0.0944,0.1029,0.1037,0.0926,0.1029,0.0697,0.1003,0.0899,0.0954,0.0949,0.0653,0.0727,0.0929,0.0931,0.0912,0.0878,0.0953,0.0636,0.0945,0.0862,0.0887,0.0878,0.0684,0.0674,0.0916,0.0937,0.0924,0.0875,0.095,0.0616,0.1006,0.0853,0.0949,0.0867,0.0703,0.0696,0.0922,0.0998,0.1021,0.0902,0.1004,0.0707,0.1065,0.0894,0.1059,0.0948,0.0626,0.0667,0.0926,0.1125,0.1136,0.0901,0.0993,0.0656,0.1052,0.0974,0.1014,0.0928,0.064,0.069,0.0956,0.1369,0.1157,0.0973,0.1077,0.0701,0.105,0.0914,0.1137,0.0934,0.0659,0.0639,0.0915,0.0972,0.1013,0.0903,0.095,0.0636,0.104,0.0884,0.1098,0.0879,0.0642,0.0696,0.0931,0.1038,0.1072,0.0947,0.1044,0.0623,0.1008,0.0878,0.1091,0.0913,0.0676
68850,37,0.071,0.0947,0.1034,0.1047,0.0934,0.1041,0.0687,0.1019,0.092,0.0978,0.0975,0.0661,0.0703,0.0927,0.0934,0.0918,0.0883,0.0959,0.0651,0.0953,0.0868,0.0892,0.0895,0.069,0.064,0.092,0.0944,0.0933,0.0885,0.0958,0.0623,0.1018,0.0862,0.0972,0.0875,0.0745,0.0704,0.0929,0.1004,0.103,0.0913,0.1014,0.0725,0.1078,0.0929,0.1099,0.0967,0.0647,0.0689,0.0928,0.113,0.1133,0.0904,0.0999,0.0636,0.1062,0.1006,0.1059,0.0942,0.0712,0.0671,0.096,0.1375,0.1164,0.0993,0.1099,0.0711,0.1069,0.0934,0.121,0.0962,0.0671,0.0647,0.0921,0.0979,0.1016,0.0908,0.0959,0.0633,0.1046,0.0905,0.1161,0.089,0.067,0.0682,0.0928,0.104,0.1076,0.0958,0.1055,0.067,0.1019,0.0897,0.1145,0.0926,0.0642
68940,37,0.0669,0.0943,0.1026,0.1032,0.0924,0.1024,0.0672,0.1003,0.0901,0.0951,0.0939,0.0673,0.0712,0.0922,0.0929,0.0914,0.0874,0.095,0.0652,0.0943,0.0858,0.0885,0.0879,0.0698,0.0666,0.092,0.0938,0.0929,0.0882,0.0949,0.0644,0.1,0.0848,0.0942,0.0862,0.0713,0.0687,0.0927,0.1001,0.1021,0.0903,0.1008,0.0678,0.1062,0.0902,0.1047,0.0945,0.0634,0.0688,0.0929,0.1128,0.1135,0.0898,0.099,0.0607,0.1039,0.0969,0.1014,0.0921,0.0665,0.0692,0.0961,0.1377,0.1156,0.0962,0.1068,0.0677,0.1051,0.0908,0.1156,0.0935,0.0673,0.0642,0.0919,0.0978,0.1019,0.0909,0.0955,0.0644,0.1035,0.0874,0.1092,0.0877,0.0641,0.0698,0.093,0.104,0.1075,0.0949,0.1049,0.0599,0.1008,0.0882,0.1099,0.0914,0.0691
69030,37,0.0671,0.0941,0.1027,0.1036,0.0927,0.1035,0.0739,0.1002,0.0898,0.095,0.0937,0.0661,0.0702,0.0925,0.093,0.0912,0.0874,0.0949,0.0641,0.094,0.0858,0.0883,0.0878,0.0693,0.0654,0.092,0.0941,0.0929,0.0879,0.0951,0.0661,0.1003,0.0846,0.0941,0.0864,0.0707,0.0719,0.0924,0.0999,0.1028,0.0903,0.1007,0.066,0.1061,0.0907,0.105,0.094,0.0657,0.0687,0.093,0.1128,0.1136,0.0897,0.0986,0.0624,0.1042,0.0972,0.1023,0.0926,0.0729,0.0704,0.0963,0.1374,0.1159,0.0965,0.1079,0.0716,0.1053,0.0916,0.115,0.0938,0.0663,0.0641,0.0921,0.0977,0.101,0.09,0.0951,0.0627,0.1038,0.0886,0.1113,0.0881,0.065,0.065,0.0933,0.1036,0.1072,0.0949,0.1049,0.0648,0.1014,0.0884,0.1096,0.0913,0.0651
69120,37,0.0659,0.0941,0.1024,0.1032,0.0922,0.103,0.0703,0.1006,0.0905,0.0954,0.0939,0.0655,0.072,0.092,0.0926,0.0912,0.0874,0.0952,0.0637,0.0942,0.086,0.0887,0.0878,0.0681,0.0634,0.0914,0.0938,0.0926,0.0878,0.0953,0.0666,0.0996,0.0848,0.0936,0.0863,0.0709,0.0695,0.0927,0.0997,0.1023,0.0903,0.1008,0.0671,0.1062,0.0903,0.1051,0.0942,0.0656,0.0691,0.0933,0.1128,0.1134,0.0896,0.0987,0.0622,0.1044,0.0974,0.1027,0.0924,0.0725,0.0694,0.0963,0.1376,0.1158,0.0962,0.1075,0.0692,0.1056,0.0907,0.1161,0.0934,0.067,0.0653,0.0925,0.0976,0.1008,0.0899,0.0953,0.0625,0.1032,0.0881,0.111,0.088,0.0652,0.0655,0.0934,0.1038,0.1072,0.0953,0.1047,0.0619,0.1012,0.0885,0.1105,0.0911,0.0655
69210,37,0.0671,0.0947,0.1032,0.105,0.0934,0.1047,0.0706,0.1011,0.091,0.0969,0.0956,0.0683,0.07,0.0928,0.0933,0.092,0.0876,0.0956,0.0627,0.0954,0.0862,0.089,0.0886,0.0715,0.0654,0.0923,0.0947,0.0938,0.0889,0.0961,0.0677,0.1007,0.0853,0.0959,0.0869,0.0722,0.0703,0.0929,0.1009,0.1039,0.0914,0.1016,0.0666,0.1075,0.0915,0.1088,0.0955,0.0678,0.0687,0.0936,0.1144,0.1152,0.0912,0.1003,0.0626,0.1047,0.0988,0.1053,0.0934,0.071,0.0684,0.0963,0.1384,0.1174,0.0983,0.1097,0.0641,0.1067,0.0928,0.1203,0.0965,0.0681,0.0678,0.0928,0.0987,0.1018,0.0908,0.0962,0.0634,0.1044,0.0894,0.1153,0.0895,0.0653,0.0685,0.0932,0.1039,0.1079,0.0956,0.1056,0.0629,0.1024,0.0897,0.1146,0.0922,0.0664
69300,37,0.0681,0.0942,0.1029,0.1052,0.0933,0.1051,0.0745,0.1022,0.092,0.0976,0.0962,0.0642,0.0686,0.0925,0.0934,0.0922,0.088,0.096,0.0631,0.0952,0.0863,0.089,0.0881,0.0724,0.0648,0.0921,0.0948,0.0938,0.0887,0.0963,0.0706,0.101,0.086,0.0963,0.0867,0.065,0.0687,0.0925,0.1009,0.1044,0.0916,0.1016,0.0647,0.1072,0.0924,0.1092,0.0945,0.0671,0.0685,0.0937,0.1147,0.1155,0.0914,0.1004,0.0667,0.1052,0.0991,0.106,0.094,0.0752,0.0677,0.0958,0.1383,0.1175,0.0989,0.11,0.0676,0.1068,0.0939,0.1209,0.096,0.0667,0.0653,0.0928,0.0983,0.1014,0.0903,0.0962,0.0633,0.1042,0.09,0.1168,0.0901,0.0673,0.0685,0.0932,0.1039,0.1078,0.0959,0.1058,0.0667,0.1029,0.0897,0.1148,0.0925,0.0648
69390,37,0.0696,0.0939,0.1024,0.103,0.0923,0.1033,0.0735,0.1007,0.0902,0.0957,0.096,0.0666,0.0686,0.0921,0.0928,0.0911,0.0874,0.0951,0.0612,0.0946,0.086,0.0883,0.0873,0.0689,0.0632,0.0912,0.0939,0.0927,0.088,0.0952,0.0672,0.1001,0.0849,0.0937,0.0861,0.0694,0.0685,0.0927,0.1001,0.1026,0.0905,0.1007,0.0657,0.1059,0.0902,0.1046,0.0929,0.0678,0.0684,0.0933,0.1132,0.1136,0.0899,0.0989,0.0632,0.1035,0.0968,0.1024,0.092,0.0686,0.0659,0.0965,0.1381,0.1145,0.0964,0.1064,0.0653,0.1053,0.0909,0.1158,0.0934,0.067,0.0651,0.0922,0.0976,0.1008,0.0897,0.0956,0.063,0.1032,0.0881,0.1112,0.0882,0.0651,0.0673,0.0933,0.104,0.1076,0.0952,0.1046,0.0615,0.1012,0.0884,0.11,0.0915,0.0666
69480,37,0.0679,0.0944,0.1034,0.1047,0.0934,0.1049,0.0732,0.1016,0.0913,0.0975,0.0958,0.0683,0.0697,0.0929,0.0931,0.0921,0.0881,0.0959,0.0639,0.0953,0.0861,0.0887,0.0887,0.0724,0.0644,0.092,0.0944,0.0938,0.0892,0.0962,0.0695,0.1009,0.0859,0.0958,0.0866,0.066,0.0681,0.093,0.101,0.1041,0.0912,0.1015,0.0652,0.1074,0.0915,0.1084,0.0943,0.0677,0.0685,0.0934,0.1149,0.1158,0.0914,0.1003,0.0664,0.1051,0.0991,0.1057,0.0931,0.0697,0.0699,0.0962,0.1383,0.1184,0.0987,0.11,0.0627,0.1062,0.0937,0.1204,0.096,0.0655,0.0648,0.0927,0.0988,0.102,0.0909,0.0963,0.0621,0.1046,0.0898,0.1159,0.0896,0.0656,0.0692,0.0932,0.104,0.1078,0.0954,0.1058,0.0621,0.1023,0.0899,0.115,0.0923,0.0661
69570,37,0.0688,0.0945,0.103,0.1041,0.0934,0.1053,0.0729,0.1025,0.0925,0.0986,0.096,0.0652,0.0693,0.0927,0.0932,0.0924,0.0883,0.0961,0.0632,0.0954,0.0864,0.0895,0.0879,0.0706,0.0628,0.0914,0.0943,0.0933,0.0884,0.0967,0.0789,0.1014,0.0866,0.0958,0.0863,0.0649,0.0669,0.092,0.1004,0.1046,0.0911,0.102,0.0614,0.1072,0.0917,0.109,0.0936,0.0699,0.0663,0.093,0.1149,0.1163,0.092,0.1011,0.0732,0.1046,0.0986,0.1048,0.0935,0.0683,0.0671,0.0958,0.1388,0.1185,0.0992,0.1103,0.0634,0.1068,0.0946,0.1215,0.0961,0.0669,0.0644,0.0926,0.0984,0.1017,0.0908,0.0964,0.0671,0.1041,0.0897,0.1167,0.0899,0.067,0.0656,0.093,0.104,0.108,0.0956,0.1054,0.0686,0.1025,0.0905,0.1149,0.0925,0.0641
69660,37,0.0751,0.0942,0.1023,0.1033,0.0929,0.1044,0.0651,0.1023,0.0932,0.099,0.0972,0.0685,0.0686,0.0927,0.0928,0.0912,0.0878,0.0956,0.0708,0.0956,0.0868,0.0892,0.0884,0.0662,0.0642,0.0908,0.0937,0.0926,0.0879,0.0966,0.0712,0.1016,0.0868,0.0963,0.0863,0.065,0.0669,0.0921,0.1001,0.1036,0.0908,0.102,0.061,0.1069,0.0929,0.108,0.0934,0.0687,0.066,0.0926,0.1143,0.1157,0.0919,0.1014,0.0746,0.1048,0.0983,0.1041,0.0925,0.0656,0.0666,0.096,0.139,0.1182,0.099,0.1099,0.0619,0.1061,0.0938,0.1214,0.0964,0.07,0.0649,0.0927,0.099,0.1029,0.0917,0.0973,0.0708,0.1039,0.0885,0.114,0.0888,0.0648,0.0713,0.0931,0.1044,0.1085,0.0953,0.1056,0.0639,0.102,0.0899,0.1156,0.0924,0.0669
69750,37,0.0737,0.0943,0.1023,0.103,0.0925,0.1029,0.0619,0.1008,0.0908,0.0964,0.0959,0.0645,0.0732,0.0927,0.0926,0.0911,0.0876,0.0951,0.068,0.0944,0.0861,0.0887,0.0875,0.0651,0.0654,0.091,0.0933,0.0921,0.0874,0.0956,0.0688,0.1007,0.0862,0.0946,0.0857,0.0643,0.0683,0.0922,0.0993,0.1029,0.0902,0.1013,0.0616,0.1059,0.09,0.1041,0.0915,0.0676,0.0657,0.0922,0.1134,0.1146,0.0912,0.1003,0.0744,0.1041,0.0964,0.1002,0.0904,0.0646,0.069,0.0957,0.1385,0.1181,0.0967,0.1076,0.0648,0.1042,0.0908,0.1134,0.0943,0.0699,0.0651,0.0919,0.098,0.1022,0.0911,0.0958,0.0696,0.1038,0.088,0.109,0.0883,0.0663,0.0736,0.0928,0.1045,0.1084,0.0941,0.1046,0.0609,0.101,0.0886,0.111,0.0915,0.0667
69840,37,0.073,0.0945,0.1031,0.104,0.0931,0.1044,0.0648,0.1028,0.0932,0.1004,0.0983,0.0743,0.07,0.0929,0.093,0.0919,0.0882,0.0958,0.0742,0.0958,0.0872,0.0895,0.0887,0.0646,0.0646,0.091,0.0939,0.0927,0.0878,0.0965,0.071,0.1017,0.0872,0.0974,0.0867,0.0656,0.0665,0.0922,0.1002,0.1036,0.0908,0.102,0.0646,0.1076,0.093,0.1085,0.0928,0.0673,0.0654,0.0921,0.1141,0.1155,0.0919,0.1014,0.0711,0.1056,0.0998,0.1053,0.0928,0.0627,0.069,0.0956,0.1385,0.1194,0.1,0.1106,0.0635,0.1061,0.0946,0.1204,0.0966,0.069,0.0647,0.0923,0.0985,0.1023,0.0915,0.0968,0.0701,0.1044,0.0902,0.1162,0.0895,0.0662,0.0702,0.0929,0.1042,0.1082,0.0953,0.1056,0.0629,0.1021,0.0899,0.117,0.0921,0.0643
69930,37,0.0727,0.0945,0.1031,0.1038,0.093,0.104,0.0648,0.1023,0.0935,0.0998,0.0991,0.0691,0.0728,0.0932,0.0928,0.0916,0.088,0.0957,0.0685,0.0957,0.0868,0.0894,0.0886,0.0665,0.0701,0.0916,0.0932,0.0922,0.0876,0.0961,0.0652,0.1018,0.087,0.0975,0.0865,0.0631,0.0709,0.0926,0.0998,0.1032,0.0911,0.1021,0.0679,0.1072,0.0936,0.1088,0.093,0.0673,0.0663,0.0923,0.1144,0.1155,0.0918,0.1013,0.0739,0.1051,0.0988,0.1044,0.0919,0.0644,0.0698,0.0959,0.1386,0.1188,0.0992,0.11,0.0618,0.1062,0.0934,0.1206,0.0969,0.0704,0.065,0.0924,0.099,0.103,0.0921,0.0971,0.0706,0.1046,0.0892,0.113,0.089,0.0643,0.07,0.0933,0.1047,0.1087,0.095,0.1055,0.0622,0.102,0.0898,0.1157,0.0927,0.0668
70020,37,0.0693,0.0942,0.1026,0.103,0.0922,0.1031,0.0629,0.1012,0.0914,0.0973,0.0959,0.0651,0.0704,0.0922,0.0926,0.091,0.0872,0.0952,0.0671,0.0944,0.086,0.0888,0.0877,0.0651,0.0643,0.0908,0.0934,0.092,0.0872,0.0957,0.0716,0.1009,0.086,0.0942,0.0859,0.0645,0.0665,0.0919,0.0994,0.1029,0.0902,0.1012,0.0627,0.1057,0.0909,0.1044,0.0916,0.066,0.0671,0.0926,0.1139,0.1147,0.0911,0.0998,0.073,0.1039,0.0968,0.1008,0.091,0.0631,0.0692,0.0958,0.1392,0.1171,0.0967,0.1079,0.0598,0.1048,0.0919,0.1154,0.0938,0.0673,0.065,0.0922,0.0981,0.1019,0.0905,0.0955,0.0691,0.1036,0.0882,0.1125,0.0885,0.0647,0.0647,0.093,0.1042,0.1077,0.0947,0.1047,0.0695,0.1012,0.0895,0.1109,0.0915,0.0637
70110,37,0.0706,0.0934,0.1019,0.1024,0.0917,0.1027,0.0651,0.1017,0.092,0.0976,0.0954,0.0715,0.0688,0.0924,0.0923,0.0908,0.0879,0.0952,0.0712,0.0949,0.0864,0.0887,0.0878,0.065,0.0636,0.0903,0.0932,0.0921,0.0872,0.0955,0.0692,0.1009,0.086,0.0948,0.086,0.0643,0.0654,0.092,0.0995,0.1027,0.09,0.1011,0.0619,0.1062,0.0911,0.1035,0.0918,0.0665,0.066,0.0924,0.1136,0.1147,0.0908,0.0994,0.0742,0.1036,0.0966,0.101,0.0909,0.0646,0.0664,0.0965,0.1394,0.1167,0.0968,0.1072,0.0653,0.1052,0.0918,0.1168,0.0938,0.0676,0.0652,0.0923,0.0982,0.102,0.0909,0.0957,0.0683,0.1028,0.0882,0.1115,0.0877,0.0668,0.0672,0.0934,0.1044,0.1078,0.0951,0.1048,0.0673,0.1012,0.0895,0.112,0.0915,0.0657
70200,37,0.0724,0.0939,0.1024,0.1029,0.0919,0.1029,0.0636,0.101,0.0917,0.0974,0.0952,0.067,0.0724,0.0926,0.092,0.0908,0.0874,0.0949,0.0656,0.0944,0.0864,0.0881,0.0877,0.0659,0.0677,0.091,0.0931,0.092,0.0874,0.0955,0.0677,0.101,0.0861,0.0948,0.0857,0.0649,0.0693,0.0924,0.0992,0.1025,0.0901,0.1008,0.0605,0.1057,0.0901,0.1038,0.0915,0.067,0.0659,0.0923,0.1138,0.1147,0.0909,0.0999,0.0726,0.1038,0.0959,0.0996,0.0901,0.0658,0.07,0.0963,0.139,0.1181,0.0962,0.1076,0.0635,0.1042,0.091,0.115,0.0941,0.0688,0.0659,0.0923,0.0982,0.1023,0.0909,0.0959,0.0704,0.1032,0.0874,0.11,0.0876,0.0663,0.0714,0.093,0.1046,0.1082,0.0943,0.1049,0.0634,0.1011,0.0892,0.1125,0.0917,0.0658
70290,37,0.0706,0.0945,0.1032,0.1044,0.0931,0.1044,0.0642,0.1025,0.0936,0.0996,0.0981,0.072,0.0726,0.093,0.093,0.0916,0.0881,0.096,0.0713,0.0961,0.0866,0.0893,0.0891,0.0661,0.0651,0.0917,0.094,0.0928,0.0877,0.0962,0.0682,0.1024,0.087,0.0976,0.0866,0.0636,0.0688,0.092,0.1,0.1032,0.091,0.102,0.0664,0.1073,0.0943,0.1077,0.093,0.0668,0.0655,0.0925,0.1146,0.1158,0.092,0.1012,0.0707,0.1057,0.0999,0.1048,0.0918,0.0641,0.0697,0.0956,0.1389,0.1191,0.0995,0.1109,0.0636,0.1065,0.0946,0.1217,0.0971,0.0682,0.0649,0.0927,0.0985,0.1024,0.0906,0.0962,0.0676,0.1042,0.0898,0.1155,0.0896,0.0672,0.0658,0.093,0.1044,0.1082,0.0954,0.1056,0.0676,0.1025,0.091,0.1171,0.0926,0.0637
70380,37,0.0668,0.0943,0.1029,0.1034,0.0921,0.1027,0.063,0.1008,0.0916,0.0974,0.0968,0.0704,0.0724,0.0925,0.0922,0.0907,0.0874,0.0949,0.069,0.0949,0.0862,0.0888,0.0881,0.0627,0.0715,0.0909,0.0928,0.0917,0.0868,0.0954,0.0651,0.1007,0.0858,0.0949,0.0861,0.0671,0.0698,0.0922,0.0988,0.102,0.0899,0.1009,0.0637,0.1059,0.091,0.1046,0.0916,0.0669,0.0657,0.0924,0.113,0.1138,0.0901,0.0993,0.0652,0.1047,0.0969,0.1009,0.0906,0.0636,0.0679,0.0962,0.1386,0.1163,0.0969,0.1083,0.0626,0.1046,0.0909,0.1158,0.0944,0.0691,0.0658,0.092,0.0979,0.1021,0.0906,0.0958,0.0699,0.1034,0.0874,0.1096,0.0873,0.0652,0.0718,0.0933,0.1045,0.1081,0.0945,0.105,0.0639,0.1012,0.089,0.1124,0.0922,0.0668
70470,37,0.068,0.0948,0.1032,0.1047,0.0921,0.103,0.0626,0.1004,0.0909,0.097,0.0969,0.068,0.0732,0.0923,0.0924,0.091,0.0872,0.0948,0.0646,0.0946,0.0859,0.0884,0.0878,0.0666,0.0687,0.0915,0.0934,0.0922,0.0873,0.0953,0.0638,0.1006,0.0858,0.0953,0.0859,0.0653,0.0706,0.0925,0.0994,0.1023,0.0902,0.1004,0.0635,0.1061,0.0904,0.1036,0.0914,0.0663,0.0667,0.0928,0.1132,0.1138,0.09,0.0996,0.067,0.1045,0.0975,0.1014,0.0903,0.0635,0.0695,0.0963,0.1385,0.1166,0.0967,0.1082,0.0639,0.1046,0.0909,0.115,0.0935,0.0673,0.0649,0.092,0.0979,0.102,0.0905,0.0956,0.0679,0.1038,0.0872,0.1091,0.0875,0.0634,0.0698,0.0931,0.1044,0.108,0.0942,0.1052,0.0618,0.101,0.0888,0.1117,0.0915,0.0698
70560,37,0.0677,0.0948,0.1031,0.1041,0.0924,0.1039,0.066,0.1003,0.0908,0.0974,0.0966,0.0683,0.0731,0.0928,0.0926,0.0912,0.0875,0.0951,0.0633,0.0947,0.0858,0.0886,0.0877,0.0681,0.0671,0.0916,0.0937,0.0921,0.0868,0.095,0.0637,0.1009,0.0857,0.0952,0.0863,0.0671,0.0684,0.0921,0.0994,0.1026,0.0899,0.101,0.0655,0.1062,0.0917,0.105,0.0913,0.0649,0.0648,0.0925,0.1132,0.1136,0.0896,0.0995,0.0666,0.1048,0.0978,0.1019,0.0905,0.0636,0.0688,0.0962,0.1384,0.1162,0.0974,0.108,0.0625,0.105,0.0915,0.1145,0.0934,0.0666,0.0649,0.0919,0.0973,0.1019,0.0903,0.0955,0.0679,0.1038,0.0876,0.1097,0.0879,0.0642,0.0719,0.0928,0.1039,0.1074,0.094,0.1049,0.061,0.1012,0.089,0.1111,0.0913,0.0681
70650,37,0.0726,0.0951,0.1037,0.1045,0.093,0.1046,0.0626,0.102,0.0929,0.1001,0.0997,0.0701,0.0733,0.0932,0.0925,0.0912,0.0878,0.0956,0.0675,0.0959,0.0866,0.0893,0.0891,0.0642,0.0668,0.0915,0.0937,0.0924,0.0872,0.0959,0.0651,0.1023,0.0867,0.0976,0.0867,0.0675,0.0693,0.0923,0.0998,0.1034,0.0905,0.1018,0.067,0.1077,0.094,0.1084,0.0925,0.0646,0.0663,0.0925,0.114,0.1146,0.0909,0.1011,0.0672,0.1056,0.0996,0.105,0.0914,0.0633,0.0695,0.0962,0.1388,0.1184,0.0996,0.1108,0.0633,0.1065,0.0937,0.1211,0.0967,0.0694,0.0643,0.0925,0.0982,0.1019,0.0909,0.0966,0.0685,0.1045,0.0891,0.1145,0.0884,0.0638,0.0725,0.0933,0.1042,0.1087,0.0952,0.1061,0.0635,0.1025,0.0907,0.1173,0.0933,0.0682
70740,37,0.0696,0.0949,0.1032,0.1036,0.0922,0.1036,0.0647,0.1,0.0904,0.0967,0.0963,0.0674,0.0734,0.0929,0.0922,0.0906,0.0875,0.095,0.0651,0.0949,0.0858,0.0884,0.0877,0.0708,0.0682,0.0914,0.093,0.0921,0.0872,0.095,0.0632,0.1002,0.0857,0.0947,0.0861,0.066,0.0703,0.0925,0.0996,0.1027,0.0899,0.1007,0.0625,0.1062,0.0914,0.105,0.0912,0.0679,0.0677,0.0928,0.1134,0.114,0.0901,0.0998,0.0675,0.104,0.097,0.1014,0.0904,0.0634,0.0686,0.0965,0.1389,0.1169,0.0969,0.1086,0.0622,0.1049,0.0906,0.114,0.0935,0.0665,0.0649,0.0918,0.0975,0.1015,0.0902,0.0956,0.0667,0.1044,0.0879,0.1102,0.0878,0.0628,0.0747,0.0933,0.1044,0.1082,0.0946,0.1052,0.0633,0.1012,0.0884,0.111,0.0911,0.0699
70830,37,0.0666,0.0946,0.103,0.1036,0.0927,0.1041,0.0696,0.1008,0.0904,0.0969,0.0972,0.0662,0.0712,0.0927,0.0932,0.0916,0.0876,0.0949,0.061,0.0946,0.0862,0.0885,0.0878,0.0667,0.0673,0.0918,0.0934,0.0925,0.0873,0.0948,0.0622,0.1008,0.0855,0.0951,0.0866,0.0692,0.0689,0.0923,0.0994,0.103,0.09,0.1002,0.0705,0.1064,0.093,0.1058,0.0911,0.0632,0.067,0.0926,0.113,0.1134,0.0894,0.0994,0.0643,0.1052,0.0986,0.1027,0.0911,0.0659,0.0691,0.0964,0.1384,0.1165,0.0976,0.1086,0.07,0.1053,0.092,0.1146,0.0934,0.0652,0.0648,0.0916,0.0967,0.101,0.09,0.0954,0.0654,0.1042,0.0891,0.1131,0.0886,0.0656,0.0701,0.0933,0.1041,0.1078,0.0947,0.1051,0.0638,0.1013,0.089,0.112,0.0924,0.0682
70920,37,0.0691,0.0945,0.1028,0.1036,0.0926,0.1039,0.0675,0.1008,0.091,0.0972,0.0965,0.0661,0.0713,0.0927,0.0924,0.091,0.0874,0.095,0.0646,0.0948,0.086,0.0885,0.0878,0.0639,0.0686,0.0913,0.0929,0.0922,0.0872,0.0948,0.063,0.1006,0.0855,0.0946,0.0866,0.0708,0.0707,0.0926,0.0992,0.1029,0.0902,0.1004,0.0719,0.1065,0.0928,0.105,0.0914,0.0637,0.0686,0.0925,0.1132,0.1133,0.0896,0.099,0.0626,0.1045,0.0986,0.1036,0.0909,0.068,0.0685,0.0965,0.1387,0.116,0.0976,0.1082,0.0705,0.1052,0.0928,0.1156,0.0936,0.0647,0.0646,0.0916,0.0969,0.101,0.0898,0.0952,0.0627,0.104,0.0895,0.1125,0.0881,0.0647,0.0685,0.0935,0.1039,0.1075,0.0953,0.1052,0.0642,0.1014,0.0886,0.1112,0.0907,0.0666
71010,37,0.0709,0.0941,0.1028,0.1041,0.0929,0.1044,0.0729,0.1008,0.091,0.0964,0.095,0.0666,0.0698,0.0923,0.0926,0.0918,0.0875,0.0947,0.0629,0.0943,0.0857,0.0879,0.0874,0.0729,0.0648,0.0916,0.0936,0.0929,0.0879,0.095,0.0654,0.1002,0.0854,0.0945,0.086,0.0655,0.0695,0.0929,0.0999,0.1031,0.0902,0.1008,0.0638,0.1062,0.0914,0.1055,0.0912,0.0672,0.0679,0.093,0.1137,0.114,0.0902,0.0993,0.0636,0.1046,0.0984,0.1035,0.091,0.0684,0.0687,0.0966,0.1394,0.1164,0.0973,0.1081,0.0692,0.1053,0.0917,0.1152,0.0938,0.0659,0.0652,0.092,0.0975,0.1013,0.0901,0.0953,0.0641,0.1036,0.0892,0.1141,0.0883,0.0641,0.0696,0.0932,0.1043,0.1077,0.0948,0.1054,0.065,0.1013,0.0892,0.11,0.091,0.0685
71100,37,0.0685,0.0943,0.1029,0.1045,0.0938,0.1063,0.0762,0.103,0.0936,0.1002,0.0974,0.0655,0.0696,0.0928,0.0935,0.0931,0.0883,0.0959,0.0609,0.0955,0.0865,0.0889,0.0887,0.0716,0.064,0.0917,0.0942,0.0935,0.0881,0.0961,0.0701,0.1018,0.0868,0.0972,0.0872,0.066,0.0675,0.0924,0.1002,0.104,0.0909,0.1017,0.0691,0.1075,0.0952,0.1102,0.0923,0.0655,0.0677,0.0929,0.115,0.1153,0.091,0.1004,0.0614,0.1065,0.1018,0.1084,0.0926,0.0745,0.0679,0.0965,0.1398,0.1178,0.1004,0.1117,0.0744,0.1075,0.096,0.1231,0.0966,0.0658,0.0653,0.0922,0.0978,0.1016,0.09,0.0956,0.062,0.1046,0.0919,0.121,0.0895,0.0668,0.0665,0.0936,0.1046,0.108,0.096,0.1066,0.07,0.1026,0.0917,0.116,0.0922,0.0642
71190,37,0.0727,0.0935,0.102,0.1029,0.0925,0.1043,0.0693,0.1019,0.0924,0.0982,0.096,0.0642,0.0683,0.0922,0.0922,0.0911,0.0875,0.095,0.065,0.0946,0.0859,0.0881,0.0874,0.0658,0.0648,0.0904,0.0931,0.0924,0.0877,0.0956,0.0745,0.1009,0.086,0.0943,0.0857,0.064,0.066,0.092,0.0997,0.1028,0.0901,0.1008,0.063,0.1058,0.0918,0.1048,0.0911,0.0679,0.0671,0.0925,0.1141,0.1146,0.0904,0.0994,0.0702,0.1036,0.0973,0.102,0.0908,0.0651,0.0658,0.0967,0.14,0.1157,0.0973,0.1082,0.0655,0.1054,0.0928,0.1173,0.094,0.0672,0.0661,0.0924,0.098,0.1018,0.0899,0.0954,0.0647,0.1028,0.0886,0.1129,0.088,0.0676,0.0672,0.0932,0.1038,0.1073,0.0949,0.1052,0.0703,0.1014,0.0899,0.1118,0.092,0.064
71280,37,0.0715,0.0942,0.1026,0.104,0.0934,0.1054,0.068,0.1032,0.0942,0.1005,0.0975,0.0659,0.0688,0.0928,0.0927,0.0916,0.0879,0.0958,0.0655,0.0954,0.0863,0.0888,0.0882,0.0689,0.0627,0.0912,0.0938,0.0933,0.0883,0.0966,0.0773,0.1016,0.0869,0.0964,0.0861,0.0655,0.0663,0.0925,0.1004,0.1043,0.0906,0.1016,0.0616,0.1071,0.0936,0.1071,0.0921,0.0703,0.0678,0.0929,0.1157,0.1162,0.0919,0.1013,0.0742,0.1054,0.1,0.1059,0.0916,0.0642,0.0686,0.0965,0.1402,0.1188,0.0991,0.111,0.063,0.1061,0.0953,0.1232,0.0972,0.0665,0.0652,0.0926,0.0989,0.1028,0.091,0.0961,0.0664,0.1044,0.0905,0.1182,0.0898,0.0663,0.0649,0.0935,0.1046,0.1084,0.0957,0.1062,0.0661,0.1026,0.0913,0.1164,0.0924,0.0645
71370,37,0.0727,0.0942,0.1028,0.104,0.0932,0.1056,0.0691,0.1036,0.0948,0.1014,0.099,0.067,0.0693,0.0926,0.0925,0.0919,0.0881,0.096,0.0705,0.0958,0.0866,0.0889,0.0886,0.0675,0.0632,0.0911,0.0938,0.0931,0.088,0.0967,0.0752,0.102,0.0872,0.0968,0.0862,0.065,0.0656,0.0919,0.1001,0.1047,0.091,0.1018,0.0622,0.1072,0.0953,0.1079,0.0921,0.069,0.0669,0.0927,0.1154,0.1161,0.0919,0.1013,0.0717,0.1059,0.1009,0.1073,0.0922,0.0693,0.0665,0.0962,0.14,0.1182,0.0999,0.1117,0.0651,0.1066,0.0955,0.1228,0.0974,0.0658,0.0644,0.0927,0.0985,0.1024,0.0907,0.0959,0.0641,0.1045,0.0912,0.1189,0.09,0.0679,0.0645,0.0932,0.1043,0.1082,0.0958,0.1065,0.0716,0.103,0.0919,0.118,0.0926,0.0671
71460,37,0.076,0.094,0.1023,0.1036,0.0928,0.1049,0.0659,0.1032,0.0952,0.102,0.099,0.0687,0.0688,0.0928,0.0923,0.0914,0.0882,0.0959,0.072,0.0959,0.0868,0.0889,0.0886,0.0648,0.0644,0.0909,0.0937,0.0928,0.0878,0.0964,0.0714,0.1021,0.0873,0.0969,0.0863,0.0637,0.0676,0.0923,0.0999,0.1039,0.0909,0.1019,0.0633,0.1075,0.0947,0.1085,0.0922,0.0679,0.0668,0.0927,0.1153,0.1158,0.0917,0.1013,0.0749,0.105,0.1001,0.1056,0.0914,0.0643,0.0697,0.0962,0.1401,0.1187,0.0996,0.1113,0.0649,0.1068,0.0954,0.1234,0.0972,0.0672,0.0655,0.0932,0.099,0.1028,0.091,0.0963,0.068,0.1041,0.0899,0.1169,0.0894,0.0675,0.0673,0.0935,0.1045,0.1082,0.0958,0.1064,0.0672,0.1029,0.0918,0.1179,0.0924,0.065
71550,37,0.0749,0.0946,0.1031,0.1044,0.0931,0.1056,0.0639,0.103,0.0943,0.0999,0.0983,0.0644,0.0703,0.0931,0.0926,0.0912,0.0878,0.0954,0.0706,0.0955,0.0869,0.0887,0.0885,0.0689,0.0656,0.0912,0.0939,0.0928,0.0877,0.0965,0.0709,0.1017,0.0872,0.0966,0.0859,0.065,0.0679,0.0925,0.1002,0.1042,0.0909,0.1019,0.0613,0.1073,0.0938,0.1082,0.0919,0.0683,0.068,0.093,0.1154,0.1163,0.0921,0.1015,0.0762,0.105,0.0993,0.105,0.0912,0.0652,0.0675,0.0964,0.1404,0.1185,0.0992,0.1112,0.0635,0.1063,0.0959,0.1226,0.0971,0.0671,0.0658,0.0927,0.0987,0.1027,0.0908,0.096,0.0648,0.1041,0.0904,0.1183,0.0897,0.0654,0.0656,0.0934,0.1044,0.1085,0.0959,0.1067,0.0657,0.103,0.0919,0.1169,0.0925,0.064
71640,37,0.073,0.0943,0.1029,0.1042,0.0931,0.1059,0.0685,0.1034,0.0949,0.1014,0.0984,0.069,0.07,0.0926,0.0924,0.0912,0.088,0.0957,0.07,0.0959,0.0864,0.0889,0.0884,0.0683,0.0623,0.0911,0.0939,0.093,0.0877,0.0967,0.0756,0.1019,0.0871,0.0967,0.0864,0.064,0.0669,0.0918,0.1001,0.1043,0.0907,0.102,0.0629,0.1073,0.0945,0.109,0.092,0.068,0.0666,0.0928,0.1152,0.116,0.0916,0.1012,0.0736,0.1054,0.1005,0.1059,0.0918,0.0674,0.0663,0.0961,0.1404,0.1182,0.1004,0.1117,0.0651,0.107,0.0956,0.1227,0.0973,0.0657,0.0677,0.093,0.0986,0.102,0.0905,0.0958,0.0623,0.1038,0.0905,0.1181,0.0895,0.066,0.0679,0.0933,0.1044,0.1083,0.096,0.1067,0.0718,0.1032,0.092,0.1172,0.0924,0.063
71730,37,0.0773,0.0943,0.1027,0.104,0.0929,0.1056,0.0662,0.1035,0.0948,0.1011,0.0988,0.0658,0.0686,0.0924,0.0928,0.0911,0.088,0.0956,0.0668,0.0958,0.0865,0.0889,0.0887,0.0672,0.0628,0.0911,0.0938,0.0929,0.088,0.0962,0.0728,0.1017,0.0867,0.0968,0.0866,0.0676,0.0663,0.0925,0.1,0.1042,0.0905,0.1017,0.0634,0.1078,0.0947,0.1088,0.092,0.0687,0.0693,0.0934,0.1153,0.1158,0.0915,0.1006,0.067,0.1046,0.0998,0.1058,0.0918,0.0677,0.0688,0.0965,0.1405,0.1181,0.0998,0.111,0.0656,0.1071,0.0958,0.1246,0.0972,0.0677,0.0687,0.0928,0.0985,0.102,0.0903,0.096,0.0615,0.1036,0.0906,0.1187,0.0894,0.0655,0.0671,0.0939,0.1043,0.108,0.0962,0.1069,0.0679,0.1031,0.0924,0.1176,0.0926,0.0646
71820,37,0.0707,0.0941,0.1025,0.1042,0.0924,0.1049,0.0714,0.1019,0.092,0.0982,0.097,0.0654,0.0677,0.0921,0.0922,0.0912,0.0874,0.0952,0.0628,0.0944,0.0856,0.0881,0.0871,0.0696,0.0645,0.0913,0.0934,0.0928,0.0878,0.0954,0.0724,0.1005,0.0856,0.0934,0.0858,0.0646,0.0665,0.0924,0.0997,0.1036,0.09,0.1008,0.0628,0.1062,0.0913,0.1046,0.0907,0.0673,0.0687,0.0933,0.1138,0.1139,0.0897,0.0989,0.0606,0.1043,0.0983,0.1035,0.0909,0.0698,0.0685,0.0968,0.1402,0.1166,0.0976,0.1089,0.0681,0.1055,0.0925,0.1161,0.0941,0.0648,0.0649,0.0923,0.0975,0.1011,0.0895,0.095,0.0631,0.1038,0.0889,0.1146,0.0884,0.0644,0.0688,0.0934,0.104,0.1074,0.0951,0.106,0.0625,0.1016,0.09,0.1114,0.0911,0.065
71910,37,0.069,0.0933,0.1017,0.1037,0.0921,0.1047,0.0727,0.1018,0.0915,0.0977,0.0956,0.0653,0.0667,0.0913,0.0919,0.0912,0.0871,0.095,0.0621,0.0946,0.0854,0.0878,0.0871,0.0701,0.0638,0.0914,0.0936,0.0929,0.0877,0.0952,0.0731,0.1005,0.0852,0.0938,0.086,0.0658,0.0672,0.0924,0.0997,0.1031,0.0903,0.1003,0.0642,0.1063,0.0932,0.1055,0.0909,0.0639,0.0679,0.0929,0.1132,0.1135,0.0892,0.099,0.0629,0.1047,0.099,0.1042,0.0911,0.0727,0.0682,0.0968,0.1395,0.1159,0.0982,0.1089,0.0719,0.1056,0.0935,0.1168,0.0936,0.0654,0.0639,0.092,0.0969,0.1005,0.0892,0.095,0.0623,0.1035,0.0895,0.114,0.0883,0.0643,0.0693,0.0934,0.1039,0.1075,0.0952,0.1059,0.0654,0.1022,0.0907,0.1114,0.0909,0.0645
72000,37,0.0702,0.0943,0.1024,0.1036,0.0926,0.1051,0.0721,0.1006,0.0915,0.0977,0.0981,0.067,0.0724,0.0926,0.0921,0.0909,0.0874,0.095,0.0615,0.0948,0.086,0.0882,0.0878,0.0671,0.0688,0.0915,0.0927,0.0922,0.0871,0.0946,0.0634,0.1004,0.0852,0.0948,0.0864,0.0722,0.0682,0.0926,0.099,0.1025,0.0895,0.1,0.0698,0.1065,0.0934,0.1055,0.0907,0.0669,0.0696,0.093,0.1133,0.113,0.0892,0.099,0.0622,0.1044,0.0989,0.1041,0.0907,0.068,0.069,0.0968,0.1398,0.1162,0.0974,0.1089,0.0685,0.1053,0.0926,0.1165,0.0938,0.0668,0.0642,0.0919,0.097,0.1013,0.0898,0.0954,0.0638,0.1036,0.0891,0.1138,0.0877,0.0639,0.0694,0.0934,0.1041,0.1078,0.095,0.1057,0.0631,0.1015,0.0895,0.1124,0.091,0.0683
72090,37,0.0663,0.0944,0.1026,0.104,0.0928,0.1053,0.076,0.1012,0.0912,0.0976,0.0954,0.066,0.0704,0.0924,0.0927,0.092,0.0873,0.0951,0.062,0.0947,0.0857,0.0878,0.0873,0.0718,0.0659,0.0916,0.0933,0.0929,0.0878,0.0952,0.0703,0.1004,0.0856,0.0941,0.086,0.0641,0.0668,0.0923,0.0997,0.1035,0.0901,0.1007,0.0622,0.1059,0.092,0.1051,0.0906,0.0658,0.068,0.0934,0.1143,0.1144,0.0899,0.0993,0.0643,0.1043,0.0982,0.104,0.0908,0.0724,0.0677,0.0967,0.1407,0.1166,0.0977,0.1086,0.0692,0.1055,0.0933,0.1169,0.0941,0.0642,0.0648,0.0921,0.0974,0.1014,0.0895,0.095,0.0619,0.1035,0.0893,0.1151,0.0887,0.066,0.0663,0.0934,0.1044,0.1077,0.095,0.106,0.0674,0.1023,0.0906,0.1119,0.0914,0.0657
72180,37,0.0741,0.094,0.1024,0.1042,0.0932,0.1062,0.0693,0.1034,0.0948,0.1012,0.0994,0.0657,0.0687,0.0924,0.0923,0.0918,0.0879,0.0958,0.0702,0.0957,0.0867,0.089,0.088,0.0673,0.0625,0.0911,0.0936,0.0932,0.0882,0.0962,0.0763,0.102,0.0871,0.0969,0.0865,0.0648,0.0674,0.0922,0.0999,0.1045,0.0906,0.1017,0.063,0.1075,0.0953,0.1094,0.0916,0.068,0.0666,0.0928,0.1151,0.1152,0.0913,0.1007,0.0684,0.1057,0.101,0.107,0.092,0.0706,0.0686,0.0964,0.1407,0.1181,0.1008,0.112,0.0671,0.1069,0.0967,0.123,0.097,0.0659,0.0646,0.0926,0.0982,0.1021,0.0906,0.0962,0.0627,0.1043,0.0913,0.1208,0.0902,0.0659,0.0645,0.0931,0.1041,0.1078,0.0955,0.1065,0.0691,0.1028,0.0923,0.1179,0.0924,0.0634
72270,37,0.0753,0.094,0.102,0.1026,0.0922,0.1046,0.0648,0.1018,0.0928,0.0991,0.0966,0.0641,0.069,0.0927,0.0915,0.0907,0.0873,0.0952,0.0719,0.0949,0.0864,0.0882,0.0874,0.0651,0.0626,0.0905,0.0929,0.0923,0.0874,0.0957,0.0751,0.1003,0.0863,0.0943,0.0854,0.0656,0.0669,0.0921,0.0989,0.1034,0.0894,0.1006,0.0615,0.1057,0.0925,0.1044,0.0905,0.0702,0.0671,0.0925,0.1143,0.1152,0.0907,0.0999,0.0754,0.1034,0.0967,0.1019,0.0902,0.0645,0.0698,0.0967,0.1411,0.1182,0.0973,0.1086,0.0633,0.1047,0.0932,0.1173,0.0945,0.0675,0.0655,0.0922,0.098,0.1022,0.0903,0.0955,0.0678,0.1034,0.0887,0.1137,0.0883,0.0642,0.0697,0.0938,0.1044,0.1082,0.095,0.106,0.0644,0.1016,0.0904,0.1136,0.0913,0.0646
72360,37,0.0753,0.0943,0.1027,0.1035,0.0923,0.1046,0.065,0.102,0.0925,0.0989,0.0965,0.0657,0.0686,0.0925,0.0921,0.0905,0.0874,0.0947,0.0679,0.0946,0.0861,0.0881,0.0872,0.0655,0.0668,0.0908,0.0929,0.0923,0.0873,0.0954,0.0717,0.1013,0.0867,0.0947,0.0856,0.0638,0.0663,0.0918,0.0991,0.1034,0.0898,0.1012,0.0628,0.1062,0.0924,0.1039,0.0902,0.0681,0.0661,0.0921,0.1141,0.1147,0.0907,0.1,0.0725,0.1043,0.0978,0.1017,0.0901,0.0626,0.0659,0.0965,0.1408,0.1177,0.0979,0.1084,0.0628,0.105,0.0925,0.1162,0.0946,0.0694,0.0653,0.0922,0.0976,0.1023,0.0905,0.0956,0.0711,0.1036,0.0892,0.1138,0.0887,0.0658,0.0719,0.093,0.1043,0.1081,0.0939,0.1053,0.062,0.1016,0.0896,0.1139,0.0911,0.0641
72450,37,0.0751,0.0943,0.1027,0.1043,0.0934,0.1058,0.0656,0.1036,0.0951,0.1023,0.1,0.0696,0.0689,0.0926,0.0923,0.0917,0.0876,0.0958,0.0747,0.0961,0.087,0.0889,0.0887,0.0669,0.0669,0.091,0.0932,0.0928,0.0876,0.0961,0.0686,0.1023,0.0878,0.0978,0.087,0.0657,0.0668,0.0921,0.0994,0.104,0.0907,0.102,0.0694,0.1079,0.0963,0.1098,0.0911,0.0662,0.0667,0.0922,0.1149,0.1156,0.0918,0.1019,0.071,0.106,0.1015,0.1066,0.0913,0.062,0.0672,0.0962,0.1408,0.1187,0.1012,0.1122,0.0668,0.1069,0.0964,0.1228,0.0976,0.0678,0.0643,0.0921,0.098,0.1027,0.0909,0.0962,0.0691,0.1045,0.0915,0.118,0.0895,0.067,0.0687,0.0931,0.1044,0.1084,0.0955,0.1068,0.0687,0.1028,0.0922,0.1192,0.0926,0.0641
72540,37,0.0745,0.0945,0.103,0.1045,0.0932,0.1058,0.0646,0.103,0.095,0.102,0.1011,0.0712,0.0705,0.093,0.0925,0.0913,0.0877,0.0952,0.0744,0.0961,0.0865,0.0886,0.0888,0.0663,0.0691,0.0912,0.0931,0.0925,0.0876,0.0959,0.0662,0.1022,0.0877,0.0978,0.0864,0.063,0.0668,0.0927,0.0996,0.104,0.0903,0.1016,0.068,0.1075,0.0959,0.1092,0.0914,0.0672,0.0673,0.0926,0.1154,0.1159,0.092,0.1016,0.0761,0.1056,0.1007,0.1044,0.0908,0.0648,0.0696,0.0962,0.1407,0.119,0.1004,0.1118,0.061,0.1065,0.0955,0.1221,0.0982,0.0694,0.0649,0.0924,0.0985,0.1032,0.0912,0.0965,0.0698,0.1044,0.0905,0.1177,0.089,0.0649,0.0689,0.0935,0.1046,0.1087,0.0955,0.1068,0.0637,0.1025,0.0919,0.1189,0.0927,0.0657
72630,37,0.0753,0.0944,0.1029,0.1043,0.0932,0.1062,0.0643,0.1031,0.0947,0.1019,0.0995,0.0656,0.0694,0.0927,0.0925,0.0915,0.0877,0.0956,0.0721,0.0958,0.0864,0.0889,0.0887,0.0665,0.0693,0.0911,0.0932,0.093,0.0878,0.0963,0.0717,0.1023,0.0877,0.0977,0.086,0.0654,0.0663,0.0921,0.0994,0.1042,0.0905,0.1019,0.0662,0.1075,0.0965,0.1088,0.0914,0.0664,0.0675,0.0927,0.1156,0.116,0.092,0.1016,0.0736,0.1056,0.1005,0.106,0.0912,0.0645,0.07,0.0957,0.1408,0.1199,0.101,0.1116,0.062,0.1066,0.0964,0.1224,0.0982,0.0666,0.0649,0.092,0.0981,0.1029,0.0909,0.0958,0.07,0.1047,0.0915,0.1187,0.0896,0.0671,0.0687,0.0931,0.1045,0.1085,0.0955,0.1071,0.0696,0.1031,0.093,0.1184,0.0928,0.0644
72720,37,0.0739,0.0939,0.1019,0.103,0.0918,0.1041,0.0661,0.102,0.0935,0.0997,0.0982,0.0741,0.0676,0.0921,0.0916,0.0902,0.0872,0.0946,0.0754,0.0951,0.0864,0.0881,0.0878,0.0645,0.0693,0.0905,0.0925,0.0918,0.0864,0.0951,0.0671,0.1013,0.0865,0.0959,0.0864,0.0668,0.0658,0.0919,0.0985,0.1026,0.0898,0.1008,0.071,0.107,0.0942,0.1053,0.0906,0.0631,0.0658,0.092,0.1134,0.114,0.0902,0.0997,0.0674,0.1048,0.0988,0.1046,0.0908,0.0678,0.068,0.0963,0.1411,0.1171,0.0981,0.1095,0.0627,0.1056,0.0935,0.1171,0.0948,0.0675,0.0644,0.0921,0.0974,0.1019,0.0899,0.0953,0.0674,0.1032,0.089,0.1134,0.088,0.0668,0.0659,0.0932,0.1047,0.1081,0.0948,0.1058,0.0688,0.1019,0.0908,0.1141,0.0916,0.0637
72810,37,0.0787,0.0947,0.1031,0.1047,0.0932,0.1059,0.0633,0.1027,0.0945,0.1015,0.1012,0.0697,0.0732,0.0933,0.0924,0.0907,0.0875,0.0949,0.0717,0.0961,0.0866,0.0889,0.0894,0.0682,0.0702,0.0912,0.0932,0.0926,0.0872,0.0955,0.0662,0.1023,0.0873,0.0985,0.0869,0.0688,0.0712,0.0925,0.0989,0.1035,0.0905,0.1014,0.0732,0.1083,0.096,0.1103,0.0919,0.0664,0.0685,0.0926,0.1147,0.1151,0.0909,0.1016,0.0654,0.1066,0.1023,0.1063,0.0905,0.0631,0.0672,0.0966,0.1408,0.1178,0.1013,0.112,0.0629,0.1066,0.0953,0.1222,0.0975,0.0687,0.0641,0.0924,0.0983,0.1029,0.091,0.0962,0.0673,0.105,0.0907,0.1178,0.0892,0.0661,0.0717,0.0929,0.1042,0.1084,0.0955,0.1069,0.0617,0.1027,0.0918,0.1188,0.0927,0.0664
72900,37,0.0737,0.0949,0.1033,0.1053,0.0937,0.1061,0.0626,0.1025,0.0941,0.1016,0.1028,0.069,0.0722,0.0931,0.0927,0.0914,0.0877,0.0954,0.0697,0.0961,0.0867,0.0887,0.0891,0.0667,0.0692,0.0917,0.0935,0.0929,0.0874,0.0957,0.0643,0.1023,0.0876,0.0984,0.087,0.0671,0.07,0.0926,0.0996,0.104,0.0903,0.1018,0.0712,0.1079,0.0963,0.1104,0.0918,0.0656,0.0679,0.0927,0.1151,0.1151,0.0911,0.1018,0.0665,0.1068,0.1029,0.1087,0.091,0.0682,0.0686,0.0963,0.1405,0.1188,0.1015,0.1133,0.0687,0.1066,0.0966,0.1214,0.0972,0.066,0.0648,0.0921,0.0975,0.1025,0.0906,0.0957,0.0659,0.1051,0.0917,0.1178,0.0895,0.0652,0.0707,0.0929,0.1044,0.1086,0.0956,0.107,0.0627,0.1031,0.0926,0.118,0.0928,0.0647
72990,37,0.0711,0.0946,0.1033,0.1053,0.0938,0.1067,0.067,0.1029,0.0942,0.102,0.1012,0.0689,0.0727,0.0927,0.0925,0.0913,0.0876,0.0954,0.0671,0.0963,0.0866,0.0886,0.0894,0.0642,0.0664,0.0915,0.0934,0.0929,0.0872,0.0949,0.0633,0.102,0.0866,0.098,0.0874,0.0754,0.0711,0.0925,0.0993,0.1035,0.0907,0.1013,0.0762,0.1083,0.0974,0.1107,0.0922,0.0651,0.0683,0.0929,0.1137,0.1142,0.0899,0.101,0.065,0.1064,0.1036,0.1097,0.0918,0.0754,0.0669,0.0965,0.1409,0.1166,0.1009,0.113,0.0741,0.1073,0.0988,0.1236,0.0976,0.0653,0.0635,0.0925,0.0974,0.1014,0.0893,0.0953,0.0627,0.1043,0.0916,0.1202,0.0892,0.0663,0.067,0.0936,0.1038,0.1079,0.0964,0.1073,0.0678,0.1033,0.0927,0.1192,0.0928,0.065
73080,37,0.0715,0.0947,0.1032,0.1052,0.0935,0.1067,0.0654,0.1026,0.0935,0.1004,0.1006,0.0666,0.07,0.0928,0.0926,0.0915,0.0876,0.0953,0.0649,0.0956,0.0861,0.0885,0.0887,0.0698,0.0656,0.092,0.0935,0.0931,0.0879,0.0951,0.0622,0.1017,0.0862,0.0968,0.0871,0.0709,0.0682,0.0929,0.0999,0.1039,0.0904,0.1013,0.0682,0.1077,0.0961,0.1101,0.0919,0.0668,0.069,0.0932,0.1152,0.115,0.0904,0.101,0.0626,0.1058,0.1021,0.1079,0.0912,0.0686,0.0698,0.0968,0.1411,0.1182,0.1007,0.1127,0.0678,0.1071,0.0961,0.123,0.0984,0.0666,0.0639,0.0925,0.098,0.1022,0.0901,0.0957,0.0631,0.1046,0.0908,0.1193,0.0892,0.0648,0.069,0.0934,0.1043,0.1084,0.0958,0.1073,0.0634,0.1032,0.0924,0.1182,0.0927,0.0676
73170,37,0.0669,0.0947,0.1033,0.1052,0.0941,0.1076,0.077,0.1031,0.0934,0.1005,0.0993,0.0666,0.0703,0.0926,0.0933,0.0919,0.0876,0.0954,0.0614,0.0954,0.086,0.0882,0.0883,0.071,0.0663,0.0921,0.0938,0.0933,0.0877,0.0957,0.0656,0.1018,0.0867,0.0978,0.087,0.0684,0.0699,0.0924,0.0998,0.1039,0.091,0.1013,0.0699,0.1078,0.096,0.1097,0.0918,0.0658,0.0672,0.0927,0.1148,0.1147,0.0905,0.1009,0.0646,0.1066,0.1025,0.1089,0.0912,0.0689,0.0702,0.0964,0.1406,0.118,0.1014,0.1129,0.0687,0.1068,0.0958,0.1215,0.0973,0.0659,0.0642,0.092,0.0974,0.1025,0.0905,0.0959,0.0667,0.1053,0.0912,0.1174,0.0896,0.0646,0.0717,0.0931,0.1046,0.1083,0.0955,0.1074,0.0628,0.103,0.0921,0.1182,0.095,0.0666
73260,37,0.0719,0.095,0.1034,0.1052,0.0935,0.1068,0.0644,0.1026,0.0939,0.1014,0.1023,0.0684,0.0724,0.0932,0.0926,0.0915,0.0876,0.0954,0.0669,0.0963,0.0865,0.0887,0.0889,0.0665,0.0661,0.0915,0.0934,0.0927,0.0871,0.0952,0.0648,0.1023,0.0872,0.0986,0.0876,0.0724,0.0714,0.0926,0.0993,0.1032,0.0907,0.1016,0.0723,0.1079,0.097,0.109,0.092,0.0642,0.0664,0.0928,0.1142,0.1142,0.0901,0.1017,0.0649,0.1063,0.103,0.1105,0.0919,0.0745,0.0691,0.0965,0.1406,0.1175,0.1012,0.1134,0.0702,0.107,0.0969,0.1226,0.0971,0.0664,0.0636,0.0925,0.0974,0.1021,0.09,0.0959,0.0651,0.1051,0.0912,0.1184,0.089,0.0635,0.0717,0.0934,0.1045,0.1085,0.0957,0.1073,0.0628,0.103,0.0923,0.1193,0.0928,0.0661
73350,37,0.0733,0.0952,0.1038,0.1054,0.0938,0.1068,0.0655,0.102,0.0935,0.1007,0.1012,0.0677,0.0743,0.0935,0.0928,0.0915,0.0876,0.0952,0.0638,0.096,0.0859,0.0886,0.089,0.0704,0.0687,0.0919,0.0928,0.0925,0.0874,0.0954,0.0641,0.102,0.0872,0.098,0.0865,0.0643,0.0662,0.0926,0.0999,0.1039,0.0903,0.1014,0.0642,0.1077,0.0956,0.1092,0.0916,0.0684,0.0678,0.0928,0.1154,0.1153,0.0909,0.102,0.07,0.1062,0.1012,0.1064,0.0907,0.0642,0.0673,0.0964,0.1413,0.1188,0.1007,0.1121,0.0656,0.1061,0.095,0.1207,0.0978,0.0695,0.0648,0.0925,0.098,0.1031,0.0908,0.0964,0.0706,0.1054,0.0901,0.1163,0.089,0.0641,0.073,0.0935,0.105,0.1091,0.0952,0.1071,0.0624,0.1028,0.0919,0.1199,0.0929,0.0678
73440,37,0.0725,0.0952,0.1036,0.1056,0.0939,0.1072,0.0652,0.1025,0.0939,0.1019,0.1025,0.0676,0.0704,0.0927,0.0925,0.092,0.0872,0.0953,0.0673,0.0958,0.086,0.0891,0.0886,0.0671,0.0675,0.0913,0.0931,0.0925,0.0872,0.0962,0.0689,0.1025,0.0875,0.0978,0.0868,0.0656,0.0674,0.0922,0.0992,0.1041,0.0904,0.1014,0.0663,0.1078,0.0964,0.1093,0.0917,0.0674,0.0673,0.0925,0.1152,0.1153,0.091,0.1016,0.0679,0.1066,0.103,0.1083,0.0915,0.067,0.0691,0.0962,0.1407,0.1186,0.1005,0.1124,0.0635,0.1065,0.096,0.1223,0.0979,0.0682,0.0639,0.0921,0.0973,0.1026,0.0905,0.096,0.068,0.1056,0.0912,0.1178,0.0898,0.0661,0.072,0.0931,0.1046,0.109,0.0952,0.1069,0.0627,0.1027,0.0923,0.1193,0.0932,0.0662
73530,37,0.0727,0.0948,0.1032,0.1055,0.0936,0.107,0.0643,0.1025,0.0939,0.1018,0.1033,0.0706,0.0725,0.093,0.0926,0.0914,0.0876,0.0947,0.0678,0.0963,0.0864,0.0885,0.0893,0.0665,0.0686,0.0915,0.093,0.0925,0.0871,0.0952,0.0656,0.1018,0.0872,0.0978,0.0869,0.0703,0.0694,0.0926,0.0992,0.1037,0.0901,0.1012,0.0705,0.1078,0.0968,0.1104,0.0917,0.0648,0.0672,0.0927,0.1148,0.1148,0.0906,0.1012,0.0645,0.1064,0.1024,0.1081,0.0912,0.0628,0.0687,0.0966,0.1408,0.1182,0.1014,0.1128,0.0677,0.1068,0.0961,0.1235,0.0983,0.0654,0.0644,0.092,0.0972,0.102,0.0903,0.0958,0.0664,0.1056,0.0914,0.1178,0.0898,0.0648,0.0723,0.0936,0.1045,0.1088,0.0956,0.1072,0.0622,0.1026,0.0921,0.1203,0.0927,0.0703
73620,37,0.069,0.095,0.1036,0.1066,0.0944,0.1078,0.0706,0.1022,0.0934,0.1014,0.1017,0.0666,0.072,0.0927,0.093,0.0918,0.0876,0.0951,0.0636,0.0958,0.0859,0.0884,0.0892,0.0703,0.066,0.0921,0.0934,0.0932,0.0878,0.0952,0.0657,0.1015,0.0863,0.0972,0.0869,0.0698,0.0704,0.0927,0.0999,0.1042,0.0903,0.1012,0.068,0.1079,0.095,0.11,0.092,0.0666,0.0679,0.093,0.1155,0.1152,0.0908,0.1013,0.0636,0.1062,0.102,0.1087,0.0912,0.068,0.0676,0.0966,0.1412,0.1178,0.1009,0.1134,0.0683,0.1065,0.0968,0.1233,0.0989,0.0656,0.0635,0.0923,0.0975,0.1025,0.0903,0.0957,0.0657,0.1057,0.0921,0.1189,0.0897,0.065,0.0729,0.0932,0.1046,0.1088,0.0951,0.107,0.0633,0.1026,0.092,0.1193,0.0926,0.067
73710,37,0.0689,0.0945,0.1032,0.1066,0.0943,0.1084,0.0782,0.1033,0.0941,0.1016,0.1013,0.0646,0.0701,0.0924,0.0926,0.0926,0.0877,0.0952,0.0613,0.0956,0.0859,0.0884,0.0887,0.0706,0.0666,0.0917,0.0936,0.0935,0.0881,0.0951,0.0688,0.102,0.0866,0.0965,0.0871,0.0684,0.068,0.0925,0.0997,0.1044,0.0907,0.1014,0.0689,0.1078,0.0971,0.1108,0.0923,0.0636,0.0687,0.0932,0.116,0.1152,0.0909,0.1003,0.0625,0.1064,0.1032,0.1096,0.0919,0.0747,0.0674,0.0966,0.1414,0.1174,0.1015,0.1132,0.0735,0.1073,0.0979,0.1247,0.0996,0.0645,0.0646,0.0922,0.0973,0.102,0.0899,0.0952,0.0635,0.1051,0.0927,0.1208,0.09,0.0655,0.0682,0.0937,0.1046,0.1083,0.0958,0.1072,0.0666,0.1029,0.093,0.1197,0.093,0.0646
73800,37,0.0673,0.0946,0.1032,0.1058,0.0942,0.1074,0.0734,0.1031,0.0941,0.1016,0.1025,0.0666,0.07,0.093,0.0927,0.0918,0.0877,0.0953,0.0619,0.0958,0.0862,0.0883,0.089,0.0704,0.0673,0.0918,0.0932,0.0933,0.0881,0.0952,0.0662,0.1017,0.0864,0.0966,0.0869,0.0682,0.0698,0.0928,0.1003,0.1039,0.0908,0.1006,0.067,0.1078,0.0961,0.1103,0.0923,0.0669,0.0692,0.0932,0.1158,0.1152,0.0907,0.1007,0.0633,0.106,0.1025,0.1095,0.0912,0.07,0.0675,0.097,0.1415,0.1181,0.1009,0.1122,0.0671,0.107,0.0967,0.1255,0.0995,0.0675,0.0635,0.0921,0.0974,0.1022,0.09,0.0956,0.0634,0.1052,0.092,0.1198,0.0892,0.063,0.0684,0.0937,0.1046,0.1085,0.0958,0.1073,0.0627,0.1025,0.0923,0.1206,0.0929,0.0671
73890,37,0.067,0.0944,0.1031,0.1055,0.0941,0.1075,0.0753,0.1034,0.094,0.1014,0.1007,0.0666,0.0694,0.0928,0.0926,0.0922,0.0874,0.0954,0.0638,0.0953,0.0858,0.0881,0.0888,0.0729,0.0636,0.0916,0.0936,0.0938,0.0885,0.0959,0.0724,0.1016,0.0865,0.0963,0.0864,0.0654,0.0674,0.0924,0.1,0.1043,0.0905,0.1013,0.0638,0.1077,0.0946,0.1098,0.0921,0.066,0.0699,0.0932,0.1161,0.1158,0.0914,0.1013,0.067,0.1062,0.1023,0.1092,0.0914,0.07,0.0702,0.0968,0.1412,0.119,0.1003,0.1128,0.0696,0.1072,0.0971,0.1233,0.0997,0.0664,0.064,0.0922,0.0976,0.1022,0.0899,0.0956,0.0651,0.1054,0.0922,0.1219,0.0897,0.0652,0.0685,0.0931,0.1043,0.1082,0.0956,0.1071,0.0635,0.1027,0.0926,0.1199,0.0928,0.0648
73980,37,0.067,0.0942,0.1029,0.1053,0.094,0.1078,0.074,0.1038,0.0944,0.1021,0.1021,0.0644,0.0677,0.0924,0.0925,0.0918,0.0874,0.0955,0.0617,0.0957,0.086,0.0884,0.0894,0.0712,0.0626,0.0912,0.0932,0.0932,0.088,0.0955,0.0772,0.1017,0.0867,0.0965,0.0866,0.0661,0.067,0.0924,0.0998,0.1042,0.0902,0.1014,0.0655,0.108,0.0958,0.1103,0.0922,0.0662,0.069,0.0932,0.1163,0.1157,0.0909,0.1009,0.0638,0.1061,0.1021,0.1089,0.0917,0.0726,0.0681,0.0968,0.1415,0.118,0.1012,0.113,0.0722,0.1074,0.0976,0.1253,0.0996,0.0652,0.0663,0.0924,0.0974,0.1015,0.0894,0.095,0.062,0.1049,0.0923,0.1223,0.0899,0.067,0.0659,0.0938,0.1047,0.1085,0.0959,0.1073,0.0693,0.1033,0.0938,0.1202,0.0931,0.0645
74070,37,0.0754,0.0939,0.1025,0.1042,0.0935,0.107,0.0688,0.1035,0.0946,0.1015,0.1017,0.0647,0.0688,0.0925,0.0922,0.0915,0.0874,0.0952,0.0624,0.0957,0.0856,0.0882,0.0891,0.0698,0.0632,0.0911,0.0932,0.0931,0.0877,0.0959,0.0771,0.1017,0.0865,0.0958,0.0862,0.066,0.0679,0.0926,0.0999,0.1048,0.0905,0.101,0.0652,0.1075,0.0956,0.1091,0.0922,0.069,0.0693,0.0932,0.1162,0.1161,0.0915,0.101,0.0696,0.1051,0.1006,0.1072,0.0911,0.0655,0.0677,0.0972,0.1422,0.1188,0.1008,0.1127,0.0656,0.1071,0.0966,0.1266,0.0994,0.0674,0.0656,0.0925,0.0979,0.1025,0.09,0.0957,0.0618,0.1043,0.091,0.1197,0.0893,0.0666,0.066,0.0939,0.105,0.1087,0.0957,0.1073,0.0672,0.1033,0.0937,0.1204,0.0932,0.0652
74160,37,0.0667,0.0942,0.1031,0.1052,0.0939,0.1079,0.0738,0.1034,0.094,0.1007,0.1001,0.0657,0.0684,0.0929,0.0926,0.092,0.0875,0.0953,0.0646,0.0957,0.0858,0.088,0.0893,0.071,0.0624,0.0912,0.0935,0.0933,0.088,0.0961,0.0792,0.1015,0.0863,0.095,0.0847,0.0676,0.0676,0.0927,0.1,0.1054,0.0908,0.1014,0.0635,0.1075,0.0952,0.1089,0.0919,0.0691,0.0691,0.0935,0.1162,0.1156,0.0911,0.1007,0.0668,0.1058,0.101,0.1079,0.0912,0.0685,0.0679,0.0969,0.142,0.1191,0.1007,0.1126,0.0671,0.1072,0.097,0.1257,0.0989,0.0649,0.0645,0.0925,0.0977,0.1022,0.0899,0.0954,0.0641,0.1047,0.0916,0.1221,0.0904,0.068,0.0662,0.0937,0.1048,0.1086,0.0958,0.1074,0.0662,0.1033,0.0938,0.1212,0.0933,0.0638
74250,37,0.068,0.0941,0.1028,0.1048,0.0937,0.1074,0.0715,0.1039,0.0947,0.1021,0.1022,0.0675,0.0671,0.0926,0.0922,0.0916,0.0877,0.0955,0.0644,0.096,0.0862,0.0887,0.0896,0.0682,0.0634,0.0913,0.0934,0.0933,0.0881,0.0958,0.0779,0.1017,0.0867,0.0959,0.0866,0.0659,0.068,0.0922,0.0994,0.1047,0.0902,0.1015,0.0645,0.1078,0.0959,0.1106,0.0921,0.0662,0.0681,0.093,0.116,0.1157,0.091,0.1007,0.0642,0.1055,0.1013,0.1076,0.0914,0.0676,0.0665,0.0969,0.1422,0.1185,0.1011,0.113,0.0674,0.1074,0.097,0.1273,0.1004,0.067,0.0647,0.0927,0.098,0.1022,0.0896,0.0953,0.0625,0.104,0.0908,0.1216,0.0898,0.0678,0.0676,0.0938,0.1045,0.1084,0.0958,0.1073,0.0719,0.1033,0.0943,0.1222,0.0933,0.0648
74340,37,0.071,0.094,0.1023,0.1033,0.0923,0.1052,0.0654,0.1023,0.0927,0.0986,0.0987,0.0677,0.0689,0.0924,0.0916,0.0906,0.0868,0.0946,0.0631,0.095,0.085,0.0876,0.089,0.0688,0.0671,0.0907,0.0924,0.0923,0.0872,0.095,0.0751,0.1007,0.0855,0.0934,0.0855,0.0655,0.0668,0.0922,0.099,0.1039,0.0899,0.1002,0.0632,0.1064,0.0928,0.1049,0.0907,0.0697,0.0667,0.0928,0.1151,0.1151,0.0909,0.0999,0.0758,0.1032,0.0969,0.1007,0.0894,0.0643,0.0659,0.0973,0.1426,0.1178,0.0983,0.1093,0.063,0.1055,0.0932,0.1201,0.0972,0.0674,0.0657,0.0924,0.0978,0.1024,0.0898,0.095,0.0681,0.1031,0.0874,0.114,0.0877,0.0663,0.0677,0.0936,0.1046,0.1085,0.095,0.1066,0.0637,0.102,0.0917,0.1173,0.0917,0.0651
74430,37,0.0754,0.0941,0.1022,0.1034,0.0928,0.1061,0.0687,0.1025,0.0928,0.0994,0.0986,0.0662,0.0698,0.0924,0.0918,0.0913,0.0869,0.0946,0.068,0.0951,0.086,0.0877,0.0892,0.0668,0.0675,0.0907,0.0928,0.0924,0.0869,0.0952,0.0739,0.1011,0.0861,0.0945,0.0854,0.0642,0.0661,0.0919,0.0987,0.1037,0.0897,0.1006,0.0614,0.106,0.0945,0.1053,0.0903,0.0662,0.066,0.0925,0.1149,0.1148,0.0904,0.1004,0.0727,0.1041,0.0977,0.1022,0.0899,0.0628,0.0698,0.0965,0.142,0.1185,0.0989,0.1105,0.0602,0.1049,0.0948,0.1178,0.0968,0.0684,0.0651,0.0924,0.0975,0.1022,0.0899,0.0949,0.0706,0.1034,0.0883,0.1127,0.0882,0.0663,0.0702,0.0932,0.1051,0.1086,0.0946,0.1065,0.0614,0.1024,0.092,0.1165,0.0917,0.0644
74520,37,0.0735,0.0943,0.1023,0.1034,0.0921,0.1052,0.0649,0.1021,0.0934,0.1004,0.1009,0.0751,0.0706,0.0926,0.0916,0.0906,0.0872,0.0948,0.073,0.0955,0.0862,0.0882,0.0888,0.0636,0.0696,0.0905,0.092,0.0913,0.086,0.0947,0.0656,0.101,0.0862,0.0955,0.0862,0.0659,0.0679,0.0922,0.098,0.1034,0.0893,0.1006,0.0713,0.1071,0.0951,0.1066,0.0905,0.0629,0.0658,0.0923,0.114,0.1136,0.0895,0.1003,0.0673,0.1047,0.0985,0.1035,0.0898,0.0624,0.0695,0.0968,0.1412,0.1167,0.099,0.1104,0.0648,0.1058,0.0944,0.1182,0.0963,0.0676,0.0643,0.0922,0.0969,0.1017,0.0897,0.0953,0.0684,0.1033,0.0882,0.1127,0.0876,0.0649,0.0712,0.0936,0.1049,0.1084,0.0948,0.1066,0.0631,0.1023,0.0909,0.1168,0.0918,0.0668
74610,37,0.0746,0.0949,0.1033,0.1052,0.0939,0.1072,0.0635,0.1026,0.0944,0.1015,0.1034,0.0663,0.0732,0.0936,0.0924,0.0917,0.0876,0.0948,0.0658,0.0963,0.0866,0.0887,0.0906,0.0695,0.0698,0.0916,0.0926,0.0925,0.0872,0.0957,0.0645,0.1017,0.0873,0.0981,0.0867,0.0654,0.0705,0.093,0.0992,0.1045,0.0907,0.1012,0.0683,0.108,0.0973,0.1102,0.0916,0.0663,0.0665,0.0925,0.1154,0.1154,0.091,0.1024,0.0704,0.1062,0.1013,0.1062,0.0906,0.0646,0.0695,0.0965,0.1414,0.1192,0.1019,0.1136,0.0626,0.1066,0.0968,0.1222,0.1002,0.069,0.0642,0.0923,0.0975,0.103,0.0907,0.0961,0.0689,0.1051,0.0909,0.1176,0.0893,0.0635,0.0742,0.0933,0.105,0.1093,0.0954,0.108,0.063,0.1034,0.0932,0.1212,0.093,0.0679
74700,37,0.0733,0.0948,0.1034,0.1057,0.0939,0.1079,0.0651,0.1032,0.0942,0.1021,0.1039,0.0686,0.0717,0.0932,0.0926,0.0916,0.0877,0.0952,0.0662,0.096,0.0866,0.0886,0.0907,0.0686,0.0681,0.0918,0.093,0.093,0.0872,0.0952,0.0643,0.1024,0.0875,0.098,0.0875,0.0683,0.0675,0.0925,0.0997,0.1044,0.0903,0.1017,0.0702,0.1082,0.0982,0.1083,0.0915,0.0653,0.0664,0.0925,0.1155,0.1149,0.0903,0.1015,0.0664,0.1064,0.1026,0.1082,0.091,0.0675,0.0691,0.0965,0.1414,0.1184,0.1024,0.1143,0.0712,0.1071,0.0978,0.1233,0.0991,0.0662,0.0637,0.092,0.0966,0.1019,0.09,0.0955,0.0653,0.1053,0.0922,0.1199,0.0896,0.0646,0.0714,0.0933,0.1047,0.1089,0.0958,0.1077,0.064,0.1035,0.0933,0.121,0.0931,0.067
74790,37,0.0691,0.0946,0.103,0.1057,0.094,0.1082,0.068,0.1028,0.0942,0.1019,0.1035,0.0667,0.0732,0.0932,0.0924,0.0914,0.0876,0.0952,0.0659,0.0963,0.0865,0.0884,0.0916,0.0677,0.0688,0.0915,0.0928,0.0929,0.0873,0.0951,0.062,0.1022,0.0872,0.0985,0.0877,0.0766,0.0699,0.0927,0.0993,0.1046,0.0904,0.1012,0.0744,0.1085,0.0986,0.111,0.0919,0.0634,0.0681,0.0927,0.115,0.1143,0.0899,0.1009,0.0635,0.1064,0.1031,0.1095,0.0915,0.0738,0.0673,0.0968,0.1422,0.1176,0.1024,0.1138,0.0747,0.1076,0.0991,0.125,0.0998,0.065,0.064,0.092,0.0968,0.1015,0.0896,0.0954,0.0638,0.1049,0.0926,0.1206,0.0895,0.0676,0.0691,0.0935,0.1046,0.1086,0.0962,0.1074,0.0641,0.1034,0.0926,0.1214,0.0926,0.0661
74880,37,0.069,0.0944,0.1027,0.1045,0.0934,0.1067,0.0708,0.1014,0.0922,0.098,0.0999,0.0674,0.0712,0.0925,0.0921,0.0916,0.0872,0.0945,0.0621,0.0948,0.0857,0.0874,0.0896,0.0709,0.0675,0.0913,0.0919,0.0923,0.0867,0.094,0.063,0.1005,0.0855,0.0948,0.0865,0.0695,0.0681,0.0926,0.0991,0.1036,0.0898,0.1005,0.0675,0.1068,0.0951,0.1065,0.0905,0.0648,0.0684,0.0926,0.1144,0.1138,0.0894,0.0992,0.0622,0.1046,0.0998,0.105,0.0904,0.0698,0.0682,0.0972,0.1421,0.1168,0.0995,0.1112,0.0691,0.1056,0.0957,0.1182,0.0972,0.0654,0.0647,0.0916,0.0965,0.1018,0.0898,0.095,0.0659,0.1041,0.0901,0.1156,0.0878,0.063,0.0714,0.0936,0.1046,0.1084,0.095,0.1066,0.0632,0.1021,0.0913,0.1154,0.0914,0.0676
74970,37,0.0676,0.0948,0.1034,0.1059,0.0946,0.1086,0.0768,0.1035,0.0945,0.1016,0.1034,0.0675,0.0715,0.0926,0.093,0.092,0.0877,0.0951,0.06,0.0958,0.0861,0.0882,0.0912,0.0709,0.0687,0.0916,0.0932,0.0936,0.0878,0.095,0.0657,0.1025,0.0872,0.0979,0.0872,0.0688,0.07,0.0922,0.0996,0.1046,0.0904,0.1014,0.0711,0.1082,0.0973,0.1106,0.092,0.0658,0.0679,0.0926,0.1154,0.1149,0.0907,0.1014,0.0647,0.1067,0.1041,0.1094,0.0911,0.0695,0.0671,0.0968,0.1421,0.1187,0.1028,0.1144,0.0715,0.1075,0.0977,0.1243,0.1003,0.0663,0.0633,0.0918,0.0967,0.1022,0.09,0.0954,0.0652,0.1057,0.0931,0.1221,0.0898,0.0634,0.07,0.0932,0.1048,0.1085,0.0954,0.1075,0.0632,0.1032,0.0938,0.1204,0.0932,0.0674
75060,37,0.0686,0.0948,0.103,0.1058,0.0942,0.1082,0.0704,0.1031,0.0945,0.1015,0.1044,0.0658,0.0725,0.0929,0.0924,0.0914,0.0875,0.0951,0.0638,0.0961,0.0861,0.0884,0.0915,0.0662,0.0688,0.0917,0.093,0.0932,0.0875,0.0948,0.0641,0.1022,0.0869,0.0977,0.0876,0.0723,0.0693,0.0925,0.0994,0.1045,0.0906,0.1008,0.0735,0.1084,0.098,0.1114,0.0924,0.0638,0.0679,0.0928,0.115,0.1138,0.09,0.1009,0.0644,0.1064,0.1039,0.1099,0.091,0.0718,0.0693,0.0971,0.1422,0.1176,0.1025,0.1141,0.0743,0.1075,0.099,0.125,0.101,0.0644,0.0639,0.0918,0.0966,0.1017,0.0898,0.0952,0.0636,0.1054,0.0922,0.1213,0.0893,0.0669,0.0688,0.0937,0.1048,0.1087,0.0958,0.1077,0.0649,0.1031,0.0933,0.1231,0.093,0.0699
75150,37,0.0672,0.0943,0.103,0.1047,0.0933,0.1067,0.0688,0.1015,0.092,0.0982,0.1002,0.0678,0.072,0.0926,0.0918,0.0917,0.0867,0.0944,0.0641,0.0947,0.0852,0.0871,0.0912,0.0713,0.0679,0.0915,0.0926,0.0931,0.0876,0.0941,0.0645,0.1008,0.0857,0.0939,0.0865,0.0686,0.0713,0.0927,0.0987,0.1033,0.0897,0.0995,0.0677,0.1066,0.0953,0.1063,0.0911,0.0655,0.0679,0.0927,0.1145,0.1138,0.0894,0.0995,0.0631,0.1047,0.1001,0.1053,0.0897,0.066,0.0684,0.0971,0.1421,0.1168,0.0988,0.1106,0.0669,0.1054,0.0941,0.1185,0.0991,0.0661,0.0654,0.0916,0.0965,0.1024,0.0899,0.0948,0.0674,0.1046,0.0894,0.1135,0.0878,0.0639,0.0727,0.0939,0.1049,0.1086,0.0948,0.1068,0.0616,0.1018,0.0915,0.1173,0.092,0.0708
75240,37,0.0673,0.0945,0.1031,0.1051,0.0934,0.1068,0.0705,0.1017,0.0923,0.0986,0.1021,0.0658,0.0744,0.0926,0.0918,0.0909,0.087,0.0941,0.0636,0.0946,0.0855,0.0875,0.0901,0.065,0.0699,0.0914,0.0924,0.0925,0.0866,0.094,0.0624,0.101,0.0857,0.0952,0.0876,0.0706,0.0671,0.0919,0.0985,0.1033,0.0893,0.1002,0.0687,0.1067,0.095,0.1069,0.0911,0.0629,0.0674,0.0924,0.1145,0.1139,0.0895,0.0994,0.0657,0.106,0.1006,0.1046,0.0901,0.0671,0.0677,0.097,0.1422,0.1174,0.1001,0.1111,0.069,0.1054,0.0949,0.1185,0.1003,0.0648,0.064,0.0915,0.0962,0.1017,0.0894,0.0944,0.0656,0.1045,0.0904,0.1145,0.0881,0.0646,0.0696,0.0935,0.105,0.1085,0.0945,0.1066,0.0626,0.102,0.0914,0.1165,0.092,0.0676
75330,37,0.0679,0.0949,0.1034,0.1062,0.0941,0.1078,0.0652,0.1033,0.0951,0.1032,0.1056,0.0688,0.0729,0.0931,0.092,0.0915,0.0875,0.095,0.0673,0.0962,0.086,0.0885,0.0912,0.0648,0.0712,0.0914,0.0929,0.0929,0.0869,0.0947,0.0647,0.1024,0.0871,0.0982,0.0886,0.0752,0.0708,0.0928,0.0979,0.104,0.09,0.1013,0.0739,0.1082,0.0985,0.1121,0.0925,0.063,0.0658,0.0925,0.1156,0.1154,0.0913,0.1023,0.0666,0.1066,0.103,0.1083,0.0907,0.0643,0.0674,0.0966,0.1423,0.1183,0.1024,0.1139,0.0655,0.1073,0.0975,0.126,0.1115,0.067,0.0638,0.092,0.0971,0.1025,0.0902,0.0955,0.0665,0.105,0.0914,0.1194,0.0889,0.0652,0.0716,0.0934,0.1051,0.109,0.0956,0.1078,0.0641,0.1029,0.094,0.1225,0.0936,0.0662
75420,37,0.0697,0.095,0.1037,0.1064,0.094,0.1082,0.0688,0.1026,0.0942,0.1013,0.1077,0.0686,0.074,0.0932,0.0923,0.0913,0.0874,0.0946,0.0673,0.096,0.0858,0.088,0.093,0.0686,0.0707,0.0916,0.093,0.0929,0.0873,0.0945,0.0635,0.1021,0.0868,0.0979,0.0873,0.0706,0.0717,0.0929,0.0991,0.1044,0.0903,0.1009,0.0682,0.1081,0.0973,0.1113,0.0922,0.0667,0.0667,0.0927,0.1158,0.1151,0.0912,0.1021,0.0656,0.1062,0.103,0.1089,0.0905,0.063,0.0697,0.0968,0.1421,0.1188,0.1022,0.1136,0.062,0.1064,0.0975,0.125,0.1147,0.0669,0.064,0.0921,0.0972,0.1029,0.0903,0.0955,0.0667,0.1053,0.0915,0.1188,0.0889,0.0646,0.0738,0.0937,0.1052,0.1092,0.0955,0.1078,0.0614,0.103,0.0937,0.1238,0.0936,0.0698
75510,37,0.0672,0.0945,0.103,0.1051,0.0934,0.1069,0.0722,0.102,0.0921,0.0984,0.1012,0.067,0.0728,0.092,0.092,0.0913,0.0868,0.0945,0.0635,0.0946,0.085,0.0875,0.0983,0.0703,0.0654,0.0916,0.093,0.0929,0.087,0.0942,0.0658,0.1006,0.0852,0.0943,0.0867,0.0698,0.071,0.0924,0.0988,0.1033,0.0898,0.0998,0.0658,0.1066,0.0945,0.1072,0.0907,0.0669,0.0677,0.0931,0.1153,0.1142,0.0893,0.099,0.0622,0.1051,0.0998,0.1054,0.0903,0.0717,0.0692,0.097,0.1426,0.1169,0.0987,0.1108,0.0726,0.1063,0.0954,0.1208,0.1116,0.0648,0.064,0.092,0.0964,0.1013,0.0886,0.0941,0.062,0.1034,0.0901,0.1177,0.0886,0.0668,0.0668,0.0937,0.1047,0.1078,0.0952,0.1069,0.0659,0.1025,0.0924,0.1164,0.0919,0.065
75600,37,0.0699,0.0942,0.103,0.1059,0.0942,0.1086,0.073,0.1038,0.0951,0.1025,0.1088,0.0648,0.0678,0.0923,0.092,0.0918,0.0874,0.0951,0.0648,0.0959,0.0856,0.088,0.0986,0.0693,0.066,0.0913,0.0932,0.0935,0.0876,0.0955,0.0716,0.1018,0.0865,0.0966,0.0878,0.0672,0.0674,0.0924,0.0995,0.1047,0.0904,0.1011,0.068,0.1081,0.0968,0.1115,0.0925,0.0663,0.0676,0.0931,0.1164,0.1157,0.0909,0.1008,0.065,0.1057,0.1019,0.1085,0.0914,0.068,0.0665,0.0971,0.143,0.1182,0.1022,0.1141,0.0675,0.1072,0.0985,0.1278,0.1197,0.0657,0.066,0.0928,0.0977,0.1022,0.0894,0.0952,0.0615,0.104,0.0912,0.1223,0.0894,0.0655,0.0682,0.0936,0.1048,0.1086,0.0958,0.1076,0.0705,0.1035,0.0945,0.1241,0.0934,0.067
75690,37,0.0659,0.0941,0.1025,0.1046,0.0928,0.1068,0.0692,0.1024,0.0929,0.0991,0.1028,0.0659,0.0678,0.0923,0.0912,0.0906,0.0868,0.0945,0.0616,0.0946,0.0851,0.0874,0.0917,0.0705,0.066,0.0907,0.0928,0.0929,0.0871,0.0951,0.0777,0.1003,0.0854,0.0937,0.0867,0.0662,0.0661,0.0921,0.0993,0.1044,0.0894,0.1001,0.0642,0.1068,0.0925,0.1055,0.0908,0.0697,0.0672,0.0932,0.1163,0.1157,0.0909,0.0997,0.0727,0.1034,0.0969,0.1034,0.0898,0.0641,0.0665,0.097,0.1435,0.1177,0.098,0.1101,0.0653,0.1052,0.0942,0.1209,0.113,0.0668,0.0654,0.0928,0.0979,0.1028,0.0896,0.0947,0.0666,0.1031,0.0885,0.116,0.0882,0.0667,0.0665,0.0938,0.1052,0.1084,0.0949,0.1068,0.0617,0.1025,0.0922,0.1178,0.0922,0.0669
75780,37,0.0685,0.0944,0.103,0.1058,0.0937,0.1085,0.07,0.1041,0.095,0.1021,0.1087,0.0648,0.0675,0.0928,0.092,0.0915,0.0876,0.0951,0.063,0.0959,0.0858,0.0882,0.0921,0.0692,0.0653,0.0913,0.0933,0.0933,0.0874,0.0957,0.0758,0.1022,0.0871,0.0965,0.0897,0.066,0.0663,0.0921,0.0994,0.1049,0.0904,0.1012,0.0622,0.1081,0.0953,0.1094,0.0919,0.0696,0.0666,0.0927,0.1167,0.1162,0.0916,0.1022,0.0738,0.106,0.1014,0.1071,0.0908,0.0638,0.0683,0.0965,0.1428,0.1195,0.1021,0.114,0.0622,0.1068,0.0974,0.1256,0.1124,0.0685,0.0653,0.0929,0.0981,0.1027,0.0902,0.096,0.0712,0.1045,0.0908,0.119,0.0898,0.0662,0.0712,0.0932,0.1051,0.1091,0.0953,0.1077,0.0639,0.1034,0.0941,0.1236,0.0936,0.0651
75870,37,0.0744,0.0948,0.103,0.1061,0.0936,0.108,0.0641,0.1037,0.0957,0.1036,0.1148,0.0726,0.0709,0.0932,0.092,0.0911,0.087,0.095,0.0734,0.0966,0.0862,0.0884,0.097,0.0675,0.068,0.091,0.0925,0.0923,0.0864,0.0951,0.0658,0.1021,0.0875,0.0977,0.0901,0.0712,0.0667,0.0921,0.0988,0.1045,0.09,0.1009,0.0665,0.1082,0.0971,0.1103,0.0915,0.0662,0.0657,0.0925,0.1157,0.1154,0.0912,0.1023,0.0708,0.1054,0.1015,0.1075,0.0908,0.0641,0.0693,0.0966,0.1428,0.1192,0.1021,0.1138,0.0611,0.1069,0.0979,0.126,0.1111,0.0682,0.0642,0.0928,0.0977,0.1028,0.0903,0.096,0.0693,0.1047,0.0906,0.1191,0.0892,0.0656,0.0716,0.0937,0.1054,0.1094,0.0956,0.1081,0.0646,0.1031,0.0938,0.1249,0.0935,0.0676
75960,37,0.0721,0.0951,0.1038,0.1068,0.0942,0.108,0.0644,0.103,0.0948,0.1022,0.1143,0.0682,0.0728,0.0934,0.0922,0.0915,0.0875,0.095,0.0652,0.0964,0.0862,0.0883,0.1069,0.0692,0.07,0.0916,0.0925,0.0927,0.087,0.0953,0.0646,0.102,0.0875,0.0978,0.0897,0.0658,0.0694,0.0925,0.0989,0.1047,0.09,0.1012,0.0631,0.108,0.0959,0.11,0.0917,0.068,0.0672,0.093,0.1161,0.1157,0.0915,0.1023,0.0705,0.1061,0.1022,0.1074,0.0906,0.0634,0.0703,0.0966,0.1426,0.1192,0.1026,0.1138,0.0642,0.1064,0.096,0.1246,0.1122,0.0687,0.0667,0.0924,0.0974,0.1031,0.0906,0.0958,0.0698,0.1054,0.0911,0.1184,0.0892,0.0637,0.0743,0.0932,0.1053,0.1096,0.0952,0.108,0.0623,0.1032,0.0936,0.1245,0.0936,0.0678
76050,37,0.0681,0.0949,0.1034,0.1057,0.0936,0.1073,0.0677,0.1021,0.0924,0.099,0.1112,0.0658,0.0734,0.0922,0.092,0.0911,0.0872,0.0942,0.0629,0.095,0.0856,0.0877,0.1063,0.0653,0.0687,0.0916,0.0923,0.0923,0.0865,0.0941,0.0622,0.1009,0.0862,0.0955,0.0895,0.0707,0.071,0.0924,0.0978,0.1036,0.0897,0.1007,0.0717,0.1072,0.0948,0.1068,0.0909,0.0629,0.0654,0.0925,0.1149,0.1138,0.0894,0.1002,0.0658,0.1055,0.1011,0.105,0.0899,0.0663,0.0682,0.0972,0.1423,0.1171,0.1002,0.1119,0.0692,0.1057,0.0954,0.1186,0.1082,0.0647,0.0644,0.0918,0.096,0.1017,0.0892,0.0944,0.0647,0.1045,0.0903,0.1157,0.089,0.0651,0.0707,0.0933,0.1048,0.1085,0.0942,0.1068,0.064,0.102,0.0919,0.117,0.0919,0.0667
76140,37,0.0666,0.0948,0.1031,0.1052,0.0935,0.1072,0.0678,0.1018,0.0925,0.099,0.1132,0.0663,0.0716,0.0922,0.0917,0.0913,0.0868,0.0943,0.0652,0.0954,0.0856,0.0876,0.103,0.0671,0.0724,0.0911,0.092,0.0924,0.0866,0.094,0.0634,0.1009,0.0856,0.095,0.09,0.0746,0.0715,0.0925,0.098,0.1026,0.0894,0.0999,0.0715,0.1073,0.095,0.1075,0.0907,0.0636,0.0663,0.0925,0.1148,0.1135,0.0891,0.0995,0.064,0.1048,0.1008,0.1051,0.09,0.0683,0.0697,0.0973,0.142,0.1169,0.0994,0.1103,0.0698,0.1056,0.0958,0.1208,0.1071,0.0664,0.0642,0.0918,0.0959,0.1016,0.0895,0.0947,0.0647,0.1042,0.0901,0.1149,0.088,0.0671,0.0701,0.0941,0.1053,0.1089,0.095,0.1069,0.0601,0.102,0.0917,0.1192,0.0923,0.0669
76230,37,0.0689,0.095,0.1034,0.1057,0.0938,0.1073,0.0673,0.1017,0.0926,0.0988,0.114,0.068,0.0764,0.0927,0.092,0.0908,0.087,0.0942,0.0668,0.0952,0.0853,0.0875,0.1019,0.0681,0.0704,0.0914,0.0921,0.0926,0.0869,0.0938,0.0639,0.1008,0.0861,0.0952,0.09,0.0715,0.0715,0.0925,0.0988,0.1032,0.0895,0.0998,0.069,0.1069,0.0948,0.1063,0.0909,0.0634,0.0666,0.0925,0.1149,0.1141,0.0895,0.0998,0.0638,0.1052,0.1004,0.105,0.0901,0.0676,0.0687,0.0971,0.1427,0.1171,0.0997,0.1111,0.0674,0.1055,0.0951,0.1197,0.1044,0.0658,0.0642,0.0915,0.0961,0.1024,0.0898,0.0946,0.0672,0.1044,0.0903,0.1149,0.0882,0.0644,0.0735,0.0935,0.1055,0.1094,0.0945,0.107,0.0637,0.1021,0.0917,0.1188,0.0922,0.0671
76320,37,0.0709,0.095,0.1037,0.1065,0.0945,0.1089,0.0683,0.1034,0.095,0.1024,0.1209,0.0666,0.0731,0.0929,0.0925,0.0922,0.0873,0.095,0.0651,0.0964,0.086,0.0883,0.1022,0.068,0.0672,0.0917,0.093,0.0936,0.0875,0.0945,0.0635,0.1026,0.0871,0.0982,0.0914,0.0738,0.0663,0.0923,0.0994,0.1047,0.0902,0.1009,0.0734,0.1087,0.098,0.1122,0.0925,0.0634,0.0656,0.0926,0.1158,0.115,0.0909,0.1019,0.0648,0.1069,0.1053,0.1103,0.0913,0.0709,0.0687,0.0967,0.1425,0.1185,0.1032,0.115,0.0712,0.1073,0.0995,0.1258,0.1088,0.0653,0.0634,0.0918,0.0965,0.1025,0.0901,0.0956,0.0663,0.1054,0.0931,0.1223,0.0899,0.0662,0.0706,0.0934,0.105,0.109,0.0956,0.1078,0.0628,0.1033,0.0947,0.1245,0.0937,0.0666
76410,37,0.0672,0.0946,0.1029,0.1051,0.0935,0.1071,0.0664,0.1023,0.0929,0.0987,0.1182,0.0685,0.073,0.0922,0.0917,0.091,0.0871,0.0943,0.0661,0.095,0.0853,0.0874,0.0988,0.0692,0.071,0.0913,0.092,0.0927,0.0869,0.0938,0.0633,0.1011,0.0858,0.0953,0.0903,0.0698,0.0708,0.0928,0.0985,0.1037,0.0894,0.0999,0.0688,0.1069,0.0957,0.1071,0.091,0.0661,0.0687,0.0927,0.1149,0.1139,0.0893,0.0995,0.0619,0.1048,0.1004,0.1058,0.0899,0.0694,0.0678,0.0976,0.1427,0.1154,0.0996,0.1108,0.0696,0.1059,0.0957,0.1208,0.1037,0.0664,0.065,0.0915,0.0962,0.1018,0.0893,0.0942,0.0631,0.1041,0.0907,0.1168,0.0913,0.0647,0.0679,0.0938,0.1053,0.1082,0.0953,0.1072,0.0627,0.1023,0.0923,0.1186,0.0922,0.0687
76500,37,0.0664,0.0942,0.1028,0.1052,0.0936,0.1077,0.0746,0.1028,0.0931,0.099,0.1159,0.0657,0.0706,0.0923,0.0917,0.0917,0.0867,0.0942,0.063,0.0949,0.0848,0.0871,0.0958,0.0712,0.0652,0.0912,0.0928,0.0933,0.0875,0.0944,0.0714,0.1008,0.0856,0.0942,0.0916,0.0652,0.069,0.0922,0.0991,0.1044,0.0898,0.1,0.0656,0.1063,0.0948,0.1058,0.0912,0.0647,0.0676,0.0931,0.1159,0.1147,0.0899,0.0995,0.0657,0.1046,0.0997,0.1054,0.0902,0.0697,0.0687,0.0975,0.1434,0.1173,0.0995,0.1112,0.0696,0.1061,0.0962,0.1214,0.1044,0.0638,0.0647,0.0923,0.0963,0.1018,0.0889,0.0943,0.0633,0.1044,0.0912,0.1187,0.0886,0.0652,0.0696,0.0941,0.1052,0.1087,0.0952,0.1072,0.0633,0.1023,0.0924,0.1189,0.0924,0.0648
76590,37,0.0673,0.0945,0.1031,0.1063,0.0942,0.1092,0.0738,0.1045,0.0955,0.1028,0.1239,0.0648,0.0686,0.0924,0.0924,0.0921,0.0873,0.0951,0.0626,0.096,0.0858,0.0878,0.0974,0.0704,0.0663,0.0914,0.0932,0.0939,0.0877,0.0951,0.0698,0.1026,0.0871,0.0975,0.0923,0.0693,0.0716,0.0927,0.0993,0.1049,0.0902,0.1011,0.0708,0.1082,0.0987,0.1117,0.0925,0.0638,0.0674,0.0926,0.1158,0.1147,0.0907,0.1015,0.063,0.107,0.1039,0.111,0.0912,0.0725,0.0696,0.0971,0.1425,0.1183,0.1036,0.1159,0.0745,0.1078,0.1003,0.1268,0.1063,0.0645,0.0637,0.0919,0.0965,0.1021,0.0897,0.0949,0.0638,0.1055,0.0929,0.1229,0.0896,0.0674,0.0687,0.0937,0.1051,0.1086,0.096,0.1083,0.065,0.1034,0.095,0.125,0.0939,0.0668
76680,37,0.068,0.0945,0.1029,0.1053,0.0934,0.1073,0.0668,0.1021,0.0927,0.0988,0.1199,0.068,0.0732,0.0926,0.0915,0.0911,0.087,0.0942,0.0654,0.0949,0.0853,0.0871,0.1047,0.0666,0.0692,0.0914,0.0921,0.0927,0.0869,0.0938,0.0634,0.1012,0.086,0.0951,0.0912,0.0703,0.0714,0.0926,0.0984,0.1039,0.0894,0.0999,0.0688,0.107,0.0953,0.1066,0.0911,0.0652,0.0684,0.0929,0.1151,0.1137,0.0895,0.0995,0.0629,0.105,0.1003,0.1064,0.0896,0.0681,0.0703,0.0975,0.1428,0.1163,0.1002,0.1117,0.067,0.1055,0.096,0.1211,0.1027,0.0651,0.0648,0.0914,0.096,0.1021,0.0893,0.0942,0.0654,0.1043,0.09,0.1162,0.0889,0.0652,0.0687,0.0938,0.1051,0.1085,0.0952,0.1074,0.0604,0.102,0.0927,0.1199,0.0927,0.0696
76770,37,0.0691,0.0949,0.1034,0.1068,0.0948,0.1094,0.0722,0.1037,0.0951,0.1014,0.1262,0.0664,0.0723,0.0928,0.0924,0.0923,0.0873,0.0949,0.0619,0.096,0.0858,0.088,0.1026,0.0678,0.0689,0.0918,0.0933,0.0937,0.0875,0.0946,0.0649,0.1022,0.0871,0.0982,0.092,0.074,0.07,0.0926,0.0991,0.105,0.0899,0.1009,0.0674,0.1082,0.0978,0.1125,0.0926,0.064,0.0668,0.0928,0.1159,0.1151,0.0906,0.1016,0.064,0.1069,0.1043,0.1108,0.0909,0.0694,0.07,0.0968,0.1429,0.1189,0.1033,0.115,0.0711,0.1077,0.0985,0.1257,0.1058,0.0638,0.064,0.0923,0.0968,0.1026,0.0895,0.0948,0.0639,0.1057,0.0933,0.1244,0.0893,0.065,0.0698,0.0937,0.105,0.1088,0.096,0.1085,0.0637,0.1036,0.095,0.126,0.0941,0.0658
76860,37,0.0687,0.0949,0.1033,0.1065,0.0943,0.1088,0.0686,0.1038,0.0953,0.1017,0.128,0.0664,0.0725,0.0926,0.0922,0.0917,0.087,0.0949,0.0668,0.0966,0.086,0.0882,0.1023,0.0668,0.0676,0.0918,0.0931,0.093,0.0871,0.0945,0.0652,0.1022,0.0869,0.0989,0.0929,0.0752,0.0722,0.093,0.0987,0.1048,0.09,0.1009,0.0715,0.1087,0.0979,0.1126,0.0924,0.0626,0.0654,0.0924,0.1156,0.1144,0.0903,0.1022,0.0655,0.1066,0.1033,0.109,0.0904,0.0639,0.0693,0.0969,0.1428,0.1184,0.1034,0.1151,0.0637,0.1068,0.0986,0.1259,0.105,0.0664,0.0636,0.0924,0.0968,0.1027,0.0898,0.0951,0.0656,0.1053,0.092,0.1204,0.089,0.0662,0.07,0.0937,0.1053,0.1093,0.0956,0.1086,0.0639,0.1034,0.0944,0.1266,0.0946,0.0665
76950,37,0.0708,0.0952,0.1036,0.1065,0.0944,0.1088,0.0655,0.1032,0.095,0.1016,0.129,0.068,0.0743,0.0936,0.092,0.0913,0.0872,0.0947,0.0674,0.0964,0.0856,0.088,0.0997,0.0663,0.0715,0.0919,0.0925,0.0928,0.0872,0.0947,0.0635,0.1021,0.0871,0.098,0.0935,0.072,0.0713,0.0926,0.0988,0.1048,0.0898,0.1008,0.0675,0.1086,0.0983,0.1115,0.0927,0.0678,0.0658,0.0928,0.1162,0.1157,0.0914,0.1024,0.0683,0.1059,0.103,0.1092,0.0902,0.063,0.0697,0.0971,0.143,0.119,0.1025,0.1148,0.0645,0.1068,0.0966,0.1266,0.1045,0.0692,0.0649,0.0925,0.0975,0.1037,0.0904,0.0955,0.0698,0.105,0.0904,0.1198,0.0894,0.0645,0.072,0.0936,0.1054,0.1096,0.0957,0.1085,0.0642,0.1034,0.0951,0.1276,0.0947,0.0684
77040,37,0.0676,0.0949,0.1033,0.1056,0.0935,0.1082,0.0681,0.1014,0.0921,0.0989,0.1237,0.0661,0.0757,0.0923,0.0918,0.0908,0.0868,0.0942,0.0628,0.095,0.0852,0.0874,0.096,0.068,0.0679,0.0917,0.0926,0.0925,0.0867,0.0943,0.0619,0.1009,0.086,0.0953,0.0938,0.0684,0.0689,0.0923,0.0982,0.1039,0.0896,0.0999,0.0643,0.107,0.095,0.1076,0.0909,0.0641,0.0663,0.0932,0.1151,0.1141,0.0897,0.1003,0.0658,0.1053,0.1006,0.1054,0.0897,0.0667,0.0696,0.0972,0.1433,0.1169,0.1001,0.1116,0.0634,0.1055,0.0951,0.1197,0.101,0.066,0.0646,0.092,0.0962,0.1021,0.0891,0.0942,0.0657,0.1044,0.0895,0.1168,0.0883,0.0647,0.0706,0.0939,0.1052,0.109,0.0949,0.1078,0.0632,0.1026,0.0929,0.119,0.0933,0.0696
77130,37,0.0659,0.0947,0.1032,0.1055,0.0934,0.108,0.073,0.1023,0.093,0.0995,0.1235,0.0656,0.0716,0.0925,0.0917,0.0912,0.0868,0.0942,0.0616,0.0954,0.085,0.0869,0.0962,0.0703,0.0679,0.0914,0.0925,0.0927,0.0865,0.0939,0.0619,0.101,0.0856,0.0954,0.0934,0.0731,0.072,0.0926,0.0982,0.1038,0.0894,0.1002,0.0736,0.1076,0.0966,0.1076,0.0911,0.0638,0.0659,0.0928,0.1149,0.1137,0.0891,0.0994,0.0645,0.1052,0.101,0.1065,0.0902,0.0736,0.0686,0.0973,0.1437,0.1165,0.1006,0.1125,0.0701,0.106,0.0968,0.1207,0.1008,0.0639,0.0637,0.092,0.096,0.1013,0.0885,0.094,0.0628,0.104,0.0903,0.117,0.088,0.0644,0.0683,0.0938,0.1054,0.1087,0.0952,0.1078,0.0625,0.1025,0.0928,0.1207,0.093,0.0707
77220,37,0.0687,0.0947,0.103,0.1052,0.0934,0.1078,0.0685,0.1019,0.0927,0.0985,0.1236,0.0675,0.0751,0.0928,0.092,0.091,0.087,0.0943,0.0652,0.0953,0.0848,0.0872,0.0953,0.0711,0.0682,0.0914,0.0922,0.0927,0.0868,0.0937,0.0638,0.1006,0.0854,0.0947,0.0933,0.0689,0.0708,0.0928,0.0988,0.1041,0.0892,0.0999,0.0668,0.1068,0.0959,0.108,0.0911,0.0664,0.0674,0.0932,0.115,0.1144,0.0896,0.0995,0.0621,0.1044,0.0993,0.1046,0.0894,0.0642,0.0692,0.0976,0.1436,0.1169,0.0999,0.1128,0.0627,0.1055,0.0948,0.1206,0.1005,0.0673,0.0651,0.0919,0.0963,0.1025,0.0895,0.0946,0.0676,0.1043,0.0892,0.1132,0.0877,0.0638,0.0728,0.0936,0.1052,0.109,0.0949,0.1077,0.0619,0.102,0.0923,0.1203,0.0933,0.0719
77310,37,0.0699,0.0952,0.1039,0.1071,0.0947,0.1096,0.0682,0.1031,0.0942,0.1015,0.1291,0.0665,0.075,0.0935,0.0923,0.0919,0.0873,0.095,0.0645,0.0963,0.0856,0.0881,0.098,0.0705,0.0714,0.092,0.0928,0.0933,0.0873,0.0947,0.063,0.1026,0.0874,0.0983,0.093,0.0689,0.0676,0.0925,0.0993,0.1054,0.0897,0.1012,0.0642,0.1082,0.0985,0.1122,0.0921,0.0663,0.0655,0.0929,0.1167,0.1159,0.0913,0.1027,0.0691,0.1071,0.1037,0.1097,0.0907,0.0652,0.0685,0.0969,0.1434,0.1192,0.1028,0.1161,0.0634,0.1067,0.0986,0.1249,0.103,0.0674,0.0646,0.0924,0.0972,0.1034,0.09,0.0955,0.0688,0.1057,0.0914,0.1201,0.0898,0.0645,0.0745,0.0937,0.1056,0.1097,0.0951,0.1088,0.0626,0.1036,0.0951,0.1257,0.0954,0.0668
77400,37,0.0703,0.0952,0.1036,0.1064,0.0942,0.1092,0.0655,0.1035,0.095,0.1023,0.1386,0.0673,0.0721,0.0932,0.0921,0.0916,0.0872,0.0949,0.0656,0.0966,0.086,0.0883,0.097,0.0678,0.0697,0.0912,0.0927,0.0928,0.0868,0.0948,0.0645,0.1028,0.0878,0.0985,0.0932,0.0685,0.0672,0.0923,0.0984,0.1046,0.0899,0.1012,0.0706,0.1087,0.0992,0.1121,0.092,0.0652,0.0656,0.0923,0.1158,0.1151,0.091,0.103,0.0679,0.1065,0.1039,0.1101,0.0911,0.0639,0.0685,0.097,0.143,0.1197,0.1045,0.1158,0.0666,0.1072,0.0997,0.1252,0.1016,0.0668,0.0644,0.0922,0.0969,0.1029,0.09,0.0958,0.0687,0.105,0.0914,0.1215,0.0897,0.0648,0.0742,0.0938,0.1056,0.1097,0.0956,0.1084,0.0621,0.1036,0.0949,0.1266,0.0989,0.067
77490,37,0.0765,0.0951,0.1035,0.1064,0.0942,0.1091,0.0645,0.1034,0.0952,0.1024,0.1384,0.0694,0.0738,0.0935,0.092,0.0914,0.0872,0.0948,0.0675,0.0967,0.0861,0.0884,0.0969,0.0696,0.0714,0.0918,0.0918,0.0927,0.0871,0.0951,0.064,0.1023,0.0875,0.0985,0.0923,0.0678,0.0684,0.0926,0.0988,0.105,0.09,0.1012,0.0676,0.1083,0.0987,0.1114,0.092,0.0683,0.0666,0.0924,0.1163,0.1155,0.0914,0.1027,0.0684,0.1066,0.1036,0.1103,0.0906,0.063,0.0702,0.0969,0.1432,0.1196,0.1031,0.1162,0.0635,0.1065,0.0982,0.1261,0.1017,0.069,0.0642,0.092,0.097,0.1036,0.0905,0.0957,0.0692,0.1062,0.0922,0.1211,0.0895,0.064,0.0753,0.0935,0.1054,0.1096,0.0954,0.1083,0.0626,0.1032,0.0948,0.1261,0.0958,0.0727
77580,37,0.0683,0.0951,0.1034,0.106,0.0939,0.108,0.0682,0.1023,0.0928,0.0989,0.1282,0.0662,0.074,0.0926,0.0918,0.0914,0.0868,0.0938,0.0632,0.0952,0.0854,0.0874,0.095,0.0688,0.0696,0.0913,0.092,0.0928,0.0868,0.0941,0.0628,0.1014,0.0862,0.0958,0.0926,0.0682,0.069,0.0923,0.0985,0.1042,0.0896,0.0997,0.0701,0.1071,0.0968,0.1074,0.0907,0.0638,0.0659,0.0925,0.1154,0.1141,0.0895,0.1006,0.0662,0.1057,0.1018,0.1063,0.0901,0.0676,0.0695,0.097,0.1434,0.1172,0.101,0.1123,0.0705,0.106,0.0961,0.1202,0.0983,0.0646,0.0638,0.0913,0.0958,0.1023,0.0894,0.0943,0.0666,0.1048,0.0908,0.1166,0.0884,0.063,0.0712,0.0937,0.1058,0.1092,0.0947,0.1079,0.0653,0.1023,0.093,0.1209,0.0954,0.0689
77670,37,0.0692,0.0951,0.1037,0.107,0.0948,0.1099,0.0708,0.104,0.0955,0.102,0.1368,0.0664,0.0722,0.0927,0.0922,0.0916,0.0875,0.0949,0.0651,0.0966,0.086,0.0881,0.0967,0.0682,0.0693,0.0918,0.0925,0.0935,0.0876,0.0946,0.0626,0.1025,0.0876,0.0982,0.0941,0.0724,0.0722,0.0925,0.0988,0.1049,0.0902,0.101,0.0752,0.1087,0.0996,0.1134,0.0928,0.0647,0.0665,0.0926,0.116,0.1152,0.0907,0.1021,0.0626,0.107,0.1054,0.1122,0.0912,0.0719,0.0701,0.097,0.1433,0.1184,0.1046,0.1165,0.0742,0.1074,0.1011,0.1275,0.1012,0.0645,0.0639,0.0921,0.0965,0.1026,0.0898,0.0951,0.064,0.1058,0.094,0.1243,0.0895,0.065,0.0678,0.094,0.1055,0.1091,0.0962,0.1087,0.0643,0.1035,0.0959,0.1271,0.0998,0.0662
77760,37,0.0697,0.0946,0.1032,0.1067,0.0947,0.1094,0.0702,0.1044,0.0957,0.1014,0.134,0.0686,0.0712,0.093,0.0922,0.092,0.0874,0.0947,0.0627,0.0962,0.0855,0.0876,0.0963,0.072,0.0702,0.0915,0.0929,0.094,0.088,0.0951,0.0688,0.102,0.0869,0.0972,0.094,0.0665,0.0699,0.0928,0.0995,0.1054,0.09,0.1011,0.0676,0.1084,0.0979,0.1125,0.0929,0.0669,0.069,0.0932,0.1174,0.116,0.0915,0.1019,0.0645,0.1066,0.104,0.1118,0.0912,0.0693,0.0706,0.0973,0.1437,0.1189,0.1029,0.1156,0.0667,0.1074,0.0997,0.1287,0.102,0.0685,0.0656,0.0923,0.0972,0.1032,0.0898,0.0946,0.0634,0.1054,0.093,0.1245,0.0897,0.0651,0.0687,0.0937,0.1054,0.1089,0.0959,0.1088,0.0629,0.1033,0.0955,0.1273,0.0986,0.0673
77850,37,0.0699,0.0946,0.1032,0.1069,0.0949,0.1101,0.077,0.1046,0.0959,0.1018,0.133,0.0666,0.071,0.0926,0.0921,0.0926,0.0875,0.0949,0.0625,0.096,0.0856,0.0874,0.0961,0.0706,0.0672,0.0915,0.0932,0.0942,0.0879,0.0955,0.0728,0.1024,0.0874,0.0971,0.0947,0.0655,0.0705,0.0927,0.0992,0.106,0.0907,0.1012,0.0668,0.1078,0.1,0.1122,0.0929,0.0658,0.0675,0.0933,0.1174,0.1159,0.0912,0.1018,0.0627,0.1067,0.1046,0.1117,0.0915,0.0732,0.0705,0.097,0.1436,0.1194,0.1036,0.1161,0.0733,0.1078,0.1005,0.1287,0.1022,0.0656,0.0639,0.0923,0.0969,0.103,0.0896,0.0946,0.064,0.1057,0.0939,0.1252,0.0901,0.0662,0.069,0.0938,0.1054,0.109,0.0959,0.1089,0.0653,0.1037,0.0965,0.1275,0.0999,0.0657
77940,37,0.0683,0.095,0.1034,0.1069,0.0945,0.1094,0.069,0.1043,0.0962,0.1022,0.1363,0.0657,0.0712,0.0927,0.092,0.0915,0.0872,0.0948,0.0667,0.0963,0.0859,0.0878,0.0963,0.0691,0.0673,0.0917,0.0929,0.0936,0.0875,0.0945,0.0637,0.1027,0.0872,0.098,0.095,0.0744,0.0723,0.0929,0.0986,0.1051,0.0901,0.1007,0.0735,0.1085,0.0996,0.1132,0.0934,0.0673,0.0666,0.0929,0.1166,0.1153,0.0908,0.1018,0.0635,0.1068,0.1048,0.1122,0.0915,0.0729,0.0696,0.0971,0.1437,0.1179,0.1036,0.1162,0.0727,0.1077,0.1006,0.1297,0.1013,0.0643,0.064,0.0924,0.0969,0.1026,0.0894,0.0947,0.0636,0.1054,0.0936,0.1246,0.0897,0.0671,0.0671,0.0938,0.1056,0.109,0.0962,0.1089,0.0662,0.1036,0.0967,0.1278,0.1025,0.0654
78030,37,0.0692,0.095,0.1035,0.1072,0.0948,0.1101,0.071,0.1035,0.0952,0.1014,0.1339,0.0692,0.0746,0.0934,0.092,0.0914,0.0872,0.0949,0.0666,0.0964,0.0857,0.0877,0.096,0.0709,0.0722,0.0922,0.0929,0.0942,0.0877,0.0943,0.0644,0.1021,0.0869,0.0978,0.0952,0.0696,0.069,0.093,0.0989,0.1053,0.0894,0.1008,0.0679,0.1084,0.0983,0.1125,0.0932,0.0663,0.066,0.0929,0.1168,0.1156,0.0909,0.1021,0.0632,0.1067,0.1042,0.1114,0.0912,0.067,0.0702,0.0971,0.1436,0.1188,0.1033,0.1154,0.0625,0.1069,0.099,0.1273,0.1008,0.066,0.0643,0.0924,0.097,0.1031,0.09,0.0951,0.0658,0.1054,0.0929,0.123,0.0892,0.0658,0.0715,0.0937,0.1055,0.1091,0.0957,0.1089,0.0619,0.1033,0.0958,0.1282,0.1011,0.0717
78120,37,0.0676,0.0949,0.1034,0.1071,0.0948,0.1102,0.0726,0.1039,0.095,0.1016,0.1346,0.0674,0.0746,0.0933,0.0923,0.092,0.0874,0.095,0.0642,0.0964,0.0857,0.0877,0.0956,0.0705,0.0689,0.0922,0.093,0.094,0.0873,0.0949,0.0661,0.1025,0.0868,0.0981,0.0952,0.0701,0.0707,0.0926,0.0989,0.1054,0.0902,0.1011,0.0712,0.1085,0.0994,0.1133,0.0927,0.0662,0.0659,0.0928,0.1168,0.1159,0.091,0.1025,0.0675,0.1069,0.1047,0.1117,0.0912,0.0726,0.0711,0.0973,0.1438,0.1187,0.1043,0.1162,0.0705,0.1076,0.1003,0.1284,0.1008,0.0646,0.0635,0.0924,0.0969,0.1029,0.0895,0.0947,0.0643,0.1058,0.0933,0.1258,0.0896,0.0657,0.0695,0.0939,0.1056,0.1091,0.0959,0.1092,0.0639,0.104,0.0967,0.1277,0.1025,0.0692
78210,37,0.0702,0.095,0.1032,0.1069,0.0944,0.1097,0.0697,0.1039,0.0954,0.1015,0.1324,0.0661,0.0708,0.0927,0.0919,0.0919,0.0871,0.0946,0.0655,0.0965,0.0857,0.0876,0.0953,0.0703,0.0677,0.0916,0.0929,0.0938,0.0877,0.0947,0.0652,0.1023,0.0865,0.0972,0.0952,0.0692,0.0727,0.0927,0.0989,0.1051,0.0901,0.1008,0.0678,0.1084,0.0982,0.1133,0.0929,0.0667,0.0676,0.0934,0.1167,0.1154,0.0905,0.1015,0.0621,0.1064,0.1041,0.1118,0.0916,0.0719,0.0691,0.0975,0.144,0.1179,0.1031,0.116,0.0702,0.1078,0.1009,0.1303,0.1006,0.0668,0.0651,0.093,0.0972,0.1026,0.0891,0.0949,0.0634,0.1052,0.0928,0.1251,0.0892,0.068,0.0661,0.0941,0.1056,0.1086,0.0961,0.1091,0.0622,0.1038,0.0966,0.1288,0.1027,0.0664
78300,37,0.0678,0.0946,0.1028,0.1056,0.0938,0.1086,0.0715,0.1027,0.0929,0.0982,0.123,0.0683,0.0748,0.0929,0.0918,0.0913,0.0867,0.0943,0.0649,0.0952,0.085,0.0869,0.093,0.0723,0.068,0.0917,0.0923,0.0931,0.087,0.0939,0.0652,0.1008,0.0852,0.0947,0.0943,0.0675,0.0713,0.0926,0.0983,0.1042,0.0893,0.1,0.0665,0.107,0.0952,0.1069,0.0914,0.0661,0.0672,0.0932,0.1157,0.1143,0.0895,0.1001,0.0618,0.1048,0.1006,0.1072,0.0896,0.0671,0.0683,0.0977,0.1446,0.1172,0.1002,0.1126,0.0625,0.1056,0.0959,0.1223,0.0976,0.0645,0.0668,0.0923,0.0967,0.103,0.089,0.0943,0.0654,0.1044,0.0899,0.1191,0.088,0.0648,0.0721,0.094,0.1058,0.1089,0.0952,0.1083,0.0617,0.1025,0.0939,0.1228,0.1011,0.0686
78390,37,0.0686,0.095,0.1031,0.1062,0.0939,0.1091,0.0761,0.1025,0.0927,0.0984,0.1252,0.0667,0.0738,0.0924,0.0918,0.0916,0.0869,0.0942,0.0643,0.0952,0.0851,0.0867,0.0932,0.071,0.0669,0.0918,0.0924,0.0932,0.087,0.0939,0.0663,0.1012,0.0855,0.0947,0.0945,0.068,0.0711,0.0924,0.0986,0.1046,0.0894,0.1,0.0656,0.107,0.0968,0.108,0.0914,0.0647,0.0666,0.0931,0.1158,0.1141,0.0893,0.1002,0.0632,0.1054,0.1015,0.1079,0.0903,0.0711,0.0696,0.0976,0.1439,0.1178,0.1015,0.1136,0.069,0.1059,0.0975,0.122,0.0975,0.0658,0.0642,0.0919,0.0961,0.1021,0.0891,0.0943,0.0667,0.1048,0.0902,0.1184,0.0883,0.0658,0.0707,0.0939,0.1057,0.1092,0.0948,0.1084,0.0628,0.1027,0.0938,0.1223,0.1022,0.0691
78480,37,0.0668,0.095,0.1032,0.1062,0.0938,0.1084,0.0673,0.1026,0.0933,0.0993,0.1297,0.067,0.0755,0.0926,0.0918,0.0912,0.0869,0.0939,0.0664,0.0957,0.0853,0.0877,0.0934,0.0694,0.0702,0.0914,0.0919,0.0923,0.0865,0.0937,0.0639,0.1011,0.086,0.0956,0.0949,0.0753,0.0715,0.0924,0.0978,0.1038,0.0893,0.0993,0.0721,0.1074,0.0968,0.1087,0.0912,0.063,0.0657,0.0926,0.1152,0.1139,0.0894,0.1006,0.0648,0.1053,0.1016,0.1067,0.0899,0.0658,0.0684,0.0976,0.1438,0.1171,0.1012,0.1132,0.068,0.106,0.0976,0.123,0.0969,0.0648,0.0639,0.092,0.0963,0.1023,0.0892,0.0944,0.0668,0.1046,0.0898,0.1175,0.0882,0.0657,0.0727,0.0937,0.1055,0.1091,0.0947,0.1078,0.0614,0.1023,0.0943,0.1232,0.1023,0.0669
78570,37,0.0692,0.0951,0.1031,0.1065,0.0939,0.1087,0.0672,0.1021,0.0929,0.0988,0.1272,0.0691,0.0754,0.0926,0.0911,0.0907,0.0866,0.094,0.0647,0.0953,0.0851,0.0869,0.0933,0.0683,0.0706,0.0915,0.0916,0.0926,0.0867,0.0939,0.0626,0.1012,0.0862,0.0958,0.0935,0.0684,0.071,0.0923,0.0979,0.1043,0.0891,0.1,0.066,0.107,0.0961,0.1082,0.0911,0.065,0.065,0.0927,0.1158,0.1142,0.0898,0.1005,0.0659,0.1053,0.101,0.1063,0.0896,0.064,0.0706,0.0976,0.144,0.1182,0.1014,0.1131,0.0634,0.1055,0.0968,0.1208,0.0969,0.0665,0.0641,0.0917,0.096,0.1025,0.0893,0.0945,0.0669,0.105,0.0911,0.1173,0.0881,0.0634,0.073,0.0936,0.106,0.1097,0.0948,0.1079,0.0649,0.1024,0.0937,0.1202,0.1043,0.0708
78660,37,0.0681,0.0952,0.1036,0.1082,0.0949,0.1106,0.0707,0.104,0.0959,0.1019,0.1339,0.0653,0.0753,0.093,0.092,0.0923,0.0874,0.0945,0.0633,0.0967,0.0858,0.088,0.0943,0.0674,0.0704,0.0918,0.0927,0.0933,0.0874,0.0947,0.063,0.1029,0.088,0.0992,0.0943,0.0733,0.0691,0.0924,0.0984,0.1051,0.09,0.1015,0.0711,0.1085,0.0999,0.1133,0.0923,0.0659,0.0655,0.0924,0.1168,0.1157,0.0915,0.1031,0.0683,0.1072,0.1052,0.1116,0.091,0.0689,0.0684,0.0969,0.1437,0.1195,0.105,0.1175,0.0671,0.1074,0.1004,0.1282,0.0991,0.0665,0.0639,0.092,0.0965,0.1029,0.0897,0.0952,0.0669,0.1058,0.0933,0.1227,0.0896,0.0648,0.0725,0.0934,0.1058,0.1098,0.0957,0.1091,0.0617,0.1038,0.0965,0.1291,0.1047,0.0666
78750,37,0.0729,0.0953,0.1035,0.1076,0.0948,0.11,0.0654,0.1039,0.0959,0.1019,0.1352,0.0684,0.0736,0.0932,0.092,0.0917,0.0874,0.0945,0.0675,0.0968,0.0861,0.088,0.0945,0.0683,0.0726,0.0915,0.0923,0.0932,0.0871,0.0938,0.0648,0.1026,0.0874,0.0993,0.094,0.0742,0.0712,0.0925,0.0986,0.1049,0.0899,0.1002,0.0732,0.1086,0.0999,0.1123,0.093,0.0655,0.0668,0.093,0.1165,0.115,0.091,0.1026,0.064,0.1071,0.1052,0.1122,0.0912,0.0687,0.0703,0.0971,0.1437,0.1188,0.1046,0.1162,0.069,0.1072,0.1007,0.1288,0.0988,0.064,0.0651,0.092,0.0965,0.1024,0.0897,0.0952,0.0656,0.1056,0.093,0.1246,0.0893,0.0663,0.0702,0.0941,0.1059,0.1096,0.0961,0.1093,0.0613,0.1037,0.0967,0.1294,0.1052,0.0673
78840,37,0.0682,0.0951,0.1035,0.1066,0.0944,0.109,0.0693,0.1024,0.0933,0.0981,0.127,0.0682,0.0756,0.0927,0.0918,0.0907,0.0868,0.0941,0.0652,0.0954,0.0853,0.0868,0.093,0.0699,0.0688,0.0915,0.092,0.0932,0.0872,0.0935,0.0641,0.1015,0.0861,0.0955,0.0929,0.0672,0.0724,0.0925,0.0979,0.1037,0.0895,0.0996,0.0704,0.1074,0.0959,0.1082,0.0916,0.064,0.0666,0.0929,0.1159,0.1144,0.0898,0.1001,0.0621,0.1052,0.1018,0.1078,0.09,0.0701,0.0694,0.0978,0.1445,0.1171,0.1011,0.1134,0.0694,0.106,0.0979,0.1228,0.097,0.0634,0.0645,0.0917,0.096,0.1024,0.0892,0.0943,0.0657,0.1045,0.0913,0.1196,0.0881,0.0646,0.0707,0.0939,0.106,0.1094,0.0952,0.1083,0.0639,0.1026,0.0948,0.1238,0.103,0.066
78930,37,0.0673,0.095,0.1032,0.1072,0.095,0.1109,0.0771,0.1043,0.0962,0.1021,0.1351,0.0653,0.0714,0.0923,0.0923,0.0927,0.0872,0.0947,0.0619,0.0967,0.086,0.0876,0.0937,0.0691,0.0664,0.0918,0.0928,0.094,0.0876,0.0948,0.0671,0.1028,0.0872,0.0983,0.0936,0.0712,0.0711,0.0924,0.099,0.1053,0.0904,0.101,0.0717,0.1088,0.0994,0.1137,0.0933,0.0645,0.0659,0.0929,0.1168,0.1153,0.0912,0.1018,0.0627,0.107,0.106,0.1126,0.0918,0.0755,0.0683,0.0973,0.144,0.1181,0.105,0.1174,0.0755,0.1081,0.1016,0.1304,0.0992,0.0643,0.0647,0.0924,0.0966,0.1027,0.0895,0.0949,0.0635,0.1056,0.0943,0.1264,0.0899,0.0665,0.0689,0.0939,0.106,0.1094,0.0962,0.1095,0.0668,0.104,0.0978,0.13,0.1055,0.0644
79020,37,0.0676,0.0947,0.1031,0.1069,0.0948,0.1101,0.071,0.1044,0.0963,0.1013,0.1332,0.0654,0.0691,0.0925,0.092,0.0919,0.0871,0.0945,0.0638,0.0964,0.0857,0.0876,0.0936,0.0692,0.0693,0.0914,0.0924,0.0939,0.0877,0.0944,0.0662,0.1023,0.0868,0.0974,0.094,0.0694,0.0701,0.0925,0.0987,0.1057,0.0901,0.1006,0.0697,0.1084,0.099,0.113,0.0932,0.0662,0.0656,0.0932,0.1175,0.1161,0.0912,0.1017,0.0645,0.1062,0.1046,0.1117,0.0919,0.0689,0.0669,0.0975,0.1447,0.1184,0.1039,0.1167,0.0707,0.1078,0.1013,0.1317,0.099,0.0653,0.0666,0.0929,0.0975,0.1029,0.0892,0.095,0.062,0.1048,0.0931,0.127,0.0897,0.0675,0.0662,0.0943,0.106,0.109,0.096,0.1096,0.0706,0.1037,0.0977,0.1309,0.108,0.0657
79110,37,0.0695,0.0944,0.1026,0.1058,0.0938,0.1088,0.0704,0.1032,0.0938,0.0981,0.1247,0.0677,0.0686,0.0922,0.0912,0.0908,0.0864,0.094,0.0616,0.0952,0.0848,0.0866,0.0923,0.0723,0.0663,0.0911,0.0923,0.0935,0.0872,0.0941,0.0715,0.1011,0.0858,0.0937,0.0921,0.066,0.0679,0.0922,0.0985,0.105,0.0896,0.0993,0.0662,0.1068,0.0949,0.1066,0.0915,0.0674,0.0659,0.093,0.117,0.1159,0.091,0.1002,0.0721,0.1042,0.0999,0.1047,0.0894,0.0647,0.069,0.0978,0.1454,0.1182,0.1008,0.113,0.0664,0.1056,0.0967,0.1254,0.0969,0.0655,0.0668,0.0923,0.097,0.1027,0.089,0.0941,0.0633,0.1037,0.0904,0.1208,0.0881,0.0667,0.0668,0.0944,0.1063,0.1093,0.0952,0.1086,0.0668,0.103,0.0958,0.1246,0.1042,0.0657
79200,37,0.0681,0.0948,0.103,0.1068,0.0947,0.1107,0.074,0.1049,0.0969,0.1016,0.1282,0.0652,0.07,0.0927,0.0921,0.0924,0.0872,0.0948,0.0638,0.0963,0.0859,0.0876,0.0933,0.0701,0.066,0.0917,0.0931,0.0942,0.0879,0.0949,0.0718,0.1028,0.0873,0.0974,0.0933,0.0672,0.0669,0.0921,0.0996,0.1061,0.0902,0.1012,0.0658,0.1084,0.0993,0.1135,0.0936,0.0658,0.067,0.0932,0.1179,0.116,0.0912,0.102,0.0634,0.1067,0.1047,0.112,0.0917,0.0722,0.0701,0.0973,0.1444,0.1195,0.1039,0.1173,0.0738,0.1082,0.1012,0.1317,0.0992,0.0643,0.0653,0.0927,0.0972,0.1029,0.0892,0.0942,0.0636,0.1054,0.0941,0.1277,0.0903,0.0676,0.067,0.0944,0.106,0.109,0.0965,0.1098,0.0696,0.1041,0.0982,0.1311,0.1057,0.0644
79290,37,0.0697,0.0948,0.1032,0.1068,0.0945,0.1102,0.0698,0.1045,0.0964,0.1016,0.1299,0.0661,0.0688,0.0927,0.0915,0.0919,0.0873,0.0946,0.0617,0.0967,0.0856,0.0874,0.0936,0.0709,0.0692,0.0915,0.0928,0.094,0.0876,0.0947,0.0651,0.1022,0.0872,0.0972,0.0931,0.0674,0.0701,0.0927,0.0992,0.1058,0.0899,0.1007,0.0678,0.1087,0.0986,0.1123,0.0935,0.067,0.0666,0.0936,0.1175,0.1158,0.0911,0.1014,0.0642,0.1057,0.1039,0.1112,0.0912,0.0659,0.0662,0.0974,0.1449,0.1185,0.1036,0.1168,0.0686,0.1078,0.1011,0.1319,0.0998,0.0656,0.067,0.093,0.0975,0.1031,0.0894,0.0948,0.0625,0.1047,0.0927,0.1267,0.0896,0.0661,0.0685,0.094,0.1059,0.1093,0.0964,0.1096,0.0666,0.1039,0.0979,0.1317,0.1078,0.0663
79380,37,0.0668,0.0944,0.1026,0.1058,0.0939,0.109,0.0728,0.1037,0.0941,0.0982,0.1214,0.0667,0.0708,0.0924,0.0915,0.0914,0.0867,0.0941,0.0639,0.0951,0.0851,0.0868,0.0919,0.0719,0.0673,0.091,0.0925,0.0934,0.0872,0.0946,0.0765,0.1012,0.0859,0.0944,0.0917,0.0657,0.0686,0.0924,0.0985,0.1053,0.0891,0.0998,0.0647,0.107,0.0945,0.1076,0.0913,0.068,0.0676,0.0935,0.1173,0.1158,0.0905,0.1001,0.0694,0.1046,0.0999,0.1063,0.09,0.0666,0.0666,0.0978,0.1455,0.1175,0.101,0.1125,0.0648,0.1058,0.0968,0.1249,0.0962,0.0648,0.0654,0.0929,0.0972,0.1026,0.0887,0.0942,0.0636,0.104,0.0907,0.1214,0.0888,0.0661,0.0681,0.0939,0.1064,0.1091,0.0957,0.1088,0.0666,0.1033,0.0963,0.1245,0.1042,0.0645
79470,37,0.0665,0.0947,0.103,0.1073,0.0947,0.1106,0.0744,0.1048,0.0967,0.1012,0.1268,0.0656,0.0706,0.0923,0.0919,0.092,0.0874,0.0949,0.0648,0.0962,0.0853,0.0877,0.093,0.0713,0.066,0.0914,0.0931,0.0942,0.0877,0.0954,0.0793,0.1024,0.0873,0.0981,0.093,0.0668,0.0694,0.0925,0.0992,0.1065,0.09,0.101,0.0652,0.1086,0.0988,0.1127,0.0933,0.0676,0.0667,0.0934,0.1177,0.1164,0.0915,0.102,0.0656,0.1063,0.1039,0.112,0.0917,0.0694,0.0685,0.0973,0.1447,0.118,0.1044,0.1161,0.0703,0.1082,0.1013,0.1314,0.099,0.0656,0.0665,0.0931,0.0974,0.1023,0.0887,0.0946,0.0623,0.1047,0.0933,0.1272,0.0901,0.0676,0.0678,0.094,0.1058,0.1092,0.0964,0.1098,0.0687,0.1042,0.0983,0.1315,0.1086,0.0646
79560,37,0.0697,0.0947,0.1029,0.1065,0.0942,0.1103,0.07,0.1049,0.0968,0.1013,0.1251,0.0669,0.0686,0.0932,0.0916,0.0915,0.0872,0.0948,0.0626,0.0967,0.0858,0.0874,0.0927,0.0696,0.0689,0.0911,0.0925,0.0938,0.0876,0.0954,0.076,0.1024,0.0875,0.0967,0.0922,0.066,0.0687,0.0927,0.0992,0.1064,0.0902,0.1012,0.0657,0.1083,0.0986,0.1112,0.0926,0.0711,0.0677,0.0932,0.1179,0.1168,0.0921,0.1028,0.0724,0.1055,0.102,0.1095,0.0909,0.065,0.0685,0.0972,0.1451,0.1196,0.1035,0.1164,0.0647,0.1072,0.1001,0.1296,0.0989,0.0659,0.0659,0.0931,0.0981,0.1038,0.0898,0.0951,0.0674,0.1046,0.0918,0.1261,0.0899,0.0655,0.0678,0.0941,0.1063,0.1098,0.0965,0.1101,0.0626,0.1042,0.0981,0.1313,0.1064,0.0659
79650,37,0.0732,0.0947,0.1028,0.1066,0.0946,0.1107,0.0705,0.105,0.0972,0.1014,0.1254,0.0674,0.0684,0.0929,0.0917,0.0917,0.0873,0.0948,0.0643,0.0965,0.0858,0.0876,0.0925,0.0698,0.069,0.0911,0.0929,0.0935,0.0869,0.0956,0.0752,0.1029,0.0881,0.0976,0.0923,0.0641,0.0651,0.092,0.099,0.1064,0.0901,0.1012,0.0624,0.1079,0.0983,0.1117,0.0922,0.0694,0.0665,0.0927,0.1176,0.1165,0.0921,0.1036,0.0756,0.1063,0.1036,0.1102,0.0909,0.0631,0.0685,0.0968,0.1451,0.1202,0.1044,0.1176,0.0637,0.1068,0.1004,0.1292,0.0984,0.0671,0.0651,0.0931,0.0978,0.104,0.0898,0.0952,0.0715,0.1052,0.0923,0.1253,0.0904,0.0659,0.071,0.0937,0.1065,0.1102,0.0959,0.1098,0.0631,0.1038,0.0984,0.1308,0.1065,0.0653
79740,37,0.0747,0.0948,0.1026,0.1059,0.094,0.11,0.066,0.105,0.0979,0.1034,0.1281,0.0724,0.0687,0.0927,0.0912,0.0915,0.087,0.0948,0.0723,0.0973,0.0859,0.0879,0.0925,0.0677,0.0619,0.091,0.0924,0.0933,0.0871,0.0953,0.0743,0.1028,0.0882,0.0978,0.0926,0.064,0.0652,0.092,0.0989,0.1057,0.0909,0.1017,0.0639,0.1087,0.0986,0.113,0.092,0.0674,0.0656,0.0928,0.1174,0.1165,0.092,0.1032,0.0765,0.1061,0.1039,0.1121,0.0916,0.0661,0.0684,0.0974,0.1452,0.1198,0.1048,0.1171,0.0643,0.1076,0.1012,0.1313,0.0978,0.0644,0.0696,0.0929,0.0975,0.1031,0.0895,0.0952,0.0665,0.1049,0.0923,0.1268,0.0908,0.0646,0.0674,0.0944,0.1064,0.1098,0.0965,0.11,0.0676,0.1043,0.0988,0.1313,0.1062,0.0647
79830,37,0.0748,0.0946,0.1024,0.1052,0.0933,0.1086,0.0649,0.1033,0.095,0.0991,0.1222,0.0648,0.0687,0.0926,0.091,0.0908,0.0868,0.0942,0.0691,0.0957,0.0858,0.0871,0.0916,0.0697,0.0686,0.0905,0.0914,0.0925,0.0866,0.0944,0.0713,0.1017,0.0871,0.0951,0.0918,0.0646,0.0656,0.0917,0.098,0.1049,0.0893,0.1,0.062,0.1072,0.0963,0.1073,0.0905,0.0687,0.0659,0.0924,0.1165,0.1152,0.0908,0.1018,0.0765,0.1045,0.1003,0.1062,0.0894,0.0637,0.0681,0.0976,0.1453,0.1188,0.1017,0.1137,0.0644,0.1052,0.0961,0.1225,0.0961,0.0694,0.066,0.0922,0.0969,0.1038,0.0898,0.0949,0.0711,0.1041,0.0897,0.1184,0.0888,0.0653,0.0712,0.0941,0.107,0.11,0.0956,0.1089,0.062,0.1028,0.0959,0.1257,0.1048,0.0668
79920,37,0.0734,0.0949,0.1028,0.1067,0.0946,0.1105,0.0679,0.105,0.0976,0.102,0.125,0.0683,0.0677,0.0928,0.0915,0.0918,0.0875,0.095,0.0686,0.0966,0.086,0.0877,0.0925,0.0681,0.0672,0.0907,0.0923,0.0934,0.0871,0.0955,0.076,0.1031,0.0883,0.0977,0.0922,0.065,0.0664,0.0921,0.0991,0.1065,0.0902,0.1011,0.063,0.1081,0.0995,0.112,0.0923,0.0708,0.0675,0.0929,0.118,0.1167,0.0923,0.103,0.0759,0.1065,0.1039,0.1111,0.0914,0.064,0.067,0.0973,0.145,0.121,0.1051,0.1177,0.0644,0.107,0.1017,0.1295,0.0975,0.0668,0.0652,0.0926,0.0973,0.1034,0.0897,0.095,0.0666,0.1053,0.0935,0.1272,0.0913,0.0663,0.0663,0.0939,0.1064,0.1098,0.0962,0.11,0.0662,0.1043,0.0992,0.1313,0.1068,0.0647
80010,37,0.0722,0.0944,0.1026,0.1064,0.0943,0.1103,0.0677,0.1056,0.0982,0.1019,0.1261,0.0667,0.0672,0.0924,0.0914,0.0917,0.0874,0.0949,0.0711,0.0969,0.0862,0.0877,0.0922,0.0674,0.0683,0.0907,0.092,0.0935,0.0877,0.0953,0.0752,0.1031,0.0883,0.0972,0.0925,0.065,0.066,0.0922,0.0988,0.1067,0.0898,0.1008,0.0629,0.1085,0.1004,0.1131,0.0927,0.0682,0.0653,0.0928,0.1176,0.1165,0.0923,0.1036,0.0765,0.1059,0.104,0.1112,0.0914,0.0649,0.0691,0.0972,0.1449,0.1205,0.1053,0.1176,0.0655,0.1076,0.1021,0.131,0.0984,0.0661,0.0663,0.0927,0.0974,0.1033,0.0894,0.0951,0.0658,0.105,0.0933,0.127,0.0908,0.0676,0.0677,0.0943,0.1064,0.1098,0.0967,0.1101,0.0697,0.1041,0.0986,0.1323,0.1066,0.0655
80100,37,0.074,0.0943,0.1022,0.1056,0.0936,0.109,0.0662,0.1038,0.0953,0.0989,0.1198,0.0644,0.0677,0.0919,0.0908,0.0908,0.0864,0.0938,0.0696,0.0954,0.0851,0.0871,0.0914,0.0668,0.0674,0.0902,0.0916,0.0933,0.0872,0.0946,0.0775,0.1017,0.0868,0.0946,0.0917,0.0649,0.0656,0.092,0.0983,0.1056,0.0892,0.0998,0.0618,0.107,0.0966,0.107,0.0908,0.0706,0.0662,0.0929,0.1174,0.1158,0.0911,0.1017,0.0772,0.1044,0.1004,0.1064,0.0898,0.0641,0.0678,0.0978,0.146,0.1179,0.1018,0.114,0.0666,0.1064,0.0981,0.1232,0.0957,0.0648,0.0658,0.092,0.0968,0.1031,0.0895,0.0944,0.0668,0.1039,0.0911,0.1216,0.089,0.0674,0.0675,0.094,0.1064,0.1094,0.0956,0.109,0.0661,0.1029,0.0966,0.1261,0.1046,0.0647
80190,37,0.0717,0.0947,0.1027,0.107,0.0947,0.1109,0.0724,0.1055,0.098,0.1019,0.1241,0.0667,0.0682,0.0928,0.0916,0.0917,0.0872,0.0946,0.0691,0.0964,0.0857,0.0874,0.092,0.0687,0.0675,0.0908,0.0924,0.094,0.0875,0.0954,0.0788,0.1032,0.0882,0.0974,0.0921,0.0645,0.0668,0.092,0.0993,0.1065,0.0902,0.1013,0.0617,0.1083,0.1005,0.1127,0.0928,0.0705,0.0652,0.0928,0.1181,0.1168,0.0924,0.1036,0.0748,0.1068,0.1049,0.1126,0.0914,0.0678,0.0684,0.0971,0.1452,0.1203,0.106,0.118,0.0709,0.1079,0.1024,0.1311,0.0982,0.0633,0.0672,0.0925,0.0971,0.1033,0.0895,0.0949,0.0643,0.1049,0.094,0.129,0.091,0.0668,0.0663,0.0941,0.1066,0.1097,0.0965,0.1103,0.0681,0.1046,0.1002,0.1318,0.1064,0.064
80280,37,0.0758,0.0945,0.1023,0.1064,0.0942,0.1098,0.0669,0.1058,0.0991,0.1023,0.1277,0.0678,0.067,0.0926,0.0906,0.0915,0.0873,0.0948,0.0764,0.0969,0.0863,0.0877,0.0923,0.0659,0.0662,0.0906,0.0921,0.0936,0.0875,0.0952,0.0738,0.103,0.0883,0.0984,0.0926,0.0656,0.0648,0.0922,0.0989,0.1064,0.0898,0.101,0.0644,0.1086,0.1002,0.1125,0.0932,0.0686,0.0653,0.0931,0.118,0.1164,0.092,0.1032,0.0666,0.1066,0.1049,0.1123,0.0914,0.0675,0.0683,0.0972,0.1449,0.12,0.1062,0.1179,0.0689,0.1077,0.1024,0.1317,0.0984,0.0643,0.0654,0.0926,0.0974,0.1035,0.0896,0.0949,0.0639,0.1047,0.0934,0.1273,0.0908,0.0679,0.0677,0.094,0.1064,0.1095,0.0966,0.1103,0.0733,0.1044,0.1003,0.1323,0.1064,0.0645
80370,37,0.0742,0.0947,0.1026,0.1057,0.0934,0.1086,0.0665,0.1038,0.0962,0.0993,0.1205,0.071,0.0692,0.0929,0.0905,0.0901,0.087,0.0935,0.073,0.0958,0.0857,0.0868,0.0917,0.0688,0.0715,0.0903,0.0909,0.0922,0.0859,0.0942,0.0663,0.1016,0.0872,0.0956,0.092,0.0651,0.0658,0.0922,0.098,0.1048,0.0891,0.0998,0.0669,0.1076,0.0964,0.1078,0.091,0.0658,0.0646,0.0921,0.1163,0.1151,0.0905,0.1017,0.0712,0.1052,0.1012,0.1069,0.0894,0.063,0.0694,0.0977,0.1451,0.119,0.1026,0.1141,0.063,0.1057,0.097,0.1228,0.0962,0.068,0.0656,0.0922,0.097,0.1036,0.0897,0.0944,0.07,0.1037,0.0899,0.1199,0.089,0.0678,0.0713,0.0939,0.1068,0.1095,0.0956,0.1094,0.064,0.103,0.0967,0.1266,0.1043,0.0671
80460,37,0.0752,0.095,0.103,0.1074,0.0945,0.1105,0.0643,0.1049,0.098,0.102,0.1252,0.0699,0.0695,0.0935,0.0919,0.0918,0.087,0.0945,0.0741,0.0972,0.0862,0.0878,0.0928,0.068,0.0713,0.0911,0.092,0.0933,0.0865,0.0946,0.067,0.1032,0.0885,0.0989,0.0924,0.0663,0.0664,0.0921,0.0987,0.1057,0.09,0.1013,0.0683,0.1088,0.1003,0.1127,0.0927,0.0668,0.065,0.0924,0.1175,0.1162,0.0921,0.1044,0.0715,0.1071,0.1053,0.1118,0.0907,0.0656,0.0676,0.097,0.1448,0.1201,0.1067,0.1187,0.0639,0.1075,0.1021,0.1284,0.0981,0.0668,0.0649,0.0925,0.0971,0.1038,0.09,0.0952,0.069,0.1057,0.0937,0.1278,0.091,0.0646,0.0742,0.0933,0.1064,0.1097,0.096,0.1105,0.0614,0.1041,0.0994,0.1324,0.1058,0.0669
80550,37,0.0738,0.0951,0.1032,0.1074,0.0942,0.1105,0.0639,0.1047,0.098,0.103,0.1302,0.0755,0.0681,0.0928,0.0913,0.0915,0.0872,0.0942,0.0719,0.0971,0.0864,0.088,0.0929,0.0662,0.0714,0.091,0.092,0.0932,0.0863,0.0949,0.0666,0.1034,0.0887,0.0996,0.0927,0.068,0.067,0.0922,0.0979,0.1057,0.0897,0.1012,0.0719,0.1089,0.0998,0.1138,0.0927,0.0645,0.065,0.092,0.1167,0.1158,0.0912,0.1041,0.0685,0.1068,0.1052,0.1122,0.0907,0.064,0.0666,0.0972,0.1447,0.1197,0.1064,0.1186,0.0616,0.107,0.1019,0.1301,0.0981,0.0681,0.0641,0.0926,0.0971,0.1034,0.0897,0.0953,0.0698,0.1054,0.0924,0.1255,0.0902,0.0661,0.0727,0.0939,0.1067,0.1098,0.0964,0.1106,0.0648,0.1042,0.0991,0.1333,0.1056,0.0665
80640,37,0.0759,0.0953,0.1032,0.1076,0.095,0.1108,0.0632,0.1046,0.0971,0.101,0.1244,0.0692,0.0716,0.0933,0.0915,0.0914,0.0869,0.0942,0.0654,0.0969,0.0856,0.0878,0.0926,0.0684,0.0729,0.0915,0.0922,0.0933,0.0868,0.0949,0.0654,0.1028,0.0882,0.0993,0.0925,0.0669,0.0682,0.0928,0.0979,0.1053,0.09,0.1007,0.0665,0.1087,0.0998,0.113,0.0926,0.0688,0.0656,0.0926,0.1178,0.1164,0.092,0.1041,0.0731,0.1065,0.1034,0.111,0.0903,0.0645,0.0674,0.0974,0.1453,0.121,0.1056,0.1184,0.0629,0.1072,0.1006,0.1294,0.0984,0.0699,0.0663,0.0929,0.0978,0.1047,0.0906,0.0956,0.0707,0.105,0.0919,0.124,0.0904,0.0656,0.0735,0.094,0.1064,0.1099,0.0964,0.1105,0.0647,0.1042,0.0994,0.1347,0.1054,0.0676
80730,37,0.0751,0.0952,0.1031,0.107,0.0948,0.1112,0.0669,0.1047,0.0975,0.1017,0.1248,0.0696,0.0698,0.0933,0.0916,0.0917,0.0872,0.0943,0.0687,0.0969,0.0854,0.0879,0.0923,0.0686,0.0686,0.0914,0.0923,0.0934,0.087,0.0953,0.0726,0.1031,0.0885,0.0987,0.0923,0.0658,0.0676,0.0925,0.0983,0.1061,0.0901,0.101,0.0635,0.1085,0.0991,0.1128,0.0923,0.0676,0.0656,0.0924,0.1172,0.1162,0.0919,0.1041,0.0711,0.1071,0.1046,0.1117,0.0908,0.0653,0.0695,0.0971,0.1451,0.1206,0.1066,0.1185,0.065,0.107,0.1012,0.1281,0.0984,0.0691,0.0655,0.0928,0.0974,0.1043,0.0902,0.0952,0.0708,0.1056,0.0932,0.1247,0.0905,0.0648,0.0722,0.0937,0.1066,0.11,0.096,0.1107,0.0637,0.1043,0.0988,0.1338,0.1052,0.0658
80820,37,0.0725,0.0949,0.1029,0.1068,0.0942,0.1107,0.0658,0.1048,0.098,0.1021,0.1262,0.0748,0.0684,0.093,0.0916,0.0915,0.0872,0.0946,0.0712,0.0974,0.0857,0.088,0.0922,0.0652,0.067,0.0911,0.092,0.0928,0.0865,0.0951,0.0687,0.1034,0.0888,0.099,0.0925,0.0655,0.0668,0.092,0.0979,0.1057,0.09,0.1013,0.0673,0.109,0.1004,0.1122,0.0923,0.067,0.0653,0.0923,0.1169,0.1159,0.0914,0.1042,0.0701,0.1065,0.1047,0.1118,0.091,0.0636,0.0674,0.097,0.1449,0.1199,0.1069,0.1184,0.0639,0.1076,0.1014,0.1308,0.0979,0.0674,0.0641,0.0927,0.0969,0.1032,0.0896,0.0953,0.0704,0.1053,0.0926,0.1256,0.0903,0.0664,0.0713,0.0938,0.1066,0.1099,0.0962,0.1107,0.0646,0.1042,0.0989,0.134,0.1048,0.0665
80910,37,0.073,0.0953,0.1033,0.1075,0.0949,0.111,0.0627,0.1043,0.0969,0.1008,0.1245,0.0689,0.074,0.0934,0.0916,0.0913,0.0874,0.0942,0.0672,0.0969,0.0859,0.0882,0.0923,0.0687,0.071,0.0916,0.0918,0.0932,0.0869,0.0947,0.0646,0.1027,0.0882,0.0991,0.0927,0.0711,0.0678,0.0931,0.0984,0.1059,0.0897,0.1009,0.0717,0.1093,0.0998,0.1128,0.0928,0.068,0.0665,0.0928,0.1169,0.1154,0.091,0.1034,0.0659,0.1068,0.105,0.113,0.0908,0.0643,0.0693,0.0976,0.1448,0.1196,0.1062,0.1187,0.0638,0.1074,0.1015,0.1299,0.098,0.0679,0.0642,0.0923,0.0968,0.1032,0.0894,0.0952,0.0668,0.1061,0.0933,0.1251,0.0901,0.064,0.0745,0.094,0.1064,0.1103,0.0966,0.111,0.0629,0.1039,0.099,0.1337,0.1046,0.0686
81000,37,0.068,0.0952,0.1031,0.107,0.0948,0.1106,0.0699,0.1027,0.0943,0.0979,0.1186,0.0675,0.0763,0.0931,0.0914,0.0917,0.0867,0.094,0.0637,0.0955,0.0849,0.0871,0.0912,0.0659,0.0684,0.0916,0.0918,0.0932,0.0869,0.0939,0.0649,0.1015,0.0862,0.0956,0.092,0.0658,0.0696,0.0924,0.098,0.1052,0.0893,0.0994,0.0646,0.1074,0.0963,0.1089,0.0912,0.0648,0.0656,0.0929,0.1164,0.1145,0.0897,0.1008,0.0631,0.1056,0.1026,0.1092,0.0902,0.0689,0.0675,0.0978,0.1456,0.1178,0.1032,0.1152,0.0683,0.1061,0.0983,0.1253,0.0954,0.0659,0.066,0.0918,0.0956,0.102,0.0884,0.0937,0.065,0.1045,0.0921,0.1237,0.0893,0.0638,0.0699,0.0939,0.1063,0.1096,0.0955,0.1095,0.0657,0.1028,0.0959,0.128,0.1023,0.0666
81090,37,0.0664,0.0946,0.1027,0.1067,0.0942,0.1107,0.0762,0.1038,0.095,0.0981,0.119,0.066,0.0713,0.0921,0.0914,0.0922,0.0869,0.094,0.0615,0.0958,0.0851,0.0875,0.0914,0.0712,0.0644,0.0908,0.092,0.0937,0.0871,0.094,0.0722,0.1018,0.0862,0.0947,0.092,0.0661,0.0683,0.092,0.0981,0.1052,0.0892,0.0995,0.0637,0.1073,0.0962,0.1098,0.0913,0.0642,0.0647,0.0929,0.1167,0.1146,0.0895,0.1005,0.062,0.1054,0.1029,0.1097,0.0908,0.0744,0.069,0.0978,0.1459,0.118,0.1038,0.116,0.0738,0.1065,0.1007,0.126,0.0958,0.0619,0.0661,0.092,0.0957,0.1021,0.0884,0.0938,0.0634,0.1043,0.0923,0.1245,0.0895,0.0664,0.0681,0.0944,0.1069,0.1094,0.096,0.1099,0.0662,0.1033,0.098,0.1277,0.1023,0.0665
81180,37,0.0681,0.0944,0.1023,0.1063,0.094,0.1107,0.0737,0.1035,0.095,0.0982,0.1178,0.0664,0.0698,0.0921,0.091,0.0918,0.0868,0.0935,0.0615,0.096,0.085,0.0867,0.0912,0.0707,0.0657,0.0907,0.0917,0.0933,0.087,0.0938,0.0676,0.1015,0.0861,0.0949,0.0918,0.0664,0.0719,0.0924,0.098,0.1051,0.0895,0.0994,0.0671,0.1072,0.0974,0.109,0.0916,0.0649,0.0665,0.0928,0.1166,0.1148,0.09,0.1005,0.0653,0.105,0.1018,0.109,0.0904,0.0699,0.0692,0.0981,0.1458,0.1181,0.1024,0.1142,0.0688,0.1062,0.099,0.1267,0.0958,0.0644,0.0655,0.0918,0.096,0.1026,0.0886,0.094,0.0622,0.104,0.0915,0.1241,0.0889,0.0638,0.0662,0.0944,0.107,0.1096,0.096,0.1099,0.0635,0.103,0.0971,0.1286,0.1021,0.0657
81270,37,0.0695,0.0944,0.1026,0.1066,0.0944,0.1106,0.0755,0.1039,0.0953,0.0973,0.1157,0.067,0.0716,0.0922,0.0912,0.0915,0.0868,0.0939,0.0636,0.0953,0.0848,0.0866,0.0911,0.0705,0.0676,0.0912,0.0919,0.0937,0.0873,0.094,0.0712,0.1017,0.0863,0.0948,0.0916,0.0658,0.0689,0.0922,0.0981,0.1056,0.0892,0.0993,0.0641,0.1072,0.0967,0.1083,0.0915,0.0661,0.0661,0.0928,0.117,0.115,0.09,0.1006,0.0662,0.1057,0.1022,0.1095,0.0903,0.0711,0.0687,0.0978,0.146,0.1181,0.1034,0.1157,0.0713,0.1064,0.099,0.1254,0.0956,0.0642,0.064,0.0917,0.0957,0.1027,0.0887,0.0936,0.0651,0.1048,0.0932,0.1247,0.0897,0.0643,0.0704,0.0941,0.107,0.1097,0.0959,0.11,0.0636,0.103,0.0971,0.1277,0.1021,0.0655
81360,37,0.068,0.0946,0.1029,0.1074,0.0953,0.1123,0.0765,0.1053,0.0976,0.1005,0.1221,0.0666,0.0713,0.0924,0.0916,0.0921,0.0874,0.0944,0.0632,0.0966,0.0856,0.0871,0.0923,0.0708,0.0678,0.0916,0.0926,0.0945,0.0876,0.0946,0.0688,0.1032,0.0878,0.0981,0.0924,0.0666,0.0725,0.0927,0.0985,0.1063,0.0901,0.1006,0.0692,0.109,0.1004,0.1146,0.0941,0.0638,0.0653,0.0928,0.1178,0.1159,0.0912,0.1024,0.063,0.1072,0.1064,0.1149,0.092,0.0731,0.0683,0.0974,0.1451,0.1194,0.1066,0.1192,0.075,0.1081,0.1034,0.1325,0.0974,0.0639,0.0648,0.0922,0.0963,0.1028,0.089,0.0946,0.0635,0.1054,0.0953,0.1312,0.0912,0.0654,0.0677,0.0941,0.1067,0.1096,0.0966,0.111,0.0673,0.1044,0.1011,0.1338,0.1033,0.0649
81450,37,0.0702,0.0949,0.1029,0.1076,0.0952,0.112,0.0739,0.105,0.0973,0.1002,0.1243,0.0676,0.0722,0.093,0.0917,0.0918,0.0873,0.0945,0.0614,0.0968,0.0857,0.0872,0.0925,0.0688,0.0702,0.0916,0.0921,0.0941,0.0876,0.0942,0.0657,0.1028,0.0875,0.0984,0.0922,0.0677,0.0715,0.0932,0.0986,0.1065,0.0893,0.1007,0.0721,0.1088,0.1014,0.115,0.094,0.0677,0.066,0.093,0.1174,0.1154,0.0909,0.1028,0.0625,0.107,0.1048,0.1142,0.0917,0.0704,0.0694,0.0976,0.1454,0.1199,0.1066,0.1192,0.068,0.1078,0.1018,0.1324,0.0983,0.066,0.0652,0.0921,0.0964,0.1033,0.0894,0.0947,0.0641,0.1057,0.0945,0.13,0.0906,0.0653,0.0669,0.0941,0.1065,0.1097,0.0967,0.1109,0.0626,0.1041,0.1001,0.1359,0.1033,0.068
81540,37,0.0681,0.0948,0.103,0.1072,0.0947,0.111,0.0757,0.1037,0.0947,0.0975,0.1164,0.0673,0.0747,0.0923,0.0913,0.0917,0.0866,0.0936,0.0642,0.0952,0.0844,0.0867,0.0913,0.0714,0.0671,0.0914,0.0919,0.0938,0.0872,0.0933,0.0679,0.1017,0.0857,0.0951,0.0917,0.0678,0.0734,0.0923,0.098,0.1051,0.0894,0.0994,0.0664,0.1073,0.0977,0.1091,0.0921,0.064,0.0648,0.093,0.1178,0.1157,0.0901,0.1005,0.0646,0.1056,0.1016,0.1088,0.0905,0.0704,0.0686,0.098,0.1463,0.1177,0.1031,0.1158,0.0674,0.1061,0.0998,0.1262,0.0962,0.0635,0.0639,0.0918,0.0957,0.1027,0.0884,0.0934,0.065,0.105,0.0919,0.1232,0.089,0.0651,0.0693,0.0942,0.1068,0.1093,0.096,0.1103,0.0634,0.1031,0.0985,0.1292,0.1015,0.0655
81630,37,0.0667,0.0948,0.103,0.1077,0.0951,0.112,0.0759,0.1051,0.0975,0.1004,0.1212,0.0664,0.0708,0.0927,0.0918,0.0922,0.0872,0.0946,0.0624,0.0971,0.0855,0.0873,0.0923,0.0683,0.068,0.0917,0.0926,0.0944,0.0873,0.0943,0.0691,0.1026,0.0872,0.0979,0.0924,0.0694,0.0708,0.092,0.0985,0.1064,0.0898,0.1008,0.0717,0.109,0.101,0.1139,0.0947,0.0642,0.0658,0.093,0.1176,0.1155,0.091,0.1032,0.0629,0.1073,0.1062,0.1148,0.0921,0.0747,0.0694,0.0973,0.1453,0.1192,0.1073,0.1201,0.0745,0.1082,0.1026,0.1332,0.0981,0.0644,0.0636,0.0922,0.0965,0.1032,0.0889,0.094,0.0631,0.1055,0.0946,0.1294,0.0904,0.065,0.068,0.094,0.1065,0.1096,0.0967,0.1114,0.0653,0.1041,0.1007,0.1364,0.1026,0.0651
81720,37,0.0671,0.0949,0.1029,0.1069,0.0942,0.1106,0.0704,0.1036,0.0949,0.0973,0.1172,0.0669,0.0733,0.0927,0.0911,0.0909,0.0866,0.0935,0.0652,0.0956,0.0848,0.0866,0.0916,0.0685,0.0694,0.0913,0.0917,0.0932,0.0865,0.0934,0.0638,0.1018,0.0857,0.0953,0.0919,0.0692,0.0724,0.0926,0.0977,0.1053,0.0887,0.0994,0.0698,0.1077,0.0975,0.1098,0.0923,0.0641,0.065,0.0927,0.1162,0.114,0.0894,0.1008,0.0631,0.1055,0.1027,0.1096,0.0901,0.0712,0.0678,0.0981,0.1463,0.1168,0.1039,0.1166,0.0673,0.1058,0.0996,0.1254,0.0961,0.0637,0.0637,0.0918,0.0955,0.1024,0.0884,0.0935,0.0641,0.1043,0.0915,0.1225,0.0884,0.0659,0.0681,0.0945,0.107,0.1096,0.0964,0.1105,0.0635,0.1032,0.0983,0.1305,0.101,0.0669
81810,37,0.0706,0.0951,0.1032,0.1086,0.0954,0.1122,0.0708,0.1044,0.0968,0.0991,0.1238,0.0691,0.0753,0.0934,0.0918,0.0926,0.0871,0.0945,0.0647,0.0968,0.0851,0.0873,0.0923,0.0703,0.068,0.092,0.0927,0.0945,0.0875,0.0942,0.065,0.1027,0.0872,0.0981,0.0924,0.0675,0.0721,0.0928,0.0986,0.1062,0.0895,0.1002,0.0674,0.1087,0.0998,0.1143,0.0939,0.0675,0.0653,0.0933,0.1179,0.1159,0.0912,0.1035,0.0628,0.1071,0.1053,0.115,0.0916,0.0693,0.0679,0.0976,0.1459,0.1193,0.1068,0.1192,0.0669,0.1076,0.1016,0.1322,0.098,0.0633,0.0648,0.0925,0.0968,0.1038,0.0894,0.0944,0.0655,0.1058,0.0937,0.1286,0.0903,0.0662,0.0692,0.094,0.1065,0.1099,0.0968,0.1116,0.0625,0.1042,0.1003,0.1364,0.102,0.0668
81900,37,0.0683,0.0949,0.1029,0.1074,0.0942,0.1111,0.0747,0.1033,0.0948,0.0978,0.1178,0.0639,0.0743,0.0925,0.091,0.0911,0.0871,0.0937,0.0626,0.0957,0.0851,0.0867,0.0915,0.0682,0.067,0.0914,0.092,0.0933,0.0864,0.0932,0.0629,0.1018,0.0861,0.0957,0.0921,0.0735,0.0714,0.0922,0.0977,0.1045,0.0888,0.0997,0.0712,0.1079,0.098,0.1103,0.0923,0.0636,0.0643,0.0927,0.1161,0.1141,0.0895,0.1009,0.0655,0.1061,0.1031,0.11,0.0905,0.0728,0.0697,0.0977,0.146,0.1173,0.1044,0.1167,0.0711,0.1062,0.0994,0.1262,0.0955,0.0637,0.064,0.092,0.0956,0.1027,0.0885,0.0935,0.0651,0.1046,0.0913,0.1228,0.0893,0.0651,0.0697,0.0942,0.107,0.1098,0.0959,0.1109,0.0608,0.1034,0.0983,0.1308,0.1003,0.0674
81990,37,0.0729,0.0955,0.1036,0.1085,0.0954,0.112,0.0653,0.104,0.097,0.1,0.1246,0.0707,0.0747,0.0933,0.0916,0.0915,0.0872,0.0942,0.0682,0.0973,0.0857,0.0873,0.0926,0.0679,0.072,0.0919,0.0918,0.0935,0.0867,0.0937,0.0645,0.1028,0.0875,0.0991,0.0923,0.0714,0.0717,0.0931,0.0974,0.1051,0.0894,0.101,0.0709,0.1093,0.1002,0.1153,0.094,0.0661,0.0687,0.093,0.117,0.1156,0.0914,0.1036,0.0649,0.1067,0.1056,0.1143,0.0915,0.0631,0.0691,0.0975,0.1453,0.12,0.1065,0.1198,0.0616,0.1072,0.1018,0.1322,0.0982,0.067,0.0648,0.0926,0.097,0.104,0.0898,0.0952,0.0698,0.1055,0.0925,0.1265,0.09,0.0644,0.0732,0.0939,0.107,0.1103,0.0965,0.1116,0.064,0.1044,0.1006,0.1366,0.1017,0.0682
82080,37,0.0696,0.0953,0.1033,0.1077,0.0948,0.1112,0.0687,0.1028,0.094,0.0976,0.1172,0.0674,0.0763,0.0927,0.0912,0.0914,0.0865,0.0937,0.065,0.0959,0.0848,0.0868,0.0915,0.0693,0.0696,0.0916,0.0919,0.0933,0.0864,0.093,0.064,0.1016,0.0859,0.096,0.0923,0.0749,0.0707,0.0925,0.0972,0.1051,0.0887,0.0995,0.0671,0.1076,0.097,0.1109,0.0915,0.0645,0.0644,0.0931,0.1168,0.1147,0.0899,0.1015,0.0625,0.1061,0.1025,0.1098,0.0904,0.0704,0.0696,0.0979,0.1462,0.1184,0.1042,0.1161,0.0686,0.106,0.1001,0.1264,0.0952,0.0651,0.0644,0.0925,0.0963,0.1032,0.0887,0.0939,0.0662,0.1048,0.0915,0.1223,0.0892,0.0653,0.0711,0.0942,0.1071,0.1098,0.0958,0.1108,0.0623,0.1034,0.0987,0.1306,0.0999,0.0672
82170,37,0.0667,0.0952,0.103,0.1072,0.0943,0.1116,0.074,0.1032,0.0951,0.0985,0.1174,0.0676,0.073,0.0922,0.0911,0.0911,0.0866,0.0937,0.0614,0.096,0.0851,0.0867,0.0916,0.0693,0.0669,0.0914,0.0917,0.0934,0.0868,0.0933,0.0657,0.1017,0.0861,0.0955,0.0919,0.0706,0.0725,0.0922,0.0979,0.1048,0.0892,0.0995,0.0684,0.1079,0.0978,0.1106,0.0922,0.0644,0.0655,0.0934,0.1173,0.115,0.09,0.1007,0.0643,0.1053,0.1028,0.1106,0.0913,0.0721,0.0678,0.0978,0.1464,0.1165,0.1041,0.1157,0.0738,0.1068,0.1016,0.1285,0.0957,0.0627,0.0648,0.0923,0.096,0.1024,0.088,0.0936,0.063,0.1039,0.092,0.125,0.0893,0.0663,0.0662,0.0943,0.107,0.1095,0.0962,0.1107,0.0666,0.1037,0.099,0.1301,0.0995,0.0655
82260,37,0.0667,0.0953,0.1033,0.108,0.0952,0.1122,0.0677,0.1045,0.0973,0.1001,0.1239,0.066,0.0704,0.0929,0.0914,0.092,0.087,0.0943,0.0621,0.0971,0.0855,0.0871,0.0919,0.0684,0.07,0.0916,0.0919,0.0941,0.0875,0.0944,0.0656,0.102,0.087,0.0977,0.0919,0.0675,0.0723,0.0926,0.0985,0.1063,0.0894,0.1002,0.0678,0.1085,0.1011,0.1141,0.0939,0.0668,0.065,0.0935,0.1183,0.1166,0.0916,0.1025,0.0668,0.1062,0.1046,0.1147,0.0928,0.067,0.0686,0.0977,0.1458,0.1192,0.1066,0.1199,0.0698,0.1082,0.1031,0.1349,0.0981,0.0654,0.0676,0.0928,0.0976,0.1043,0.089,0.0949,0.064,0.105,0.0935,0.1312,0.0909,0.0673,0.0682,0.0943,0.1073,0.1101,0.0969,0.1112,0.0692,0.1046,0.1019,0.1377,0.1009,0.0662
82350,37,0.0686,0.095,0.103,0.1079,0.0955,0.1123,0.0737,0.1048,0.0974,0.0997,0.1224,0.0672,0.072,0.0928,0.092,0.0923,0.0871,0.0946,0.0618,0.0972,0.0854,0.0873,0.0919,0.0698,0.0681,0.0917,0.0923,0.0947,0.088,0.0943,0.0691,0.1025,0.0872,0.0975,0.0918,0.0666,0.0727,0.0922,0.0988,0.1074,0.09,0.1004,0.0655,0.1086,0.1,0.1142,0.0936,0.0668,0.0651,0.0933,0.1186,0.1168,0.092,0.103,0.0683,0.1062,0.1045,0.1133,0.0923,0.0679,0.0682,0.0974,0.146,0.1202,0.1065,0.1198,0.0667,0.1076,0.1036,0.1343,0.0978,0.0631,0.0664,0.0931,0.0976,0.1042,0.0897,0.0948,0.0641,0.1055,0.0941,0.1314,0.0915,0.0679,0.069,0.0942,0.1075,0.1104,0.0968,0.1118,0.0643,0.1048,0.102,0.1362,0.1005,0.0644
82440,37,0.0681,0.0951,0.103,0.108,0.0953,0.1125,0.0752,0.1055,0.098,0.1007,0.1231,0.0662,0.0702,0.0925,0.0914,0.0925,0.0869,0.0946,0.0656,0.097,0.0857,0.0873,0.092,0.0689,0.0675,0.0911,0.0925,0.0946,0.0875,0.0944,0.0716,0.1031,0.0876,0.0975,0.0921,0.068,0.0688,0.0921,0.0984,0.1071,0.0901,0.1004,0.0673,0.109,0.1005,0.1142,0.0938,0.0639,0.0648,0.0932,0.1184,0.1166,0.0922,0.1034,0.0658,0.1069,0.1061,0.1148,0.0929,0.0704,0.0693,0.0974,0.1458,0.1204,0.1069,0.1205,0.074,0.1084,0.1048,0.1352,0.0984,0.063,0.067,0.0927,0.0971,0.1035,0.0892,0.0948,0.0632,0.1049,0.0947,0.1327,0.0918,0.0687,0.0684,0.0945,0.1074,0.1103,0.0967,0.1115,0.0692,0.1051,0.103,0.1375,0.1,0.0636
82530,37,0.0732,0.0948,0.1028,0.1075,0.0949,0.1115,0.0682,0.1054,0.0988,0.1009,0.1224,0.0681,0.0672,0.0925,0.0912,0.0917,0.0871,0.0944,0.0704,0.0973,0.0857,0.0874,0.0919,0.0665,0.0684,0.091,0.0918,0.0942,0.0875,0.0945,0.0719,0.1027,0.0875,0.0974,0.092,0.0667,0.0691,0.0925,0.0983,0.107,0.0897,0.1004,0.066,0.1086,0.1002,0.1136,0.094,0.0681,0.0657,0.0933,0.1186,0.1164,0.0921,0.1031,0.0678,0.1057,0.1043,0.1134,0.0924,0.0647,0.0681,0.0975,0.146,0.12,0.1064,0.1198,0.0677,0.1078,0.1034,0.1356,0.0985,0.0667,0.0676,0.0929,0.098,0.1045,0.0897,0.0951,0.0665,0.1049,0.094,0.1308,0.0911,0.067,0.0668,0.0944,0.1072,0.1102,0.0967,0.1116,0.07,0.1046,0.1027,0.1387,0.1003,0.0656
82620,37,0.0698,0.0947,0.1029,0.1071,0.0947,0.1111,0.0708,0.104,0.0958,0.0973,0.1161,0.0667,0.0706,0.0926,0.0911,0.0913,0.0866,0.0937,0.0624,0.0958,0.085,0.0866,0.0909,0.0691,0.0676,0.091,0.0917,0.0936,0.0871,0.094,0.0752,0.1018,0.0866,0.0947,0.0911,0.065,0.0686,0.0919,0.0982,0.1058,0.0892,0.099,0.0623,0.1072,0.0966,0.1082,0.0917,0.0686,0.0664,0.0929,0.1184,0.1159,0.0912,0.1012,0.0705,0.105,0.1014,0.1083,0.0906,0.0651,0.0683,0.0977,0.147,0.1194,0.104,0.116,0.065,0.1062,0.1,0.1286,0.0961,0.0655,0.0653,0.0921,0.0966,0.1037,0.0889,0.0936,0.0664,0.1041,0.092,0.1252,0.0894,0.0658,0.0672,0.0942,0.1074,0.1102,0.0961,0.1108,0.068,0.1036,0.1004,0.1323,0.0986,0.0648
82710,37,0.0734,0.0945,0.1022,0.1065,0.0939,0.1105,0.069,0.1045,0.0972,0.0992,0.1175,0.0683,0.0673,0.0922,0.0903,0.091,0.0865,0.0937,0.0706,0.0961,0.085,0.0867,0.0912,0.066,0.0667,0.091,0.0915,0.0937,0.087,0.0935,0.0718,0.102,0.0864,0.0951,0.0917,0.0678,0.0691,0.0918,0.0983,0.1052,0.089,0.0993,0.0677,0.1081,0.0976,0.1099,0.0919,0.0662,0.0647,0.0929,0.1175,0.1153,0.0905,0.1007,0.0644,0.1053,0.1026,0.1102,0.091,0.0686,0.068,0.0978,0.1467,0.1178,0.1043,0.1164,0.0718,0.1067,0.1012,0.1302,0.0958,0.0637,0.0666,0.0922,0.096,0.1026,0.0881,0.0934,0.0621,0.1037,0.0922,0.126,0.0894,0.0674,0.0693,0.0947,0.1076,0.1101,0.0961,0.1109,0.0712,0.1038,0.1007,0.1325,0.0983,0.0639
82800,37,0.0748,0.0948,0.1029,0.1078,0.0952,0.1118,0.0681,0.1057,0.0995,0.1009,0.1227,0.0684,0.0684,0.0928,0.091,0.0915,0.087,0.0941,0.0665,0.0971,0.0853,0.0873,0.092,0.0666,0.0711,0.091,0.0917,0.0939,0.0874,0.0949,0.0739,0.1031,0.0882,0.098,0.0918,0.0661,0.0706,0.0924,0.0984,0.1063,0.0898,0.1008,0.0658,0.1088,0.1006,0.1123,0.0943,0.0701,0.0649,0.0927,0.1184,0.1168,0.0926,0.104,0.0726,0.1059,0.1042,0.1112,0.0919,0.065,0.0663,0.0974,0.1463,0.1202,0.1074,0.1197,0.0664,0.1076,0.1028,0.1353,0.0992,0.0675,0.0671,0.0931,0.0983,0.1049,0.0902,0.0952,0.0691,0.105,0.0932,0.1303,0.0912,0.0677,0.0681,0.0943,0.1073,0.1106,0.0967,0.1118,0.0703,0.1045,0.1029,0.1403,0.0994,0.068
82890,37,0.0753,0.0952,0.103,0.1079,0.0954,0.1122,0.0658,0.1052,0.099,0.1008,0.1235,0.0683,0.0688,0.0932,0.0912,0.0914,0.087,0.0943,0.07,0.0973,0.0855,0.0874,0.092,0.067,0.071,0.0909,0.0921,0.0941,0.0871,0.0947,0.074,0.1038,0.0889,0.0985,0.0917,0.0637,0.0662,0.0919,0.0981,0.1068,0.0899,0.1006,0.0613,0.1082,0.1005,0.1123,0.0938,0.0686,0.0641,0.0925,0.118,0.1168,0.0929,0.1049,0.074,0.1069,0.1056,0.113,0.0914,0.0642,0.0692,0.0971,0.1456,0.1218,0.108,0.1207,0.0627,0.1075,0.1023,0.1332,0.0987,0.0671,0.0654,0.0925,0.0973,0.1049,0.0901,0.0948,0.0716,0.1057,0.0935,0.1283,0.0914,0.066,0.0732,0.0939,0.1074,0.111,0.0965,0.1124,0.0643,0.1044,0.1027,0.1397,0.0994,0.0653
82980,37,0.0713,0.0952,0.1031,0.1081,0.0951,0.1118,0.0643,0.1053,0.0995,0.1013,0.1243,0.0739,0.068,0.0932,0.0911,0.0913,0.087,0.0941,0.0753,0.0977,0.0859,0.0875,0.0924,0.0645,0.0733,0.091,0.0918,0.0934,0.0868,0.0946,0.0678,0.1039,0.0893,0.0997,0.0922,0.0701,0.066,0.0922,0.0974,0.106,0.0894,0.1009,0.0719,0.1089,0.101,0.1143,0.0938,0.0647,0.0643,0.092,0.1174,0.1158,0.0924,0.105,0.0702,0.107,0.1065,0.1138,0.0915,0.0643,0.0671,0.097,0.1454,0.1196,0.1082,0.1207,0.0623,0.1076,0.1041,0.1328,0.0988,0.0689,0.0649,0.0924,0.0966,0.1044,0.09,0.0949,0.0699,0.1061,0.0947,0.1284,0.0916,0.0648,0.0732,0.0941,0.1072,0.1106,0.0964,0.112,0.0643,0.1044,0.1016,0.1396,0.0989,0.0663
83070,37,0.0778,0.0954,0.1035,0.1088,0.0958,0.1123,0.0649,0.1044,0.0977,0.0997,0.1222,0.0686,0.0737,0.0935,0.0915,0.0918,0.0873,0.094,0.068,0.0972,0.0856,0.0872,0.0925,0.0692,0.0717,0.0913,0.0918,0.0937,0.0868,0.0938,0.0648,0.1035,0.0886,0.0992,0.0919,0.067,0.0704,0.0927,0.0982,0.1059,0.0895,0.1004,0.0704,0.1091,0.1004,0.1137,0.0941,0.0663,0.0651,0.0926,0.1175,0.1159,0.0918,0.1044,0.0676,0.1071,0.1057,0.1143,0.0907,0.0652,0.0668,0.0974,0.1456,0.12,0.1082,0.121,0.0628,0.1076,0.102,0.1328,0.0981,0.0699,0.0657,0.0924,0.0968,0.1046,0.0899,0.0947,0.0689,0.1061,0.0939,0.1287,0.0913,0.0641,0.0745,0.0938,0.1068,0.1103,0.0968,0.1124,0.0633,0.104,0.1018,0.1396,0.0989,0.0701
83160,37,0.0685,0.0953,0.1033,0.1076,0.095,0.1116,0.0711,0.1034,0.0953,0.0975,0.1174,0.066,0.0757,0.0927,0.0911,0.0916,0.0866,0.0935,0.0652,0.096,0.0849,0.0865,0.0913,0.0671,0.0685,0.0916,0.0918,0.0935,0.0862,0.093,0.0621,0.102,0.0862,0.0965,0.0921,0.0745,0.0714,0.0925,0.0972,0.1056,0.089,0.0996,0.0717,0.1079,0.0985,0.1107,0.0923,0.0635,0.0637,0.0926,0.1165,0.1149,0.0897,0.102,0.0665,0.106,0.1033,0.1106,0.0909,0.0731,0.0695,0.0976,0.1459,0.1187,0.1057,0.1181,0.0702,0.1062,0.1006,0.1273,0.0952,0.0652,0.0642,0.0919,0.0957,0.1033,0.089,0.0934,0.0677,0.1048,0.0914,0.1224,0.0904,0.0668,0.0727,0.0942,0.1075,0.1103,0.0958,0.1114,0.0618,0.1035,0.1004,0.1337,0.0971,0.0695
83250,37,0.0741,0.0955,0.1034,0.1085,0.0952,0.1123,0.0627,0.1047,0.0984,0.1002,0.1245,0.0713,0.0718,0.0935,0.0913,0.0916,0.0872,0.0941,0.0689,0.0976,0.0855,0.0878,0.0922,0.0677,0.0747,0.0915,0.0919,0.0936,0.0864,0.0938,0.0658,0.1033,0.0884,0.0998,0.0926,0.0754,0.0682,0.0927,0.0977,0.1061,0.0896,0.1004,0.0739,0.1094,0.1021,0.1154,0.094,0.0644,0.0661,0.0929,0.1172,0.1155,0.0915,0.1043,0.0654,0.1066,0.1058,0.115,0.0913,0.0663,0.0699,0.0975,0.1455,0.1199,0.108,0.1217,0.0645,0.1083,0.1034,0.1346,0.0985,0.0673,0.0654,0.0927,0.0968,0.1042,0.0895,0.0948,0.067,0.1053,0.0933,0.1288,0.0913,0.0648,0.0721,0.0942,0.1073,0.1105,0.0969,0.1127,0.0649,0.1049,0.1028,0.1411,0.0985,0.0667
83340,37,0.0696,0.0955,0.1034,0.1081,0.0949,0.1112,0.0658,0.1029,0.0951,0.0972,0.1182,0.0689,0.0748,0.0928,0.0909,0.0909,0.0867,0.0937,0.0682,0.0961,0.085,0.0867,0.0913,0.0674,0.0692,0.0915,0.0914,0.0932,0.0862,0.0928,0.0646,0.1019,0.0862,0.0961,0.0917,0.0734,0.0716,0.0925,0.0972,0.1051,0.0889,0.0993,0.0721,0.1085,0.0985,0.1109,0.0923,0.0638,0.0639,0.0928,0.1166,0.1147,0.0901,0.102,0.0665,0.1053,0.1024,0.1093,0.0898,0.0652,0.071,0.098,0.1464,0.1187,0.1048,0.1187,0.0626,0.1063,0.0988,0.1273,0.096,0.0659,0.0672,0.0923,0.0968,0.1042,0.0893,0.0941,0.071,0.1041,0.0901,0.1215,0.0909,0.0654,0.0712,0.0943,0.108,0.111,0.096,0.1118,0.0642,0.1037,0.1002,0.1346,0.097,0.0662
83430,37,0.0714,0.0958,0.1036,0.1087,0.0953,0.1124,0.0629,0.1048,0.0985,0.1003,0.1229,0.0713,0.0727,0.0932,0.0913,0.0913,0.0871,0.0942,0.0721,0.098,0.0853,0.0878,0.0922,0.0646,0.0729,0.0912,0.0922,0.0935,0.0868,0.0945,0.0701,0.1035,0.0887,0.0985,0.0922,0.0686,0.0666,0.0921,0.0983,0.1068,0.09,0.1012,0.0677,0.1095,0.1014,0.1156,0.0934,0.0663,0.0635,0.0924,0.1179,0.1166,0.0925,0.105,0.0731,0.1066,0.1046,0.1133,0.0918,0.0639,0.07,0.0969,0.1457,0.1213,0.1085,0.1214,0.0619,0.1082,0.1037,0.1335,0.0989,0.0682,0.0648,0.0928,0.0971,0.1046,0.0898,0.095,0.0712,0.1051,0.0928,0.1297,0.0938,0.0685,0.073,0.0941,0.1074,0.1106,0.0967,0.1128,0.0658,0.105,0.1038,0.141,0.0981,0.0698
83520,37,0.0736,0.0954,0.103,0.1072,0.0943,0.1106,0.064,0.1031,0.0962,0.0983,0.1202,0.0716,0.0724,0.0926,0.0904,0.0903,0.0866,0.0934,0.07,0.0967,0.085,0.087,0.0915,0.0664,0.0719,0.0908,0.0911,0.0925,0.0859,0.0934,0.0657,0.1022,0.0871,0.0958,0.0917,0.0698,0.0671,0.0923,0.0972,0.1054,0.0891,0.0996,0.0699,0.108,0.0986,0.1108,0.0915,0.066,0.0629,0.0923,0.1166,0.1148,0.0902,0.102,0.0697,0.1051,0.1014,0.1088,0.0903,0.0641,0.0696,0.0978,0.1464,0.119,0.1047,0.1174,0.0618,0.1061,0.0991,0.1271,0.0957,0.0685,0.0649,0.092,0.096,0.1037,0.0894,0.094,0.0704,0.1046,0.0902,0.1218,0.09,0.0633,0.0735,0.0944,0.1077,0.1106,0.0962,0.1117,0.0632,0.1033,0.0993,0.1353,0.0966,0.0693
83610,37,0.0696,0.0955,0.1035,0.108,0.0949,0.1121,0.0677,0.1028,0.0948,0.0966,0.1157,0.0681,0.0761,0.093,0.0913,0.0911,0.0867,0.0935,0.0642,0.0961,0.0849,0.0868,0.0913,0.0661,0.071,0.0911,0.0914,0.093,0.0863,0.0931,0.0629,0.102,0.0865,0.0959,0.0913,0.064,0.0684,0.0922,0.0972,0.1057,0.0893,0.0995,0.0658,0.1077,0.0987,0.1109,0.0919,0.0657,0.0642,0.0925,0.1168,0.1149,0.0907,0.1026,0.0714,0.1056,0.102,0.1084,0.0919,0.0649,0.0701,0.0976,0.1464,0.1198,0.1053,0.1186,0.0633,0.106,0.0994,0.1267,0.0962,0.0678,0.0645,0.0921,0.0958,0.1037,0.0892,0.0942,0.0711,0.1045,0.091,0.1223,0.0905,0.0637,0.0748,0.0941,0.1077,0.1109,0.0957,0.1118,0.0626,0.1038,0.1001,0.1349,0.0969,0.0667
83700,37,0.0689,0.0954,0.1031,0.1074,0.0947,0.1112,0.0672,0.1032,0.0954,0.0978,0.1187,0.07,0.0747,0.0918,0.0906,0.0909,0.0863,0.0935,0.0646,0.0962,0.0852,0.0871,0.0912,0.0647,0.0678,0.0914,0.0917,0.093,0.0861,0.093,0.0635,0.1024,0.0868,0.0968,0.092,0.0739,0.0719,0.0924,0.0974,0.1051,0.0891,0.0999,0.0746,0.1084,0.0995,0.1121,0.0922,0.063,0.0644,0.0925,0.1162,0.1142,0.0898,0.1018,0.0653,0.1061,0.1039,0.1112,0.0944,0.0712,0.0694,0.0981,0.1464,0.1178,0.1063,0.1187,0.0718,0.1065,0.1021,0.1286,0.0956,0.0629,0.0644,0.0918,0.0951,0.1028,0.0884,0.0937,0.0656,0.1046,0.0924,0.1258,0.0905,0.0637,0.0698,0.0948,0.1075,0.1102,0.0966,0.1117,0.065,0.1036,0.1,0.1334,0.096,0.0658
83790,37,0.07,0.0951,0.1029,0.1077,0.0949,0.1116,0.0693,0.1035,0.0952,0.0966,0.1167,0.0682,0.0749,0.0926,0.0912,0.0915,0.087,0.0934,0.0626,0.0961,0.0847,0.0863,0.0912,0.0687,0.0673,0.0912,0.0914,0.0934,0.0869,0.0927,0.0657,0.1019,0.0863,0.0958,0.0916,0.0691,0.0729,0.0925,0.0976,0.1054,0.089,0.0992,0.0678,0.1078,0.0991,0.111,0.0926,0.0668,0.0649,0.0926,0.1169,0.1144,0.0902,0.1016,0.063,0.1056,0.103,0.1114,0.0927,0.0642,0.0685,0.0982,0.1468,0.1187,0.106,0.118,0.0688,0.1065,0.1004,0.1285,0.0962,0.0649,0.0649,0.0918,0.0956,0.1036,0.0891,0.0937,0.0668,0.1052,0.0921,0.124,0.0903,0.0638,0.0736,0.0946,0.1078,0.1106,0.0965,0.1119,0.0636,0.1033,0.1002,0.1337,0.096,0.0748
83880,37,0.0684,0.0951,0.103,0.1078,0.0953,0.1123,0.0727,0.1035,0.0955,0.0966,0.1155,0.0673,0.077,0.0928,0.0914,0.0916,0.0869,0.0935,0.0636,0.0957,0.0848,0.0867,0.091,0.0666,0.0668,0.0914,0.0916,0.0936,0.0867,0.093,0.066,0.102,0.0863,0.0957,0.0916,0.0672,0.0692,0.0921,0.0976,0.1061,0.0892,0.0993,0.0664,0.1074,0.0993,0.111,0.0921,0.0649,0.0635,0.0924,0.1168,0.1148,0.0904,0.1023,0.0663,0.1062,0.1046,0.1125,0.094,0.0697,0.0699,0.0978,0.1464,0.1192,0.1068,0.119,0.071,0.1064,0.1014,0.1262,0.0959,0.0641,0.0643,0.0916,0.0951,0.1031,0.0887,0.0934,0.0662,0.1053,0.0931,0.1256,0.0906,0.0628,0.0709,0.0946,0.1076,0.1105,0.0967,0.1121,0.0667,0.1036,0.1006,0.1338,0.096,0.0666
83970,37,0.0676,0.0951,0.103,0.1078,0.0948,0.1115,0.0691,0.1038,0.0962,0.0985,0.1177,0.068,0.0743,0.0926,0.0911,0.0911,0.0868,0.0935,0.0639,0.0965,0.085,0.0869,0.0914,0.0644,0.0688,0.0911,0.0912,0.0932,0.0864,0.0931,0.0621,0.1024,0.0869,0.0967,0.0918,0.0715,0.0701,0.0923,0.097,0.1055,0.0889,0.0994,0.0739,0.1082,0.0996,0.1115,0.0922,0.0628,0.0661,0.0922,0.1163,0.1143,0.0898,0.1022,0.0649,0.1065,0.1046,0.1118,0.0929,0.0695,0.0686,0.0979,0.1464,0.1186,0.1066,0.119,0.0713,0.1068,0.101,0.1285,0.0958,0.0635,0.0668,0.0915,0.0952,0.1032,0.0889,0.0936,0.0687,0.1051,0.0919,0.1236,0.09,0.0644,0.0703,0.0946,0.1074,0.1104,0.0962,0.1119,0.0613,0.1034,0.1008,0.1353,0.0958,0.0669
84060,37,0.0756,0.0956,0.1034,0.1089,0.0958,0.1125,0.0655,0.1052,0.0988,0.0992,0.1219,0.0681,0.0737,0.0938,0.0914,0.0918,0.0873,0.0941,0.0662,0.0976,0.0852,0.0874,0.0922,0.0673,0.0729,0.0912,0.0914,0.0933,0.0868,0.094,0.066,0.1034,0.0887,0.0987,0.0917,0.0658,0.0683,0.0929,0.0979,0.1065,0.0898,0.1008,0.0678,0.1094,0.0998,0.1153,0.0944,0.0674,0.0647,0.0922,0.1178,0.1161,0.0925,0.1054,0.0694,0.1075,0.1066,0.1138,0.0943,0.0651,0.07,0.0973,0.1455,0.1212,0.11,0.1221,0.0631,0.1076,0.104,0.1335,0.0989,0.0674,0.0658,0.092,0.0962,0.1047,0.0899,0.0949,0.0701,0.1064,0.0945,0.1276,0.0916,0.0632,0.0754,0.0944,0.1077,0.1109,0.097,0.1131,0.0631,0.1045,0.1038,0.142,0.0971,0.0691
84150,37,0.071,0.0956,0.1036,0.1091,0.0961,0.1132,0.0662,0.1054,0.0986,0.0997,0.1219,0.0668,0.0737,0.0936,0.0915,0.0921,0.0873,0.0943,0.0653,0.0974,0.0855,0.0875,0.0922,0.0689,0.0712,0.0916,0.0919,0.0941,0.0868,0.0944,0.0677,0.1041,0.0889,0.0994,0.092,0.0669,0.0671,0.0923,0.0978,0.1064,0.0901,0.1013,0.0708,0.1089,0.1021,0.1158,0.0938,0.0666,0.0643,0.0922,0.1179,0.1162,0.0925,0.1055,0.07,0.1082,0.108,0.1149,0.0941,0.0674,0.0679,0.0972,0.1458,0.1212,0.1107,0.1231,0.0693,0.1081,0.1043,0.1339,0.0986,0.0673,0.0646,0.0922,0.0962,0.1044,0.0899,0.0948,0.0685,0.1063,0.0953,0.13,0.0921,0.0651,0.0737,0.0942,0.1075,0.1107,0.0969,0.1133,0.0626,0.1045,0.1038,0.1412,0.0969,0.0675
84240,37,0.0729,0.0954,0.1034,0.1089,0.0956,0.1128,0.0638,0.1055,0.0995,0.1004,0.1233,0.0713,0.0713,0.0931,0.0913,0.0918,0.0873,0.0939,0.0704,0.0978,0.0857,0.0877,0.0922,0.0648,0.0713,0.0911,0.0916,0.0936,0.0866,0.0941,0.0655,0.1038,0.0889,0.0996,0.0921,0.0715,0.0664,0.0927,0.0977,0.1066,0.0899,0.1005,0.0742,0.1096,0.1024,0.1163,0.0941,0.0646,0.0665,0.0923,0.1173,0.1157,0.0919,0.1056,0.0667,0.108,0.1079,0.1166,0.0944,0.0675,0.0697,0.0974,0.1456,0.1203,0.1107,0.1234,0.0704,0.108,0.1049,0.1351,0.0988,0.0666,0.0645,0.0924,0.0963,0.104,0.0895,0.0948,0.0674,0.106,0.0948,0.1304,0.0916,0.0655,0.0714,0.0943,0.1075,0.1107,0.0973,0.1132,0.0627,0.1045,0.1032,0.1424,0.0968,0.0667
84330,37,0.0763,0.0955,0.1035,0.1088,0.0958,0.1128,0.0628,0.1047,0.0989,0.0994,0.1221,0.0675,0.0729,0.0937,0.0915,0.0916,0.0872,0.0939,0.0674,0.0974,0.0856,0.0874,0.092,0.0684,0.0722,0.0914,0.0918,0.0935,0.0867,0.094,0.0653,0.1034,0.0883,0.0993,0.0917,0.0688,0.0714,0.0926,0.098,0.1066,0.0895,0.1004,0.0669,0.1092,0.1008,0.1156,0.0947,0.067,0.0665,0.0926,0.1176,0.116,0.0919,0.1052,0.0656,0.1076,0.1069,0.1166,0.0942,0.0642,0.069,0.0975,0.1458,0.1204,0.11,0.1226,0.065,0.1077,0.1041,0.1343,0.0992,0.0676,0.0649,0.0924,0.0966,0.1046,0.0898,0.0944,0.0668,0.106,0.0946,0.1312,0.0917,0.0639,0.0705,0.0945,0.1073,0.1105,0.0976,0.1134,0.0626,0.1045,0.1038,0.1417,0.0966,0.0745
84420,37,0.0686,0.0952,0.1031,0.1079,0.0952,0.1123,0.0719,0.1036,0.0958,0.0968,0.1154,0.0667,0.0766,0.0927,0.0912,0.0917,0.0868,0.0937,0.0634,0.0961,0.0844,0.0867,0.0912,0.0662,0.0684,0.0915,0.0919,0.0936,0.0863,0.0927,0.0628,0.1022,0.0864,0.0961,0.0915,0.0701,0.0682,0.0924,0.0974,0.106,0.089,0.0994,0.0707,0.1082,0.0977,0.112,0.0924,0.0635,0.0642,0.0927,0.1169,0.1145,0.0899,0.1022,0.0648,0.1065,0.1046,0.1127,0.0931,0.0717,0.0699,0.0978,0.1468,0.1183,0.107,0.1199,0.0707,0.1068,0.1004,0.1293,0.0965,0.0632,0.0633,0.0919,0.0952,0.1031,0.0883,0.0928,0.0642,0.1048,0.0935,0.1274,0.0909,0.0663,0.0696,0.0946,0.1079,0.1102,0.0969,0.1125,0.0648,0.1039,0.1019,0.1357,0.0952,0.0662
84510,37,0.0672,0.0949,0.1028,0.1076,0.0948,0.112,0.0718,0.104,0.0966,0.098,0.1175,0.0671,0.0719,0.0927,0.0905,0.0916,0.0868,0.0936,0.0642,0.0964,0.0845,0.0865,0.0915,0.0682,0.0647,0.0909,0.0917,0.0937,0.0865,0.093,0.0657,0.1017,0.0864,0.0953,0.0916,0.0685,0.0724,0.0926,0.0972,0.1053,0.089,0.0991,0.0701,0.1081,0.0989,0.1119,0.0928,0.0646,0.0641,0.0933,0.1171,0.1147,0.0899,0.1012,0.0638,0.1054,0.1036,0.1122,0.0935,0.0697,0.0695,0.0981,0.147,0.1179,0.107,0.1192,0.0714,0.1072,0.1013,0.1317,0.0971,0.0651,0.067,0.0928,0.0955,0.1025,0.0881,0.0933,0.0636,0.1045,0.0934,0.1264,0.0904,0.0663,0.0668,0.0949,0.1079,0.1101,0.097,0.1123,0.0626,0.1039,0.1016,0.1375,0.0951,0.0663
84600,37,0.0682,0.095,0.1029,0.1075,0.0948,0.1119,0.0706,0.1038,0.0959,0.0966,0.116,0.0687,0.0762,0.0927,0.0909,0.091,0.0868,0.0935,0.0654,0.096,0.0848,0.0862,0.0912,0.0693,0.068,0.0914,0.0916,0.0937,0.0868,0.093,0.0662,0.1012,0.0857,0.0952,0.0911,0.0653,0.0738,0.0923,0.0975,0.1058,0.089,0.0988,0.0672,0.1077,0.097,0.1103,0.0928,0.066,0.0646,0.0932,0.1173,0.1151,0.09,0.1017,0.062,0.1052,0.1028,0.1115,0.0928,0.0685,0.0698,0.0981,0.147,0.1184,0.1063,0.1186,0.0634,0.1063,0.1006,0.1291,0.0967,0.0665,0.0653,0.0923,0.0957,0.1031,0.0884,0.0933,0.0647,0.1046,0.092,0.1256,0.0901,0.0648,0.0696,0.0949,0.1082,0.1106,0.097,0.1128,0.0626,0.1038,0.1018,0.1362,0.0948,0.068
84690,37,0.0672,0.0952,0.1032,0.1092,0.0959,0.1138,0.0745,0.1054,0.099,0.0987,0.1191,0.0678,0.0743,0.0925,0.0917,0.0923,0.0874,0.0943,0.0634,0.0971,0.0854,0.0872,0.0918,0.071,0.0678,0.0919,0.0928,0.095,0.0876,0.0943,0.0712,0.1032,0.0879,0.0985,0.0917,0.0673,0.0755,0.0927,0.0984,0.1065,0.0901,0.1006,0.0652,0.1088,0.1013,0.1157,0.0945,0.0668,0.0661,0.0933,0.1181,0.1162,0.0916,0.1047,0.0639,0.1074,0.1079,0.1188,0.0949,0.0718,0.0716,0.0976,0.146,0.1211,0.1102,0.1233,0.0704,0.1084,0.1053,0.1351,0.0991,0.065,0.0641,0.0927,0.0965,0.1038,0.0889,0.094,0.0646,0.1063,0.0956,0.134,0.0929,0.0657,0.0693,0.0946,0.1076,0.1104,0.0976,0.1139,0.0665,0.1052,0.1053,0.1426,0.0959,0.0669
84780,37,0.0673,0.0949,0.1026,0.1078,0.0948,0.1124,0.0754,0.1045,0.0971,0.0976,0.1175,0.0654,0.0712,0.0924,0.0911,0.0913,0.0868,0.0935,0.0609,0.0965,0.0852,0.0864,0.091,0.0678,0.0663,0.0908,0.0917,0.0935,0.0865,0.0935,0.0694,0.1016,0.0861,0.0952,0.0911,0.0671,0.0747,0.0928,0.0975,0.1062,0.0894,0.0995,0.0679,0.1076,0.0994,0.1118,0.0925,0.0655,0.0641,0.0932,0.1175,0.1151,0.09,0.1014,0.0662,0.105,0.1025,0.1114,0.0934,0.0671,0.0698,0.0983,0.1472,0.1189,0.1055,0.1182,0.0673,0.107,0.1019,0.1312,0.0962,0.0652,0.0677,0.0925,0.0959,0.1026,0.0876,0.0932,0.0623,0.1041,0.0923,0.128,0.0905,0.0648,0.0682,0.095,0.1083,0.1104,0.0971,0.1126,0.065,0.1041,0.1024,0.1381,0.0947,0.0661
84870,37,0.068,0.0951,0.1029,0.1086,0.0959,0.1135,0.0737,0.1054,0.0993,0.0986,0.121,0.0676,0.0716,0.0932,0.0914,0.0923,0.0872,0.0941,0.0628,0.0975,0.0854,0.087,0.0917,0.0715,0.0687,0.0913,0.0924,0.0945,0.0875,0.0944,0.0729,0.103,0.0878,0.0978,0.0911,0.0662,0.0728,0.0923,0.0986,0.1078,0.0897,0.1007,0.065,0.109,0.0999,0.1138,0.0947,0.0697,0.0652,0.0933,0.1187,0.1171,0.0925,0.1042,0.0712,0.1062,0.1047,0.1143,0.0945,0.0654,0.069,0.098,0.1466,0.1216,0.1088,0.1231,0.0647,0.1078,0.105,0.1339,0.0994,0.0678,0.0671,0.0931,0.097,0.1046,0.0894,0.0949,0.0655,0.1053,0.0942,0.1321,0.0922,0.0659,0.0705,0.0945,0.1078,0.1104,0.0974,0.1134,0.0643,0.105,0.105,0.1427,0.0957,0.0659
84960,37,0.0673,0.0947,0.1024,0.1074,0.0948,0.1123,0.0762,0.1047,0.0975,0.0969,0.1163,0.0665,0.0729,0.0925,0.0911,0.0918,0.0865,0.094,0.0639,0.0963,0.0845,0.0867,0.0905,0.068,0.0666,0.0909,0.0917,0.0938,0.0868,0.0937,0.074,0.102,0.0862,0.095,0.0912,0.0652,0.0729,0.0922,0.0976,0.1064,0.0892,0.0994,0.0635,0.1075,0.0985,0.1109,0.0924,0.0662,0.0643,0.0932,0.1173,0.1153,0.0903,0.1024,0.0635,0.106,0.1043,0.1129,0.0934,0.0731,0.0692,0.0978,0.1471,0.1192,0.107,0.1195,0.0706,0.1064,0.1014,0.1307,0.0964,0.0637,0.0641,0.092,0.0954,0.1031,0.0881,0.0931,0.0646,0.1051,0.0934,0.1279,0.0906,0.0636,0.0698,0.0948,0.1083,0.1103,0.0969,0.1131,0.0662,0.1039,0.1019,0.1372,0.0943,0.0666
85050,37,0.0677,0.0945,0.1023,0.1072,0.0944,0.1119,0.0747,0.1044,0.0971,0.0975,0.1182,0.0657,0.0726,0.0921,0.0908,0.0912,0.0865,0.0933,0.0623,0.0964,0.0843,0.0863,0.0909,0.0684,0.0655,0.0912,0.0915,0.0938,0.0869,0.0934,0.0685,0.1021,0.0867,0.0955,0.0914,0.0678,0.0706,0.0924,0.0975,0.1063,0.089,0.0993,0.0703,0.1083,0.0988,0.1106,0.0928,0.0631,0.0636,0.0929,0.1172,0.1145,0.0896,0.1016,0.0643,0.1054,0.1041,0.114,0.0934,0.0703,0.0687,0.0981,0.1472,0.1188,0.107,0.1195,0.0732,0.107,0.1016,0.1312,0.0967,0.0638,0.0671,0.0922,0.0953,0.1027,0.0882,0.0935,0.063,0.1044,0.0933,0.1282,0.0904,0.067,0.0696,0.095,0.1087,0.1105,0.0972,0.1129,0.0658,0.104,0.1032,0.1383,0.0945,0.0659
85140,37,0.0703,0.095,0.1028,0.1077,0.0953,0.1125,0.0716,0.1044,0.0972,0.0963,0.1168,0.0682,0.0723,0.0926,0.0909,0.0916,0.0867,0.0933,0.0616,0.096,0.085,0.0862,0.0908,0.0714,0.0667,0.0909,0.0913,0.094,0.0872,0.0932,0.0693,0.102,0.0864,0.0946,0.091,0.066,0.0738,0.0922,0.0981,0.1064,0.0891,0.0993,0.0666,0.1076,0.0985,0.1095,0.0929,0.0667,0.0669,0.0932,0.1173,0.1151,0.0904,0.1018,0.065,0.1052,0.1042,0.1125,0.0928,0.0682,0.0683,0.0983,0.1472,0.119,0.1064,0.1184,0.0654,0.1066,0.1015,0.1307,0.0967,0.066,0.0656,0.092,0.0956,0.1032,0.0884,0.0934,0.0646,0.1049,0.0927,0.1284,0.0902,0.065,0.0703,0.095,0.1085,0.1107,0.0971,0.1129,0.0662,0.1038,0.1019,0.1383,0.0945,0.0678
85230,37,0.0692,0.0954,0.103,0.1085,0.0956,0.113,0.0724,0.1042,0.0967,0.0962,0.1172,0.0682,0.0754,0.0924,0.0911,0.0917,0.087,0.0933,0.0618,0.0961,0.0847,0.0863,0.091,0.0672,0.0672,0.0915,0.0917,0.0936,0.0868,0.0929,0.0654,0.1024,0.0869,0.0962,0.0914,0.0674,0.069,0.0922,0.0974,0.106,0.0891,0.0993,0.0703,0.1082,0.0984,0.1116,0.093,0.064,0.0642,0.0928,0.1172,0.1151,0.0904,0.1026,0.0641,0.1064,0.1055,0.1129,0.0929,0.0697,0.0699,0.0979,0.1472,0.1196,0.1082,0.12,0.0714,0.1067,0.1025,0.1286,0.0965,0.0634,0.0648,0.0918,0.095,0.1032,0.0884,0.0932,0.0653,0.1053,0.0943,0.1284,0.091,0.0644,0.0711,0.0949,0.1081,0.1105,0.097,0.1133,0.0648,0.1039,0.1037,0.1371,0.0943,0.0678
85320,37,0.0682,0.0953,0.1029,0.1085,0.0959,0.1137,0.0708,0.1054,0.0992,0.0989,0.123,0.0662,0.0731,0.0932,0.0913,0.092,0.0873,0.094,0.0643,0.0977,0.0851,0.0871,0.0923,0.0656,0.0714,0.0913,0.0919,0.0943,0.087,0.0934,0.0647,0.1041,0.0886,0.0996,0.0923,0.0726,0.0681,0.0926,0.0976,0.1069,0.0898,0.1003,0.0741,0.1096,0.1018,0.1176,0.0951,0.0631,0.0675,0.0925,0.1172,0.1155,0.0916,0.105,0.0649,0.108,0.1083,0.1184,0.0941,0.0702,0.0707,0.0977,0.1461,0.1199,0.1113,0.1249,0.0745,0.1081,0.1059,0.1376,0.0991,0.0636,0.0655,0.0923,0.0957,0.104,0.0894,0.0945,0.0653,0.1064,0.0964,0.1342,0.0916,0.0641,0.0698,0.0948,0.108,0.1107,0.0981,0.1143,0.0639,0.1047,0.1056,0.1454,0.0952,0.0685
85410,37,0.0683,0.095,0.1028,0.1081,0.0952,0.1125,0.0712,0.1047,0.0972,0.096,0.1177,0.0686,0.0745,0.0925,0.0908,0.0914,0.0866,0.0931,0.0659,0.0958,0.0846,0.0862,0.0912,0.0715,0.0692,0.0913,0.0911,0.0941,0.087,0.0928,0.0656,0.1023,0.0869,0.0962,0.0911,0.0672,0.0739,0.0926,0.0973,0.1062,0.089,0.0992,0.068,0.108,0.0989,0.1097,0.0929,0.0686,0.0657,0.0928,0.1177,0.1149,0.0906,0.1026,0.0624,0.1059,0.1045,0.1131,0.0927,0.0677,0.0701,0.0982,0.1472,0.1195,0.1073,0.1195,0.067,0.1063,0.1003,0.1312,0.0972,0.066,0.0665,0.092,0.0957,0.1035,0.0886,0.0936,0.0657,0.1051,0.0938,0.128,0.0899,0.0646,0.0701,0.0948,0.1086,0.1109,0.0972,0.1131,0.064,0.1037,0.1031,0.1386,0.0942,0.0693
85500,37,0.0671,0.0949,0.1027,0.1082,0.0953,0.1129,0.0759,0.1045,0.0973,0.0964,0.1182,0.0662,0.0735,0.0923,0.091,0.092,0.0871,0.0933,0.0657,0.0958,0.0847,0.0863,0.0911,0.0706,0.0668,0.0913,0.0916,0.094,0.0868,0.0929,0.0682,0.1025,0.0865,0.0952,0.0912,0.0663,0.0748,0.092,0.0979,0.1059,0.0893,0.0992,0.0672,0.1078,0.099,0.1122,0.0935,0.0639,0.064,0.0933,0.118,0.1157,0.0908,0.102,0.0626,0.1061,0.1047,0.1134,0.093,0.0719,0.0684,0.098,0.1474,0.1186,0.1074,0.1195,0.0741,0.107,0.1024,0.1326,0.0971,0.0643,0.0674,0.0921,0.0953,0.1032,0.0883,0.093,0.063,0.1042,0.0936,0.1292,0.09,0.0669,0.066,0.0944,0.108,0.1099,0.0968,0.1128,0.0685,0.1037,0.1042,0.1397,0.0943,0.0642
85590,37,0.071,0.0945,0.1022,0.1073,0.0943,0.1116,0.0699,0.1051,0.0983,0.0972,0.1184,0.0646,0.0672,0.0923,0.0902,0.0912,0.0865,0.0934,0.0663,0.0964,0.0847,0.0865,0.0911,0.0661,0.0665,0.0904,0.0912,0.0936,0.0867,0.0934,0.0741,0.1021,0.0871,0.0952,0.0907,0.0654,0.0675,0.092,0.0974,0.1066,0.089,0.0992,0.0647,0.108,0.0982,0.111,0.0936,0.0667,0.064,0.0928,0.118,0.1158,0.0913,0.103,0.0704,0.105,0.1028,0.1114,0.0926,0.0658,0.0677,0.0981,0.1478,0.1187,0.1073,0.1193,0.0669,0.1064,0.1012,0.1332,0.0968,0.0654,0.0669,0.0926,0.0964,0.1037,0.0885,0.0935,0.0654,0.104,0.0918,0.1287,0.09,0.067,0.0679,0.0951,0.1088,0.1103,0.097,0.1131,0.0722,0.1038,0.1048,0.1414,0.0941,0.0654
85680,37,0.0729,0.0949,0.1024,0.1074,0.0947,0.1117,0.0671,0.1047,0.0983,0.0972,0.1189,0.0654,0.07,0.0928,0.0904,0.091,0.0864,0.0932,0.065,0.0964,0.0849,0.0863,0.0909,0.0673,0.0688,0.0904,0.0911,0.0934,0.0864,0.0936,0.0737,0.1022,0.087,0.0953,0.0905,0.064,0.0661,0.0921,0.0971,0.1069,0.0884,0.0994,0.0621,0.108,0.0963,0.1109,0.0937,0.0685,0.064,0.0925,0.1181,0.1163,0.0918,0.1036,0.076,0.1051,0.102,0.1102,0.0919,0.0649,0.0706,0.0978,0.1474,0.1212,0.1066,0.1194,0.0642,0.1059,0.1,0.1283,0.0972,0.0674,0.0665,0.0924,0.0967,0.1047,0.0892,0.0936,0.0716,0.1042,0.0912,0.1249,0.0896,0.065,0.0718,0.0948,0.109,0.1109,0.0967,0.1133,0.0647,0.1036,0.1039,0.1417,0.0941,0.0668
85770,37,0.0723,0.0952,0.1027,0.1075,0.0947,0.1119,0.067,0.1049,0.0983,0.0974,0.12,0.0695,0.0697,0.0923,0.0908,0.0911,0.0867,0.0933,0.0697,0.0966,0.085,0.0867,0.091,0.0666,0.0695,0.0906,0.0913,0.0934,0.0863,0.0938,0.0749,0.1028,0.0874,0.0957,0.0907,0.0628,0.0649,0.0917,0.0973,0.1062,0.0887,0.0999,0.0642,0.1079,0.0979,0.1112,0.0936,0.0662,0.0631,0.0921,0.1176,0.116,0.0914,0.1033,0.0718,0.1057,0.1031,0.1104,0.0925,0.0644,0.0697,0.0975,0.1473,0.1203,0.1081,0.1203,0.0621,0.1064,0.1006,0.1316,0.0973,0.0652,0.0652,0.0924,0.0963,0.1043,0.0888,0.0934,0.0701,0.1042,0.0915,0.1264,0.0895,0.0669,0.0698,0.0949,0.109,0.1108,0.0969,0.1133,0.0681,0.104,0.1047,0.1416,0.0941,0.0646
85860,37,0.0707,0.0954,0.1028,0.1076,0.0948,0.1119,0.0635,0.1041,0.0981,0.0976,0.1232,0.0725,0.0699,0.093,0.09,0.0909,0.0864,0.0932,0.0701,0.0969,0.0851,0.0866,0.0913,0.0638,0.0718,0.0904,0.0909,0.0927,0.0856,0.0934,0.0674,0.1025,0.087,0.0961,0.091,0.0665,0.066,0.0921,0.0968,0.1058,0.0888,0.0993,0.0649,0.1078,0.0975,0.1112,0.0963,0.0656,0.0643,0.0923,0.117,0.1152,0.0908,0.1037,0.0684,0.106,0.1037,0.111,0.0923,0.0647,0.0703,0.0981,0.1472,0.1196,0.1079,0.1199,0.0626,0.1064,0.1003,0.1307,0.0973,0.0688,0.066,0.0924,0.096,0.1045,0.0892,0.0938,0.071,0.1044,0.0908,0.1257,0.0894,0.0642,0.0726,0.0949,0.109,0.1108,0.0969,0.1135,0.0647,0.1035,0.1037,0.1416,0.0937,0.0673
85950,37,0.0738,0.0959,0.1034,0.1096,0.0962,0.1136,0.0644,0.1052,0.0998,0.0993,0.1251,0.069,0.072,0.0932,0.0913,0.0918,0.0868,0.0938,0.0671,0.0978,0.0854,0.0872,0.0918,0.0691,0.0707,0.0915,0.0918,0.0939,0.0865,0.0939,0.0657,0.1036,0.0888,0.0992,0.0915,0.0645,0.0684,0.0928,0.098,0.1074,0.09,0.1005,0.0635,0.1092,0.102,0.1159,0.1003,0.068,0.0648,0.0929,0.1183,0.1168,0.0933,0.1065,0.0724,0.1071,0.1065,0.1156,0.0948,0.0648,0.0693,0.0975,0.1464,0.1219,0.1113,0.1249,0.0639,0.1076,0.1046,0.1367,0.1001,0.0698,0.0674,0.0929,0.0971,0.1053,0.0898,0.095,0.0721,0.1055,0.0938,0.1312,0.0914,0.0648,0.0722,0.0946,0.1086,0.1114,0.0976,0.1147,0.0646,0.1049,0.1069,0.1475,0.0947,0.0707
86040,37,0.0705,0.0958,0.1033,0.1092,0.0961,0.1138,0.0633,0.1054,0.1,0.0992,0.1269,0.071,0.0728,0.0931,0.0912,0.0923,0.0871,0.0941,0.0686,0.0979,0.0855,0.0874,0.0921,0.0664,0.0703,0.0916,0.0918,0.094,0.0864,0.0939,0.066,0.1037,0.0891,0.1002,0.092,0.0744,0.0677,0.0924,0.0969,0.1066,0.0894,0.1013,0.0708,0.1097,0.101,0.1173,0.1007,0.0661,0.0643,0.0923,0.1178,0.1167,0.0928,0.1064,0.07,0.1073,0.1075,0.1162,0.0949,0.0648,0.07,0.0972,0.1462,0.122,0.1121,0.125,0.0627,0.108,0.1055,0.1361,0.1,0.0682,0.0654,0.0927,0.0967,0.1049,0.0895,0.0945,0.0712,0.1058,0.0945,0.1321,0.0915,0.0659,0.0724,0.0944,0.1085,0.1111,0.0976,0.1148,0.0643,0.105,0.1062,0.1482,0.0948,0.0682
86130,37,0.0779,0.0958,0.1031,0.109,0.096,0.1134,0.0639,0.1053,0.1004,0.0991,0.1267,0.0718,0.0688,0.0934,0.0905,0.0914,0.0872,0.0934,0.0704,0.0985,0.0852,0.0871,0.0922,0.0645,0.0725,0.091,0.0913,0.0937,0.0863,0.094,0.0662,0.104,0.089,0.0994,0.0917,0.0684,0.0667,0.0925,0.0975,0.1064,0.0895,0.1004,0.0665,0.1095,0.1012,0.1166,0.1,0.0668,0.064,0.0926,0.1178,0.1164,0.0928,0.1064,0.0719,0.1064,0.106,0.1157,0.0939,0.0656,0.0689,0.0974,0.1463,0.1214,0.1113,0.1244,0.0625,0.1077,0.1034,0.1363,0.1004,0.0688,0.0661,0.093,0.0969,0.1051,0.09,0.0953,0.0709,0.1052,0.094,0.1323,0.0908,0.0648,0.0725,0.0945,0.1084,0.1113,0.0977,0.1147,0.0648,0.1049,0.1073,0.1488,0.0946,0.0679
86220,37,0.0694,0.0957,0.1032,0.1085,0.0956,0.1125,0.0642,0.1038,0.0974,0.0965,0.1211,0.0682,0.0746,0.093,0.0905,0.0906,0.0866,0.0933,0.0661,0.0967,0.0846,0.0866,0.0909,0.0704,0.0707,0.091,0.0908,0.0932,0.0862,0.0928,0.0639,0.1026,0.0875,0.0968,0.0914,0.069,0.0692,0.0924,0.0968,0.1052,0.0888,0.0994,0.0677,0.1082,0.0983,0.1112,0.0969,0.0658,0.0635,0.0927,0.1172,0.1154,0.0913,0.104,0.0708,0.1057,0.1042,0.1113,0.0924,0.064,0.0705,0.0981,0.1473,0.1206,0.108,0.1215,0.0647,0.1061,0.1004,0.1294,0.0967,0.0673,0.065,0.092,0.0957,0.1044,0.089,0.0938,0.0704,0.1054,0.0921,0.127,0.0895,0.0635,0.0753,0.0947,0.109,0.1112,0.0969,0.1139,0.0632,0.1035,0.1034,0.1406,0.0935,0.0671
86310,37,0.0685,0.0956,0.1032,0.1086,0.0957,0.1134,0.0682,0.1039,0.0977,0.0967,0.1208,0.0676,0.0759,0.0923,0.0909,0.092,0.087,0.0933,0.0636,0.0966,0.0847,0.0864,0.0913,0.0667,0.0669,0.0915,0.0913,0.0935,0.0864,0.0927,0.0633,0.1026,0.0875,0.097,0.0916,0.0735,0.071,0.0924,0.0966,0.1062,0.0891,0.099,0.0727,0.108,0.1001,0.1116,0.0967,0.0637,0.0672,0.0925,0.1168,0.115,0.0907,0.1033,0.0659,0.1065,0.1061,0.1138,0.0929,0.0702,0.0709,0.0979,0.1471,0.1196,0.1095,0.1211,0.0709,0.1068,0.1026,0.1302,0.0968,0.064,0.0642,0.0918,0.0948,0.1032,0.0886,0.0934,0.0667,0.1053,0.0942,0.1296,0.09,0.0651,0.0704,0.0949,0.1088,0.1108,0.0974,0.1144,0.0666,0.104,0.1044,0.1407,0.0934,0.0666
86400,37,0.0676,0.0954,0.1029,0.1084,0.0958,0.1133,0.0692,0.1043,0.0977,0.0965,0.121,0.0668,0.075,0.0924,0.0909,0.0914,0.0867,0.0932,0.0633,0.0968,0.0848,0.0864,0.0913,0.0693,0.0713,0.091,0.091,0.0937,0.0866,0.0926,0.0649,0.1024,0.0868,0.0961,0.0916,0.0697,0.0723,0.0926,0.0971,0.106,0.0888,0.0994,0.0722,0.1082,0.0996,0.113,0.096,0.0647,0.0663,0.0928,0.1174,0.115,0.0904,0.1029,0.0627,0.1057,0.1053,0.1135,0.0935,0.0686,0.0711,0.0983,0.1473,0.1188,0.1087,0.1212,0.0722,0.1068,0.1031,0.132,0.0969,0.065,0.0675,0.092,0.0952,0.1032,0.0883,0.0933,0.0638,0.1048,0.0936,0.1293,0.0896,0.0652,0.0672,0.0952,0.109,0.1105,0.0976,0.1144,0.0644,0.1038,0.1042,0.1406,0.0933,0.0672
Well Strain Environment
A1 Control mannose
A2 BK26 mannose
A3 BK26 maltose
A4 BK26 glucose
A5 BM1.8 mannose
A6 BM1.8 maltose
A7 Control maltose
A8 BM1.8 glucose
A9 BM2.8 mannose
A10 BM2.8 maltose
A11 BM2.8 glucose
A12 Control glucose
B1 Control mannose
B2 BK26 mannose
B3 BK26 maltose
B4 BK26 glucose
B5 BM1.8 mannose
B6 BM1.8 maltose
B7 Control maltose
B8 BM1.8 glucose
B9 BM2.8 mannose
B10 BM2.8 maltose
B11 BM2.8 glucose
B12 Control glucose
C1 Control mannose
C2 BK26 mannose
C3 BK26 maltose
C4 BK26 glucose
C5 BM1.8 mannose
C6 BM1.8 maltose
C7 Control maltose
C8 BM1.8 glucose
C9 BM2.8 mannose
C10 BM2.8 maltose
C11 BM2.8 glucose
C12 Control glucose
D1 Control mannose
D2 BK26 mannose
D3 BK26 maltose
D4 BK26 glucose
D5 BM1.8 mannose
D6 BM1.8 maltose
D7 Control maltose
D8 BM1.8 glucose
D9 BM2.8 mannose
D10 BM2.8 maltose
D11 BM2.8 glucose
D12 Control glucose
E1 Control mannose
E2 BK26 mannose
E3 BK26 maltose
E4 BK26 glucose
E5 BM1.8 mannose
E6 BM1.8 maltose
E7 Control maltose
E8 BM1.8 glucose
E9 BM2.8 mannose
E10 BM2.8 maltose
E11 BM2.8 glucose
E12 Control glucose
F1 Control mannose
F2 BK26 mannose
F3 BK26 maltose
F4 BK26 glucose
F5 BM1.8 mannose
F6 BM1.8 maltose
F7 Control maltose
F8 BM1.8 glucose
F9 BM2.8 mannose
F10 BM2.8 maltose
F11 BM2.8 glucose
F12 Control glucose
E1 Control mannose
E2 BK26 mannose
E3 BK26 maltose
E4 BK26 glucose
E5 BM1.8 mannose
E6 BM1.8 maltose
E7 Control maltose
E8 BM1.8 glucose
E9 BM2.8 mannose
E10 BM2.8 maltose
E11 BM2.8 glucose
E12 Control glucose
F1 Control mannose
F2 BK26 mannose
F3 BK26 maltose
F4 BK26 glucose
F5 BM1.8 mannose
F6 BM1.8 maltose
F7 Control maltose
F8 BM1.8 glucose
F9 BM2.8 mannose
F10 BM2.8 maltose
F11 BM2.8 glucose
F12 Control glucose
G1 Control mannose
G2 BK26 mannose
G3 BK26 maltose
G4 BK26 glucose
G5 BM1.8 mannose
G6 BM1.8 maltose
G7 Control maltose
G8 BM1.8 glucose
G9 BM2.8 mannose
G10 BM2.8 maltose
G11 BM2.8 glucose
G12 Control glucose
H1 Control mannose
H2 BK26 mannose
H3 BK26 maltose
H4 BK26 glucose
H5 BM1.8 mannose
H6 BM1.8 maltose
H7 Control maltose
H8 BM1.8 glucose
H9 BM2.8 mannose
H10 BM2.8 maltose
H11 BM2.8 glucose
H12 Control glucose
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment