diff --git a/data/ANL/ANL_Data_PRD26_537.root b/data/ANL/ANL_Data_PRD26_537.root index 29fec1a..965ec79 100644 Binary files a/data/ANL/ANL_Data_PRD26_537.root and b/data/ANL/ANL_Data_PRD26_537.root differ diff --git a/data/BNL/BNL_Data_PRD23_2499.root b/data/BNL/BNL_Data_PRD23_2499.root index b666e3a..101e558 100755 Binary files a/data/BNL/BNL_Data_PRD23_2499.root and b/data/BNL/BNL_Data_PRD23_2499.root differ diff --git a/data/T2K/CC0pi/T2K_CC0PI_2DPmuCosmu_Data.root b/data/T2K/CC0pi/T2K_CC0PI_2DPmuCosmu_Data.root index e6d858f..d61ec36 100644 Binary files a/data/T2K/CC0pi/T2K_CC0PI_2DPmuCosmu_Data.root and b/data/T2K/CC0pi/T2K_CC0PI_2DPmuCosmu_Data.root differ diff --git a/data/T2K/CC0pi/makedatafile_t2kcc0pi.py b/data/T2K/CC0pi/makedatafile_t2kcc0pi.py index acc5297..e80c5ba 100644 --- a/data/T2K/CC0pi/makedatafile_t2kcc0pi.py +++ b/data/T2K/CC0pi/makedatafile_t2kcc0pi.py @@ -1,294 +1,296 @@ from ROOT import * from array import * def GetMiddle(mystr): lims = mystr.strip().split(" - ") val = (float(lims[0]) + float(lims[1]))/2.0 return val def GetLowEdge(mystr): lims = mystr.strip().split(" - ") val = (float(lims[0]) + 0.00001) return val def GetHighEdge(mystr): lims = mystr.strip().split(" - ") val = (float(lims[1]) - 0.00001) return val def GetIndex(mystr): lims = mystr.split("-") return int(lims[0]), int(lims[1]) outfile = TFile("T2K_CC0PI_2DPmuCosmu_Data.root","RECREATE") # ANALYSIS I #______________________________ xedge = [0.0, 0.3, 0.4, 0.5, 0.65, 0.8, 0.95, 1.1, 1.25, 1.5, 2.0, 3.0, 5.0, 30.0] yedge = [-1.0, 0.0, 0.6, 0.7, 0.8, 0.85, 0.9, 0.94, 0.98, 1.0] datahist = TH2D("analysis1_data","analysis1_data", len(xedge)-1, array('f',xedge), len(yedge)-1, array('f',yedge)) maphist = datahist.Clone("analysis1_map") maphist.SetTitle("analysis1_map") counthist = datahist.Clone("analysis1_entrycount") datapoly = TH2Poly("datapoly","datapoly", 0.0,30.0, -1.0, 1.0) hist = None binedges = [] histedgeslist = [] xsecvals = [] histxseclist = [] binlimits = [3,8,15,22,30,39,47,58,67] with open("cross-section_analysisI.txt") as f: count = 0 for line in f: count += 1 if (count < 4): continue data = line.strip().split("|") if (len(data) < 1): continue ibin = int( data[0] ) + 1 xval = round(float(GetLowEdge( data[2] )),4) yval = round(float(GetLowEdge( data[1] )),4) xhig = round(float(GetHighEdge( data[2] )),4) yhig = round(float(GetHighEdge( data[1] )),4) xsec = float( data[3] ) * 1E-38 datapoly.AddBin( xval, yval, xhig, yhig ) datapoly.SetBinContent( datapoly.GetNumberOfBins(), xsec) binedges.append( xval ) xsecvals.append( xsec ) if ibin in binlimits: binedges.append( xhig ) histedgeslist.append(binedges) histxseclist.append(xsecvals) binedges = [] xsecvals = [] datahist.Fill(xval, yval, xsec) counthist.Fill(xval, yval, 1.0) for i in range(maphist.GetNbinsX()): for j in range(maphist.GetNbinsY()): xcent = maphist.GetXaxis().GetBinCenter(i+1) ycent = maphist.GetYaxis().GetBinCenter(j+1) if (xcent > xval and xcent < xhig and ycent > yval and ycent < yhig): maphist.SetBinContent(i+1,j+1, ibin) -data1D = TH1D("datahist","datahist", datapoly.GetNumberOfBins(), 0.0, float(datapoly.GetNumberOfBins())); -for i in range(datapoly.GetNumberOfBins()): - data1D.SetBinContent(i+1, datapoly.GetBinContent(i+1)); - -outfile.cd() -datahist.Write() -counthist.Write() -maphist.Write() -datapoly.Write() -data1D.Write() - -for i, obj in enumerate(histedgeslist): - print obj - hist = TH1D("dataslice_" + str(i), "dataslice_" + str(i), len(obj)-1, array('f',obj)) - for j in range(hist.GetNbinsX()): - hist.SetBinContent(j+1, histxseclist[i][j]) - - hist.GetXaxis().SetRangeUser(obj[0], obj[len(obj)-2]) - hist.Draw("HIST") - gPad.Update() - - hist.SetNameTitle("dataslice_" + str(i),"dataslice_" + str(i)) - hist.Write() - -# Get N Bins +# Get Covariances (keep in 1E-38 cm^2) \ nbins = 67 -print "NBins I = ", nbins -# Get Covariances (keep in 1E-38 cm^2) statcov = TH2D("analysis1_statcov","analysis1_statcov", nbins, 0.0, float(nbins), nbins, 0.0, float(nbins)); systcov = TH2D("analysis1_systcov","analysis1_systcov", nbins, 0.0, float(nbins), nbins, 0.0, float(nbins)); normcov = TH2D("analysis1_normcov","analysis1_normcov", nbins, 0.0, float(nbins), nbins, 0.0, float(nbins)); totcov = TH2D("analysis1_totcov","analysis1_totcov", nbins, 0.0, float(nbins), nbins, 0.0, float(nbins)); with open("covariance_statisticUncertainty_analysisI.txt") as f: count = 0 for line in f: count += 1 if (count < 4): continue data = line.strip().split("|") if (len(data) < 1): continue xi, yi = GetIndex(data[0]) cov = float(data[1]) - statcov.SetBinContent(xi, yi, cov) + statcov.SetBinContent(xi + 1, yi + 1, cov) with open("covariance_shapeSystematics_analysisI.txt") as f: count = 0 for line in f: count += 1 if (count < 4): continue data = line.strip().split("|") if (len(data) < 1): continue xi, yi = GetIndex(data[0]) cov = float(data[1]) systcov.SetBinContent(xi + 1, yi + 1, cov) with open("covariance_fluxNormalizationSystematics_analysisI.txt") as f: count = 0 for line in f: count += 1 if (count < 4): continue data = line.strip().split("|") if (len(data) < 1): continue xi, yi = GetIndex(data[0]) cov = float(data[1]) normcov.SetBinContent(xi + 1, yi + 1, cov) totcov.Add(systcov) totcov.Add(statcov) totcov.Add(normcov) + +data1D = TH1D("datahist","datahist", datapoly.GetNumberOfBins(), 0.0, float(datapoly.GetNumberOfBins())); +for i in range(datapoly.GetNumberOfBins()): + data1D.SetBinContent(i+1, datapoly.GetBinContent(i+1)); + data1D.SetBinError(i+1, sqrt(totcov.GetBinContent(i+1,i+1))*1E-38) + +outfile.cd() + +for i, obj in enumerate(histedgeslist): + print obj + + hist = TH1D("dataslice_" + str(i), "dataslice_" + str(i), len(obj)-1, array('f',obj)) + for j in range(hist.GetNbinsX()): + hist.SetBinContent(j+1, histxseclist[i][j]) + + hist.GetXaxis().SetRangeUser(obj[0], obj[len(obj)-2]) + hist.Draw("HIST") + gPad.Update() + + hist.SetNameTitle("dataslice_" + str(i),"dataslice_" + str(i)) + hist.Write() + + outfile.cd() +datahist.Write() +counthist.Write() +maphist.Write() +datapoly.Write() +data1D.Write() statcov.Write() systcov.Write() totcov.Write() normcov.Write() # ANALYSIS II #______________________________ xedge = [0.2, 0.35, 0.5, 0.65, 0.8, 0.95, 1.1, 1.25, 1.5, 2.0, 3.0, 5.0, 30.0] yedge = [0.6, 0.7, 0.8, 0.85, 0.9, 0.925, 0.95, 0.975, 1.0] datahist = TH2D("analysis2_data","analysis2_data", len(xedge)-1, array('f',xedge), len(yedge)-1, array('f',yedge)) maphist = datahist.Clone("analysis2_map") maphist.SetTitle("analysis2_map") counthist = datahist.Clone("analysis2_entrycount") # Get Data Entries entries = [] count = 0 with open("rps_crossSection_analysis2.txt") as f: for line in f: count += 1 if (count < 4): continue data = line.strip().split("|") if (len(data) < 1): continue ibin = int( data[0] ) + 1 xval = GetMiddle( data[2] ) yval = GetMiddle( data[1] ) xsec = float( data[3] ) * 1E-38 datahist.Fill(xval, yval, xsec) maphist.Fill(xval, yval, ibin) counthist.Fill(xval, yval, 1.0) # print ibin, "Map Value" # Get N Bins nbins = int(maphist.GetMaximum()) print "NBins I = ", nbins # Get Covariances (keep in 1E-38 cm^2) statcov = TH2D("analysis2_statcov","analysis2_statcov", nbins, 0.0, float(nbins), nbins, 0.0, float(nbins)); systcov = TH2D("analysis2_systcov","analysis2_systcov", nbins, 0.0, float(nbins), nbins, 0.0, float(nbins)); normcov = TH2D("analysis2_normcov","analysis2_normcov", nbins, 0.0, float(nbins), nbins, 0.0, float(nbins)); totcov = TH2D("analysis2_totcov","analysis2_totcov", nbins, 0.0, float(nbins), nbins, 0.0, float(nbins)); with open("rps_statsCov_analysis2.txt") as f: count = 0 for line in f: count += 1 if (count < 4): continue data = line.strip().split("|") if (len(data) < 1): continue xi, yi = GetIndex(data[0]) cov = float(data[1]) - statcov.SetBinContent(xi, yi, cov) + statcov.SetBinContent(xi + 1, yi + 1, cov) with open("rps_systCov_analysis2.txt") as f: count = 0 for line in f: count += 1 if (count < 4): continue data = line.strip().split("|") if (len(data) < 1): continue xi, yi = GetIndex(data[0]) cov = float(data[1]) systcov.SetBinContent(xi + 1, yi + 1, cov) with open("rps_fluxNormCov_analysis2.txt") as f: count = 0 for line in f: count += 1 if (count < 4): continue data = line.strip().split("|") if (len(data) < 1): continue xi, yi = GetIndex(data[0]) cov = float(data[1]) normcov.SetBinContent(xi + 1, yi + 1, cov) totcov.Add(systcov) totcov.Add(statcov) totcov.Add(normcov) outfile.cd() datahist.Write() maphist.Write() counthist.Write() statcov.Write() systcov.Write() totcov.Write() normcov.Write() # LocalWords: xval diff --git a/data/T2K/CC0pi/rps_systCov_analysis2.txt b/data/T2K/CC0pi/rps_systCov_analysis2.txt index c5742a2..3c6d968 100644 --- a/data/T2K/CC0pi/rps_systCov_analysis2.txt +++ b/data/T2K/CC0pi/rps_systCov_analysis2.txt @@ -1,9219 +1,9219 @@ Units: cross-section (10^-38 cm2/(nucleon x GeV)) row (bin i) - column (bin j) | sigma_i x sigma_j x rho_ij 0 - 0 | 0.01032782641 0 - 1 | 0.0108180208299 0 - 2 | 0.00786964606803 0 - 3 | 0.00193139030968 0 - 4 | 0.00024987106812 0 - 5 | 0.000199263562451 0 - 6 | -5.61197638164e-05 0 - 7 | -1.04371850562e-05 0 - 8 | 0.0 0 - 9 | 0.0 0 - 10 | 0.0 0 - 11 | 0.0 0 - 12 | 0.00725724234117 0 - 13 | 0.00925039953685 0 - 14 | 0.00701414334472 0 - 15 | 0.00196275612097 0 - 16 | 0.00218592771666 0 - 17 | 0.000526274761454 0 - 18 | 0.000118864327899 0 - 19 | 0.000153699768568 0 - 20 | -1.06059542869e-05 0 - 21 | 0.0 0 - 22 | 0.0 0 - 23 | 0.0 0 - 24 | 0.00762330621865 0 - 25 | 0.00936702233237 0 - 26 | 0.00734724411651 0 - 27 | 0.0026991733176 0 - 28 | 0.00258441597314 0 - 29 | 0.00197362259173 0 - 30 | 0.000473234066476 0 - 31 | 0.000320513316156 0 - 32 | -0.000948168810462 0 - 33 | -0.000136434280686 0 - 34 | 0.0 0 - 35 | 0.0 0 - 36 | 0.00857885443639 0 - 37 | 0.0100386068366 0 - 38 | 0.00823549177393 0 - 39 | 0.00725690539939 0 - 40 | 0.00324561803762 0 - 41 | 0.00246960104105 0 - 42 | 0.00128498202076 0 - 43 | 0.00077631261023 0 - 44 | -0.000338015547979 0 - 45 | -0.000765836740289 0 - 46 | 0.0 0 - 47 | 0.0 0 - 48 | 0.00807993387852 0 - 49 | 0.00616382006363 0 - 50 | 0.00742085943667 0 - 51 | 0.00531037922662 0 - 52 | 0.00404220571018 0 - 53 | 0.00535248707498 0 - 54 | 0.00131424253197 0 - 55 | 0.0222488557125 0 - 56 | 0.000743196781925 0 - 57 | -4.39992678139e-05 0 - 58 | 1.67500068122e-07 0 - 59 | 0.0 0 - 60 | 0.00757011500512 0 - 61 | 0.00279485588595 0 - 62 | 0.000574069419969 0 - 63 | -0.00186754485194 0 - 64 | -0.0015099728354 0 - 65 | 0.00424116677819 0 - 66 | 0.00470429596863 0 - 67 | 0.00197113830862 0 - 68 | 0.00102743617456 0 - 69 | -8.9502972186e-05 0 - 70 | -3.87039978083e-05 0 - 71 | 0.0 0 - 72 | 0.00626571121633 0 - 73 | 0.0101652144923 0 - 74 | 0.0152565774931 0 - 75 | 0.0172984228592 0 - 76 | 0.0144494146074 0 - 77 | 0.00215971301558 0 - 78 | 0.00320018389697 0 - 79 | 0.00252287353601 0 - 80 | 0.00146432512511 0 - 81 | 0.00118290409502 0 - 82 | 0.000308989244786 0 - 83 | 3.13326041213e-07 0 - 84 | 0.00229149359019 0 - 85 | 0.00481620895723 0 - 86 | 0.00473625865517 0 - 87 | 0.006340450537 0 - 88 | 0.00447960875436 0 - 89 | 0.000906874287803 0 - 90 | 0.00230199524518 0 - 91 | 0.00254598026848 0 - 92 | 0.00172735378144 0 - 93 | 0.00125301107251 0 - 94 | 0.00104598311201 0 - 95 | 3.60236316688e-05 1 - 0 | 0.0108180208299 1 - 1 | 0.0145778273894 1 - 2 | 0.0090820202126 1 - 3 | 0.00248932537785 1 - 4 | 0.000543518499895 1 - 5 | 0.000345274800472 1 - 6 | 2.39035772153e-05 1 - 7 | 2.08810767598e-05 1 - 8 | 0.0 1 - 9 | 0.0 1 - 10 | 0.0 1 - 11 | 0.0 1 - 12 | 0.00830431957504 1 - 13 | 0.0114178972261 1 - 14 | 0.00820267464135 1 - 15 | 0.00278787478704 1 - 16 | 0.0025782770829 1 - 17 | 0.000860617988881 1 - 18 | 0.000324911663803 1 - 19 | 0.00024920507364 1 - 20 | 1.62389166501e-05 1 - 21 | 0.0 1 - 22 | 0.0 1 - 23 | 0.0 1 - 24 | 0.00880773826827 1 - 25 | 0.011494512972 1 - 26 | 0.00888362476058 1 - 27 | 0.00387500625896 1 - 28 | 0.00326007668979 1 - 29 | 0.00238345177095 1 - 30 | 0.00092106383001 1 - 31 | 0.000569742762073 1 - 32 | -0.000936303030456 1 - 33 | -0.00014345730992 1 - 34 | 0.0 1 - 35 | 0.0 1 - 36 | 0.00957049485976 1 - 37 | 0.0118402794482 1 - 38 | 0.00962235818452 1 - 39 | 0.00812396116569 1 - 40 | 0.0040870865094 1 - 41 | 0.00309052571364 1 - 42 | 0.0019290717455 1 - 43 | 0.00127901795903 1 - 44 | -0.000118396593961 1 - 45 | -0.000825387156266 1 - 46 | 0.0 1 - 47 | 0.0 1 - 48 | 0.00900812997902 1 - 49 | 0.00818637462594 1 - 50 | 0.00926080489665 1 - 51 | 0.00671978297538 1 - 52 | 0.00515235250991 1 - 53 | 0.00617448367916 1 - 54 | 0.00206233946089 1 - 55 | 0.021253284664 1 - 56 | 0.0011473662762 1 - 57 | 0.000102529425147 1 - 58 | 1.54693203685e-05 1 - 59 | 0.0 1 - 60 | 0.00864535454908 1 - 61 | 0.00491304299721 1 - 62 | 0.00334721030457 1 - 63 | 0.000647558077231 1 - 64 | 0.000368887789053 1 - 65 | 0.00514142752885 1 - 66 | 0.00546268144522 1 - 67 | 0.00274657032443 1 - 68 | 0.00167395868741 1 - 69 | 0.000224982899631 1 - 70 | 2.47553656086e-05 1 - 71 | 0.0 1 - 72 | 0.0072260698718 1 - 73 | 0.0117721993042 1 - 74 | 0.0159759563853 1 - 75 | 0.0172867507994 1 - 76 | 0.0145989538982 1 - 77 | 0.00359663809602 1 - 78 | 0.00414500797315 1 - 79 | 0.00357508857343 1 - 80 | 0.00235942944117 1 - 81 | 0.0017191806711 1 - 82 | 0.000490638824414 1 - 83 | 2.12561622041e-06 1 - 84 | 0.0030850025486 1 - 85 | 0.00612857737993 1 - 86 | 0.00601995008058 1 - 87 | 0.00723738364666 1 - 88 | 0.00515742562265 1 - 89 | 0.00203672925602 1 - 90 | 0.00321652691664 1 - 91 | 0.00343058166403 1 - 92 | 0.00265928243105 1 - 93 | 0.00203462625572 1 - 94 | 0.00152840995187 1 - 95 | 6.10118531234e-05 2 - 0 | 0.00786964606803 2 - 1 | 0.0090820202126 2 - 2 | 0.00797110120867 2 - 3 | 0.00203526682356 2 - 4 | 0.000475647333105 2 - 5 | 0.000277339726086 2 - 6 | 8.06402635155e-06 2 - 7 | 4.74473389075e-06 2 - 8 | 0.0 2 - 9 | 0.0 2 - 10 | 0.0 2 - 11 | 0.0 2 - 12 | 0.00599770253652 2 - 13 | 0.00721400229273 2 - 14 | 0.00628016178814 2 - 15 | 0.00211595635276 2 - 16 | 0.00192482772257 2 - 17 | 0.000673891083816 2 - 18 | 0.000264372487888 2 - 19 | 0.000198611516928 2 - 20 | 1.13431953358e-05 2 - 21 | 0.0 2 - 22 | 0.0 2 - 23 | 0.0 2 - 24 | 0.00637550053162 2 - 25 | 0.00727272495208 2 - 26 | 0.00644467632049 2 - 27 | 0.00271235453541 2 - 28 | 0.00236091168401 2 - 29 | 0.00184081754738 2 - 30 | 0.000690646784464 2 - 31 | 0.000464324733051 2 - 32 | -0.000712200603335 2 - 33 | -0.000114446249989 2 - 34 | 0.0 2 - 35 | 0.0 2 - 36 | 0.00715442083662 2 - 37 | 0.00772043448083 2 - 38 | 0.0070146157462 2 - 39 | 0.00589903669955 2 - 40 | 0.00299458976578 2 - 41 | 0.00224012088209 2 - 42 | 0.00134154280523 2 - 43 | 0.00100825719067 2 - 44 | -7.67605804839e-05 2 - 45 | -0.000665592533033 2 - 46 | 0.0 2 - 47 | 0.0 2 - 48 | 0.00675823989816 2 - 49 | 0.00500914823664 2 - 50 | 0.00628367329594 2 - 51 | 0.00462982918735 2 - 52 | 0.00367652404787 2 - 53 | 0.00434811509019 2 - 54 | 0.0014494710316 2 - 55 | 0.0176846269943 2 - 56 | 0.000926893691946 2 - 57 | 9.57296915295e-05 2 - 58 | 1.24033586313e-05 2 - 59 | 0.0 2 - 60 | 0.006444257335 2 - 61 | 0.00276724267823 2 - 62 | 0.00163662686412 2 - 63 | -0.000248290501065 2 - 64 | -0.000222544588559 2 - 65 | 0.00364362981625 2 - 66 | 0.00389739988712 2 - 67 | 0.00207876795473 2 - 68 | 0.00131082601607 2 - 69 | 0.000235969443513 2 - 70 | 2.02931363556e-05 2 - 71 | 0.0 2 - 72 | 0.00539105506912 2 - 73 | 0.0078430203291 2 - 74 | 0.011521647503 2 - 75 | 0.0130743357289 2 - 76 | 0.0106054649129 2 - 77 | 0.00220009254348 2 - 78 | 0.00289380096499 2 - 79 | 0.00241431422527 2 - 80 | 0.00177146812115 2 - 81 | 0.00148459386456 2 - 82 | 0.000490915534417 2 - 83 | 1.63135619153e-06 2 - 84 | 0.00225565245924 2 - 85 | 0.00392170889588 2 - 86 | 0.00392191373561 2 - 87 | 0.00523790953475 2 - 88 | 0.00362181112298 2 - 89 | 0.00120977448322 2 - 90 | 0.00212668159646 2 - 91 | 0.00228214810817 2 - 92 | 0.00183276394893 2 - 93 | 0.00162944691279 2 - 94 | 0.00162098262583 2 - 95 | 7.7193312075e-05 3 - 0 | 0.00193139030968 3 - 1 | 0.00248932537785 3 - 2 | 0.00203526682356 3 - 3 | 0.00100371305736 3 - 4 | 0.000411256262232 3 - 5 | 0.000170496065323 3 - 6 | 5.96100344844e-05 3 - 7 | 2.40094045965e-05 3 - 8 | 0.0 3 - 9 | 0.0 3 - 10 | 0.0 3 - 11 | 0.0 3 - 12 | 0.00151467240963 3 - 13 | 0.00195832478714 3 - 14 | 0.00194477108428 3 - 15 | 0.00100788193687 3 - 16 | 0.000605630862435 3 - 17 | 0.000372336829169 3 - 18 | 0.00019190419152 3 - 19 | 0.000103874301554 3 - 20 | 2.80038893394e-05 3 - 21 | 0.0 3 - 22 | 0.0 3 - 23 | 0.0 3 - 24 | 0.00152413046255 3 - 25 | 0.00199655347462 3 - 26 | 0.00197882934222 3 - 27 | 0.00121970948978 3 - 28 | 0.000843317007876 3 - 29 | 0.00059534887138 3 - 30 | 0.000419210778702 3 - 31 | 0.000259564367011 3 - 32 | -3.32514558697e-05 3 - 33 | -1.08416158182e-05 3 - 34 | 0.0 3 - 35 | 0.0 3 - 36 | 0.00151055940987 3 - 37 | 0.00193124783588 3 - 38 | 0.0022327151604 3 - 39 | 0.00159261064054 3 - 40 | 0.00102429384775 3 - 41 | 0.000799139125693 3 - 42 | 0.000632916439185 3 - 43 | 0.000510774525678 3 - 44 | 0.000182104939083 3 - 45 | -0.000104990588284 3 - 46 | 0.0 3 - 47 | 0.0 3 - 48 | 0.00136106470763 3 - 49 | 0.00155705910607 3 - 50 | 0.00191522426907 3 - 51 | 0.00150883349691 3 - 52 | 0.00115379863261 3 - 53 | 0.00117043449644 3 - 54 | 0.000801322164357 3 - 55 | 0.00267370840868 3 - 56 | 0.000460328203253 3 - 57 | 0.000154930915758 3 - 58 | 1.67220244601e-05 3 - 59 | 0.0 3 - 60 | 0.00136616902433 3 - 61 | 0.00128001458474 3 - 62 | 0.00149751768415 3 - 63 | 0.00114388535449 3 - 64 | 0.000875378910179 3 - 65 | 0.00112257351049 3 - 66 | 0.0010579681949 3 - 67 | 0.000877961358449 3 - 68 | 0.000725116090676 3 - 69 | 0.000329864720182 3 - 70 | 5.74852684985e-05 3 - 71 | 0.0 3 - 72 | 0.00124882198415 3 - 73 | 0.00169482139509 3 - 74 | 0.00223287970077 3 - 75 | 0.00222718945288 3 - 76 | 0.00177599801539 3 - 77 | 0.00100356713005 3 - 78 | 0.0010353344609 3 - 79 | 0.001018738971 3 - 80 | 0.000929684276775 3 - 81 | 0.00069622915753 3 - 82 | 0.000257543082579 3 - 83 | 1.63567939637e-06 3 - 84 | 0.000863059894371 3 - 85 | 0.00100607580953 3 - 86 | 0.00120711818272 3 - 87 | 0.00124032600841 3 - 88 | 0.000943896580766 3 - 89 | 0.000706469933582 3 - 90 | 0.000773755756163 3 - 91 | 0.000817446352964 3 - 92 | 0.00082894342513 3 - 93 | 0.000840404153384 3 - 94 | 0.000850018588175 3 - 95 | 4.75029801892e-05 4 - 0 | 0.00024987106812 4 - 1 | 0.000543518499895 4 - 2 | 0.000475647333105 4 - 3 | 0.000411256262232 4 - 4 | 0.000422677081972 4 - 5 | 0.000144891114137 4 - 6 | 6.73646855421e-05 4 - 7 | 3.15472360545e-05 4 - 8 | 0.0 4 - 9 | 0.0 4 - 10 | 0.0 4 - 11 | 0.0 4 - 12 | 0.000195857761927 4 - 13 | 0.000194542424835 4 - 14 | 0.000790979257901 4 - 15 | 0.000676359730394 4 - 16 | 0.000186176381066 4 - 17 | 0.000281573723441 4 - 18 | 0.000181172760934 4 - 19 | 7.64854039587e-05 4 - 20 | 3.59698430932e-05 4 - 21 | 0.0 4 - 22 | 0.0 4 - 23 | 0.0 4 - 24 | 6.98244201596e-05 4 - 25 | 0.000234348797883 4 - 26 | 0.00077582942514 4 - 27 | 0.000817212753504 4 - 28 | 0.000384012135093 4 - 29 | 0.000223459274496 4 - 30 | 0.000343436329951 4 - 31 | 0.000199899733383 4 - 32 | 0.000191016664303 4 - 33 | 2.62315045872e-05 4 - 34 | 0.0 4 - 35 | 0.0 4 - 36 | -0.000180212461121 4 - 37 | -5.58562452363e-05 4 - 38 | 0.000918086499105 4 - 39 | 0.000249918074144 4 - 40 | 0.00041763955931 4 - 41 | 0.000334093006774 4 - 42 | 0.00036978475863 4 - 43 | 0.000373914034192 4 - 44 | 0.000262366374296 4 - 45 | 0.000108389940064 4 - 46 | 0.0 4 - 47 | 0.0 4 - 48 | -0.000197638577156 4 - 49 | 0.000382213092023 4 - 50 | 0.000609352257668 4 - 51 | 0.000561058814602 4 - 52 | 0.000439272290678 4 - 53 | 5.64844797571e-05 4 - 54 | 0.000543039959911 4 - 55 | -0.00135874604582 4 - 56 | 0.000306489784752 4 - 57 | 0.000162141765686 4 - 58 | 1.57925803469e-05 4 - 59 | 0.0 4 - 60 | -6.39926182246e-05 4 - 61 | 0.000786602340772 4 - 62 | 0.00161636009138 4 - 63 | 0.00173938442693 4 - 64 | 0.00133635502195 4 - 65 | 0.000291068648789 4 - 66 | 0.00010201213672 4 - 67 | 0.000570420418135 4 - 68 | 0.000500800928101 4 - 69 | 0.000337638614512 4 - 70 | 5.87501901555e-05 4 - 71 | 0.0 4 - 72 | 4.92409478168e-05 4 - 73 | -0.000503782089994 4 - 74 | -0.000943792813395 4 - 75 | -0.0013427413171 4 - 76 | -0.00124704708138 4 - 77 | 0.000602874364142 4 - 78 | 0.000379165340937 4 - 79 | 0.000473813815811 4 - 80 | 0.000629598515159 4 - 81 | 0.000427348324794 4 - 82 | 0.000174753055025 4 - 83 | 1.26661479731e-06 4 - 84 | 0.000565403371192 4 - 85 | 1.43071257275e-05 4 - 86 | 0.000284634008729 4 - 87 | -1.50388179219e-05 4 - 88 | -2.57015360191e-06 4 - 89 | 0.000563578772703 4 - 90 | 0.000297770109144 4 - 91 | 0.000226650311371 4 - 92 | 0.000422975814312 4 - 93 | 0.000556359168046 4 - 94 | 0.00065373773787 4 - 95 | 4.39538659098e-05 5 - 0 | 0.000199263562451 5 - 1 | 0.000345274800472 5 - 2 | 0.000277339726086 5 - 3 | 0.000170496065323 5 - 4 | 0.000144891114137 5 - 5 | 9.11015221894e-05 5 - 6 | 4.3151215665e-05 5 - 7 | 1.09619973348e-05 5 - 8 | 0.0 5 - 9 | 0.0 5 - 10 | 0.0 5 - 11 | 0.0 5 - 12 | 0.000165055226165 5 - 13 | 0.000196735864132 5 - 14 | 0.000388498497676 5 - 15 | 0.000301131247354 5 - 16 | 9.16317853728e-05 5 - 17 | 0.000122519590494 5 - 18 | 7.85526503431e-05 5 - 19 | 3.67625561623e-05 5 - 20 | 1.35908830685e-05 5 - 21 | 0.0 5 - 22 | 0.0 5 - 23 | 0.0 5 - 24 | 0.000125277194954 5 - 25 | 0.000212223546694 5 - 26 | 0.000408021393223 5 - 27 | 0.0003655187842 5 - 28 | 0.00017242654804 5 - 29 | 9.39231315333e-05 5 - 30 | 0.00014462304496 5 - 31 | 9.79357544531e-05 5 - 32 | 8.33617929122e-05 5 - 33 | 1.07316257138e-05 5 - 34 | 0.0 5 - 35 | 0.0 5 - 36 | 3.01691097574e-05 5 - 37 | 7.69947164245e-05 5 - 38 | 0.000379855585957 5 - 39 | 0.000173961970896 5 - 40 | 0.000205968717766 5 - 41 | 0.000151166945609 5 - 42 | 0.000159229890968 5 - 43 | 0.000167562237335 5 - 44 | 0.000108581816737 5 - 45 | 3.25797986691e-05 5 - 46 | 0.0 5 - 47 | 0.0 5 - 48 | -1.52919636222e-06 5 - 49 | 0.000237527652783 5 - 50 | 0.000337701802197 5 - 51 | 0.000304965188473 5 - 52 | 0.000239784195442 5 - 53 | 7.15054489408e-05 5 - 54 | 0.000221979217055 5 - 55 | -0.000790630088618 5 - 56 | 0.000128859324727 5 - 57 | 5.90153066843e-05 5 - 58 | 5.01149593197e-06 5 - 59 | 0.0 5 - 60 | 5.7182887464e-05 5 - 61 | 0.000338105588959 5 - 62 | 0.000692538090623 5 - 63 | 0.000711002559225 5 - 64 | 0.000548917207044 5 - 65 | 0.000161408812184 5 - 66 | 4.51845208554e-05 5 - 67 | 0.000209680830718 5 - 68 | 0.000226336595278 5 - 69 | 0.000132307409299 5 - 70 | 2.02323147279e-05 5 - 71 | 0.0 5 - 72 | 7.72217396064e-05 5 - 73 | -0.000106372894504 5 - 74 | -0.000235822701035 5 - 75 | -0.000348267705941 5 - 76 | -0.000344403790757 5 - 77 | 0.000266216918922 5 - 78 | 0.000173807091395 5 - 79 | 0.000206155713091 5 - 80 | 0.000268253859488 5 - 81 | 0.000188414524185 5 - 82 | 6.49758934587e-05 5 - 83 | 4.52720100477e-07 5 - 84 | 0.000204476650376 5 - 85 | 4.65672016148e-05 5 - 86 | 0.000154200077751 5 - 87 | 7.30548558005e-05 5 - 88 | 0.000103389716695 5 - 89 | 0.000257229679212 5 - 90 | 0.000133880645795 5 - 91 | 9.09902446366e-05 5 - 92 | 0.000194423582576 5 - 93 | 0.000253656072122 5 - 94 | 0.000259836281434 5 - 95 | 1.60833419184e-05 6 - 0 | -5.61197638164e-05 6 - 1 | 2.39035772153e-05 6 - 2 | 8.06402635155e-06 6 - 3 | 5.96100344844e-05 6 - 4 | 6.73646855421e-05 6 - 5 | 4.3151215665e-05 6 - 6 | 3.79184880439e-05 6 - 7 | 9.3438707238e-06 6 - 8 | 0.0 6 - 9 | 0.0 6 - 10 | 0.0 6 - 11 | 0.0 6 - 12 | -2.55794977571e-05 6 - 13 | -3.29665951459e-05 6 - 14 | 9.46609014262e-05 6 - 15 | 0.000152673476472 6 - 16 | 1.43722019347e-05 6 - 17 | 6.78762510082e-05 6 - 18 | 4.85619043674e-05 6 - 19 | 2.62904764127e-05 6 - 20 | 1.23353331468e-05 6 - 21 | 0.0 6 - 22 | 0.0 6 - 23 | 0.0 6 - 24 | -6.22582773382e-05 6 - 25 | -3.53861717235e-05 6 - 26 | 0.000102687052228 6 - 27 | 0.000168343840016 6 - 28 | 6.01472316231e-05 6 - 29 | 2.1109969309e-05 6 - 30 | 8.63346615764e-05 6 - 31 | 6.83658005248e-05 6 - 32 | 9.48107921386e-05 6 - 33 | 1.35166091493e-05 6 - 34 | 0.0 6 - 35 | 0.0 6 - 36 | -0.000140884840801 6 - 37 | -0.000133157292645 6 - 38 | 6.04375947908e-05 6 - 39 | -2.49774994853e-05 6 - 40 | 6.90839345334e-05 6 - 41 | 5.52116592621e-05 6 - 42 | 8.36419915312e-05 6 - 43 | 9.04395114222e-05 6 - 44 | 8.42088535844e-05 6 - 45 | 4.13197604423e-05 6 - 46 | 0.0 6 - 47 | 0.0 6 - 48 | -0.000168026965167 6 - 49 | 4.74579450367e-05 6 - 50 | 6.69002930528e-05 6 - 51 | 8.99280809456e-05 6 - 52 | 6.96032963994e-05 6 - 53 | -4.96572096858e-05 6 - 54 | 0.000122284618367 6 - 55 | -0.00115975427219 6 - 56 | 6.03488582007e-05 6 - 57 | 3.83435327592e-05 6 - 58 | 4.0870035457e-06 6 - 59 | 0.0 6 - 60 | -0.000113259837316 6 - 61 | 0.000151065724463 6 - 62 | 0.00040703243719 6 - 63 | 0.000466815651379 6 - 64 | 0.000361205727599 6 - 65 | 2.06965286956e-05 6 - 66 | -5.92069490779e-05 6 - 67 | 7.99040437523e-05 6 - 68 | 0.000116319765078 6 - 69 | 8.39825861541e-05 6 - 70 | 1.42877260508e-05 6 - 71 | 0.0 6 - 72 | -7.98452315403e-05 6 - 73 | -0.00023907852461 6 - 74 | -0.000412343847133 6 - 75 | -0.000497528867014 6 - 76 | -0.000450559410052 6 - 77 | 0.000128463521603 6 - 78 | 5.5585256659e-05 6 - 79 | 8.92787871023e-05 6 - 80 | 0.000137137446817 6 - 81 | 8.96498946338e-05 6 - 82 | 3.1628135217e-05 6 - 83 | 2.77319257244e-07 6 - 84 | 5.318355987e-05 6 - 85 | -5.26235267137e-05 6 - 86 | 8.56562044085e-06 6 - 87 | -6.59927900925e-05 6 - 88 | 1.20847867903e-05 6 - 89 | 0.000150554797854 6 - 90 | 4.87922470406e-05 6 - 91 | 1.83575947219e-05 6 - 92 | 0.000101225251295 6 - 93 | 0.000135693731911 6 - 94 | 0.000134885606349 6 - 95 | 8.06396721e-06 7 - 0 | -1.04371850562e-05 7 - 1 | 2.08810767598e-05 7 - 2 | 4.74473389075e-06 7 - 3 | 2.40094045965e-05 7 - 4 | 3.15472360545e-05 7 - 5 | 1.09619973348e-05 7 - 6 | 9.3438707238e-06 7 - 7 | 7.32676868519e-06 7 - 8 | 0.0 7 - 9 | 0.0 7 - 10 | 0.0 7 - 11 | 0.0 7 - 12 | -1.12744840893e-05 7 - 13 | -9.52629662504e-06 7 - 14 | 3.39147105503e-05 7 - 15 | 4.69591494583e-05 7 - 16 | 2.86991256371e-06 7 - 17 | 2.46179928104e-05 7 - 18 | 1.78954537394e-05 7 - 19 | 1.00470395344e-05 7 - 20 | 5.62175167229e-06 7 - 21 | 0.0 7 - 22 | 0.0 7 - 23 | 0.0 7 - 24 | -3.20123373222e-05 7 - 25 | -1.33590670109e-05 7 - 26 | 2.74128059635e-05 7 - 27 | 5.45821702377e-05 7 - 28 | 2.15887008284e-05 7 - 29 | 1.06714275681e-05 7 - 30 | 3.04477764098e-05 7 - 31 | 2.12055178535e-05 7 - 32 | 2.9923955519e-05 7 - 33 | 5.28732911025e-06 7 - 34 | 0.0 7 - 35 | 0.0 7 - 36 | -5.22782096483e-05 7 - 37 | -3.66841097292e-05 7 - 38 | 4.28463623168e-05 7 - 39 | -1.07572701676e-05 7 - 40 | 1.95205076565e-05 7 - 41 | 1.45427975584e-05 7 - 42 | 2.6243894944e-05 7 - 43 | 3.00568240889e-05 7 - 44 | 2.78872724315e-05 7 - 45 | 1.61796399291e-05 7 - 46 | 0.0 7 - 47 | 0.0 7 - 48 | -5.75558116344e-05 7 - 49 | 1.14183110248e-05 7 - 50 | 1.53458676961e-05 7 - 51 | 2.12696496771e-05 7 - 52 | 1.59656984486e-05 7 - 53 | -1.94680732731e-05 7 - 54 | 3.46321147719e-05 7 - 55 | -0.000240758628149 7 - 56 | 2.16508583258e-05 7 - 57 | 1.61931611827e-05 7 - 58 | 2.44744938937e-06 7 - 59 | 0.0 7 - 60 | -4.18760117072e-05 7 - 61 | 5.19360115654e-05 7 - 62 | 0.000127838845475 7 - 63 | 0.000146396246169 7 - 64 | 0.000114892405 7 - 65 | 9.66668904312e-07 7 - 66 | -1.10230634106e-05 7 - 67 | 4.58583651109e-05 7 - 68 | 3.29882402491e-05 7 - 69 | 2.87264297197e-05 7 - 70 | 5.50040780745e-06 7 - 71 | 0.0 7 - 72 | -2.67635989695e-05 7 - 73 | -8.01185969771e-05 7 - 74 | -0.000136149276658 7 - 75 | -0.000180496763689 7 - 76 | -0.000150684387764 7 - 77 | 4.05840905305e-05 7 - 78 | 1.3124126616e-05 7 - 79 | 3.05281452225e-05 7 - 80 | 5.00890612776e-05 7 - 81 | 3.36005224848e-05 7 - 82 | 1.11758289942e-05 7 - 83 | 1.18150047906e-07 7 - 84 | 1.98300169732e-05 7 - 85 | -1.5980348131e-05 7 - 86 | 1.91110975354e-06 7 - 87 | -2.86507010327e-05 7 - 88 | -1.97616394945e-05 7 - 89 | 4.04630644302e-05 7 - 90 | 1.23884958941e-05 7 - 91 | 7.85667780722e-06 7 - 92 | 3.60963477671e-05 7 - 93 | 4.9725636217e-05 7 - 94 | 4.53272707252e-05 7 - 95 | 3.24060679452e-06 8 - 0 | 0.0 8 - 1 | 0.0 8 - 2 | 0.0 8 - 3 | 0.0 8 - 4 | 0.0 8 - 5 | 0.0 8 - 6 | 0.0 8 - 7 | 0.0 8 - 8 | 0.0 8 - 9 | 0.0 8 - 10 | 0.0 8 - 11 | 0.0 8 - 12 | 0.0 8 - 13 | 0.0 8 - 14 | 0.0 8 - 15 | 0.0 8 - 16 | 0.0 8 - 17 | 0.0 8 - 18 | 0.0 8 - 19 | 0.0 8 - 20 | 0.0 8 - 21 | 0.0 8 - 22 | 0.0 8 - 23 | 0.0 8 - 24 | 0.0 8 - 25 | 0.0 8 - 26 | 0.0 8 - 27 | 0.0 8 - 28 | 0.0 8 - 29 | 0.0 8 - 30 | 0.0 8 - 31 | 0.0 8 - 32 | 0.0 8 - 33 | 0.0 8 - 34 | 0.0 8 - 35 | 0.0 8 - 36 | 0.0 8 - 37 | 0.0 8 - 38 | 0.0 8 - 39 | 0.0 8 - 40 | 0.0 8 - 41 | 0.0 8 - 42 | 0.0 8 - 43 | 0.0 8 - 44 | 0.0 8 - 45 | 0.0 8 - 46 | 0.0 8 - 47 | 0.0 8 - 48 | 0.0 8 - 49 | 0.0 8 - 50 | 0.0 8 - 51 | 0.0 8 - 52 | 0.0 8 - 53 | 0.0 8 - 54 | 0.0 8 - 55 | 0.0 8 - 56 | 0.0 8 - 57 | 0.0 8 - 58 | 0.0 8 - 59 | 0.0 8 - 60 | 0.0 8 - 61 | 0.0 8 - 62 | 0.0 8 - 63 | 0.0 8 - 64 | 0.0 8 - 65 | 0.0 8 - 66 | 0.0 8 - 67 | 0.0 8 - 68 | 0.0 8 - 69 | 0.0 8 - 70 | 0.0 8 - 71 | 0.0 8 - 72 | 0.0 8 - 73 | 0.0 8 - 74 | 0.0 8 - 75 | 0.0 8 - 76 | 0.0 8 - 77 | 0.0 8 - 78 | 0.0 8 - 79 | 0.0 8 - 80 | 0.0 8 - 81 | 0.0 8 - 82 | 0.0 8 - 83 | 0.0 8 - 84 | 0.0 8 - 85 | 0.0 8 - 86 | 0.0 8 - 87 | 0.0 8 - 88 | 0.0 8 - 89 | 0.0 8 - 90 | 0.0 8 - 91 | 0.0 8 - 92 | 0.0 8 - 93 | 0.0 8 - 94 | 0.0 8 - 95 | 0.0 9 - 0 | 0.0 9 - 1 | 0.0 9 - 2 | 0.0 9 - 3 | 0.0 9 - 4 | 0.0 9 - 5 | 0.0 9 - 6 | 0.0 9 - 7 | 0.0 9 - 8 | 0.0 9 - 9 | 0.0 9 - 10 | 0.0 9 - 11 | 0.0 9 - 12 | 0.0 9 - 13 | 0.0 9 - 14 | 0.0 9 - 15 | 0.0 9 - 16 | 0.0 9 - 17 | 0.0 9 - 18 | 0.0 9 - 19 | 0.0 9 - 20 | 0.0 9 - 21 | 0.0 9 - 22 | 0.0 9 - 23 | 0.0 9 - 24 | 0.0 9 - 25 | 0.0 9 - 26 | 0.0 9 - 27 | 0.0 9 - 28 | 0.0 9 - 29 | 0.0 9 - 30 | 0.0 9 - 31 | 0.0 9 - 32 | 0.0 9 - 33 | 0.0 9 - 34 | 0.0 9 - 35 | 0.0 9 - 36 | 0.0 9 - 37 | 0.0 9 - 38 | 0.0 9 - 39 | 0.0 9 - 40 | 0.0 9 - 41 | 0.0 9 - 42 | 0.0 9 - 43 | 0.0 9 - 44 | 0.0 9 - 45 | 0.0 9 - 46 | 0.0 9 - 47 | 0.0 9 - 48 | 0.0 9 - 49 | 0.0 9 - 50 | 0.0 9 - 51 | 0.0 9 - 52 | 0.0 9 - 53 | 0.0 9 - 54 | 0.0 9 - 55 | 0.0 9 - 56 | 0.0 9 - 57 | 0.0 9 - 58 | 0.0 9 - 59 | 0.0 9 - 60 | 0.0 9 - 61 | 0.0 9 - 62 | 0.0 9 - 63 | 0.0 9 - 64 | 0.0 9 - 65 | 0.0 9 - 66 | 0.0 9 - 67 | 0.0 9 - 68 | 0.0 9 - 69 | 0.0 9 - 70 | 0.0 9 - 71 | 0.0 9 - 72 | 0.0 9 - 73 | 0.0 9 - 74 | 0.0 9 - 75 | 0.0 9 - 76 | 0.0 9 - 77 | 0.0 9 - 78 | 0.0 9 - 79 | 0.0 9 - 80 | 0.0 9 - 81 | 0.0 9 - 82 | 0.0 9 - 83 | 0.0 9 - 84 | 0.0 9 - 85 | 0.0 9 - 86 | 0.0 9 - 87 | 0.0 9 - 88 | 0.0 9 - 89 | 0.0 9 - 90 | 0.0 9 - 91 | 0.0 9 - 92 | 0.0 9 - 93 | 0.0 9 - 94 | 0.0 9 - 95 | 0.0 10 - 0 | 0.0 10 - 1 | 0.0 10 - 2 | 0.0 10 - 3 | 0.0 10 - 4 | 0.0 10 - 5 | 0.0 10 - 6 | 0.0 10 - 7 | 0.0 10 - 8 | 0.0 10 - 9 | 0.0 10 - 10 | 0.0 10 - 11 | 0.0 10 - 12 | 0.0 10 - 13 | 0.0 10 - 14 | 0.0 10 - 15 | 0.0 10 - 16 | 0.0 10 - 17 | 0.0 10 - 18 | 0.0 10 - 19 | 0.0 10 - 20 | 0.0 10 - 21 | 0.0 10 - 22 | 0.0 10 - 23 | 0.0 10 - 24 | 0.0 10 - 25 | 0.0 10 - 26 | 0.0 10 - 27 | 0.0 10 - 28 | 0.0 10 - 29 | 0.0 10 - 30 | 0.0 10 - 31 | 0.0 10 - 32 | 0.0 10 - 33 | 0.0 10 - 34 | 0.0 10 - 35 | 0.0 10 - 36 | 0.0 10 - 37 | 0.0 10 - 38 | 0.0 10 - 39 | 0.0 10 - 40 | 0.0 10 - 41 | 0.0 10 - 42 | 0.0 10 - 43 | 0.0 10 - 44 | 0.0 10 - 45 | 0.0 10 - 46 | 0.0 10 - 47 | 0.0 10 - 48 | 0.0 10 - 49 | 0.0 10 - 50 | 0.0 10 - 51 | 0.0 10 - 52 | 0.0 10 - 53 | 0.0 10 - 54 | 0.0 10 - 55 | 0.0 10 - 56 | 0.0 10 - 57 | 0.0 10 - 58 | 0.0 10 - 59 | 0.0 10 - 60 | 0.0 10 - 61 | 0.0 10 - 62 | 0.0 10 - 63 | 0.0 10 - 64 | 0.0 10 - 65 | 0.0 10 - 66 | 0.0 10 - 67 | 0.0 10 - 68 | 0.0 10 - 69 | 0.0 10 - 70 | 0.0 10 - 71 | 0.0 10 - 72 | 0.0 10 - 73 | 0.0 10 - 74 | 0.0 10 - 75 | 0.0 10 - 76 | 0.0 10 - 77 | 0.0 10 - 78 | 0.0 10 - 79 | 0.0 10 - 80 | 0.0 10 - 81 | 0.0 10 - 82 | 0.0 10 - 83 | 0.0 10 - 84 | 0.0 10 - 85 | 0.0 10 - 86 | 0.0 10 - 87 | 0.0 10 - 88 | 0.0 10 - 89 | 0.0 10 - 90 | 0.0 10 - 91 | 0.0 10 - 92 | 0.0 10 - 93 | 0.0 10 - 94 | 0.0 10 - 95 | 0.0 11 - 0 | 0.0 11 - 1 | 0.0 11 - 2 | 0.0 11 - 3 | 0.0 11 - 4 | 0.0 11 - 5 | 0.0 11 - 6 | 0.0 11 - 7 | 0.0 11 - 8 | 0.0 11 - 9 | 0.0 11 - 10 | 0.0 11 - 11 | 0.0 11 - 12 | 0.0 11 - 13 | 0.0 11 - 14 | 0.0 11 - 15 | 0.0 11 - 16 | 0.0 11 - 17 | 0.0 11 - 18 | 0.0 11 - 19 | 0.0 11 - 20 | 0.0 11 - 21 | 0.0 11 - 22 | 0.0 11 - 23 | 0.0 11 - 24 | 0.0 11 - 25 | 0.0 11 - 26 | 0.0 11 - 27 | 0.0 11 - 28 | 0.0 11 - 29 | 0.0 11 - 30 | 0.0 11 - 31 | 0.0 11 - 32 | 0.0 11 - 33 | 0.0 11 - 34 | 0.0 11 - 35 | 0.0 11 - 36 | 0.0 11 - 37 | 0.0 11 - 38 | 0.0 11 - 39 | 0.0 11 - 40 | 0.0 11 - 41 | 0.0 11 - 42 | 0.0 11 - 43 | 0.0 11 - 44 | 0.0 11 - 45 | 0.0 11 - 46 | 0.0 11 - 47 | 0.0 11 - 48 | 0.0 11 - 49 | 0.0 11 - 50 | 0.0 11 - 51 | 0.0 11 - 52 | 0.0 11 - 53 | 0.0 11 - 54 | 0.0 11 - 55 | 0.0 11 - 56 | 0.0 11 - 57 | 0.0 11 - 58 | 0.0 11 - 59 | 0.0 11 - 60 | 0.0 11 - 61 | 0.0 11 - 62 | 0.0 11 - 63 | 0.0 11 - 64 | 0.0 11 - 65 | 0.0 11 - 66 | 0.0 11 - 67 | 0.0 11 - 68 | 0.0 11 - 69 | 0.0 11 - 70 | 0.0 11 - 71 | 0.0 11 - 72 | 0.0 11 - 73 | 0.0 11 - 74 | 0.0 11 - 75 | 0.0 11 - 76 | 0.0 11 - 77 | 0.0 11 - 78 | 0.0 11 - 79 | 0.0 11 - 80 | 0.0 11 - 81 | 0.0 11 - 82 | 0.0 11 - 83 | 0.0 11 - 84 | 0.0 11 - 85 | 0.0 11 - 86 | 0.0 11 - 87 | 0.0 11 - 88 | 0.0 11 - 89 | 0.0 11 - 90 | 0.0 11 - 91 | 0.0 11 - 92 | 0.0 11 - 93 | 0.0 11 - 94 | 0.0 11 - 95 | 0.0 12 - 0 | 0.00725724234117 12 - 1 | 0.00830431957504 12 - 2 | 0.00599770253652 12 - 3 | 0.00151467240963 12 - 4 | 0.000195857761927 12 - 5 | 0.000165055226165 12 - 6 | -2.55794977571e-05 12 - 7 | -1.12744840893e-05 12 - 8 | 0.0 12 - 9 | 0.0 12 - 10 | 0.0 12 - 11 | 0.0 12 - 12 | 0.00606279712736 12 - 13 | 0.00738495490201 12 - 14 | 0.00547495619336 12 - 15 | 0.00161162933552 12 - 16 | 0.00171596427143 12 - 17 | 0.000430490562737 12 - 18 | 0.000101558946076 12 - 19 | 0.000122124206135 12 - 20 | -5.76239183576e-06 12 - 21 | 0.0 12 - 22 | 0.0 12 - 23 | 0.0 12 - 24 | 0.00610951292372 12 - 25 | 0.00742800797302 12 - 26 | 0.00585025459469 12 - 27 | 0.00223424525331 12 - 28 | 0.00205357802755 12 - 29 | 0.00153585521953 12 - 30 | 0.00040081750912 12 - 31 | 0.000277482673197 12 - 32 | -0.000687643833987 12 - 33 | -0.000102258307301 12 - 34 | 0.0 12 - 35 | 0.0 12 - 36 | 0.00662083718748 12 - 37 | 0.00785344201364 12 - 38 | 0.00639625053925 12 - 39 | 0.00567354999767 12 - 40 | 0.00259780826718 12 - 41 | 0.00198181114548 12 - 42 | 0.0010828073938 12 - 43 | 0.000629775665814 12 - 44 | -0.00023055549196 12 - 45 | -0.000581470259347 12 - 46 | 0.0 12 - 47 | 0.0 12 - 48 | 0.00622202559637 12 - 49 | 0.00497287466506 12 - 50 | 0.0058818087985 12 - 51 | 0.00428122003691 12 - 52 | 0.00327056153943 12 - 53 | 0.00419873690242 12 - 54 | 0.0011083932876 12 - 55 | 0.0161297584957 12 - 56 | 0.000578627256413 12 - 57 | -3.25891042718e-05 12 - 58 | -3.38202019192e-07 12 - 59 | 0.0 12 - 60 | 0.00586223927756 12 - 61 | 0.00241778445179 12 - 62 | 0.000907709559216 12 - 63 | -0.000948990255407 12 - 64 | -0.000781369902774 12 - 65 | 0.00335553192477 12 - 66 | 0.00367801008527 12 - 67 | 0.00153309269583 12 - 68 | 0.00085399823275 12 - 69 | -4.76236568959e-05 12 - 70 | -2.42311296725e-05 12 - 71 | 0.0 12 - 72 | 0.00487704524262 12 - 73 | 0.00792026484135 12 - 74 | 0.0115725607421 12 - 75 | 0.0130757894272 12 - 76 | 0.0109553075376 12 - 77 | 0.00189865826564 12 - 78 | 0.00259303108222 12 - 79 | 0.0020872322784 12 - 80 | 0.00118978582366 12 - 81 | 0.000915710296527 12 - 82 | 0.000243458629137 12 - 83 | 4.15413622361e-07 12 - 84 | 0.00182808096654 12 - 85 | 0.00382907425086 12 - 86 | 0.00377818077254 12 - 87 | 0.00491378017153 12 - 88 | 0.0035295522578 12 - 89 | 0.000895026295766 12 - 90 | 0.00192917468639 12 - 91 | 0.00210458821759 12 - 92 | 0.00143325653292 12 - 93 | 0.000998206255637 12 - 94 | 0.000783566757454 12 - 95 | 2.40824546492e-05 13 - 0 | 0.00925039953685 13 - 1 | 0.0114178972261 13 - 2 | 0.00721400229273 13 - 3 | 0.00195832478714 13 - 4 | 0.000194542424835 13 - 5 | 0.000196735864132 13 - 6 | -3.29665951459e-05 13 - 7 | -9.52629662504e-06 13 - 8 | 0.0 13 - 9 | 0.0 13 - 10 | 0.0 13 - 11 | 0.0 13 - 12 | 0.00738495490201 13 - 13 | 0.0112871422638 13 - 14 | 0.0065561655133 13 - 15 | 0.00173834456214 13 - 16 | 0.00223290821685 13 - 17 | 0.000557896581682 13 - 18 | 0.000148397778411 13 - 19 | 0.000170360697007 13 - 20 | -7.86924611921e-06 13 - 21 | 0.0 13 - 22 | 0.0 13 - 23 | 0.0 13 - 24 | 0.00796363832398 13 - 25 | 0.0106313499222 13 - 26 | 0.00693364400455 13 - 27 | 0.00247012245543 13 - 28 | 0.00260291532728 13 - 29 | 0.00198494640747 13 - 30 | 0.00058804226409 13 - 31 | 0.000377258778082 13 - 32 | -0.00108238817391 13 - 33 | -0.000172769880751 13 - 34 | 0.0 13 - 35 | 0.0 13 - 36 | 0.00886881081 13 - 37 | 0.0113072163305 13 - 38 | 0.00783915460536 13 - 39 | 0.00715171630418 13 - 40 | 0.00330611360472 13 - 41 | 0.00252085217408 13 - 42 | 0.00149711589378 13 - 43 | 0.000837978247683 13 - 44 | -0.000348165722607 13 - 45 | -0.000914450981313 13 - 46 | 0.0 13 - 47 | 0.0 13 - 48 | 0.00833886450612 13 - 49 | 0.00734454532743 13 - 50 | 0.00774135969966 13 - 51 | 0.0054135330859 13 - 52 | 0.00406653233867 13 - 53 | 0.00573979536839 13 - 54 | 0.00142716913038 13 - 55 | 0.022812038697 13 - 56 | 0.000796782741658 13 - 57 | -2.52284661e-05 13 - 58 | 7.82857988645e-06 13 - 59 | 0.0 13 - 60 | 0.00776009528636 13 - 61 | 0.00387687637469 13 - 62 | 0.00116495942012 13 - 63 | -0.00152441868254 13 - 64 | -0.00125313628052 13 - 65 | 0.00444434119722 13 - 66 | 0.00496931783339 13 - 67 | 0.00197112086859 13 - 68 | 0.00115729945144 13 - 69 | -2.46169387136e-05 13 - 70 | -2.47618794125e-06 13 - 71 | 0.0 13 - 72 | 0.0065018232222 13 - 73 | 0.01179131568 13 - 74 | 0.0159902367356 13 - 75 | 0.0172882263506 13 - 76 | 0.0149191673677 13 - 77 | 0.00269097012582 13 - 78 | 0.0034752072758 13 - 79 | 0.00301101701349 13 - 80 | 0.00165282341897 13 - 81 | 0.00121538522833 13 - 82 | 0.000305680951194 13 - 83 | 1.60413405321e-06 13 - 84 | 0.00237824954516 13 - 85 | 0.00588916360739 13 - 86 | 0.00556987585579 13 - 87 | 0.00661225539675 13 - 88 | 0.00474861922987 13 - 89 | 0.00126859444928 13 - 90 | 0.00281213761845 13 - 91 | 0.00325402630619 13 - 92 | 0.00227960773679 13 - 93 | 0.00145762081629 13 - 94 | 0.000709777532503 13 - 95 | 8.00226061321e-06 14 - 0 | 0.00701414334472 14 - 1 | 0.00820267464135 14 - 2 | 0.00628016178814 14 - 3 | 0.00194477108428 14 - 4 | 0.000790979257901 14 - 5 | 0.000388498497676 14 - 6 | 9.46609014262e-05 14 - 7 | 3.39147105503e-05 14 - 8 | 0.0 14 - 9 | 0.0 14 - 10 | 0.0 14 - 11 | 0.0 14 - 12 | 0.00547495619336 14 - 13 | 0.0065561655133 14 - 14 | 0.00709028347928 14 - 15 | 0.00278077245064 14 - 16 | 0.00180377135867 14 - 17 | 0.000900371234336 14 - 18 | 0.000439468065963 14 - 19 | 0.000253153216742 14 - 20 | 5.06016704466e-05 14 - 21 | 0.0 14 - 22 | 0.0 14 - 23 | 0.0 14 - 24 | 0.00566494641328 14 - 25 | 0.00660518702999 14 - 26 | 0.00679439349494 14 - 27 | 0.00352945575801 14 - 28 | 0.00243841750601 14 - 29 | 0.00177169458615 14 - 30 | 0.00103193975038 14 - 31 | 0.000665932518666 14 - 32 | -0.000316859362331 14 - 33 | -6.34546487023e-05 14 - 34 | 0.0 14 - 35 | 0.0 14 - 36 | 0.00599458040769 14 - 37 | 0.00640728535568 14 - 38 | 0.00690672455254 14 - 39 | 0.00515107986717 14 - 40 | 0.00307982045507 14 - 41 | 0.0023214886812 14 - 42 | 0.00162313512132 14 - 43 | 0.0013310152611 14 - 44 | 0.000285762817459 14 - 45 | -0.000443158069752 14 - 46 | 0.0 14 - 47 | 0.0 14 - 48 | 0.00570775261146 14 - 49 | 0.00502489598376 14 - 50 | 0.00637613507715 14 - 51 | 0.00483738655846 14 - 52 | 0.00388355976446 14 - 53 | 0.00358550985961 14 - 54 | 0.00189580232369 14 - 55 | 0.0114599489359 14 - 56 | 0.00115008526045 14 - 57 | 0.000266294772333 14 - 58 | 2.5164888014e-05 14 - 59 | 0.0 14 - 60 | 0.00566537069901 14 - 61 | 0.00380732772459 14 - 62 | 0.00441958185205 14 - 63 | 0.00308019427296 14 - 64 | 0.00225721712128 14 - 65 | 0.00346360539975 14 - 66 | 0.00339469880782 14 - 67 | 0.0024543081437 14 - 68 | 0.0017129684139 14 - 69 | 0.000599681228219 14 - 70 | 8.2245791309e-05 14 - 71 | 0.0 14 - 72 | 0.00472039946108 14 - 73 | 0.00584939830844 14 - 74 | 0.00775106688838 14 - 75 | 0.00843159185614 14 - 76 | 0.00661537307958 14 - 77 | 0.0030025074562 14 - 78 | 0.00305616445496 14 - 79 | 0.00270688323905 14 - 80 | 0.00224743975742 14 - 81 | 0.00172922063907 14 - 82 | 0.00061572695175 14 - 83 | 2.79634930964e-06 14 - 84 | 0.00273757625198 14 - 85 | 0.00353325445569 14 - 86 | 0.00375891588839 14 - 87 | 0.00436477753721 14 - 88 | 0.00306126325257 14 - 89 | 0.00209407270783 14 - 90 | 0.00236924922463 14 - 91 | 0.00231578421108 14 - 92 | 0.00209437098026 14 - 93 | 0.00200695946297 14 - 94 | 0.00211488788243 14 - 95 | 0.000114160740723 15 - 0 | 0.00196275612097 15 - 1 | 0.00278787478704 15 - 2 | 0.00211595635276 15 - 3 | 0.00100788193687 15 - 4 | 0.000676359730394 15 - 5 | 0.000301131247354 15 - 6 | 0.000152673476472 15 - 7 | 4.69591494583e-05 15 - 8 | 0.0 15 - 9 | 0.0 15 - 10 | 0.0 15 - 11 | 0.0 15 - 12 | 0.00161162933552 15 - 13 | 0.00173834456214 15 - 14 | 0.00278077245064 15 - 15 | 0.00211773200788 15 - 16 | 0.000711758784727 15 - 17 | 0.00064120354352 15 - 18 | 0.000380540107515 15 - 19 | 0.000177697921257 15 - 20 | 5.94942673253e-05 15 - 21 | 0.0 15 - 22 | 0.0 15 - 23 | 0.0 15 - 24 | 0.00146764602336 15 - 25 | 0.00192069389633 15 - 26 | 0.00297437448157 15 - 27 | 0.00245828709059 15 - 28 | 0.00118273570724 15 - 29 | 0.000717857843064 15 - 30 | 0.000764163390249 15 - 31 | 0.000474206398427 15 - 32 | 0.000253320168408 15 - 33 | 2.68237387248e-05 15 - 34 | 0.0 15 - 35 | 0.0 15 - 36 | 0.00114177150848 15 - 37 | 0.00118980939033 15 - 38 | 0.00262900079543 15 - 39 | 0.00152014580008 15 - 40 | 0.00143530746785 15 - 41 | 0.0010671989346 15 - 42 | 0.000982553879127 15 - 43 | 0.00089229234333 15 - 44 | 0.000492474076416 15 - 45 | 6.40101536591e-05 15 - 46 | 0.0 15 - 47 | 0.0 15 - 48 | 0.00106435414763 15 - 49 | 0.00193304240255 15 - 50 | 0.00256734858771 15 - 51 | 0.00226320580332 15 - 52 | 0.00185228828746 15 - 53 | 0.000853798858056 15 - 54 | 0.00138104554655 15 - 55 | -0.00207581435516 15 - 56 | 0.000727017592617 15 - 57 | 0.000296309625168 15 - 58 | 2.5799445536e-05 15 - 59 | 0.0 15 - 60 | 0.00138429345514 15 - 61 | 0.00245555603155 15 - 62 | 0.00441542057133 15 - 63 | 0.00449648515342 15 - 64 | 0.00338717098102 15 - 65 | 0.00129225538067 15 - 66 | 0.000929632546129 15 - 67 | 0.00134748613721 15 - 68 | 0.00117281906948 15 - 69 | 0.000655366110081 15 - 70 | 0.000107273132427 15 - 71 | 0.0 15 - 72 | 0.00118541635665 15 - 73 | 0.000245606738472 15 - 74 | -0.000504895891191 15 - 75 | -0.000982872860752 15 - 76 | -0.0011857648411 15 - 77 | 0.00200845327509 15 - 78 | 0.00142311490492 15 - 79 | 0.00141916840516 15 - 80 | 0.00149507292872 15 - 81 | 0.00104136940636 15 - 82 | 0.000416557801807 15 - 83 | 2.46376449701e-06 15 - 84 | 0.00146355093023 15 - 85 | 0.000854561638168 15 - 86 | 0.00124364125129 15 - 87 | 0.000971873789125 15 - 88 | 0.000769119500356 15 - 89 | 0.00170173650989 15 - 90 | 0.00114216252521 15 - 91 | 0.000919177964981 15 - 92 | 0.00114713495716 15 - 93 | 0.0012920445037 15 - 94 | 0.00152627568981 15 - 95 | 9.22706509619e-05 16 - 0 | 0.00218592771666 16 - 1 | 0.0025782770829 16 - 2 | 0.00192482772257 16 - 3 | 0.000605630862435 16 - 4 | 0.000186176381066 16 - 5 | 9.16317853728e-05 16 - 6 | 1.43722019347e-05 16 - 7 | 2.86991256371e-06 16 - 8 | 0.0 16 - 9 | 0.0 16 - 10 | 0.0 16 - 11 | 0.0 16 - 12 | 0.00171596427143 16 - 13 | 0.00223290821685 16 - 14 | 0.00180377135867 16 - 15 | 0.000711758784727 16 - 16 | 0.00077804393371 16 - 17 | 0.000276792616421 16 - 18 | 9.39018761016e-05 16 - 19 | 7.0518252298e-05 16 - 20 | 1.09823491307e-05 16 - 21 | 0.0 16 - 22 | 0.0 16 - 23 | 0.0 16 - 24 | 0.00181617936575 16 - 25 | 0.00224092625965 16 - 26 | 0.00179039355959 16 - 27 | 0.000785074197095 16 - 28 | 0.000788082568938 16 - 29 | 0.000589406984104 16 - 30 | 0.000244104035441 16 - 31 | 0.000159495856988 16 - 32 | -0.00017249651998 16 - 33 | -2.80073801755e-05 16 - 34 | 0.0 16 - 35 | 0.0 16 - 36 | 0.00198971091558 16 - 37 | 0.0024212584551 16 - 38 | 0.0021757268031 16 - 39 | 0.00179276821116 16 - 40 | 0.000904577230632 16 - 41 | 0.000755364674392 16 - 42 | 0.000480111245934 16 - 43 | 0.000316267644237 16 - 44 | 1.95941590839e-05 16 - 45 | -0.000176265084179 16 - 46 | 0.0 16 - 47 | 0.0 16 - 48 | 0.00183512876058 16 - 49 | 0.00154436568096 16 - 50 | 0.00181362146222 16 - 51 | 0.00130405376537 16 - 52 | 0.00100226010705 16 - 53 | 0.00138257528972 16 - 54 | 0.000572799003831 16 - 55 | 0.00500045706079 16 - 56 | 0.000304551110857 16 - 57 | 5.62479500469e-05 16 - 58 | 7.78661210308e-06 16 - 59 | 0.0 16 - 60 | 0.00173019344471 16 - 61 | 0.000813041627697 16 - 62 | 0.0002888252758 16 - 63 | -0.000305437872496 16 - 64 | -0.00021352928326 16 - 65 | 0.00114429563474 16 - 66 | 0.00122802165952 16 - 67 | 0.000612757465804 16 - 68 | 0.000444335656066 16 - 69 | 0.000122529289649 16 - 70 | 2.34930635979e-05 16 - 71 | 0.0 16 - 72 | 0.00148924121463 16 - 73 | 0.0024729878623 16 - 74 | 0.00368848486164 16 - 75 | 0.00405457911648 16 - 76 | 0.00334597335519 16 - 77 | 0.00061476565534 16 - 78 | 0.000935539233953 16 - 79 | 0.000803881014436 16 - 80 | 0.000577699353159 16 - 81 | 0.0004631048629 16 - 82 | 0.000173152704311 16 - 83 | 8.48383212098e-07 16 - 84 | 0.000695460851309 16 - 85 | 0.00121277162448 16 - 86 | 0.00129029355397 16 - 87 | 0.00153099793592 16 - 88 | 0.00118168873857 16 - 89 | 0.000341391218293 16 - 90 | 0.000682595428772 16 - 91 | 0.000776493963073 16 - 92 | 0.000609938712503 16 - 93 | 0.000529318406691 16 - 94 | 0.00054356606817 16 - 95 | 2.53156969404e-05 17 - 0 | 0.000526274761454 17 - 1 | 0.000860617988881 17 - 2 | 0.000673891083816 17 - 3 | 0.000372336829169 17 - 4 | 0.000281573723441 17 - 5 | 0.000122519590494 17 - 6 | 6.78762510082e-05 17 - 7 | 2.46179928104e-05 17 - 8 | 0.0 17 - 9 | 0.0 17 - 10 | 0.0 17 - 11 | 0.0 17 - 12 | 0.000430490562737 17 - 13 | 0.000557896581682 17 - 14 | 0.000900371234336 17 - 15 | 0.00064120354352 17 - 16 | 0.000276792616421 17 - 17 | 0.000324798685576 17 - 18 | 0.000169748531677 17 - 19 | 8.02335826783e-05 17 - 20 | 3.28532394612e-05 17 - 21 | 0.0 17 - 22 | 0.0 17 - 23 | 0.0 17 - 24 | 0.000339330121996 17 - 25 | 0.000544821118153 17 - 26 | 0.000880962658508 17 - 27 | 0.000739309834366 17 - 28 | 0.000426480075966 17 - 29 | 0.000273725261666 17 - 30 | 0.000327115550824 17 - 31 | 0.000212556957804 17 - 32 | 0.000170606587726 17 - 33 | 2.17930555629e-05 17 - 34 | 0.0 17 - 35 | 0.0 17 - 36 | 0.000179418662233 17 - 37 | 0.000356816014571 17 - 38 | 0.000997744663346 17 - 39 | 0.000479393383001 17 - 40 | 0.000470574381718 17 - 41 | 0.00038427714671 17 - 42 | 0.000375872603941 17 - 43 | 0.00034631674949 17 - 44 | 0.000224164820638 17 - 45 | 4.89348302556e-05 17 - 46 | 0.0 17 - 47 | 0.0 17 - 48 | 0.000113177975731 17 - 49 | 0.000589691477253 17 - 50 | 0.00075928791182 17 - 51 | 0.000639699370921 17 - 52 | 0.000496190399231 17 - 53 | 0.00027132793234 17 - 54 | 0.000503181435557 17 - 55 | -0.00107016892116 17 - 56 | 0.000277732048766 17 - 57 | 0.000129403592883 17 - 58 | 1.37137609581e-05 17 - 59 | 0.0 17 - 60 | 0.00020342009987 17 - 61 | 0.000715207796175 17 - 62 | 0.00125674533621 17 - 63 | 0.00124497643652 17 - 64 | 0.000971030730058 17 - 65 | 0.000415420310237 17 - 66 | 0.000254464817321 17 - 67 | 0.000505384846876 17 - 68 | 0.000458106186948 17 - 69 | 0.000276049729958 17 - 70 | 4.75902457336e-05 17 - 71 | 0.0 17 - 72 | 0.000225923684571 17 - 73 | 1.95830830867e-05 17 - 74 | -5.22980886156e-05 17 - 75 | -0.000248339030904 17 - 76 | -0.000317472482531 17 - 77 | 0.000553121291578 17 - 78 | 0.000452947975198 17 - 79 | 0.000516885160013 17 - 80 | 0.000589336346224 17 - 81 | 0.000412633775641 17 - 82 | 0.000163146031535 17 - 83 | 1.10571143935e-06 17 - 84 | 0.000437981784059 17 - 85 | 0.000211379757869 17 - 86 | 0.000428015846882 17 - 87 | 0.000261547816219 17 - 88 | 0.0002646666016 17 - 89 | 0.000493147438129 17 - 90 | 0.000333912779089 17 - 91 | 0.000304624593477 17 - 92 | 0.00046343161874 17 - 93 | 0.000541785124794 17 - 94 | 0.000597738487733 17 - 95 | 3.60881149899e-05 18 - 0 | 0.000118864327899 18 - 1 | 0.000324911663803 18 - 2 | 0.000264372487888 18 - 3 | 0.00019190419152 18 - 4 | 0.000181172760934 18 - 5 | 7.85526503431e-05 18 - 6 | 4.85619043674e-05 18 - 7 | 1.78954537394e-05 18 - 8 | 0.0 18 - 9 | 0.0 18 - 10 | 0.0 18 - 11 | 0.0 18 - 12 | 0.000101558946076 18 - 13 | 0.000148397778411 18 - 14 | 0.000439468065963 18 - 15 | 0.000380540107515 18 - 16 | 9.39018761016e-05 18 - 17 | 0.000169748531677 18 - 18 | 0.000127555330645 18 - 19 | 5.5567658946e-05 18 - 20 | 2.15761279402e-05 18 - 21 | 0.0 18 - 22 | 0.0 18 - 23 | 0.0 18 - 24 | 2.88857620464e-05 18 - 25 | 0.000152340884351 18 - 26 | 0.000438611714118 18 - 27 | 0.000456220855083 18 - 28 | 0.00020437947403 18 - 29 | 0.000112319186085 18 - 30 | 0.00020716554096 18 - 31 | 0.00013215393449 18 - 32 | 0.000115466517649 18 - 33 | 1.55564698471e-05 18 - 34 | 0.0 18 - 35 | 0.0 18 - 36 | -0.000107960636928 18 - 37 | -2.17784912597e-05 18 - 38 | 0.00045440265606 18 - 39 | 0.000127892614565 18 - 40 | 0.00022859945611 18 - 41 | 0.000161999895422 18 - 42 | 0.000197814703892 18 - 43 | 0.000228723909561 18 - 44 | 0.000153082320126 18 - 45 | 5.73322176284e-05 18 - 46 | 0.0 18 - 47 | 0.0 18 - 48 | -0.000126753831304 18 - 49 | 0.00022718221415 18 - 50 | 0.000343846015831 18 - 51 | 0.000321467919741 18 - 52 | 0.000254322273049 18 - 53 | 2.58825771672e-05 18 - 54 | 0.000271759331398 18 - 55 | -0.000892914944398 18 - 56 | 0.000177501886089 18 - 57 | 8.70027487742e-05 18 - 58 | 8.70154414347e-06 18 - 59 | 0.0 18 - 60 | -4.97111545211e-05 18 - 61 | 0.000430338589326 18 - 62 | 0.000918187833653 18 - 63 | 0.000988218387516 18 - 64 | 0.00075810328622 18 - 65 | 0.000143738665592 18 - 66 | 3.23893263978e-06 18 - 67 | 0.000297532888634 18 - 68 | 0.000301947094339 18 - 69 | 0.000189295620218 18 - 70 | 2.99804612078e-05 18 - 71 | 0.0 18 - 72 | 2.54032809827e-07 18 - 73 | -0.000284718068091 18 - 74 | -0.000520231807983 18 - 75 | -0.000729508200303 18 - 76 | -0.000685125607051 18 - 77 | 0.000333050070988 18 - 78 | 0.000165703767009 18 - 79 | 0.000251117032279 18 - 80 | 0.000375949846666 18 - 81 | 0.00025827099998 18 - 82 | 8.64062360184e-05 18 - 83 | 6.65127775293e-07 18 - 84 | 0.000262161218164 18 - 85 | 7.88450726967e-06 18 - 86 | 0.000158470331452 18 - 87 | -5.22247884546e-06 18 - 88 | 1.37374421694e-05 18 - 89 | 0.000311852553481 18 - 90 | 0.000138656988571 18 - 91 | 8.9954803605e-05 18 - 92 | 0.000268952010863 18 - 93 | 0.000366127891345 18 - 94 | 0.000354646350379 18 - 95 | 2.310816281e-05 19 - 0 | 0.000153699768568 19 - 1 | 0.00024920507364 19 - 2 | 0.000198611516928 19 - 3 | 0.000103874301554 19 - 4 | 7.64854039587e-05 19 - 5 | 3.67625561623e-05 19 - 6 | 2.62904764127e-05 19 - 7 | 1.00470395344e-05 19 - 8 | 0.0 19 - 9 | 0.0 19 - 10 | 0.0 19 - 11 | 0.0 19 - 12 | 0.000122124206135 19 - 13 | 0.000170360697007 19 - 14 | 0.000253153216742 19 - 15 | 0.000177697921257 19 - 16 | 7.0518252298e-05 19 - 17 | 8.02335826783e-05 19 - 18 | 5.5567658946e-05 19 - 19 | 3.60599396758e-05 19 - 20 | 1.46376366435e-05 19 - 21 | 0.0 19 - 22 | 0.0 19 - 23 | 0.0 19 - 24 | 9.16512913949e-05 19 - 25 | 0.000162767053062 19 - 26 | 0.000248335060461 19 - 27 | 0.0002045842223 19 - 28 | 0.000118029980445 19 - 29 | 7.49281420187e-05 19 - 30 | 9.55578749366e-05 19 - 31 | 7.67817358921e-05 19 - 32 | 5.94129962513e-05 19 - 33 | 9.13439165198e-06 19 - 34 | 0.0 19 - 35 | 0.0 19 - 36 | 5.7944923863e-05 19 - 37 | 0.000103421977998 19 - 38 | 0.000250212162391 19 - 39 | 0.000136543695034 19 - 40 | 0.000137678018191 19 - 41 | 9.99595748323e-05 19 - 42 | 0.00010440808527 19 - 43 | 0.000105652801889 19 - 44 | 7.05911840137e-05 19 - 45 | 1.81163342554e-05 19 - 46 | 0.0 19 - 47 | 0.0 19 - 48 | 2.80094317198e-05 19 - 49 | 0.000146789880318 19 - 50 | 0.000201626024913 19 - 51 | 0.000184142707965 19 - 52 | 0.000148617608606 19 - 53 | 8.08150320655e-05 19 - 54 | 0.000133614217643 19 - 55 | 5.93505482591e-05 19 - 56 | 8.39324347371e-05 19 - 57 | 4.13566034186e-05 19 - 58 | 5.46413482885e-06 19 - 59 | 0.0 19 - 60 | 5.08897636169e-05 19 - 61 | 0.000165219514515 19 - 62 | 0.000346606361882 19 - 63 | 0.000349766233691 19 - 64 | 0.000269643786557 19 - 65 | 0.000106983093251 19 - 66 | 6.59527573768e-05 19 - 67 | 0.000134282100757 19 - 68 | 0.000137187147623 19 - 69 | 8.40667288962e-05 19 - 70 | 1.52189210677e-05 19 - 71 | 0.0 19 - 72 | 6.61736154919e-05 19 - 73 | -1.48177106728e-05 19 - 74 | -2.37502394493e-05 19 - 75 | -6.06279056594e-05 19 - 76 | -8.12783090711e-05 19 - 77 | 0.000146680209447 19 - 78 | 0.000112005450232 19 - 79 | 0.000137721970303 19 - 80 | 0.000175380348059 19 - 81 | 0.000131123728824 19 - 82 | 4.68615979227e-05 19 - 83 | 3.35187150971e-07 19 - 84 | 0.000110580685534 19 - 85 | 5.05537189692e-05 19 - 86 | 0.0001160567703 19 - 87 | 7.30396151324e-05 19 - 88 | 5.99261380982e-05 19 - 89 | 0.000125523068849 19 - 90 | 7.94130473013e-05 19 - 91 | 7.24978995631e-05 19 - 92 | 0.000141128674853 19 - 93 | 0.000177015282715 19 - 94 | 0.000182400427173 19 - 95 | 1.06503082887e-05 20 - 0 | -1.06059542869e-05 20 - 1 | 1.62389166501e-05 20 - 2 | 1.13431953358e-05 20 - 3 | 2.80038893394e-05 20 - 4 | 3.59698430932e-05 20 - 5 | 1.35908830685e-05 20 - 6 | 1.23353331468e-05 20 - 7 | 5.62175167229e-06 20 - 8 | 0.0 20 - 9 | 0.0 20 - 10 | 0.0 20 - 11 | 0.0 20 - 12 | -5.76239183576e-06 20 - 13 | -7.86924611921e-06 20 - 14 | 5.06016704466e-05 20 - 15 | 5.94942673253e-05 20 - 16 | 1.09823491307e-05 20 - 17 | 3.28532394612e-05 20 - 18 | 2.15761279402e-05 20 - 19 | 1.46376366435e-05 20 - 20 | 9.73977321123e-06 20 - 21 | 0.0 20 - 22 | 0.0 20 - 23 | 0.0 20 - 24 | -2.81980431362e-05 20 - 25 | -1.08235953837e-05 20 - 26 | 4.33547295304e-05 20 - 27 | 6.65486998527e-05 20 - 28 | 3.33745038867e-05 20 - 29 | 1.80412646569e-05 20 - 30 | 4.20237346431e-05 20 - 31 | 3.78711291129e-05 20 - 32 | 5.16528142834e-05 20 - 33 | 7.58773888664e-06 20 - 34 | 0.0 20 - 35 | 0.0 20 - 36 | -4.81483884194e-05 20 - 37 | -4.23860841996e-05 20 - 38 | 4.7707996186e-05 20 - 39 | -3.40933224574e-06 20 - 40 | 3.41865784696e-05 20 - 41 | 2.55554436084e-05 20 - 42 | 3.71890124568e-05 20 - 43 | 3.55524771759e-05 20 - 44 | 3.75124163178e-05 20 - 45 | 1.7588916496e-05 20 - 46 | 0.0 20 - 47 | 0.0 20 - 48 | -5.35637847066e-05 20 - 49 | 1.37290431604e-05 20 - 50 | 2.5347759359e-05 20 - 51 | 3.37305146644e-05 20 - 52 | 3.08939395807e-05 20 - 53 | -1.89073511327e-05 20 - 54 | 3.82638709817e-05 20 - 55 | -2.07310790605e-05 20 - 56 | 2.2494140942e-05 20 - 57 | 1.77877963647e-05 20 - 58 | 3.07679505237e-06 20 - 59 | 0.0 20 - 60 | -4.22519148636e-05 20 - 61 | 4.63719738142e-05 20 - 62 | 0.00015907842925 20 - 63 | 0.000182299400462 20 - 64 | 0.000139081471277 20 - 65 | 8.38247095585e-06 20 - 66 | -7.98247970154e-06 20 - 67 | 4.57717953188e-05 20 - 68 | 3.9275845623e-05 20 - 69 | 3.45003388756e-05 20 - 70 | 6.50266772165e-06 20 - 71 | 0.0 20 - 72 | -2.45729459774e-05 20 - 73 | -0.00010968945764 20 - 74 | -0.000155939817195 20 - 75 | -0.000192317449157 20 - 76 | -0.000170189089934 20 - 77 | 4.90186141977e-05 20 - 78 | 2.57108335718e-05 20 - 79 | 4.1157705062e-05 20 - 80 | 5.09745409787e-05 20 - 81 | 3.63230475461e-05 20 - 82 | 1.55979660256e-05 20 - 83 | 1.4905664864e-07 20 - 84 | 3.20642187595e-05 20 - 85 | -1.43980051954e-05 20 - 86 | 1.40870933455e-05 20 - 87 | -2.51672187618e-05 20 - 88 | -2.54958755208e-05 20 - 89 | 4.71610461667e-05 20 - 90 | 1.91389252777e-05 20 - 91 | 1.56237009275e-05 20 - 92 | 4.07713416332e-05 20 - 93 | 4.77818388183e-05 20 - 94 | 5.50023108642e-05 20 - 95 | 3.52111379177e-06 21 - 0 | 0.0 21 - 1 | 0.0 21 - 2 | 0.0 21 - 3 | 0.0 21 - 4 | 0.0 21 - 5 | 0.0 21 - 6 | 0.0 21 - 7 | 0.0 21 - 8 | 0.0 21 - 9 | 0.0 21 - 10 | 0.0 21 - 11 | 0.0 21 - 12 | 0.0 21 - 13 | 0.0 21 - 14 | 0.0 21 - 15 | 0.0 21 - 16 | 0.0 21 - 17 | 0.0 21 - 18 | 0.0 21 - 19 | 0.0 21 - 20 | 0.0 21 - 21 | 0.0 21 - 22 | 0.0 21 - 23 | 0.0 21 - 24 | 0.0 21 - 25 | 0.0 21 - 26 | 0.0 21 - 27 | 0.0 21 - 28 | 0.0 21 - 29 | 0.0 21 - 30 | 0.0 21 - 31 | 0.0 21 - 32 | 0.0 21 - 33 | 0.0 21 - 34 | 0.0 21 - 35 | 0.0 21 - 36 | 0.0 21 - 37 | 0.0 21 - 38 | 0.0 21 - 39 | 0.0 21 - 40 | 0.0 21 - 41 | 0.0 21 - 42 | 0.0 21 - 43 | 0.0 21 - 44 | 0.0 21 - 45 | 0.0 21 - 46 | 0.0 21 - 47 | 0.0 21 - 48 | 0.0 21 - 49 | 0.0 21 - 50 | 0.0 21 - 51 | 0.0 21 - 52 | 0.0 21 - 53 | 0.0 21 - 54 | 0.0 21 - 55 | 0.0 21 - 56 | 0.0 21 - 57 | 0.0 21 - 58 | 0.0 21 - 59 | 0.0 21 - 60 | 0.0 21 - 61 | 0.0 21 - 62 | 0.0 21 - 63 | 0.0 21 - 64 | 0.0 21 - 65 | 0.0 21 - 66 | 0.0 21 - 67 | 0.0 21 - 68 | 0.0 21 - 69 | 0.0 21 - 70 | 0.0 21 - 71 | 0.0 21 - 72 | 0.0 21 - 73 | 0.0 21 - 74 | 0.0 21 - 75 | 0.0 21 - 76 | 0.0 21 - 77 | 0.0 21 - 78 | 0.0 21 - 79 | 0.0 21 - 80 | 0.0 21 - 81 | 0.0 21 - 82 | 0.0 21 - 83 | 0.0 21 - 84 | 0.0 21 - 85 | 0.0 21 - 86 | 0.0 21 - 87 | 0.0 21 - 88 | 0.0 21 - 89 | 0.0 21 - 90 | 0.0 21 - 91 | 0.0 21 - 92 | 0.0 21 - 93 | 0.0 21 - 94 | 0.0 21 - 95 | 0.0 22 - 0 | 0.0 22 - 1 | 0.0 22 - 2 | 0.0 22 - 3 | 0.0 22 - 4 | 0.0 22 - 5 | 0.0 22 - 6 | 0.0 22 - 7 | 0.0 22 - 8 | 0.0 22 - 9 | 0.0 22 - 10 | 0.0 22 - 11 | 0.0 22 - 12 | 0.0 22 - 13 | 0.0 22 - 14 | 0.0 22 - 15 | 0.0 22 - 16 | 0.0 22 - 17 | 0.0 22 - 18 | 0.0 22 - 19 | 0.0 22 - 20 | 0.0 22 - 21 | 0.0 22 - 22 | 0.0 22 - 23 | 0.0 22 - 24 | 0.0 22 - 25 | 0.0 22 - 26 | 0.0 22 - 27 | 0.0 22 - 28 | 0.0 22 - 29 | 0.0 22 - 30 | 0.0 22 - 31 | 0.0 22 - 32 | 0.0 22 - 33 | 0.0 22 - 34 | 0.0 22 - 35 | 0.0 22 - 36 | 0.0 22 - 37 | 0.0 22 - 38 | 0.0 22 - 39 | 0.0 22 - 40 | 0.0 22 - 41 | 0.0 22 - 42 | 0.0 22 - 43 | 0.0 22 - 44 | 0.0 22 - 45 | 0.0 22 - 46 | 0.0 22 - 47 | 0.0 22 - 48 | 0.0 22 - 49 | 0.0 22 - 50 | 0.0 22 - 51 | 0.0 22 - 52 | 0.0 22 - 53 | 0.0 22 - 54 | 0.0 22 - 55 | 0.0 22 - 56 | 0.0 22 - 57 | 0.0 22 - 58 | 0.0 22 - 59 | 0.0 22 - 60 | 0.0 22 - 61 | 0.0 22 - 62 | 0.0 22 - 63 | 0.0 22 - 64 | 0.0 22 - 65 | 0.0 22 - 66 | 0.0 22 - 67 | 0.0 22 - 68 | 0.0 22 - 69 | 0.0 22 - 70 | 0.0 22 - 71 | 0.0 22 - 72 | 0.0 22 - 73 | 0.0 22 - 74 | 0.0 22 - 75 | 0.0 22 - 76 | 0.0 22 - 77 | 0.0 22 - 78 | 0.0 22 - 79 | 0.0 22 - 80 | 0.0 22 - 81 | 0.0 22 - 82 | 0.0 22 - 83 | 0.0 22 - 84 | 0.0 22 - 85 | 0.0 22 - 86 | 0.0 22 - 87 | 0.0 22 - 88 | 0.0 22 - 89 | 0.0 22 - 90 | 0.0 22 - 91 | 0.0 22 - 92 | 0.0 22 - 93 | 0.0 22 - 94 | 0.0 22 - 95 | 0.0 23 - 0 | 0.0 23 - 1 | 0.0 23 - 2 | 0.0 23 - 3 | 0.0 23 - 4 | 0.0 23 - 5 | 0.0 23 - 6 | 0.0 23 - 7 | 0.0 23 - 8 | 0.0 23 - 9 | 0.0 23 - 10 | 0.0 23 - 11 | 0.0 23 - 12 | 0.0 23 - 13 | 0.0 23 - 14 | 0.0 23 - 15 | 0.0 23 - 16 | 0.0 23 - 17 | 0.0 23 - 18 | 0.0 23 - 19 | 0.0 23 - 20 | 0.0 23 - 21 | 0.0 23 - 22 | 0.0 23 - 23 | 0.0 23 - 24 | 0.0 23 - 25 | 0.0 23 - 26 | 0.0 23 - 27 | 0.0 23 - 28 | 0.0 23 - 29 | 0.0 23 - 30 | 0.0 23 - 31 | 0.0 23 - 32 | 0.0 23 - 33 | 0.0 23 - 34 | 0.0 23 - 35 | 0.0 23 - 36 | 0.0 23 - 37 | 0.0 23 - 38 | 0.0 23 - 39 | 0.0 23 - 40 | 0.0 23 - 41 | 0.0 23 - 42 | 0.0 23 - 43 | 0.0 23 - 44 | 0.0 23 - 45 | 0.0 23 - 46 | 0.0 23 - 47 | 0.0 23 - 48 | 0.0 23 - 49 | 0.0 23 - 50 | 0.0 23 - 51 | 0.0 23 - 52 | 0.0 23 - 53 | 0.0 23 - 54 | 0.0 23 - 55 | 0.0 23 - 56 | 0.0 23 - 57 | 0.0 23 - 58 | 0.0 23 - 59 | 0.0 23 - 60 | 0.0 23 - 61 | 0.0 23 - 62 | 0.0 23 - 63 | 0.0 23 - 64 | 0.0 23 - 65 | 0.0 23 - 66 | 0.0 23 - 67 | 0.0 23 - 68 | 0.0 23 - 69 | 0.0 23 - 70 | 0.0 23 - 71 | 0.0 23 - 72 | 0.0 23 - 73 | 0.0 23 - 74 | 0.0 23 - 75 | 0.0 23 - 76 | 0.0 23 - 77 | 0.0 23 - 78 | 0.0 23 - 79 | 0.0 23 - 80 | 0.0 23 - 81 | 0.0 23 - 82 | 0.0 23 - 83 | 0.0 23 - 84 | 0.0 23 - 85 | 0.0 23 - 86 | 0.0 23 - 87 | 0.0 23 - 88 | 0.0 23 - 89 | 0.0 23 - 90 | 0.0 23 - 91 | 0.0 23 - 92 | 0.0 23 - 93 | 0.0 23 - 94 | 0.0 23 - 95 | 0.0 24 - 0 | 0.00762330621865 24 - 1 | 0.00880773826827 24 - 2 | 0.00637550053162 24 - 3 | 0.00152413046255 24 - 4 | 6.98244201596e-05 24 - 5 | 0.000125277194954 24 - 6 | -6.22582773382e-05 24 - 7 | -3.20123373222e-05 24 - 8 | 0.0 24 - 9 | 0.0 24 - 10 | 0.0 24 - 11 | 0.0 24 - 12 | 0.00610951292372 24 - 13 | 0.00796363832398 24 - 14 | 0.00566494641328 24 - 15 | 0.00146764602336 24 - 16 | 0.00181617936575 24 - 17 | 0.000339330121996 24 - 18 | 2.88857620464e-05 24 - 19 | 9.16512913949e-05 24 - 20 | -2.81980431362e-05 24 - 21 | 0.0 24 - 22 | 0.0 24 - 23 | 0.0 24 - 24 | 0.00729843397779 24 - 25 | 0.0082226355438 24 - 26 | 0.00608989016277 24 - 27 | 0.00210727927853 24 - 28 | 0.00209807883343 24 - 29 | 0.00159608206625 24 - 30 | 0.00029091502533 24 - 31 | 0.000194577871844 24 - 32 | -0.000886706082562 24 - 33 | -0.000131635247536 24 - 34 | 0.0 24 - 35 | 0.0 24 - 36 | 0.00755836828425 24 - 37 | 0.00880153370631 24 - 38 | 0.0066961231369 24 - 39 | 0.00613273433524 24 - 40 | 0.00268978456885 24 - 41 | 0.00205547955153 24 - 42 | 0.00104474748091 24 - 43 | 0.000534505670249 24 - 44 | -0.0003742962925 24 - 45 | -0.000680917956586 24 - 46 | 0.0 24 - 47 | 0.0 24 - 48 | 0.00694031726491 24 - 49 | 0.00539465070426 24 - 50 | 0.00630980660677 24 - 51 | 0.00449708235683 24 - 52 | 0.00339591774762 24 - 53 | 0.0046292147363 24 - 54 | 0.00103330268225 24 - 55 | 0.0187622608484 24 - 56 | 0.000517571552276 24 - 57 | -9.66817171023e-05 24 - 58 | -7.7627228912e-06 24 - 59 | 0.0 24 - 60 | 0.00645039998304 24 - 61 | 0.00242598737111 24 - 62 | 0.000382946569996 24 - 63 | -0.00172310430856 24 - 64 | -0.00140575675297 24 - 65 | 0.00364381801342 24 - 66 | 0.00406659717659 24 - 67 | 0.00143905724683 24 - 68 | 0.000770523457419 24 - 69 | -0.000168287948648 24 - 70 | -4.32218518861e-05 24 - 71 | 0.0 24 - 72 | 0.00536284652328 24 - 73 | 0.00897916824969 24 - 74 | 0.0130895589273 24 - 75 | 0.0148591021385 24 - 76 | 0.0124876138553 24 - 77 | 0.00190324824599 24 - 78 | 0.00274120816438 24 - 79 | 0.00213002684137 24 - 80 | 0.00105173884526 24 - 81 | 0.000822529079113 24 - 82 | 0.000192442202741 24 - 83 | 9.7427520798e-08 24 - 84 | 0.00186741783405 24 - 85 | 0.00424264303091 24 - 86 | 0.0041739835671 24 - 87 | 0.00548545479525 24 - 88 | 0.00391019543057 24 - 89 | 0.000801479969185 24 - 90 | 0.00206899683556 24 - 91 | 0.00229698066262 24 - 92 | 0.00143258194655 24 - 93 | 0.000883526579267 24 - 94 | 0.000567729207548 24 - 95 | 7.49168332211e-06 25 - 0 | 0.00936702233237 25 - 1 | 0.011494512972 25 - 2 | 0.00727272495208 25 - 3 | 0.00199655347462 25 - 4 | 0.000234348797883 25 - 5 | 0.000212223546694 25 - 6 | -3.53861717235e-05 25 - 7 | -1.33590670109e-05 25 - 8 | 0.0 25 - 9 | 0.0 25 - 10 | 0.0 25 - 11 | 0.0 25 - 12 | 0.00742800797302 25 - 13 | 0.0106313499222 25 - 14 | 0.00660518702999 25 - 15 | 0.00192069389633 25 - 16 | 0.00224092625965 25 - 17 | 0.000544821118153 25 - 18 | 0.000152340884351 25 - 19 | 0.000162767053062 25 - 20 | -1.08235953837e-05 25 - 21 | 0.0 25 - 22 | 0.0 25 - 23 | 0.0 25 - 24 | 0.0082226355438 25 - 25 | 0.0121909409814 25 - 26 | 0.00760575239636 25 - 27 | 0.00298844297282 25 - 28 | 0.00271559589209 25 - 29 | 0.00199529930882 25 - 30 | 0.000566831445952 25 - 31 | 0.000343599179279 25 - 32 | -0.00110475782172 25 - 33 | -0.000173525012203 25 - 34 | 0.0 25 - 35 | 0.0 25 - 36 | 0.00897007402567 25 - 37 | 0.0116337000202 25 - 38 | 0.00796629301938 25 - 39 | 0.00721122553312 25 - 40 | 0.00344302423209 25 - 41 | 0.00257269484997 25 - 42 | 0.00153550789296 25 - 43 | 0.000847833086298 25 - 44 | -0.000359049950103 25 - 45 | -0.000882638112287 25 - 46 | 0.0 25 - 47 | 0.0 25 - 48 | 0.00855285250618 25 - 49 | 0.00770945440432 25 - 50 | 0.00817052640204 25 - 51 | 0.00588643102091 25 - 52 | 0.00447184852875 25 - 53 | 0.00574108048127 25 - 54 | 0.0015155368849 25 - 55 | 0.0237299833546 25 - 56 | 0.000798862439156 25 - 57 | -3.01559583416e-05 25 - 58 | 5.81518808194e-06 25 - 59 | 0.0 25 - 60 | 0.00809675711598 25 - 61 | 0.00438794258518 25 - 62 | 0.00231753952056 25 - 63 | -0.000149151044963 25 - 64 | -0.000247025029155 25 - 65 | 0.00456765444483 25 - 66 | 0.00505836523059 25 - 67 | 0.00203679209119 25 - 68 | 0.00120708955503 25 - 69 | -2.66448207759e-05 25 - 70 | -1.02737750169e-05 25 - 71 | 0.0 25 - 72 | 0.00670938259616 25 - 73 | 0.0114337627827 25 - 74 | 0.0149634697841 25 - 75 | 0.0161143823176 25 - 76 | 0.0139461131887 25 - 77 | 0.00317332584799 25 - 78 | 0.0036282822218 25 - 79 | 0.0030502665183 25 - 80 | 0.00162966087037 25 - 81 | 0.00116695924817 25 - 82 | 0.000287824351026 25 - 83 | 1.49451239487e-06 25 - 84 | 0.00270325082135 25 - 85 | 0.00599294118269 25 - 86 | 0.00571920787824 25 - 87 | 0.00668410753825 25 - 88 | 0.00469749088513 25 - 89 | 0.00168895146958 25 - 90 | 0.00300495683681 25 - 91 | 0.00328006657358 25 - 92 | 0.00223103317178 25 - 93 | 0.00138503696596 25 - 94 | 0.000688713978931 25 - 95 | 9.46763661834e-06 26 - 0 | 0.00734724411651 26 - 1 | 0.00888362476058 26 - 2 | 0.00644467632049 26 - 3 | 0.00197882934222 26 - 4 | 0.00077582942514 26 - 5 | 0.000408021393223 26 - 6 | 0.000102687052228 26 - 7 | 2.74128059635e-05 26 - 8 | 0.0 26 - 9 | 0.0 26 - 10 | 0.0 26 - 11 | 0.0 26 - 12 | 0.00585025459469 26 - 13 | 0.00693364400455 26 - 14 | 0.00679439349494 26 - 15 | 0.00297437448157 26 - 16 | 0.00179039355959 26 - 17 | 0.000880962658508 26 - 18 | 0.000438611714118 26 - 19 | 0.000248335060461 26 - 20 | 4.33547295304e-05 26 - 21 | 0.0 26 - 22 | 0.0 26 - 23 | 0.0 26 - 24 | 0.00608989016277 26 - 25 | 0.00760575239636 26 - 26 | 0.00912912592773 26 - 27 | 0.00461571658374 26 - 28 | 0.00262442229663 26 - 29 | 0.00179970694253 26 - 30 | 0.00106557289776 26 - 31 | 0.000683589497913 26 - 32 | -0.000329350485663 26 - 33 | -6.94093516622e-05 26 - 34 | 0.0 26 - 35 | 0.0 26 - 36 | 0.00627629811928 26 - 37 | 0.00666733583719 26 - 38 | 0.00714948329411 26 - 39 | 0.00542869844149 26 - 40 | 0.00344480234357 26 - 41 | 0.00238936462147 26 - 42 | 0.00173535966084 26 - 43 | 0.00141979767314 26 - 44 | 0.000307677682402 26 - 45 | -0.000446573859116 26 - 46 | 0.0 26 - 47 | 0.0 26 - 48 | 0.00616040796689 26 - 49 | 0.00584262120247 26 - 50 | 0.00734615403629 26 - 51 | 0.00584429819208 26 - 52 | 0.0047934264172 26 - 53 | 0.00367361952618 26 - 54 | 0.00200576467298 26 - 55 | 0.0110249879008 26 - 56 | 0.00121626591093 26 - 57 | 0.000282315359008 26 - 58 | 2.02323037481e-05 26 - 59 | 0.0 26 - 60 | 0.00623341094336 26 - 61 | 0.00497165180221 26 - 62 | 0.00696648601408 26 - 63 | 0.00595646323031 26 - 64 | 0.00431188120742 26 - 65 | 0.00374034717862 26 - 66 | 0.00359429939115 26 - 67 | 0.00255789667475 26 - 68 | 0.00184444616842 26 - 69 | 0.00064301367569 26 - 70 | 8.73322752933e-05 26 - 71 | 0.0 26 - 72 | 0.00510007136544 26 - 73 | 0.00540345247046 26 - 74 | 0.00609863473523 26 - 75 | 0.00635593899777 26 - 76 | 0.00495284498468 26 - 77 | 0.00408851245567 26 - 78 | 0.00344593667954 26 - 79 | 0.00300537116061 26 - 80 | 0.00240299932693 26 - 81 | 0.00178838384272 26 - 82 | 0.000646373296884 26 - 83 | 2.77701952251e-06 26 - 84 | 0.00313499064516 26 - 85 | 0.00388745069427 26 - 86 | 0.00401202302071 26 - 87 | 0.00456006139707 26 - 88 | 0.00290241720095 26 - 89 | 0.00291222420622 26 - 90 | 0.00275828026208 26 - 91 | 0.00253242433844 26 - 92 | 0.00219632869514 26 - 93 | 0.00201362120629 26 - 94 | 0.00217875843103 26 - 95 | 0.00011701564704 27 - 0 | 0.0026991733176 27 - 1 | 0.00387500625896 27 - 2 | 0.00271235453541 27 - 3 | 0.00121970948978 27 - 4 | 0.000817212753504 27 - 5 | 0.0003655187842 27 - 6 | 0.000168343840016 27 - 7 | 5.45821702377e-05 27 - 8 | 0.0 27 - 9 | 0.0 27 - 10 | 0.0 27 - 11 | 0.0 27 - 12 | 0.00223424525331 27 - 13 | 0.00247012245543 27 - 14 | 0.00352945575801 27 - 15 | 0.00245828709059 27 - 16 | 0.000785074197095 27 - 17 | 0.000739309834366 27 - 18 | 0.000456220855083 27 - 19 | 0.0002045842223 27 - 20 | 6.65486998527e-05 27 - 21 | 0.0 27 - 22 | 0.0 27 - 23 | 0.0 27 - 24 | 0.00210727927853 27 - 25 | 0.00298844297282 27 - 26 | 0.00461571658374 27 - 27 | 0.00419101524706 27 - 28 | 0.00167587543258 27 - 29 | 0.000912806607692 27 - 30 | 0.000957945084463 27 - 31 | 0.000578964935551 27 - 32 | 0.000258527923105 27 - 33 | 2.14136071323e-05 27 - 34 | 0.0 27 - 35 | 0.0 27 - 36 | 0.00166888397388 27 - 37 | 0.00160686549549 27 - 38 | 0.00319330775819 27 - 39 | 0.00206451980661 27 - 40 | 0.00200905244036 27 - 41 | 0.00131491226072 27 - 42 | 0.00126125989923 27 - 43 | 0.00114534514759 27 - 44 | 0.000594694811818 27 - 45 | 5.5982477922e-05 27 - 46 | 0.0 27 - 47 | 0.0 27 - 48 | 0.00173088269162 27 - 49 | 0.00296084728878 27 - 50 | 0.00383526333889 27 - 51 | 0.00350555952283 27 - 52 | 0.00293112019088 27 - 53 | 0.00106804168908 27 - 54 | 0.00170520279429 27 - 55 | -0.00199123790933 27 - 56 | 0.000935233597516 27 - 57 | 0.000370185507542 27 - 58 | 2.83156294026e-05 27 - 59 | 0.0 27 - 60 | 0.00218998996792 27 - 61 | 0.00393677201943 27 - 62 | 0.00739786265274 27 - 63 | 0.00774330541944 27 - 64 | 0.00574474616179 27 - 65 | 0.00176254355628 27 - 66 | 0.00131521937917 27 - 67 | 0.00178865142473 27 - 68 | 0.00152166699876 27 - 69 | 0.000815734232727 27 - 70 | 0.000130253774663 27 - 71 | 0.0 27 - 72 | 0.00179072228228 27 - 73 | 3.19389769004e-06 27 - 74 | -0.00202378982812 27 - 75 | -0.00294066301648 27 - 76 | -0.00279767509985 27 - 77 | 0.00327536998039 27 - 78 | 0.00200293195813 27 - 79 | 0.001938408544 27 - 80 | 0.0019135685728 27 - 81 | 0.00131184811079 27 - 82 | 0.000525557191366 27 - 83 | 3.11271678503e-06 27 - 84 | 0.00211502538038 27 - 85 | 0.00137255433566 27 - 86 | 0.00168500215025 27 - 87 | 0.00130287870412 27 - 88 | 0.000678996195219 27 - 89 | 0.00267780535844 27 - 90 | 0.00168891327966 27 - 91 | 0.00131254238258 27 - 92 | 0.00149644983631 27 - 93 | 0.00158165513924 27 - 94 | 0.00185350063204 27 - 95 | 0.000113928782886 28 - 0 | 0.00258441597314 28 - 1 | 0.00326007668979 28 - 2 | 0.00236091168401 28 - 3 | 0.000843317007876 28 - 4 | 0.000384012135093 28 - 5 | 0.00017242654804 28 - 6 | 6.01472316231e-05 28 - 7 | 2.15887008284e-05 28 - 8 | 0.0 28 - 9 | 0.0 28 - 10 | 0.0 28 - 11 | 0.0 28 - 12 | 0.00205357802755 28 - 13 | 0.00260291532728 28 - 14 | 0.00243841750601 28 - 15 | 0.00118273570724 28 - 16 | 0.000788082568938 28 - 17 | 0.000426480075966 28 - 18 | 0.00020437947403 28 - 19 | 0.000118029980445 28 - 20 | 3.33745038867e-05 28 - 21 | 0.0 28 - 22 | 0.0 28 - 23 | 0.0 28 - 24 | 0.00209807883343 28 - 25 | 0.00271559589209 28 - 26 | 0.00262442229663 28 - 27 | 0.00167587543258 28 - 28 | 0.00140271077936 28 - 29 | 0.000840528160725 28 - 30 | 0.000504637176848 28 - 31 | 0.000317988720264 28 - 32 | -4.41286064579e-05 28 - 33 | -1.40088207756e-05 28 - 34 | 0.0 28 - 35 | 0.0 28 - 36 | 0.00211677181495 28 - 37 | 0.00258737795599 28 - 38 | 0.00284689002829 28 - 39 | 0.00212049548456 28 - 40 | 0.00135516032904 28 - 41 | 0.00104134994144 28 - 42 | 0.000766654919972 28 - 43 | 0.000578786229829 28 - 44 | 0.000184290996642 28 - 45 | -0.000127524854933 28 - 46 | 0.0 28 - 47 | 0.0 28 - 48 | 0.00197702145696 28 - 49 | 0.00211100726326 28 - 50 | 0.00256857270766 28 - 51 | 0.00198205561347 28 - 52 | 0.00155920004025 28 - 53 | 0.00151639728232 28 - 54 | 0.000938401814195 28 - 55 | 0.00414836188845 28 - 56 | 0.000494304230148 28 - 57 | 0.000143548257117 28 - 58 | 1.66332817784e-05 28 - 59 | 0.0 28 - 60 | 0.00199338274204 28 - 61 | 0.00165395031853 28 - 62 | 0.00197057251432 28 - 63 | 0.00146699451764 28 - 64 | 0.00111672963381 28 - 65 | 0.00144750580265 28 - 66 | 0.00140498086904 28 - 67 | 0.00103028574033 28 - 68 | 0.000772368487625 28 - 69 | 0.000316822016546 28 - 70 | 5.31718298747e-05 28 - 71 | 0.0 28 - 72 | 0.00171189611704 28 - 73 | 0.00224823246981 28 - 74 | 0.00294201167529 28 - 75 | 0.00308916438366 28 - 76 | 0.00246526250017 28 - 77 | 0.0012938461477 28 - 78 | 0.00130385311959 28 - 79 | 0.00122273697649 28 - 80 | 0.00100065552715 28 - 81 | 0.000729015845285 28 - 82 | 0.000273335832261 28 - 83 | 1.55210987606e-06 28 - 84 | 0.00110833014491 28 - 85 | 0.00139319956358 28 - 86 | 0.00156618271153 28 - 87 | 0.0016577514821 28 - 88 | 0.00123320805488 28 - 89 | 0.000912198147294 28 - 90 | 0.00100183057441 28 - 91 | 0.00101620731331 28 - 92 | 0.000947599204277 28 - 93 | 0.000869129294622 28 - 94 | 0.000908943336008 28 - 95 | 4.97486446007e-05 29 - 0 | 0.00197362259173 29 - 1 | 0.00238345177095 29 - 2 | 0.00184081754738 29 - 3 | 0.00059534887138 29 - 4 | 0.000223459274496 29 - 5 | 9.39231315333e-05 29 - 6 | 2.1109969309e-05 29 - 7 | 1.06714275681e-05 29 - 8 | 0.0 29 - 9 | 0.0 29 - 10 | 0.0 29 - 11 | 0.0 29 - 12 | 0.00153585521953 29 - 13 | 0.00198494640747 29 - 14 | 0.00177169458615 29 - 15 | 0.000717857843064 29 - 16 | 0.000589406984104 29 - 17 | 0.000273725261666 29 - 18 | 0.000112319186085 29 - 19 | 7.49281420187e-05 29 - 20 | 1.80412646569e-05 29 - 21 | 0.0 29 - 22 | 0.0 29 - 23 | 0.0 29 - 24 | 0.00159608206625 29 - 25 | 0.00199529930882 29 - 26 | 0.00179970694253 29 - 27 | 0.000912806607692 29 - 28 | 0.000840528160725 29 - 29 | 0.000732522002876 29 - 30 | 0.000325255541278 29 - 31 | 0.000192132051094 29 - 32 | -9.90285980754e-05 29 - 33 | -1.70776483328e-05 29 - 34 | 0.0 29 - 35 | 0.0 29 - 36 | 0.00169570773837 29 - 37 | 0.00206632022272 29 - 38 | 0.00214329867909 29 - 39 | 0.0016861748336 29 - 40 | 0.000921252548766 29 - 41 | 0.000777158833097 29 - 42 | 0.000520687587993 29 - 43 | 0.000348856876085 29 - 44 | 7.01417881537e-05 29 - 45 | -0.000125572678542 29 - 46 | 0.0 29 - 47 | 0.0 29 - 48 | 0.0015783021701 29 - 49 | 0.00140932997765 29 - 50 | 0.00176709567481 29 - 51 | 0.00130712883033 29 - 52 | 0.00101956627165 29 - 53 | 0.00126029756412 29 - 54 | 0.000617258093929 29 - 55 | 0.00421675439121 29 - 56 | 0.000320763519877 29 - 57 | 8.18057665784e-05 29 - 58 | 1.12694249311e-05 29 - 59 | 0.0 29 - 60 | 0.00151137338115 29 - 61 | 0.000842937753824 29 - 62 | 0.000605292928019 29 - 63 | 0.000114836321969 29 - 64 | 0.000110781982703 29 - 65 | 0.00106522034274 29 - 66 | 0.00114317294939 29 - 67 | 0.000677767813543 29 - 68 | 0.000464870373812 29 - 69 | 0.000167158220761 29 - 70 | 3.19929726815e-05 29 - 71 | 0.0 29 - 72 | 0.0013119833308 29 - 73 | 0.00203108668658 29 - 74 | 0.00303632557127 29 - 75 | 0.00336431850207 29 - 76 | 0.00274098993567 29 - 77 | 0.000682728730098 29 - 78 | 0.000911100663424 29 - 79 | 0.000824427116347 29 - 80 | 0.000637737656166 29 - 81 | 0.000489206880442 29 - 82 | 0.000190281141298 29 - 83 | 9.40384724127e-07 29 - 84 | 0.000690464046554 29 - 85 | 0.00102451072911 29 - 86 | 0.00111582089007 29 - 87 | 0.00133660263441 29 - 88 | 0.000985542481251 29 - 89 | 0.000385590407844 29 - 90 | 0.000658110775842 29 - 91 | 0.000738565197947 29 - 92 | 0.000615723664124 29 - 93 | 0.000554233737807 29 - 94 | 0.000615212051141 29 - 95 | 3.19750611457e-05 30 - 0 | 0.000473234066476 30 - 1 | 0.00092106383001 30 - 2 | 0.000690646784464 30 - 3 | 0.000419210778702 30 - 4 | 0.000343436329951 30 - 5 | 0.00014462304496 30 - 6 | 8.63346615764e-05 30 - 7 | 3.04477764098e-05 30 - 8 | 0.0 30 - 9 | 0.0 30 - 10 | 0.0 30 - 11 | 0.0 30 - 12 | 0.00040081750912 30 - 13 | 0.00058804226409 30 - 14 | 0.00103193975038 30 - 15 | 0.000764163390249 30 - 16 | 0.000244104035441 30 - 17 | 0.000327115550824 30 - 18 | 0.00020716554096 30 - 19 | 9.55578749366e-05 30 - 20 | 4.20237346431e-05 30 - 21 | 0.0 30 - 22 | 0.0 30 - 23 | 0.0 30 - 24 | 0.00029091502533 30 - 25 | 0.000566831445952 30 - 26 | 0.00106557289776 30 - 27 | 0.000957945084463 30 - 28 | 0.000504637176848 30 - 29 | 0.000325255541278 30 - 30 | 0.000505632348728 30 - 31 | 0.000310160129695 30 - 32 | 0.000252122226901 30 - 33 | 3.13916013659e-05 30 - 34 | 0.0 30 - 35 | 0.0 30 - 36 | 3.32515768712e-05 30 - 37 | 0.000268573270373 30 - 38 | 0.00112265557118 30 - 39 | 0.000500593797738 30 - 40 | 0.000568975196432 30 - 41 | 0.000457415566825 30 - 42 | 0.000490971915212 30 - 43 | 0.000468996432652 30 - 44 | 0.000307377278613 30 - 45 | 8.61862768006e-05 30 - 46 | 0.0 30 - 47 | 0.0 30 - 48 | -1.4427280065e-05 30 - 49 | 0.000688475553274 30 - 50 | 0.000901328148954 30 - 51 | 0.000786704986754 30 - 52 | 0.00061532303134 30 - 53 | 0.000232799241565 30 - 54 | 0.000585617360746 30 - 55 | -0.00147308614275 30 - 56 | 0.000350335886882 30 - 57 | 0.000168397180391 30 - 58 | 1.70697036234e-05 30 - 59 | 0.0 30 - 60 | 0.000110915336468 30 - 61 | 0.000949906258714 30 - 62 | 0.00178253926521 30 - 63 | 0.00184868349374 30 - 64 | 0.00141399520879 30 - 65 | 0.000442134138904 30 - 66 | 0.000205718779263 30 - 67 | 0.000634021963648 30 - 68 | 0.000594871676923 30 - 69 | 0.000366106348718 30 - 70 | 6.14883117152e-05 30 - 71 | 0.0 30 - 72 | 0.000171619352244 30 - 73 | -0.00017330022147 30 - 74 | -0.000525170946974 30 - 75 | -0.000835851317142 30 - 76 | -0.000823626527325 30 - 77 | 0.000739462460819 30 - 78 | 0.000510600841081 30 - 79 | 0.000654514321471 30 - 80 | 0.000761509042741 30 - 81 | 0.000517809327331 30 - 82 | 0.00019112767067 30 - 83 | 1.38396531643e-06 30 - 84 | 0.000573289869797 30 - 85 | 0.000219285836917 30 - 86 | 0.000467994612776 30 - 87 | 0.000204639912467 30 - 88 | 0.000187526079493 30 - 89 | 0.000653357894256 30 - 90 | 0.000405189186024 30 - 91 | 0.000360810616355 30 - 92 | 0.000601341935868 30 - 93 | 0.000693877978744 30 - 94 | 0.000704262709621 30 - 95 | 4.39476962669e-05 31 - 0 | 0.000320513316156 31 - 1 | 0.000569742762073 31 - 2 | 0.000464324733051 31 - 3 | 0.000259564367011 31 - 4 | 0.000199899733383 31 - 5 | 9.79357544531e-05 31 - 6 | 6.83658005248e-05 31 - 7 | 2.12055178535e-05 31 - 8 | 0.0 31 - 9 | 0.0 31 - 10 | 0.0 31 - 11 | 0.0 31 - 12 | 0.000277482673197 31 - 13 | 0.000377258778082 31 - 14 | 0.000665932518666 31 - 15 | 0.000474206398427 31 - 16 | 0.000159495856988 31 - 17 | 0.000212556957804 31 - 18 | 0.00013215393449 31 - 19 | 7.67817358921e-05 31 - 20 | 3.78711291129e-05 31 - 21 | 0.0 31 - 22 | 0.0 31 - 23 | 0.0 31 - 24 | 0.000194577871844 31 - 25 | 0.000343599179279 31 - 26 | 0.000683589497913 31 - 27 | 0.000578964935551 31 - 28 | 0.000317988720264 31 - 29 | 0.000192132051094 31 - 30 | 0.000310160129695 31 - 31 | 0.000258770579243 31 - 32 | 0.000234254536108 31 - 33 | 2.99585116313e-05 31 - 34 | 0.0 31 - 35 | 0.0 31 - 36 | 6.72313015437e-05 31 - 37 | 0.000157600477608 31 - 38 | 0.000641937165596 31 - 39 | 0.00033690667897 31 - 40 | 0.000375312749493 31 - 41 | 0.000279044841481 31 - 42 | 0.000301819975502 31 - 43 | 0.000304512032442 31 - 44 | 0.000218912583913 31 - 45 | 5.21707192214e-05 31 - 46 | 0.0 31 - 47 | 0.0 31 - 48 | 1.46730263453e-05 31 - 49 | 0.000393291565512 31 - 50 | 0.000535698090484 31 - 51 | 0.000498119658785 31 - 52 | 0.000401100373485 31 - 53 | 0.000133926991836 31 - 54 | 0.00032181242896 31 - 55 | -0.000245401019214 31 - 56 | 0.000209604881269 31 - 57 | 0.000104244274448 31 - 58 | 1.25856917693e-05 31 - 59 | 0.0 31 - 60 | 7.51455392689e-05 31 - 61 | 0.000491147475248 31 - 62 | 0.0010607568035 31 - 63 | 0.00110468130646 31 - 64 | 0.000842499704481 31 - 65 | 0.000269310049077 31 - 66 | 0.000112879116065 31 - 67 | 0.000358219726882 31 - 68 | 0.000363871502896 31 - 69 | 0.000225620689243 31 - 70 | 3.60086612603e-05 31 - 71 | 0.0 31 - 72 | 0.000110991755569 31 - 73 | -0.000169129734917 31 - 74 | -0.000296736401608 31 - 75 | -0.000405671246594 31 - 76 | -0.000426106826324 31 - 77 | 0.0004331348559 31 - 78 | 0.000316093335137 31 - 79 | 0.000401435306291 31 - 80 | 0.000462053482566 31 - 81 | 0.000333562509097 31 - 82 | 0.000119844634491 31 - 83 | 8.38271750971e-07 31 - 84 | 0.000314285388898 31 - 85 | 0.000113316734522 31 - 86 | 0.00026932175237 31 - 87 | 0.000137419417974 31 - 88 | 0.000113010155223 31 - 89 | 0.000372825844427 31 - 90 | 0.000223426726393 31 - 91 | 0.000199064051663 31 - 92 | 0.000374808850978 31 - 93 | 0.000437865997598 31 - 94 | 0.00044708681201 31 - 95 | 2.65819294049e-05 32 - 0 | -0.000948168810462 32 - 1 | -0.000936303030456 32 - 2 | -0.000712200603335 32 - 3 | -3.32514558697e-05 32 - 4 | 0.000191016664303 32 - 5 | 8.33617929122e-05 32 - 6 | 9.48107921386e-05 32 - 7 | 2.9923955519e-05 32 - 8 | 0.0 32 - 9 | 0.0 32 - 10 | 0.0 32 - 11 | 0.0 32 - 12 | -0.000687643833987 32 - 13 | -0.00108238817391 32 - 14 | -0.000316859362331 32 - 15 | 0.000253320168408 32 - 16 | -0.00017249651998 32 - 17 | 0.000170606587726 32 - 18 | 0.000115466517649 32 - 19 | 5.94129962513e-05 32 - 20 | 5.16528142834e-05 32 - 21 | 0.0 32 - 22 | 0.0 32 - 23 | 0.0 32 - 24 | -0.000886706082562 32 - 25 | -0.00110475782172 32 - 26 | -0.000329350485663 32 - 27 | 0.000258527923105 32 - 28 | -4.41286064579e-05 32 - 29 | -9.90285980754e-05 32 - 30 | 0.000252122226901 32 - 31 | 0.000234254536108 32 - 32 | 0.000550048390552 32 - 33 | 7.70837489852e-05 32 - 34 | 0.0 32 - 35 | 0.0 32 - 36 | -0.00119787389601 32 - 37 | -0.00145517590031 32 - 38 | -0.000490096758428 32 - 39 | -0.000755695225157 32 - 40 | -7.6668864861e-05 32 - 41 | -3.18598186512e-05 32 - 42 | 0.000144588434093 32 - 43 | 0.000182050128336 32 - 44 | 0.000330365187927 32 - 45 | 0.000228341259604 32 - 46 | 0.0 32 - 47 | 0.0 32 - 48 | -0.0011951623085 32 - 49 | -0.000485138929411 32 - 50 | -0.0005090469053 32 - 51 | -0.000248968041716 32 - 52 | -0.00015371469662 32 - 53 | -0.000752241771848 32 - 54 | 0.000165665376914 32 - 55 | -0.00487201093289 32 - 56 | 6.7445783596e-05 32 - 57 | 0.000117055477159 32 - 58 | 1.37036932826e-05 32 - 59 | 0.0 32 - 60 | -0.00101344043603 32 - 61 | 0.0001351161015 32 - 62 | 0.00121258537004 32 - 63 | 0.00164505783309 32 - 64 | 0.00125938642516 32 - 65 | -0.000358503420315 32 - 66 | -0.000626787890604 32 - 67 | 8.12793120031e-05 32 - 68 | 0.000163848936147 32 - 69 | 0.00023508756848 32 - 70 | 4.02436702149e-05 32 - 71 | 0.0 32 - 72 | -0.000808184572311 32 - 73 | -0.00187978319275 32 - 74 | -0.0028341706174 32 - 75 | -0.00320960454145 32 - 76 | -0.00282674381445 32 - 77 | 0.000168312873489 32 - 78 | -8.93139618917e-05 32 - 79 | 5.82381680456e-05 32 - 80 | 0.000207882086715 32 - 81 | 0.000102922264732 32 - 82 | 6.96562387585e-05 32 - 83 | 6.86427964683e-07 32 - 84 | 2.34648556168e-05 32 - 85 | -0.000637116842714 32 - 86 | -0.000495006207797 32 - 87 | -0.000838779205982 32 - 88 | -0.000529996833275 32 - 89 | 0.000339623731327 32 - 90 | -7.47101510213e-05 32 - 91 | -0.00018578268629 32 - 92 | 6.45877652854e-05 32 - 93 | 0.0001555350427 32 - 94 | 0.00027630682444 32 - 95 | 2.03492963186e-05 33 - 0 | -0.000136434280686 33 - 1 | -0.00014345730992 33 - 2 | -0.000114446249989 33 - 3 | -1.08416158182e-05 33 - 4 | 2.62315045872e-05 33 - 5 | 1.07316257138e-05 33 - 6 | 1.35166091493e-05 33 - 7 | 5.28732911025e-06 33 - 8 | 0.0 33 - 9 | 0.0 33 - 10 | 0.0 33 - 11 | 0.0 33 - 12 | -0.000102258307301 33 - 13 | -0.000172769880751 33 - 14 | -6.34546487023e-05 33 - 15 | 2.68237387248e-05 33 - 16 | -2.80073801755e-05 33 - 17 | 2.17930555629e-05 33 - 18 | 1.55564698471e-05 33 - 19 | 9.13439165198e-06 33 - 20 | 7.58773888664e-06 33 - 21 | 0.0 33 - 22 | 0.0 33 - 23 | 0.0 33 - 24 | -0.000131635247536 33 - 25 | -0.000173525012203 33 - 26 | -6.94093516622e-05 33 - 27 | 2.14136071323e-05 33 - 28 | -1.40088207756e-05 33 - 29 | -1.70776483328e-05 33 - 30 | 3.13916013659e-05 33 - 31 | 2.99585116313e-05 33 - 32 | 7.70837489852e-05 33 - 33 | 1.29175136201e-05 33 - 34 | 0.0 33 - 35 | 0.0 33 - 36 | -0.000174715067324 33 - 37 | -0.000222743993913 33 - 38 | -8.75424510862e-05 33 - 39 | -0.000123438202865 33 - 40 | -2.05768046819e-05 33 - 41 | -1.06496823173e-05 33 - 42 | 1.61587856943e-05 33 - 43 | 2.24754645637e-05 33 - 44 | 4.62985642429e-05 33 - 45 | 3.77849902505e-05 33 - 46 | 0.0 33 - 47 | 0.0 33 - 48 | -0.000175698677424 33 - 49 | -8.70821442176e-05 33 - 50 | -9.2426136444e-05 33 - 51 | -5.36320652813e-05 33 - 52 | -3.45486733531e-05 33 - 53 | -0.000115103091371 33 - 54 | 2.33401248731e-05 33 - 55 | -0.000732936655203 33 - 56 | 7.96079590145e-06 33 - 57 | 1.79776270205e-05 33 - 58 | 2.27999790486e-06 33 - 59 | 0.0 33 - 60 | -0.000146936873385 33 - 61 | 4.57132816249e-06 33 - 62 | 0.000147372158534 33 - 63 | 0.000208997719726 33 - 64 | 0.00016022612122 33 - 65 | -6.1154089559e-05 33 - 66 | -9.36554917869e-05 33 - 67 | 6.38775250146e-06 33 - 68 | 1.53843324703e-05 33 - 69 | 3.18520708358e-05 33 - 70 | 6.44077665803e-06 33 - 71 | 0.0 33 - 72 | -0.000117559207513 33 - 73 | -0.000276039194183 33 - 74 | -0.000413776381231 33 - 75 | -0.000461995989945 33 - 76 | -0.000407566055335 33 - 77 | 1.08610004513e-05 33 - 78 | -2.05893394024e-05 33 - 79 | -2.56076910477e-06 33 - 80 | 2.27029422912e-05 33 - 81 | 9.00114750981e-06 33 - 82 | 8.87981568853e-06 33 - 83 | 8.8129000637e-08 33 - 84 | -6.93547785704e-07 33 - 85 | -0.000100189384624 33 - 86 | -8.09397403979e-05 33 - 87 | -0.000127059269758 33 - 88 | -7.88366513816e-05 33 - 89 | 4.17341213253e-05 33 - 90 | -1.56305786449e-05 33 - 91 | -3.16622437516e-05 33 - 92 | 1.99952353142e-06 33 - 93 | 1.58422154463e-05 33 - 94 | 3.78507445547e-05 33 - 95 | 2.88367659891e-06 34 - 0 | 0.0 34 - 1 | 0.0 34 - 2 | 0.0 34 - 3 | 0.0 34 - 4 | 0.0 34 - 5 | 0.0 34 - 6 | 0.0 34 - 7 | 0.0 34 - 8 | 0.0 34 - 9 | 0.0 34 - 10 | 0.0 34 - 11 | 0.0 34 - 12 | 0.0 34 - 13 | 0.0 34 - 14 | 0.0 34 - 15 | 0.0 34 - 16 | 0.0 34 - 17 | 0.0 34 - 18 | 0.0 34 - 19 | 0.0 34 - 20 | 0.0 34 - 21 | 0.0 34 - 22 | 0.0 34 - 23 | 0.0 34 - 24 | 0.0 34 - 25 | 0.0 34 - 26 | 0.0 34 - 27 | 0.0 34 - 28 | 0.0 34 - 29 | 0.0 34 - 30 | 0.0 34 - 31 | 0.0 34 - 32 | 0.0 34 - 33 | 0.0 34 - 34 | 0.0 34 - 35 | 0.0 34 - 36 | 0.0 34 - 37 | 0.0 34 - 38 | 0.0 34 - 39 | 0.0 34 - 40 | 0.0 34 - 41 | 0.0 34 - 42 | 0.0 34 - 43 | 0.0 34 - 44 | 0.0 34 - 45 | 0.0 34 - 46 | 0.0 34 - 47 | 0.0 34 - 48 | 0.0 34 - 49 | 0.0 34 - 50 | 0.0 34 - 51 | 0.0 34 - 52 | 0.0 34 - 53 | 0.0 34 - 54 | 0.0 34 - 55 | 0.0 34 - 56 | 0.0 34 - 57 | 0.0 34 - 58 | 0.0 34 - 59 | 0.0 34 - 60 | 0.0 34 - 61 | 0.0 34 - 62 | 0.0 34 - 63 | 0.0 34 - 64 | 0.0 34 - 65 | 0.0 34 - 66 | 0.0 34 - 67 | 0.0 34 - 68 | 0.0 34 - 69 | 0.0 34 - 70 | 0.0 34 - 71 | 0.0 34 - 72 | 0.0 34 - 73 | 0.0 34 - 74 | 0.0 34 - 75 | 0.0 34 - 76 | 0.0 34 - 77 | 0.0 34 - 78 | 0.0 34 - 79 | 0.0 34 - 80 | 0.0 34 - 81 | 0.0 34 - 82 | 0.0 34 - 83 | 0.0 34 - 84 | 0.0 34 - 85 | 0.0 34 - 86 | 0.0 34 - 87 | 0.0 34 - 88 | 0.0 34 - 89 | 0.0 34 - 90 | 0.0 34 - 91 | 0.0 34 - 92 | 0.0 34 - 93 | 0.0 34 - 94 | 0.0 34 - 95 | 0.0 35 - 0 | 0.0 35 - 1 | 0.0 35 - 2 | 0.0 35 - 3 | 0.0 35 - 4 | 0.0 35 - 5 | 0.0 35 - 6 | 0.0 35 - 7 | 0.0 35 - 8 | 0.0 35 - 9 | 0.0 35 - 10 | 0.0 35 - 11 | 0.0 35 - 12 | 0.0 35 - 13 | 0.0 35 - 14 | 0.0 35 - 15 | 0.0 35 - 16 | 0.0 35 - 17 | 0.0 35 - 18 | 0.0 35 - 19 | 0.0 35 - 20 | 0.0 35 - 21 | 0.0 35 - 22 | 0.0 35 - 23 | 0.0 35 - 24 | 0.0 35 - 25 | 0.0 35 - 26 | 0.0 35 - 27 | 0.0 35 - 28 | 0.0 35 - 29 | 0.0 35 - 30 | 0.0 35 - 31 | 0.0 35 - 32 | 0.0 35 - 33 | 0.0 35 - 34 | 0.0 35 - 35 | 0.0 35 - 36 | 0.0 35 - 37 | 0.0 35 - 38 | 0.0 35 - 39 | 0.0 35 - 40 | 0.0 35 - 41 | 0.0 35 - 42 | 0.0 35 - 43 | 0.0 35 - 44 | 0.0 35 - 45 | 0.0 35 - 46 | 0.0 35 - 47 | 0.0 35 - 48 | 0.0 35 - 49 | 0.0 35 - 50 | 0.0 35 - 51 | 0.0 35 - 52 | 0.0 35 - 53 | 0.0 35 - 54 | 0.0 35 - 55 | 0.0 35 - 56 | 0.0 35 - 57 | 0.0 35 - 58 | 0.0 35 - 59 | 0.0 35 - 60 | 0.0 35 - 61 | 0.0 35 - 62 | 0.0 35 - 63 | 0.0 35 - 64 | 0.0 35 - 65 | 0.0 35 - 66 | 0.0 35 - 67 | 0.0 35 - 68 | 0.0 35 - 69 | 0.0 35 - 70 | 0.0 35 - 71 | 0.0 35 - 72 | 0.0 35 - 73 | 0.0 35 - 74 | 0.0 35 - 75 | 0.0 35 - 76 | 0.0 35 - 77 | 0.0 35 - 78 | 0.0 35 - 79 | 0.0 35 - 80 | 0.0 35 - 81 | 0.0 35 - 82 | 0.0 35 - 83 | 0.0 35 - 84 | 0.0 35 - 85 | 0.0 35 - 86 | 0.0 35 - 87 | 0.0 35 - 88 | 0.0 35 - 89 | 0.0 35 - 90 | 0.0 35 - 91 | 0.0 35 - 92 | 0.0 35 - 93 | 0.0 35 - 94 | 0.0 35 - 95 | 0.0 36 - 0 | 0.00857885443639 36 - 1 | 0.00957049485976 36 - 2 | 0.00715442083662 36 - 3 | 0.00151055940987 36 - 4 | -0.000180212461121 36 - 5 | 3.01691097574e-05 36 - 6 | -0.000140884840801 36 - 7 | -5.22782096483e-05 36 - 8 | 0.0 36 - 9 | 0.0 36 - 10 | 0.0 36 - 11 | 0.0 36 - 12 | 0.00662083718748 36 - 13 | 0.00886881081 36 - 14 | 0.00599458040769 36 - 15 | 0.00114177150848 36 - 16 | 0.00198971091558 36 - 17 | 0.000179418662233 36 - 18 | -0.000107960636928 36 - 19 | 5.7944923863e-05 36 - 20 | -4.81483884194e-05 36 - 21 | 0.0 36 - 22 | 0.0 36 - 23 | 0.0 36 - 24 | 0.00755836828425 36 - 25 | 0.00897007402567 36 - 26 | 0.00627629811928 36 - 27 | 0.00166888397388 36 - 28 | 0.00211677181495 36 - 29 | 0.00169570773837 36 - 30 | 3.32515768712e-05 36 - 31 | 6.72313015437e-05 36 - 32 | -0.00119787389601 36 - 33 | -0.000174715067324 36 - 34 | 0.0 36 - 35 | 0.0 36 - 36 | 0.00939306605785 36 - 37 | 0.0102335976747 36 - 38 | 0.0070571779441 36 - 39 | 0.00693322189372 36 - 40 | 0.00274174732069 36 - 41 | 0.00203809592396 36 - 42 | 0.000833543794791 36 - 43 | 0.000270433301914 36 - 44 | -0.000677259380432 36 - 45 | -0.000913142310712 36 - 46 | 0.0 36 - 47 | 0.0 36 - 48 | 0.00839942441968 36 - 49 | 0.00560401688151 36 - 50 | 0.00660441960395 36 - 51 | 0.00458641262046 36 - 52 | 0.00344835583132 36 - 53 | 0.00532102555386 36 - 54 | 0.000654047955978 36 - 55 | 0.025487664028 36 - 56 | 0.000346433047869 36 - 57 | -0.000245753489143 36 - 58 | -1.49082538347e-05 36 - 59 | 0.0 36 - 60 | 0.00742862269622 36 - 61 | 0.00171047374995 36 - 62 | -0.00143444864252 36 - 63 | -0.00402285747962 36 - 64 | -0.00315361530781 36 - 65 | 0.00389469924003 36 - 66 | 0.00467276702918 36 - 67 | 0.00123721843216 36 - 68 | 0.000427291126097 36 - 69 | -0.000488866664434 36 - 70 | -0.000102698087557 36 - 71 | 0.0 36 - 72 | 0.00609353405063 36 - 73 | 0.0106615701232 36 - 74 | 0.0162575755755 36 - 75 | 0.018712728746 36 - 76 | 0.0157810088274 36 - 77 | 0.00145930309748 36 - 78 | 0.00273291305407 36 - 79 | 0.00195413249242 36 - 80 | 0.000690524283968 36 - 81 | 0.0006601122421 36 - 82 | 0.000107550981436 36 - 83 | -8.75711502888e-07 36 - 84 | 0.00155037641603 36 - 85 | 0.0047566824517 36 - 86 | 0.0044359620233 36 - 87 | 0.006323447098 36 - 88 | 0.0043653168445 36 - 89 | 0.000164325702809 36 - 90 | 0.00198152853013 36 - 91 | 0.00235951432142 36 - 92 | 0.0012706479882 36 - 93 | 0.000598572627125 36 - 94 | 0.000237745688713 36 - 95 | -1.95088871282e-05 37 - 0 | 0.0100386068366 37 - 1 | 0.0118402794482 37 - 2 | 0.00772043448083 37 - 3 | 0.00193124783588 37 - 4 | -5.58562452363e-05 37 - 5 | 7.69947164245e-05 37 - 6 | -0.000133157292645 37 - 7 | -3.66841097292e-05 37 - 8 | 0.0 37 - 9 | 0.0 37 - 10 | 0.0 37 - 11 | 0.0 37 - 12 | 0.00785344201364 37 - 13 | 0.0113072163305 37 - 14 | 0.00640728535568 37 - 15 | 0.00118980939033 37 - 16 | 0.0024212584551 37 - 17 | 0.000356816014571 37 - 18 | -2.17784912597e-05 37 - 19 | 0.000103421977998 37 - 20 | -4.23860841996e-05 37 - 21 | 0.0 37 - 22 | 0.0 37 - 23 | 0.0 37 - 24 | 0.00880153370631 37 - 25 | 0.0116337000202 37 - 26 | 0.00666733583719 37 - 27 | 0.00160686549549 37 - 28 | 0.00258737795599 37 - 29 | 0.00206632022272 37 - 30 | 0.000268573270373 37 - 31 | 0.000157600477608 37 - 32 | -0.00145517590031 37 - 33 | -0.000222743993913 37 - 34 | 0.0 37 - 35 | 0.0 37 - 36 | 0.0102335976747 37 - 37 | 0.0146206269123 37 - 38 | 0.00883512790448 37 - 39 | 0.00809647787822 37 - 40 | 0.00321033040881 37 - 41 | 0.00256902087734 37 - 42 | 0.00130054529197 37 - 43 | 0.000508209132182 37 - 44 | -0.000702893981633 37 - 45 | -0.0011226982199 37 - 46 | 0.0 37 - 47 | 0.0 37 - 48 | 0.00941266048723 37 - 49 | 0.00804985640725 37 - 50 | 0.00791508485961 37 - 51 | 0.00519964020865 37 - 52 | 0.00373537502494 37 - 53 | 0.00657660711863 37 - 54 | 0.00108031893539 37 - 55 | 0.0302066424747 37 - 56 | 0.000574704658345 37 - 57 | -0.000195678548286 37 - 58 | -2.25014604255e-06 37 - 59 | 0.0 37 - 60 | 0.00850406345784 37 - 61 | 0.00295168249553 37 - 62 | -0.00183554549046 37 - 63 | -0.00526003540063 37 - 64 | -0.00403620006663 37 - 65 | 0.00469693180401 37 - 66 | 0.00560011760393 37 - 67 | 0.00169233142763 37 - 68 | 0.000764968450583 37 - 69 | -0.000388504939304 37 - 70 | -6.76640432508e-05 37 - 71 | 0.0 37 - 72 | 0.00721613492066 37 - 73 | 0.0142113003174 37 - 74 | 0.0203360893775 37 - 75 | 0.0224001327148 37 - 76 | 0.0193705962106 37 - 77 | 0.00186124230451 37 - 78 | 0.00335850317013 37 - 79 | 0.00277682149077 37 - 80 | 0.00115641388663 37 - 81 | 0.000922419625762 37 - 82 | 0.000149756512755 37 - 83 | 6.96393175477e-07 37 - 84 | 0.00208311591441 37 - 85 | 0.00648585747289 37 - 86 | 0.00604236320093 37 - 87 | 0.00750333201935 37 - 88 | 0.00552772674272 37 - 89 | 0.000390457627465 37 - 90 | 0.00270214346627 37 - 91 | 0.00333895167049 37 - 92 | 0.00206073150304 37 - 93 | 0.00109323262099 37 - 94 | 0.000115378271617 37 - 95 | -3.34816128694e-05 38 - 0 | 0.00823549177393 38 - 1 | 0.00962235818452 38 - 2 | 0.0070146157462 38 - 3 | 0.0022327151604 38 - 4 | 0.000918086499105 38 - 5 | 0.000379855585957 38 - 6 | 6.04375947908e-05 38 - 7 | 4.28463623168e-05 38 - 8 | 0.0 38 - 9 | 0.0 38 - 10 | 0.0 38 - 11 | 0.0 38 - 12 | 0.00639625053925 38 - 13 | 0.00783915460536 38 - 14 | 0.00690672455254 38 - 15 | 0.00262900079543 38 - 16 | 0.0021757268031 38 - 17 | 0.000997744663346 38 - 18 | 0.00045440265606 38 - 19 | 0.000250212162391 38 - 20 | 4.7707996186e-05 38 - 21 | 0.0 38 - 22 | 0.0 38 - 23 | 0.0 38 - 24 | 0.0066961231369 38 - 25 | 0.00796629301938 38 - 26 | 0.00714948329411 38 - 27 | 0.00319330775819 38 - 28 | 0.00284689002829 38 - 29 | 0.00214329867909 38 - 30 | 0.00112265557118 38 - 31 | 0.000641937165596 38 - 32 | -0.000490096758428 38 - 33 | -8.75424510862e-05 38 - 34 | 0.0 38 - 35 | 0.0 38 - 36 | 0.0070571779441 38 - 37 | 0.00883512790448 38 - 38 | 0.0105639171224 38 - 39 | 0.00681978466696 38 - 40 | 0.00338852734373 38 - 41 | 0.00286082908794 38 - 42 | 0.00186229001671 38 - 43 | 0.00142764176946 38 - 44 | 0.000207809570421 38 - 45 | -0.000514365761712 38 - 46 | 0.0 38 - 47 | 0.0 38 - 48 | 0.00656731864849 38 - 49 | 0.00595387504362 38 - 50 | 0.00761646824056 38 - 51 | 0.00495529035438 38 - 52 | 0.00372604296217 38 - 53 | 0.00466953550782 38 - 54 | 0.00213776769905 38 - 55 | 0.0150425702841 38 - 56 | 0.0012050207018 38 - 57 | 0.000252889593203 38 - 58 | 2.98677891941e-05 38 - 59 | 0.0 38 - 60 | 0.00636127687801 38 - 61 | 0.00357647906773 38 - 62 | 0.00221286665754 38 - 63 | -0.000127221370495 38 - 64 | -7.80677417435e-05 38 - 65 | 0.00407962438274 38 - 66 | 0.00409346950303 38 - 67 | 0.00283514742976 38 - 68 | 0.00177961468444 38 - 69 | 0.000566518437485 38 - 70 | 7.55643795657e-05 38 - 71 | 0.0 38 - 72 | 0.00547722456619 38 - 73 | 0.00862406317932 38 - 74 | 0.0126089595629 38 - 75 | 0.0137230832967 38 - 76 | 0.0110988089416 38 - 77 | 0.00246559470762 38 - 78 | 0.00327815003457 38 - 79 | 0.00301511146817 38 - 80 | 0.00239144190225 38 - 81 | 0.00178289449285 38 - 82 | 0.000572753375097 38 - 83 | 2.91894251315e-06 38 - 84 | 0.00306759497376 38 - 85 | 0.00435856332008 38 - 86 | 0.00472853885754 38 - 87 | 0.00542023463474 38 - 88 | 0.00422440576738 38 - 89 | 0.00161324712063 38 - 90 | 0.0026122856627 38 - 91 | 0.00274136770307 38 - 92 | 0.00237754730584 38 - 93 | 0.00214097129875 38 - 94 | 0.00196562054018 38 - 95 | 0.000107008386367 39 - 0 | 0.00725690539939 39 - 1 | 0.00812396116569 39 - 2 | 0.00589903669955 39 - 3 | 0.00159261064054 39 - 4 | 0.000249918074144 39 - 5 | 0.000173961970896 39 - 6 | -2.49774994853e-05 39 - 7 | -1.07572701676e-05 39 - 8 | 0.0 39 - 9 | 0.0 39 - 10 | 0.0 39 - 11 | 0.0 39 - 12 | 0.00567354999767 39 - 13 | 0.00715171630418 39 - 14 | 0.00515107986717 39 - 15 | 0.00152014580008 39 - 16 | 0.00179276821116 39 - 17 | 0.000479393383001 39 - 18 | 0.000127892614565 39 - 19 | 0.000136543695034 39 - 20 | -3.40933224574e-06 39 - 21 | 0.0 39 - 22 | 0.0 39 - 23 | 0.0 39 - 24 | 0.00613273433524 39 - 25 | 0.00721122553312 39 - 26 | 0.00542869844149 39 - 27 | 0.00206451980661 39 - 28 | 0.00212049548456 39 - 29 | 0.0016861748336 39 - 30 | 0.000500593797738 39 - 31 | 0.00033690667897 39 - 32 | -0.000755695225157 39 - 33 | -0.000123438202865 39 - 34 | 0.0 39 - 35 | 0.0 39 - 36 | 0.00693322189372 39 - 37 | 0.00809647787822 39 - 38 | 0.00681978466696 39 - 39 | 0.00674405141934 39 - 40 | 0.0027988427711 39 - 41 | 0.00216998951484 39 - 42 | 0.00122114475964 39 - 43 | 0.000743696683786 39 - 44 | -0.000207380030665 39 - 45 | -0.000697828295511 39 - 46 | 0.0 39 - 47 | 0.0 39 - 48 | 0.00652455019772 39 - 49 | 0.00494497866722 39 - 50 | 0.00583346729769 39 - 51 | 0.0043668220473 39 - 52 | 0.00319820551228 39 - 53 | 0.00442760229495 39 - 54 | 0.00120994989362 39 - 55 | 0.0174422622769 39 - 56 | 0.000669892673566 39 - 57 | -5.18475257082e-06 39 - 58 | 7.36869955059e-06 39 - 59 | 0.0 39 - 60 | 0.00615633065014 39 - 61 | 0.00225477115755 39 - 62 | 9.85978464838e-05 39 - 63 | -0.00195466305944 39 - 64 | -0.00149541350941 39 - 65 | 0.00345515806149 39 - 66 | 0.00386812653514 39 - 67 | 0.00164665376339 39 - 68 | 0.000921064755015 39 - 69 | 1.76648202806e-05 39 - 70 | -9.61251377888e-06 39 - 71 | 0.0 39 - 72 | 0.00514157361736 39 - 73 | 0.00865728446544 39 - 74 | 0.012635225462 39 - 75 | 0.0143105594258 39 - 76 | 0.0119515124168 39 - 77 | 0.00173220980077 39 - 78 | 0.0026363054167 39 - 79 | 0.0022143682867 39 - 80 | 0.00129078507402 39 - 81 | 0.00107186431563 39 - 82 | 0.000322883965612 39 - 83 | 1.14264518989e-06 39 - 84 | 0.00187740354299 39 - 85 | 0.00405305356061 39 - 86 | 0.00382750680341 39 - 87 | 0.00510518796563 39 - 88 | 0.00386228986029 39 - 89 | 0.000801538762 39 - 90 | 0.00207619222986 39 - 91 | 0.00232370765648 39 - 92 | 0.00159720319167 39 - 93 | 0.00114725810081 39 - 94 | 0.0009233460503 39 - 95 | 3.24910968683e-05 40 - 0 | 0.00324561803762 40 - 1 | 0.0040870865094 40 - 2 | 0.00299458976578 40 - 3 | 0.00102429384775 40 - 4 | 0.00041763955931 40 - 5 | 0.000205968717766 40 - 6 | 6.90839345334e-05 40 - 7 | 1.95205076565e-05 40 - 8 | 0.0 40 - 9 | 0.0 40 - 10 | 0.0 40 - 11 | 0.0 40 - 12 | 0.00259780826718 40 - 13 | 0.00330611360472 40 - 14 | 0.00307982045507 40 - 15 | 0.00143530746785 40 - 16 | 0.000904577230632 40 - 17 | 0.000470574381718 40 - 18 | 0.00022859945611 40 - 19 | 0.000137678018191 40 - 20 | 3.41865784696e-05 40 - 21 | 0.0 40 - 22 | 0.0 40 - 23 | 0.0 40 - 24 | 0.00268978456885 40 - 25 | 0.00344302423209 40 - 26 | 0.00344480234357 40 - 27 | 0.00200905244036 40 - 28 | 0.00135516032904 40 - 29 | 0.000921252548766 40 - 30 | 0.000568975196432 40 - 31 | 0.000375312749493 40 - 32 | -7.6668864861e-05 40 - 33 | -2.05768046819e-05 40 - 34 | 0.0 40 - 35 | 0.0 40 - 36 | 0.00274174732069 40 - 37 | 0.00321033040881 40 - 38 | 0.00338852734373 40 - 39 | 0.0027988427711 40 - 40 | 0.00203966535066 40 - 41 | 0.00133391877053 40 - 42 | 0.000943098454208 40 - 43 | 0.000699569431517 40 - 44 | 0.000200907169649 40 - 45 | -0.000183649592202 40 - 46 | 0.0 40 - 47 | 0.0 40 - 48 | 0.00256998422216 40 - 49 | 0.00267672297903 40 - 50 | 0.00327309641054 40 - 51 | 0.00269664905057 40 - 52 | 0.00225300743049 40 - 53 | 0.00194536655679 40 - 54 | 0.00110194424586 40 - 55 | 0.00504108889491 40 - 56 | 0.000594276985467 40 - 57 | 0.000161933303781 40 - 58 | 1.62209035337e-05 40 - 59 | 0.0 40 - 60 | 0.00257247154676 40 - 61 | 0.00215314310051 40 - 62 | 0.00274786275876 40 - 63 | 0.0021917539027 40 - 64 | 0.00165768326077 40 - 65 | 0.00181107874863 40 - 66 | 0.00175830469034 40 - 67 | 0.00122023337888 40 - 68 | 0.000926374484984 40 - 69 | 0.000360697426325 40 - 70 | 5.89130897988e-05 40 - 71 | 0.0 40 - 72 | 0.00217996388905 40 - 73 | 0.00271501835803 40 - 74 | 0.00339630510147 40 - 75 | 0.00359718898686 40 - 76 | 0.00286140440402 40 - 77 | 0.0017702351534 40 - 78 | 0.00165740271809 40 - 79 | 0.00152623822709 40 - 80 | 0.00122993675811 40 - 81 | 0.000894315334995 40 - 82 | 0.000332694128957 40 - 83 | 1.76242660314e-06 40 - 84 | 0.00136100384651 40 - 85 | 0.00173343459276 40 - 86 | 0.00188571065938 40 - 87 | 0.00210595392103 40 - 88 | 0.00146183733889 40 - 89 | 0.00119058595896 40 - 90 | 0.00127224339794 40 - 91 | 0.00127744319426 40 - 92 | 0.00113049630665 40 - 93 | 0.00103480172227 40 - 94 | 0.00108539539659 40 - 95 | 5.72253265754e-05 41 - 0 | 0.00246960104105 41 - 1 | 0.00309052571364 41 - 2 | 0.00224012088209 41 - 3 | 0.000799139125693 41 - 4 | 0.000334093006774 41 - 5 | 0.000151166945609 41 - 6 | 5.52116592621e-05 41 - 7 | 1.45427975584e-05 41 - 8 | 0.0 41 - 9 | 0.0 41 - 10 | 0.0 41 - 11 | 0.0 41 - 12 | 0.00198181114548 41 - 13 | 0.00252085217408 41 - 14 | 0.0023214886812 41 - 15 | 0.0010671989346 41 - 16 | 0.000755364674392 41 - 17 | 0.00038427714671 41 - 18 | 0.000161999895422 41 - 19 | 9.99595748323e-05 41 - 20 | 2.55554436084e-05 41 - 21 | 0.0 41 - 22 | 0.0 41 - 23 | 0.0 41 - 24 | 0.00205547955153 41 - 25 | 0.00257269484997 41 - 26 | 0.00238936462147 41 - 27 | 0.00131491226072 41 - 28 | 0.00104134994144 41 - 29 | 0.000777158833097 41 - 30 | 0.000457415566825 41 - 31 | 0.000279044841481 41 - 32 | -3.18598186512e-05 41 - 33 | -1.06496823173e-05 41 - 34 | 0.0 41 - 35 | 0.0 41 - 36 | 0.00203809592396 41 - 37 | 0.00256902087734 41 - 38 | 0.00286082908794 41 - 39 | 0.00216998951484 41 - 40 | 0.00133391877053 41 - 41 | 0.00131707319726 41 - 42 | 0.000843389007583 41 - 43 | 0.000536832625472 41 - 44 | 0.000172518190088 41 - 45 | -0.0001169122616 41 - 46 | 0.0 41 - 47 | 0.0 41 - 48 | 0.00187259154873 41 - 49 | 0.00201056731361 41 - 50 | 0.0024445868615 41 - 51 | 0.00182433955549 41 - 52 | 0.00144167946959 41 - 53 | 0.00167456398609 41 - 54 | 0.000997555791299 41 - 55 | 0.00254420666571 41 - 56 | 0.000439139177924 41 - 57 | 0.000126926695588 41 - 58 | 1.36436765312e-05 41 - 59 | 0.0 41 - 60 | 0.00190094280623 41 - 61 | 0.00139740457346 41 - 62 | 0.00132790129604 41 - 63 | 0.000715434668755 41 - 64 | 0.000583643428323 41 - 65 | 0.00146954160256 41 - 66 | 0.00144587137061 41 - 67 | 0.000955659792815 41 - 68 | 0.000688034098448 41 - 69 | 0.00027739214235 41 - 70 | 5.01564085993e-05 41 - 71 | 0.0 41 - 72 | 0.00162812963636 41 - 73 | 0.00249537249464 41 - 74 | 0.00347485813825 41 - 75 | 0.00374971546797 41 - 76 | 0.00302363464691 41 - 77 | 0.00108647336346 41 - 78 | 0.00131882284914 41 - 79 | 0.00119795211147 41 - 80 | 0.000910601576514 41 - 81 | 0.000650222692327 41 - 82 | 0.000255435992611 41 - 83 | 1.41019215883e-06 41 - 84 | 0.000993445639154 41 - 85 | 0.00134716167815 41 - 86 | 0.00150057586419 41 - 87 | 0.00169020583847 41 - 88 | 0.00142522919834 41 - 89 | 0.000768761519323 41 - 90 | 0.00101095493968 41 - 91 | 0.00104542168909 41 - 92 | 0.000863604367057 41 - 93 | 0.000749514181074 41 - 94 | 0.000831442890983 41 - 95 | 4.35407012771e-05 42 - 0 | 0.00128498202076 42 - 1 | 0.0019290717455 42 - 2 | 0.00134154280523 42 - 3 | 0.000632916439185 42 - 4 | 0.00036978475863 42 - 5 | 0.000159229890968 42 - 6 | 8.36419915312e-05 42 - 7 | 2.6243894944e-05 42 - 8 | 0.0 42 - 9 | 0.0 42 - 10 | 0.0 42 - 11 | 0.0 42 - 12 | 0.0010828073938 42 - 13 | 0.00149711589378 42 - 14 | 0.00162313512132 42 - 15 | 0.000982553879127 42 - 16 | 0.000480111245934 42 - 17 | 0.000375872603941 42 - 18 | 0.000197814703892 42 - 19 | 0.00010440808527 42 - 20 | 3.71890124568e-05 42 - 21 | 0.0 42 - 22 | 0.0 42 - 23 | 0.0 42 - 24 | 0.00104474748091 42 - 25 | 0.00153550789296 42 - 26 | 0.00173535966084 42 - 27 | 0.00126125989923 42 - 28 | 0.000766654919972 42 - 29 | 0.000520687587993 42 - 30 | 0.000490971915212 42 - 31 | 0.000301819975502 42 - 32 | 0.000144588434093 42 - 33 | 1.61587856943e-05 42 - 34 | 0.0 42 - 35 | 0.0 42 - 36 | 0.000833543794791 42 - 37 | 0.00130054529197 42 - 38 | 0.00186229001671 42 - 39 | 0.00122114475964 42 - 40 | 0.000943098454208 42 - 41 | 0.000843389007583 42 - 42 | 0.000841341364301 42 - 43 | 0.000568370083756 42 - 44 | 0.000290678649991 42 - 45 | 1.19464647145e-05 42 - 46 | 0.0 42 - 47 | 0.0 42 - 48 | 0.000726965747479 42 - 49 | 0.00139078709296 42 - 50 | 0.00167393048676 42 - 51 | 0.00137709222649 42 - 52 | 0.00106812744962 42 - 53 | 0.00092558321258 42 - 54 | 0.000972254519082 42 - 55 | -0.000225810078898 42 - 56 | 0.000446412967438 42 - 57 | 0.000187083701713 42 - 58 | 1.84944527263e-05 42 - 59 | 0.0 42 - 60 | 0.000831182763205 42 - 61 | 0.0013900288275 42 - 62 | 0.00200509101455 42 - 63 | 0.00186010075837 42 - 64 | 0.00144608042395 42 - 65 | 0.000959722676519 42 - 66 | 0.000836136991518 42 - 67 | 0.000816825461955 42 - 68 | 0.000717235313197 42 - 69 | 0.000392297200318 42 - 70 | 7.70132790629e-05 42 - 71 | 0.0 42 - 72 | 0.000774424891418 42 - 73 | 0.000935145747357 42 - 74 | 0.000881794459541 42 - 75 | 0.000685065187283 42 - 76 | 0.000503221249956 42 - 77 | 0.00110586012482 42 - 78 | 0.000991553230868 42 - 79 | 0.00104299866314 42 - 80 | 0.000951615232403 42 - 81 | 0.000637934641909 42 - 82 | 0.000264841744946 42 - 83 | 1.79570286554e-06 42 - 84 | 0.000838008249892 42 - 85 | 0.000741509306869 42 - 86 | 0.000958574078294 42 - 87 | 0.000806972868292 42 - 88 | 0.000694207948451 42 - 89 | 0.00084934202201 42 - 90 | 0.000768844395631 42 - 91 | 0.000781397475941 42 - 92 | 0.000798424882557 42 - 93 | 0.000794164399874 42 - 94 | 0.000876016503464 42 - 95 | 4.91817638905e-05 43 - 0 | 0.00077631261023 43 - 1 | 0.00127901795903 43 - 2 | 0.00100825719067 43 - 3 | 0.000510774525678 43 - 4 | 0.000373914034192 43 - 5 | 0.000167562237335 43 - 6 | 9.04395114222e-05 43 - 7 | 3.00568240889e-05 43 - 8 | 0.0 43 - 9 | 0.0 43 - 10 | 0.0 43 - 11 | 0.0 43 - 12 | 0.000629775665814 43 - 13 | 0.000837978247683 43 - 14 | 0.0013310152611 43 - 15 | 0.00089229234333 43 - 16 | 0.000316267644237 43 - 17 | 0.00034631674949 43 - 18 | 0.000228723909561 43 - 19 | 0.000105652801889 43 - 20 | 3.55524771759e-05 43 - 21 | 0.0 43 - 22 | 0.0 43 - 23 | 0.0 43 - 24 | 0.000534505670249 43 - 25 | 0.000847833086298 43 - 26 | 0.00141979767314 43 - 27 | 0.00114534514759 43 - 28 | 0.000578786229829 43 - 29 | 0.000348856876085 43 - 30 | 0.000468996432652 43 - 31 | 0.000304512032442 43 - 32 | 0.000182050128336 43 - 33 | 2.24754645637e-05 43 - 34 | 0.0 43 - 35 | 0.0 43 - 36 | 0.000270433301914 43 - 37 | 0.000508209132182 43 - 38 | 0.00142764176946 43 - 39 | 0.000743696683786 43 - 40 | 0.000699569431517 43 - 41 | 0.000536832625472 43 - 42 | 0.000568370083756 43 - 43 | 0.000621653095795 43 - 44 | 0.000328134248768 43 - 45 | 6.51117101635e-05 43 - 46 | 0.0 43 - 47 | 0.0 43 - 48 | 0.000213505891964 43 - 49 | 0.000869005897428 43 - 50 | 0.00118974219462 43 - 51 | 0.00103356645008 43 - 52 | 0.000813071214554 43 - 53 | 0.000411629240831 43 - 54 | 0.000718802761996 43 - 55 | -0.00120061316736 43 - 56 | 0.000455283017009 43 - 57 | 0.000194219431762 43 - 58 | 1.63306433893e-05 43 - 59 | 0.0 43 - 60 | 0.000340189222828 43 - 61 | 0.00112573316698 43 - 62 | 0.00202249837842 43 - 63 | 0.00205336391392 43 - 64 | 0.00157414453918 43 - 65 | 0.00061166432422 43 - 66 | 0.000336405190723 43 - 67 | 0.000755477631188 43 - 68 | 0.000741953844916 43 - 69 | 0.000419357001121 43 - 70 | 6.87651258623e-05 43 - 71 | 0.0 43 - 72 | 0.000355163104325 43 - 73 | 4.67092521311e-06 43 - 74 | -0.000291261193471 43 - 75 | -0.00056564382434 43 - 76 | -0.000607346184206 43 - 77 | 0.000879992598728 43 - 78 | 0.000621347682783 43 - 79 | 0.00075298837977 43 - 80 | 0.000934645661402 43 - 81 | 0.000659522999171 43 - 82 | 0.000232042541714 43 - 83 | 1.52517740197e-06 43 - 84 | 0.000716585299354 43 - 85 | 0.00029963294886 43 - 86 | 0.000580057089819 43 - 87 | 0.000381343633703 43 - 88 | 0.000320493845016 43 - 89 | 0.000754791768003 43 - 90 | 0.000467887378755 43 - 91 | 0.000401012248404 43 - 92 | 0.000705463180465 43 - 93 | 0.000878361296735 43 - 94 | 0.000895214620571 43 - 95 | 5.55900666221e-05 44 - 0 | -0.000338015547979 44 - 1 | -0.000118396593961 44 - 2 | -7.67605804839e-05 44 - 3 | 0.000182104939083 44 - 4 | 0.000262366374296 44 - 5 | 0.000108581816737 44 - 6 | 8.42088535844e-05 44 - 7 | 2.78872724315e-05 44 - 8 | 0.0 44 - 9 | 0.0 44 - 10 | 0.0 44 - 11 | 0.0 44 - 12 | -0.00023055549196 44 - 13 | -0.000348165722607 44 - 14 | 0.000285762817459 44 - 15 | 0.000492474076416 44 - 16 | 1.95941590839e-05 44 - 17 | 0.000224164820638 44 - 18 | 0.000153082320126 44 - 19 | 7.05911840137e-05 44 - 20 | 3.75124163178e-05 44 - 21 | 0.0 44 - 22 | 0.0 44 - 23 | 0.0 44 - 24 | -0.0003742962925 44 - 25 | -0.000359049950103 44 - 26 | 0.000307677682402 44 - 27 | 0.000594694811818 44 - 28 | 0.000184290996642 44 - 29 | 7.01417881537e-05 44 - 30 | 0.000307377278613 44 - 31 | 0.000218912583913 44 - 32 | 0.000330365187927 44 - 33 | 4.62985642429e-05 44 - 34 | 0.0 44 - 35 | 0.0 44 - 36 | -0.000677259380432 44 - 37 | -0.000702893981633 44 - 38 | 0.000207809570421 44 - 39 | -0.000207380030665 44 - 40 | 0.000200907169649 44 - 41 | 0.000172518190088 44 - 42 | 0.000290678649991 44 - 43 | 0.000328134248768 44 - 44 | 0.00031690343314 44 - 45 | 0.00015653994134 44 - 46 | 0.0 44 - 47 | 0.0 44 - 48 | -0.000693537710871 44 - 49 | 2.96721536522e-05 44 - 50 | 0.000117213868718 44 - 51 | 0.000230129843892 44 - 52 | 0.000198752015748 44 - 53 | -0.000274926209415 44 - 54 | 0.000427105382282 44 - 55 | -0.00378104070351 44 - 56 | 0.00024630031276 44 - 57 | 0.000159683068307 44 - 58 | 1.42266871793e-05 44 - 59 | 0.0 44 - 60 | -0.00053404796892 44 - 61 | 0.000557127447274 44 - 62 | 0.00151013311077 44 - 63 | 0.00180176308599 44 - 64 | 0.00138781081825 44 - 65 | 2.32140365302e-05 44 - 66 | -0.000220404106996 44 - 67 | 0.000337826494978 44 - 68 | 0.000412877134131 44 - 69 | 0.000325415059967 44 - 70 | 5.94839447887e-05 44 - 71 | 0.0 44 - 72 | -0.000387178011868 44 - 73 | -0.00111923152962 44 - 74 | -0.00187693439754 44 - 75 | -0.00225894385604 44 - 76 | -0.00201162447749 44 - 77 | 0.000452370801938 44 - 78 | 0.000196407024421 44 - 79 | 0.000329247782569 44 - 80 | 0.000517937776382 44 - 81 | 0.000345014754063 44 - 82 | 0.000152341748451 44 - 83 | 1.14258474604e-06 44 - 84 | 0.000302805971576 44 - 85 | -0.00028678700416 44 - 86 | -7.75766601118e-05 44 - 87 | -0.000385545532223 44 - 88 | -0.000210267565886 44 - 89 | 0.000501940182567 44 - 90 | 0.000140287030672 44 - 91 | 5.90072614572e-05 44 - 92 | 0.000320367893727 44 - 93 | 0.000472395429721 44 - 94 | 0.000580169074205 44 - 95 | 3.80667280221e-05 45 - 0 | -0.000765836740289 45 - 1 | -0.000825387156266 45 - 2 | -0.000665592533033 45 - 3 | -0.000104990588284 45 - 4 | 0.000108389940064 45 - 5 | 3.25797986691e-05 45 - 6 | 4.13197604423e-05 45 - 7 | 1.61796399291e-05 45 - 8 | 0.0 45 - 9 | 0.0 45 - 10 | 0.0 45 - 11 | 0.0 45 - 12 | -0.000581470259347 45 - 13 | -0.000914450981313 45 - 14 | -0.000443158069752 45 - 15 | 6.40101536591e-05 45 - 16 | -0.000176265084179 45 - 17 | 4.89348302556e-05 45 - 18 | 5.73322176284e-05 45 - 19 | 1.81163342554e-05 45 - 20 | 1.7588916496e-05 45 - 21 | 0.0 45 - 22 | 0.0 45 - 23 | 0.0 45 - 24 | -0.000680917956586 45 - 25 | -0.000882638112287 45 - 26 | -0.000446573859116 45 - 27 | 5.5982477922e-05 45 - 28 | -0.000127524854933 45 - 29 | -0.000125572678542 45 - 30 | 8.61862768006e-05 45 - 31 | 5.21707192214e-05 45 - 32 | 0.000228341259604 45 - 33 | 3.77849902505e-05 45 - 34 | 0.0 45 - 35 | 0.0 45 - 36 | -0.000913142310712 45 - 37 | -0.0011226982199 45 - 38 | -0.000514365761712 45 - 39 | -0.000697828295511 45 - 40 | -0.000183649592202 45 - 41 | -0.0001169122616 45 - 42 | 1.19464647145e-05 45 - 43 | 6.51117101635e-05 45 - 44 | 0.00015653994134 45 - 45 | 0.000194267775233 45 - 46 | 0.0 45 - 47 | 0.0 45 - 48 | -0.0008740881439 45 - 49 | -0.000464153032839 45 - 50 | -0.00050757580356 45 - 51 | -0.000329817155572 45 - 52 | -0.000227273395901 45 - 53 | -0.000583281918334 45 - 54 | 0.00010026604238 45 - 55 | -0.00380469765374 45 - 56 | 1.85816691674e-05 45 - 57 | 6.71591548253e-05 45 - 58 | 5.2529382541e-06 45 - 59 | 0.0 45 - 60 | -0.000727954224289 45 - 61 | 6.81335278145e-05 45 - 62 | 0.00067380187597 45 - 63 | 0.000986185400937 45 - 64 | 0.000755706737247 45 - 65 | -0.000339076742612 45 - 66 | -0.000487183123217 45 - 67 | -1.25556573852e-06 45 - 68 | 4.72520131431e-05 45 - 69 | 0.000126703643428 45 - 70 | 2.65112433458e-05 45 - 71 | 0.0 45 - 72 | -0.000589579688467 45 - 73 | -0.00130373095208 45 - 74 | -0.00210800898344 45 - 75 | -0.00242188075256 45 - 76 | -0.00213150956872 45 - 77 | 2.74151768511e-05 45 - 78 | -0.000175859832823 45 - 79 | -9.82206893846e-05 45 - 80 | 5.30224164162e-05 45 - 81 | -1.90858626809e-05 45 - 82 | 1.54201090104e-05 45 - 83 | 2.6415453348e-07 45 - 84 | 3.81628566171e-05 45 - 85 | -0.00049412275492 45 - 86 | -0.00040884156645 45 - 87 | -0.000671867108283 45 - 88 | -0.000428807204756 45 - 89 | 0.000186818354332 45 - 90 | -0.000103960809337 45 - 91 | -0.000199530251545 45 - 92 | -5.59216150489e-05 45 - 93 | 2.01928692972e-05 45 - 94 | 0.000102998841976 45 - 95 | 1.12068143166e-05 46 - 0 | 0.0 46 - 1 | 0.0 46 - 2 | 0.0 46 - 3 | 0.0 46 - 4 | 0.0 46 - 5 | 0.0 46 - 6 | 0.0 46 - 7 | 0.0 46 - 8 | 0.0 46 - 9 | 0.0 46 - 10 | 0.0 46 - 11 | 0.0 46 - 12 | 0.0 46 - 13 | 0.0 46 - 14 | 0.0 46 - 15 | 0.0 46 - 16 | 0.0 46 - 17 | 0.0 46 - 18 | 0.0 46 - 19 | 0.0 46 - 20 | 0.0 46 - 21 | 0.0 46 - 22 | 0.0 46 - 23 | 0.0 46 - 24 | 0.0 46 - 25 | 0.0 46 - 26 | 0.0 46 - 27 | 0.0 46 - 28 | 0.0 46 - 29 | 0.0 46 - 30 | 0.0 46 - 31 | 0.0 46 - 32 | 0.0 46 - 33 | 0.0 46 - 34 | 0.0 46 - 35 | 0.0 46 - 36 | 0.0 46 - 37 | 0.0 46 - 38 | 0.0 46 - 39 | 0.0 46 - 40 | 0.0 46 - 41 | 0.0 46 - 42 | 0.0 46 - 43 | 0.0 46 - 44 | 0.0 46 - 45 | 0.0 46 - 46 | 0.0 46 - 47 | 0.0 46 - 48 | 0.0 46 - 49 | 0.0 46 - 50 | 0.0 46 - 51 | 0.0 46 - 52 | 0.0 46 - 53 | 0.0 46 - 54 | 0.0 46 - 55 | 0.0 46 - 56 | 0.0 46 - 57 | 0.0 46 - 58 | 0.0 46 - 59 | 0.0 46 - 60 | 0.0 46 - 61 | 0.0 46 - 62 | 0.0 46 - 63 | 0.0 46 - 64 | 0.0 46 - 65 | 0.0 46 - 66 | 0.0 46 - 67 | 0.0 46 - 68 | 0.0 46 - 69 | 0.0 46 - 70 | 0.0 46 - 71 | 0.0 46 - 72 | 0.0 46 - 73 | 0.0 46 - 74 | 0.0 46 - 75 | 0.0 46 - 76 | 0.0 46 - 77 | 0.0 46 - 78 | 0.0 46 - 79 | 0.0 46 - 80 | 0.0 46 - 81 | 0.0 46 - 82 | 0.0 46 - 83 | 0.0 46 - 84 | 0.0 46 - 85 | 0.0 46 - 86 | 0.0 46 - 87 | 0.0 46 - 88 | 0.0 46 - 89 | 0.0 46 - 90 | 0.0 46 - 91 | 0.0 46 - 92 | 0.0 46 - 93 | 0.0 46 - 94 | 0.0 46 - 95 | 0.0 47 - 0 | 0.0 47 - 1 | 0.0 47 - 2 | 0.0 47 - 3 | 0.0 47 - 4 | 0.0 47 - 5 | 0.0 47 - 6 | 0.0 47 - 7 | 0.0 47 - 8 | 0.0 47 - 9 | 0.0 47 - 10 | 0.0 47 - 11 | 0.0 47 - 12 | 0.0 47 - 13 | 0.0 47 - 14 | 0.0 47 - 15 | 0.0 47 - 16 | 0.0 47 - 17 | 0.0 47 - 18 | 0.0 47 - 19 | 0.0 47 - 20 | 0.0 47 - 21 | 0.0 47 - 22 | 0.0 47 - 23 | 0.0 47 - 24 | 0.0 47 - 25 | 0.0 47 - 26 | 0.0 47 - 27 | 0.0 47 - 28 | 0.0 47 - 29 | 0.0 47 - 30 | 0.0 47 - 31 | 0.0 47 - 32 | 0.0 47 - 33 | 0.0 47 - 34 | 0.0 47 - 35 | 0.0 47 - 36 | 0.0 47 - 37 | 0.0 47 - 38 | 0.0 47 - 39 | 0.0 47 - 40 | 0.0 47 - 41 | 0.0 47 - 42 | 0.0 47 - 43 | 0.0 47 - 44 | 0.0 47 - 45 | 0.0 47 - 46 | 0.0 47 - 47 | 0.0 47 - 48 | 0.0 47 - 49 | 0.0 47 - 50 | 0.0 47 - 51 | 0.0 47 - 52 | 0.0 47 - 53 | 0.0 47 - 54 | 0.0 47 - 55 | 0.0 47 - 56 | 0.0 47 - 57 | 0.0 47 - 58 | 0.0 47 - 59 | 0.0 47 - 60 | 0.0 47 - 61 | 0.0 47 - 62 | 0.0 47 - 63 | 0.0 47 - 64 | 0.0 47 - 65 | 0.0 47 - 66 | 0.0 47 - 67 | 0.0 47 - 68 | 0.0 47 - 69 | 0.0 47 - 70 | 0.0 47 - 71 | 0.0 47 - 72 | 0.0 47 - 73 | 0.0 47 - 74 | 0.0 47 - 75 | 0.0 47 - 76 | 0.0 47 - 77 | 0.0 47 - 78 | 0.0 47 - 79 | 0.0 47 - 80 | 0.0 47 - 81 | 0.0 47 - 82 | 0.0 47 - 83 | 0.0 47 - 84 | 0.0 47 - 85 | 0.0 47 - 86 | 0.0 47 - 87 | 0.0 47 - 88 | 0.0 47 - 89 | 0.0 47 - 90 | 0.0 47 - 91 | 0.0 47 - 92 | 0.0 47 - 93 | 0.0 47 - 94 | 0.0 47 - 95 | 0.0 48 - 0 | 0.00807993387852 48 - 1 | 0.00900812997902 48 - 2 | 0.00675823989816 48 - 3 | 0.00136106470763 48 - 4 | -0.000197638577156 48 - 5 | -1.52919636222e-06 48 - 6 | -0.000168026965167 48 - 7 | -5.75558116344e-05 48 - 8 | 0.0 48 - 9 | 0.0 48 - 10 | 0.0 48 - 11 | 0.0 48 - 12 | 0.00622202559637 48 - 13 | 0.00833886450612 48 - 14 | 0.00570775261146 48 - 15 | 0.00106435414763 48 - 16 | 0.00183512876058 48 - 17 | 0.000113177975731 48 - 18 | -0.000126753831304 48 - 19 | 2.80094317198e-05 48 - 20 | -5.35637847066e-05 48 - 21 | 0.0 48 - 22 | 0.0 48 - 23 | 0.0 48 - 24 | 0.00694031726491 48 - 25 | 0.00855285250618 48 - 26 | 0.00616040796689 48 - 27 | 0.00173088269162 48 - 28 | 0.00197702145696 48 - 29 | 0.0015783021701 48 - 30 | -1.4427280065e-05 48 - 31 | 1.46730263453e-05 48 - 32 | -0.0011951623085 48 - 33 | -0.000175698677424 48 - 34 | 0.0 48 - 35 | 0.0 48 - 36 | 0.00839942441968 48 - 37 | 0.00941266048723 48 - 38 | 0.00656731864849 48 - 39 | 0.00652455019772 48 - 40 | 0.00256998422216 48 - 41 | 0.00187259154873 48 - 42 | 0.000726965747479 48 - 43 | 0.000213505891964 48 - 44 | -0.000693537710871 48 - 45 | -0.0008740881439 48 - 46 | 0.0 48 - 47 | 0.0 48 - 48 | 0.00877300599794 48 - 49 | 0.00538505881856 48 - 50 | 0.00643570615952 48 - 51 | 0.00448809220466 48 - 52 | 0.00342140299549 48 - 53 | 0.0049533866451 48 - 54 | 0.000491403002619 48 - 55 | 0.0253040481783 48 - 56 | 0.000283729047965 48 - 57 | -0.000257735072909 48 - 58 | -1.83716828416e-05 48 - 59 | 0.0 48 - 60 | 0.00754080248541 48 - 61 | 0.00189466745593 48 - 62 | -0.000743699243445 48 - 63 | -0.00307761947079 48 - 64 | -0.00248184674885 48 - 65 | 0.00365911006603 48 - 66 | 0.00444551637936 48 - 67 | 0.0011928039447 48 - 68 | 0.000336955683598 48 - 69 | -0.000509130221683 48 - 70 | -0.000112139645564 48 - 71 | 0.0 48 - 72 | 0.00589078464534 48 - 73 | 0.00982275984449 48 - 74 | 0.0147418798316 48 - 75 | 0.0170077209115 48 - 76 | 0.0143998188119 48 - 77 | 0.00159027584814 48 - 78 | 0.00258206915989 48 - 79 | 0.00179405468613 48 - 80 | 0.000540082232242 48 - 81 | 0.000555166378628 48 - 82 | 7.51360982311e-05 48 - 83 | -1.07908824119e-06 48 - 84 | 0.00156525449067 48 - 85 | 0.00454000202874 48 - 86 | 0.00415348546791 48 - 87 | 0.00593993953069 48 - 88 | 0.00386887541147 48 - 89 | 0.000298708594685 48 - 90 | 0.00189500973967 48 - 91 | 0.00218736670617 48 - 92 | 0.00109221137644 48 - 93 | 0.000443347835033 48 - 94 | 0.000118122186153 48 - 95 | -2.08572846028e-05 49 - 0 | 0.00616382006363 49 - 1 | 0.00818637462594 49 - 2 | 0.00500914823664 49 - 3 | 0.00155705910607 49 - 4 | 0.000382213092023 49 - 5 | 0.000237527652783 49 - 6 | 4.74579450367e-05 49 - 7 | 1.14183110248e-05 49 - 8 | 0.0 49 - 9 | 0.0 49 - 10 | 0.0 49 - 11 | 0.0 49 - 12 | 0.00497287466506 49 - 13 | 0.00734454532743 49 - 14 | 0.00502489598376 49 - 15 | 0.00193304240255 49 - 16 | 0.00154436568096 49 - 17 | 0.000589691477253 49 - 18 | 0.00022718221415 49 - 19 | 0.000146789880318 49 - 20 | 1.37290431604e-05 49 - 21 | 0.0 49 - 22 | 0.0 49 - 23 | 0.0 49 - 24 | 0.00539465070426 49 - 25 | 0.00770945440432 49 - 26 | 0.00584262120247 49 - 27 | 0.00296084728878 49 - 28 | 0.00211100726326 49 - 29 | 0.00140932997765 49 - 30 | 0.000688475553274 49 - 31 | 0.000393291565512 49 - 32 | -0.000485138929411 49 - 33 | -8.70821442176e-05 49 - 34 | 0.0 49 - 35 | 0.0 49 - 36 | 0.00560401688151 49 - 37 | 0.00804985640725 49 - 38 | 0.00595387504362 49 - 39 | 0.00494497866722 49 - 40 | 0.00267672297903 49 - 41 | 0.00201056731361 49 - 42 | 0.00139078709296 49 - 43 | 0.000869005897428 49 - 44 | 2.96721536522e-05 49 - 45 | -0.000464153032839 49 - 46 | 0.0 49 - 47 | 0.0 49 - 48 | 0.00538505881856 49 - 49 | 0.00772401499103 49 - 50 | 0.00661880361489 49 - 51 | 0.0048140739607 49 - 52 | 0.00360089425601 49 - 53 | 0.00376483108298 49 - 54 | 0.00155190176796 49 - 55 | 0.00910497547538 49 - 56 | 0.000755465427326 49 - 57 | 0.000104160353081 49 - 58 | 9.99278971275e-06 49 - 59 | 0.0 49 - 60 | 0.00522793384355 49 - 61 | 0.00488188643854 49 - 62 | 0.00433450777717 49 - 63 | 0.00287726075887 49 - 64 | 0.00203495180918 49 - 65 | 0.00336454776891 49 - 66 | 0.00344823813218 49 - 67 | 0.00180610553231 49 - 68 | 0.00122590124378 49 - 69 | 0.00026477536036 49 - 70 | 4.2742021741e-05 49 - 71 | 0.0 49 - 72 | 0.00428532726931 49 - 73 | 0.00707674088381 49 - 74 | 0.0081929557795 49 - 75 | 0.00828650782033 49 - 76 | 0.00720615445663 49 - 77 | 0.00314258133358 49 - 78 | 0.00295576460096 49 - 79 | 0.00267530619424 49 - 80 | 0.00165824967645 49 - 81 | 0.00106799154659 49 - 82 | 0.000307280396424 49 - 83 | 2.21981435786e-06 49 - 84 | 0.00218414471405 49 - 85 | 0.00419781598097 49 - 86 | 0.0041772803798 49 - 87 | 0.00441881640039 49 - 88 | 0.00316682210261 49 - 89 | 0.00209408931648 49 - 90 | 0.00247404063373 49 - 91 | 0.00254885214633 49 - 92 | 0.00200533744508 49 - 93 | 0.00136825614883 49 - 94 | 0.000873529426231 49 - 95 | 3.17250783299e-05 50 - 0 | 0.00742085943667 50 - 1 | 0.00926080489665 50 - 2 | 0.00628367329594 50 - 3 | 0.00191522426907 50 - 4 | 0.000609352257668 50 - 5 | 0.000337701802197 50 - 6 | 6.69002930528e-05 50 - 7 | 1.53458676961e-05 50 - 8 | 0.0 50 - 9 | 0.0 50 - 10 | 0.0 50 - 11 | 0.0 50 - 12 | 0.0058818087985 50 - 13 | 0.00774135969966 50 - 14 | 0.00637613507715 50 - 15 | 0.00256734858771 50 - 16 | 0.00181362146222 50 - 17 | 0.00075928791182 50 - 18 | 0.000343846015831 50 - 19 | 0.000201626024913 50 - 20 | 2.5347759359e-05 50 - 21 | 0.0 50 - 22 | 0.0 50 - 23 | 0.0 50 - 24 | 0.00630980660677 50 - 25 | 0.00817052640204 50 - 26 | 0.00734615403629 50 - 27 | 0.00383526333889 50 - 28 | 0.00256857270766 50 - 29 | 0.00176709567481 50 - 30 | 0.000901328148954 50 - 31 | 0.000535698090484 50 - 32 | -0.0005090469053 50 - 33 | -9.2426136444e-05 50 - 34 | 0.0 50 - 35 | 0.0 50 - 36 | 0.00660441960395 50 - 37 | 0.00791508485961 50 - 38 | 0.00761646824056 50 - 39 | 0.00583346729769 50 - 40 | 0.00327309641054 50 - 41 | 0.0024445868615 50 - 42 | 0.00167393048676 50 - 43 | 0.00118974219462 50 - 44 | 0.000117213868718 50 - 45 | -0.00050757580356 50 - 46 | 0.0 50 - 47 | 0.0 50 - 48 | 0.00643570615952 50 - 49 | 0.00661880361489 50 - 50 | 0.00936245958304 50 - 51 | 0.00596969312801 50 - 52 | 0.00444383349236 50 - 53 | 0.00416298873975 50 - 54 | 0.00190083859619 50 - 55 | 0.012600972912 50 - 56 | 0.00100484502244 50 - 57 | 0.000170942786605 50 - 58 | 1.56344718706e-05 50 - 59 | 0.0 50 - 60 | 0.00638091036453 50 - 61 | 0.00486913991303 50 - 62 | 0.00616481642949 50 - 63 | 0.00411149428239 50 - 64 | 0.00286548202006 50 - 65 | 0.00391058519822 50 - 66 | 0.00388795552371 50 - 67 | 0.00231426835419 50 - 68 | 0.00157657452373 50 - 69 | 0.000423401133418 50 - 70 | 5.23127893412e-05 50 - 71 | 0.0 50 - 72 | 0.00523774992377 50 - 73 | 0.00706745994842 50 - 74 | 0.00859272367228 50 - 75 | 0.0089185701976 50 - 76 | 0.00740379744899 50 - 77 | 0.00374274851018 50 - 78 | 0.0034312635716 50 - 79 | 0.00296135429929 50 - 80 | 0.00203692045172 50 - 81 | 0.00144602768244 50 - 82 | 0.000466931788235 50 - 83 | 2.5150826409e-06 50 - 84 | 0.00288020090249 50 - 85 | 0.0043764939403 50 - 86 | 0.00453398826449 50 - 87 | 0.00500416398825 50 - 88 | 0.00348999262289 50 - 89 | 0.00257687850064 50 - 90 | 0.00283783316799 50 - 91 | 0.00274308966498 50 - 92 | 0.00217654584111 50 - 93 | 0.00172104185797 50 - 94 | 0.00149075546094 50 - 95 | 7.2409123562e-05 51 - 0 | 0.00531037922662 51 - 1 | 0.00671978297538 51 - 2 | 0.00462982918735 51 - 3 | 0.00150883349691 51 - 4 | 0.000561058814602 51 - 5 | 0.000304965188473 51 - 6 | 8.99280809456e-05 51 - 7 | 2.12696496771e-05 51 - 8 | 0.0 51 - 9 | 0.0 51 - 10 | 0.0 51 - 11 | 0.0 51 - 12 | 0.00428122003691 51 - 13 | 0.0054135330859 51 - 14 | 0.00483738655846 51 - 15 | 0.00226320580332 51 - 16 | 0.00130405376537 51 - 17 | 0.000639699370921 51 - 18 | 0.000321467919741 51 - 19 | 0.000184142707965 51 - 20 | 3.37305146644e-05 51 - 21 | 0.0 51 - 22 | 0.0 51 - 23 | 0.0 51 - 24 | 0.00449708235683 51 - 25 | 0.00588643102091 51 - 26 | 0.00584429819208 51 - 27 | 0.00350555952283 51 - 28 | 0.00198205561347 51 - 29 | 0.00130712883033 51 - 30 | 0.000786704986754 51 - 31 | 0.000498119658785 51 - 32 | -0.000248968041716 51 - 33 | -5.36320652813e-05 51 - 34 | 0.0 51 - 35 | 0.0 51 - 36 | 0.00458641262046 51 - 37 | 0.00519964020865 51 - 38 | 0.00495529035438 51 - 39 | 0.0043668220473 51 - 40 | 0.00269664905057 51 - 41 | 0.00182433955549 51 - 42 | 0.00137709222649 51 - 43 | 0.00103356645008 51 - 44 | 0.000230129843892 51 - 45 | -0.000329817155572 51 - 46 | 0.0 51 - 47 | 0.0 51 - 48 | 0.00448809220466 51 - 49 | 0.0048140739607 51 - 50 | 0.00596969312801 51 - 51 | 0.00594354950101 51 - 52 | 0.00405052131058 51 - 53 | 0.00290643718007 51 - 54 | 0.00160938875238 51 - 55 | 0.00748160074787 51 - 56 | 0.00087852530567 51 - 57 | 0.000206550713022 51 - 58 | 1.71197760779e-05 51 - 59 | 0.0 51 - 60 | 0.00459756415608 51 - 61 | 0.00420289410185 51 - 62 | 0.00605167484563 51 - 63 | 0.00567158584842 51 - 64 | 0.00393783046143 51 - 65 | 0.00293627555658 51 - 66 | 0.00282690956739 51 - 67 | 0.00186618117413 51 - 68 | 0.00138403741479 51 - 69 | 0.00048126473843 51 - 70 | 7.08049197958e-05 51 - 71 | 0.0 51 - 72 | 0.00375375454797 51 - 73 | 0.00414304931846 51 - 74 | 0.00417118525832 51 - 75 | 0.00423743721694 51 - 76 | 0.00341625089806 51 - 77 | 0.00345417361462 51 - 78 | 0.00272876785082 51 - 79 | 0.00240311034145 51 - 80 | 0.00180137065199 51 - 81 | 0.0012814746373 51 - 82 | 0.000458971028748 51 - 83 | 2.49252719886e-06 51 - 84 | 0.00232562516546 51 - 85 | 0.00305317994636 51 - 86 | 0.00314638031445 51 - 87 | 0.00345182370005 51 - 88 | 0.00223080676966 51 - 89 | 0.00245485571918 51 - 90 | 0.0022739312612 51 - 91 | 0.00210464484668 51 - 92 | 0.00175475577818 51 - 93 | 0.00146780644326 51 - 94 | 0.00146521144907 51 - 95 | 7.52757130931e-05 52 - 0 | 0.00404220571018 52 - 1 | 0.00515235250991 52 - 2 | 0.00367652404787 52 - 3 | 0.00115379863261 52 - 4 | 0.000439272290678 52 - 5 | 0.000239784195442 52 - 6 | 6.96032963994e-05 52 - 7 | 1.59656984486e-05 52 - 8 | 0.0 52 - 9 | 0.0 52 - 10 | 0.0 52 - 11 | 0.0 52 - 12 | 0.00327056153943 52 - 13 | 0.00406653233867 52 - 14 | 0.00388355976446 52 - 15 | 0.00185228828746 52 - 16 | 0.00100226010705 52 - 17 | 0.000496190399231 52 - 18 | 0.000254322273049 52 - 19 | 0.000148617608606 52 - 20 | 3.08939395807e-05 52 - 21 | 0.0 52 - 22 | 0.0 52 - 23 | 0.0 52 - 24 | 0.00339591774762 52 - 25 | 0.00447184852875 52 - 26 | 0.0047934264172 52 - 27 | 0.00293112019088 52 - 28 | 0.00155920004025 52 - 29 | 0.00101956627165 52 - 30 | 0.00061532303134 52 - 31 | 0.000401100373485 52 - 32 | -0.00015371469662 52 - 33 | -3.45486733531e-05 52 - 34 | 0.0 52 - 35 | 0.0 52 - 36 | 0.00344835583132 52 - 37 | 0.00373537502494 52 - 38 | 0.00372604296217 52 - 39 | 0.00319820551228 52 - 40 | 0.00225300743049 52 - 41 | 0.00144167946959 52 - 42 | 0.00106812744962 52 - 43 | 0.000813071214554 52 - 44 | 0.000198752015748 52 - 45 | -0.000227273395901 52 - 46 | 0.0 52 - 47 | 0.0 52 - 48 | 0.00342140299549 52 - 49 | 0.00360089425601 52 - 50 | 0.00444383349236 52 - 51 | 0.00405052131058 52 - 52 | 0.00384384116874 52 - 53 | 0.00241197993405 52 - 54 | 0.00131093490458 52 - 55 | 0.00634673852116 52 - 56 | 0.000706253282387 52 - 57 | 0.000172108641323 52 - 58 | 1.36659942062e-05 52 - 59 | 0.0 52 - 60 | 0.00354457880245 52 - 61 | 0.00333795977306 52 - 62 | 0.0051962732805 52 - 63 | 0.00493921249139 52 - 64 | 0.00377269551038 52 - 65 | 0.00238000212112 52 - 66 | 0.00221834961006 52 - 67 | 0.00149727372786 52 - 68 | 0.00110273648045 52 - 69 | 0.000392104780351 52 - 70 | 5.63510370797e-05 52 - 71 | 0.0 52 - 72 | 0.00286368855752 52 - 73 | 0.0026851107441 52 - 74 | 0.00248822410171 52 - 75 | 0.00243027828466 52 - 76 | 0.00194470881929 52 - 77 | 0.00285790792894 52 - 78 | 0.00214315242908 52 - 79 | 0.00185372979664 52 - 80 | 0.00141041386179 52 - 81 | 0.00102363528212 52 - 82 | 0.000382314448626 52 - 83 | 1.78662802616e-06 52 - 84 | 0.00184577312017 52 - 85 | 0.00223681511455 52 - 86 | 0.00231042627079 52 - 87 | 0.00253828832723 52 - 88 | 0.0014695481714 52 - 89 | 0.00200079085404 52 - 90 | 0.00172375099838 52 - 91 | 0.00156491176814 52 - 92 | 0.00130450379217 52 - 93 | 0.00113135249663 52 - 94 | 0.0012475885112 52 - 95 | 6.6851230661e-05 53 - 0 | 0.00535248707498 53 - 1 | 0.00617448367916 53 - 2 | 0.00434811509019 53 - 3 | 0.00117043449644 53 - 4 | 5.64844797571e-05 53 - 5 | 7.15054489408e-05 53 - 6 | -4.96572096858e-05 53 - 7 | -1.94680732731e-05 53 - 8 | 0.0 53 - 9 | 0.0 53 - 10 | 0.0 53 - 11 | 0.0 53 - 12 | 0.00419873690242 53 - 13 | 0.00573979536839 53 - 14 | 0.00358550985961 53 - 15 | 0.000853798858056 53 - 16 | 0.00138257528972 53 - 17 | 0.00027132793234 53 - 18 | 2.58825771672e-05 53 - 19 | 8.08150320655e-05 53 - 20 | -1.89073511327e-05 53 - 21 | 0.0 53 - 22 | 0.0 53 - 23 | 0.0 53 - 24 | 0.0046292147363 53 - 25 | 0.00574108048127 53 - 26 | 0.00367361952618 53 - 27 | 0.00106804168908 53 - 28 | 0.00151639728232 53 - 29 | 0.00126029756412 53 - 30 | 0.000232799241565 53 - 31 | 0.000133926991836 53 - 32 | -0.000752241771848 53 - 33 | -0.000115103091371 53 - 34 | 0.0 53 - 35 | 0.0 53 - 36 | 0.00532102555386 53 - 37 | 0.00657660711863 53 - 38 | 0.00466953550782 53 - 39 | 0.00442760229495 53 - 40 | 0.00194536655679 53 - 41 | 0.00167456398609 53 - 42 | 0.00092558321258 53 - 43 | 0.000411629240831 53 - 44 | -0.000274926209415 53 - 45 | -0.000583281918334 53 - 46 | 0.0 53 - 47 | 0.0 53 - 48 | 0.0049533866451 53 - 49 | 0.00376483108298 53 - 50 | 0.00416298873975 53 - 51 | 0.00290643718007 53 - 52 | 0.00241197993405 53 - 53 | 0.00456542700649 53 - 54 | 0.00114327120949 53 - 55 | 0.014770402047 53 - 56 | 0.000480089301746 53 - 57 | -2.20278143579e-05 53 - 58 | 3.73181943848e-06 53 - 59 | 0.0 53 - 60 | 0.00451015215004 53 - 61 | 0.00146177566846 53 - 62 | -0.000951131530717 53 - 63 | -0.00271434231766 53 - 64 | -0.00188109231459 53 - 65 | 0.00292395941898 53 - 66 | 0.003286800244 53 - 67 | 0.00110712436973 53 - 68 | 0.000636333716814 53 - 69 | -4.98344481006e-05 53 - 70 | 2.30364428491e-06 53 - 71 | 0.0 53 - 72 | 0.00381234204753 53 - 73 | 0.00736563660353 53 - 74 | 0.0108367468982 53 - 75 | 0.0119929333201 53 - 76 | 0.0102690622912 53 - 77 | 0.00107347071794 53 - 78 | 0.00202820079535 53 - 79 | 0.00170489639967 53 - 80 | 0.000903553063038 53 - 81 | 0.000727012850355 53 - 82 | 0.000231023659742 53 - 83 | 1.00760765114e-06 53 - 84 | 0.00120727804121 53 - 85 | 0.00319787646152 53 - 86 | 0.00308004404624 53 - 87 | 0.00398226482258 53 - 88 | 0.00301874488316 53 - 89 | 0.000248514044695 53 - 90 | 0.00152388361718 53 - 91 | 0.0019120972783 53 - 92 | 0.00119373125294 53 - 93 | 0.000788104408505 53 - 94 | 0.000553158525452 53 - 95 | 1.10099684471e-05 54 - 0 | 0.00131424253197 54 - 1 | 0.00206233946089 54 - 2 | 0.0014494710316 54 - 3 | 0.000801322164357 54 - 4 | 0.000543039959911 54 - 5 | 0.000221979217055 54 - 6 | 0.000122284618367 54 - 7 | 3.46321147719e-05 54 - 8 | 0.0 54 - 9 | 0.0 54 - 10 | 0.0 54 - 11 | 0.0 54 - 12 | 0.0011083932876 54 - 13 | 0.00142716913038 54 - 14 | 0.00189580232369 54 - 15 | 0.00138104554655 54 - 16 | 0.000572799003831 54 - 17 | 0.000503181435557 54 - 18 | 0.000271759331398 54 - 19 | 0.000133614217643 54 - 20 | 3.82638709817e-05 54 - 21 | 0.0 54 - 22 | 0.0 54 - 23 | 0.0 54 - 24 | 0.00103330268225 54 - 25 | 0.0015155368849 54 - 26 | 0.00200576467298 54 - 27 | 0.00170520279429 54 - 28 | 0.000938401814195 54 - 29 | 0.000617258093929 54 - 30 | 0.000585617360746 54 - 31 | 0.00032181242896 54 - 32 | 0.000165665376914 54 - 33 | 2.33401248731e-05 54 - 34 | 0.0 54 - 35 | 0.0 54 - 36 | 0.000654047955978 54 - 37 | 0.00108031893539 54 - 38 | 0.00213776769905 54 - 39 | 0.00120994989362 54 - 40 | 0.00110194424586 54 - 41 | 0.000997555791299 54 - 42 | 0.000972254519082 54 - 43 | 0.000718802761996 54 - 44 | 0.000427105382282 54 - 45 | 0.00010026604238 54 - 46 | 0.0 54 - 47 | 0.0 54 - 48 | 0.000491403002619 54 - 49 | 0.00155190176796 54 - 50 | 0.00190083859619 54 - 51 | 0.00160938875238 54 - 52 | 0.00131093490458 54 - 53 | 0.00114327120949 54 - 54 | 0.00182967878275 54 - 55 | -0.00310780196751 54 - 56 | 0.000656454190879 54 - 57 | 0.000298906680853 54 - 58 | 2.39778024616e-05 54 - 59 | 0.0 54 - 60 | 0.000744630446791 54 - 61 | 0.00190298895924 54 - 62 | 0.00291264089523 54 - 63 | 0.00288337948991 54 - 64 | 0.00229703386877 54 - 65 | 0.00123628865058 54 - 66 | 0.00109338530555 54 - 67 | 0.0010969357319 54 - 68 | 0.0010232379267 54 - 69 | 0.000612268324772 54 - 70 | 0.000131116633699 54 - 71 | 0.0 54 - 72 | 0.000733378762406 54 - 73 | 0.000637095983184 54 - 74 | 0.000156371624314 54 - 75 | -0.000278039975152 54 - 76 | -0.000417152752093 54 - 77 | 0.00146412012998 54 - 78 | 0.00130223325036 54 - 79 | 0.00130156713459 54 - 80 | 0.00131639913881 54 - 81 | 0.000858559296093 54 - 82 | 0.000404017887192 54 - 83 | 2.52259423777e-06 54 - 84 | 0.00118207840804 54 - 85 | 0.000636146903544 54 - 86 | 0.00103164693417 54 - 87 | 0.000758942524178 54 - 88 | 0.000826119729231 54 - 89 | 0.00124668415306 54 - 90 | 0.000982153008946 54 - 91 | 0.000953252603925 54 - 92 | 0.000998605661241 54 - 93 | 0.00108978352022 54 - 94 | 0.00141972179062 54 - 95 | 8.2126045507e-05 55 - 0 | 0.0222488557125 55 - 1 | 0.021253284664 55 - 2 | 0.0176846269943 55 - 3 | 0.00267370840868 55 - 4 | -0.00135874604582 55 - 5 | -0.000790630088618 55 - 6 | -0.00115975427219 55 - 7 | -0.000240758628149 55 - 8 | 0.0 55 - 9 | 0.0 55 - 10 | 0.0 55 - 11 | 0.0 55 - 12 | 0.0161297584957 55 - 13 | 0.022812038697 55 - 14 | 0.0114599489359 55 - 15 | -0.00207581435516 55 - 16 | 0.00500045706079 55 - 17 | -0.00107016892116 55 - 18 | -0.000892914944398 55 - 19 | 5.93505482591e-05 55 - 20 | -2.07310790605e-05 55 - 21 | 0.0 55 - 22 | 0.0 55 - 23 | 0.0 55 - 24 | 0.0187622608484 55 - 25 | 0.0237299833546 55 - 26 | 0.0110249879008 55 - 27 | -0.00199123790933 55 - 28 | 0.00414836188845 55 - 29 | 0.00421675439121 55 - 30 | -0.00147308614275 55 - 31 | -0.000245401019214 55 - 32 | -0.00487201093289 55 - 33 | -0.000732936655203 55 - 34 | 0.0 55 - 35 | 0.0 55 - 36 | 0.025487664028 55 - 37 | 0.0302066424747 55 - 38 | 0.0150425702841 55 - 39 | 0.0174422622769 55 - 40 | 0.00504108889491 55 - 41 | 0.00254420666571 55 - 42 | -0.000225810078898 55 - 43 | -0.00120061316736 55 - 44 | -0.00378104070351 55 - 45 | -0.00380469765374 55 - 46 | 0.0 55 - 47 | 0.0 55 - 48 | 0.0253040481783 55 - 49 | 0.00910497547538 55 - 50 | 0.012600972912 55 - 51 | 0.00748160074787 55 - 52 | 0.00634673852116 55 - 53 | 0.014770402047 55 - 54 | -0.00310780196751 -55 - 55 | 0.199799641011 +55 - 55 | 0.00199799641011 55 - 56 | -0.000250528663347 55 - 57 | -0.00145844699218 55 - 58 | 1.3631107631e-05 55 - 59 | 0.0 55 - 60 | 0.0205370737983 55 - 61 | -0.00386487634173 55 - 62 | -0.0175180739289 55 - 63 | -0.0260101937038 55 - 64 | -0.0202929663998 55 - 65 | 0.00830990458068 55 - 66 | 0.0130934358169 55 - 67 | 0.00109051154256 55 - 68 | -0.00117322628756 55 - 69 | -0.00299380689126 55 - 70 | -0.000574909860233 55 - 71 | 0.0 55 - 72 | 0.0177275343634 55 - 73 | 0.0322016986822 55 - 74 | 0.0539829983723 55 - 75 | 0.061282913844 55 - 76 | 0.0531982663682 55 - 77 | -0.00173387862878 55 - 78 | 0.00358688607228 55 - 79 | 0.00155019634365 55 - 80 | -0.00196277554689 55 - 81 | -6.52773806881e-06 55 - 82 | -0.000524955513131 55 - 83 | -4.86912722922e-06 55 - 84 | 0.00385012599935 55 - 85 | 0.0134964952211 55 - 86 | 0.0125579004817 55 - 87 | 0.0172645482177 55 - 88 | 0.00702022233212 55 - 89 | -0.00640866791546 55 - 90 | 0.00213734773968 55 - 91 | 0.00482530078534 55 - 92 | 0.00116171868728 55 - 93 | -0.000850467479292 55 - 94 | -0.00311272327584 55 - 95 | -0.000243078458657 56 - 0 | 0.000743196781925 56 - 1 | 0.0011473662762 56 - 2 | 0.000926893691946 56 - 3 | 0.000460328203253 56 - 4 | 0.000306489784752 56 - 5 | 0.000128859324727 56 - 6 | 6.03488582007e-05 56 - 7 | 2.16508583258e-05 56 - 8 | 0.0 56 - 9 | 0.0 56 - 10 | 0.0 56 - 11 | 0.0 56 - 12 | 0.000578627256413 56 - 13 | 0.000796782741658 56 - 14 | 0.00115008526045 56 - 15 | 0.000727017592617 56 - 16 | 0.000304551110857 56 - 17 | 0.000277732048766 56 - 18 | 0.000177501886089 56 - 19 | 8.39324347371e-05 56 - 20 | 2.2494140942e-05 56 - 21 | 0.0 56 - 22 | 0.0 56 - 23 | 0.0 56 - 24 | 0.000517571552276 56 - 25 | 0.000798862439156 56 - 26 | 0.00121626591093 56 - 27 | 0.000935233597516 56 - 28 | 0.000494304230148 56 - 29 | 0.000320763519877 56 - 30 | 0.000350335886882 56 - 31 | 0.000209604881269 56 - 32 | 6.7445783596e-05 56 - 33 | 7.96079590145e-06 56 - 34 | 0.0 56 - 35 | 0.0 56 - 36 | 0.000346433047869 56 - 37 | 0.000574704658345 56 - 38 | 0.0012050207018 56 - 39 | 0.000669892673566 56 - 40 | 0.000594276985467 56 - 41 | 0.000439139177924 56 - 42 | 0.000446412967438 56 - 43 | 0.000455283017009 56 - 44 | 0.00024630031276 56 - 45 | 1.85816691674e-05 56 - 46 | 0.0 56 - 47 | 0.0 56 - 48 | 0.000283729047965 56 - 49 | 0.000755465427326 56 - 50 | 0.00100484502244 56 - 51 | 0.00087852530567 56 - 52 | 0.000706253282387 56 - 53 | 0.000480089301746 56 - 54 | 0.000656454190879 56 - 55 | -0.000250528663347 56 - 56 | 0.000479988249767 56 - 57 | 0.000184697781543 56 - 58 | 1.44612178812e-05 56 - 59 | 0.0 56 - 60 | 0.000347054492605 56 - 61 | 0.000950769093508 56 - 62 | 0.00155833810994 56 - 63 | 0.0015554311413 56 - 64 | 0.00120731798436 56 - 65 | 0.000567957383057 56 - 66 | 0.000425144470654 56 - 67 | 0.000662998412529 56 - 68 | 0.000694001116479 56 - 69 | 0.00037364804416 56 - 70 | 6.81061284885e-05 56 - 71 | 0.0 56 - 72 | 0.00036628225244 56 - 73 | 0.000206250192601 56 - 74 | 4.33041267195e-05 56 - 75 | -0.000194616996678 56 - 76 | -0.000248196210536 56 - 77 | 0.000741551804652 56 - 78 | 0.000583227041541 56 - 79 | 0.000677118457738 56 - 80 | 0.000845524117824 56 - 81 | 0.000617641894182 56 - 82 | 0.000239702913147 56 - 83 | 1.49711528522e-06 56 - 84 | 0.000624461100099 56 - 85 | 0.000293537268032 56 - 86 | 0.000530677276973 56 - 87 | 0.00039449145764 56 - 88 | 0.000282593664144 56 - 89 | 0.000584849206474 56 - 90 | 0.000408601200677 56 - 91 | 0.000395141642494 56 - 92 | 0.000618441387253 56 - 93 | 0.000801660480984 56 - 94 | 0.000881124870652 56 - 95 | 5.3057782944e-05 57 - 0 | -4.39992678139e-05 57 - 1 | 0.000102529425147 57 - 2 | 9.57296915295e-05 57 - 3 | 0.000154930915758 57 - 4 | 0.000162141765686 57 - 5 | 5.90153066843e-05 57 - 6 | 3.83435327592e-05 57 - 7 | 1.61931611827e-05 57 - 8 | 0.0 57 - 9 | 0.0 57 - 10 | 0.0 57 - 11 | 0.0 57 - 12 | -3.25891042718e-05 57 - 13 | -2.52284661e-05 57 - 14 | 0.000266294772333 57 - 15 | 0.000296309625168 57 - 16 | 5.62479500469e-05 57 - 17 | 0.000129403592883 57 - 18 | 8.70027487742e-05 57 - 19 | 4.13566034186e-05 57 - 20 | 1.77877963647e-05 57 - 21 | 0.0 57 - 22 | 0.0 57 - 23 | 0.0 57 - 24 | -9.66817171023e-05 57 - 25 | -3.01559583416e-05 57 - 26 | 0.000282315359008 57 - 27 | 0.000370185507542 57 - 28 | 0.000143548257117 57 - 29 | 8.18057665784e-05 57 - 30 | 0.000168397180391 57 - 31 | 0.000104244274448 57 - 32 | 0.000117055477159 57 - 33 | 1.79776270205e-05 57 - 34 | 0.0 57 - 35 | 0.0 57 - 36 | -0.000245753489143 57 - 37 | -0.000195678548286 57 - 38 | 0.000252889593203 57 - 39 | -5.18475257082e-06 57 - 40 | 0.000161933303781 57 - 41 | 0.000126926695588 57 - 42 | 0.000187083701713 57 - 43 | 0.000194219431762 57 - 44 | 0.000159683068307 57 - 45 | 6.71591548253e-05 57 - 46 | 0.0 57 - 47 | 0.0 57 - 48 | -0.000257735072909 57 - 49 | 0.000104160353081 57 - 50 | 0.000170942786605 57 - 51 | 0.000206550713022 57 - 52 | 0.000172108641323 57 - 53 | -2.20278143579e-05 57 - 54 | 0.000298906680853 57 - 55 | -0.00145844699218 57 - 56 | 0.000184697781543 57 - 57 | 0.000110045257113 57 - 58 | 9.5177506474e-06 57 - 59 | 0.0 57 - 60 | -0.00019571448735 57 - 61 | 0.000371439609278 57 - 62 | 0.000823507066159 57 - 63 | 0.000951038145605 57 - 64 | 0.000741425489908 57 - 65 | 9.99192931789e-05 57 - 66 | 9.66437085622e-06 57 - 67 | 0.000245188904554 57 - 68 | 0.000282636731789 57 - 69 | 0.000207880863165 57 - 70 | 4.23832974688e-05 57 - 71 | 0.0 57 - 72 | -0.00011656876654 57 - 73 | -0.000409486681244 57 - 74 | -0.0007631289914 57 - 75 | -0.000987571829748 57 - 76 | -0.000866577248138 57 - 77 | 0.000299489552606 57 - 78 | 0.000182588158672 57 - 79 | 0.000251150994069 57 - 80 | 0.000360043380684 57 - 81 | 0.000253083533779 57 - 82 | 0.000113871785394 57 - 83 | 8.17984764515e-07 57 - 84 | 0.000233030707166 57 - 85 | -7.78773980159e-05 57 - 86 | 5.14418517417e-05 57 - 87 | -0.000111395032687 57 - 88 | -7.32822142575e-05 57 - 89 | 0.000279324138048 57 - 90 | 0.000124782018724 57 - 91 | 0.000110383544327 57 - 92 | 0.000233178703388 57 - 93 | 0.000331774090554 57 - 94 | 0.000407932083797 57 - 95 | 2.59247868768e-05 58 - 0 | 1.67500068122e-07 58 - 1 | 1.54693203685e-05 58 - 2 | 1.24033586313e-05 58 - 3 | 1.67220244601e-05 58 - 4 | 1.57925803469e-05 58 - 5 | 5.01149593197e-06 58 - 6 | 4.0870035457e-06 58 - 7 | 2.44744938937e-06 58 - 8 | 0.0 58 - 9 | 0.0 58 - 10 | 0.0 58 - 11 | 0.0 58 - 12 | -3.38202019192e-07 58 - 13 | 7.82857988645e-06 58 - 14 | 2.5164888014e-05 58 - 15 | 2.5799445536e-05 58 - 16 | 7.78661210308e-06 58 - 17 | 1.37137609581e-05 58 - 18 | 8.70154414347e-06 58 - 19 | 5.46413482885e-06 58 - 20 | 3.07679505237e-06 58 - 21 | 0.0 58 - 22 | 0.0 58 - 23 | 0.0 58 - 24 | -7.7627228912e-06 58 - 25 | 5.81518808194e-06 58 - 26 | 2.02323037481e-05 58 - 27 | 2.83156294026e-05 58 - 28 | 1.66332817784e-05 58 - 29 | 1.12694249311e-05 58 - 30 | 1.70697036234e-05 58 - 31 | 1.25856917693e-05 58 - 32 | 1.37036932826e-05 58 - 33 | 2.27999790486e-06 58 - 34 | 0.0 58 - 35 | 0.0 58 - 36 | -1.49082538347e-05 58 - 37 | -2.25014604255e-06 58 - 38 | 2.98677891941e-05 58 - 39 | 7.36869955059e-06 58 - 40 | 1.62209035337e-05 58 - 41 | 1.36436765312e-05 58 - 42 | 1.84944527263e-05 58 - 43 | 1.63306433893e-05 58 - 44 | 1.42266871793e-05 58 - 45 | 5.2529382541e-06 58 - 46 | 0.0 58 - 47 | 0.0 58 - 48 | -1.83716828416e-05 58 - 49 | 9.99278971275e-06 58 - 50 | 1.56344718706e-05 58 - 51 | 1.71197760779e-05 58 - 52 | 1.36659942062e-05 58 - 53 | 3.73181943848e-06 58 - 54 | 2.39778024616e-05 58 - 55 | 1.3631107631e-05 58 - 56 | 1.44612178812e-05 58 - 57 | 9.5177506474e-06 58 - 58 | 1.90429016123e-06 58 - 59 | 0.0 58 - 60 | -1.37348894853e-05 58 - 61 | 2.21017299083e-05 58 - 62 | 5.59238818778e-05 58 - 63 | 6.1731782385e-05 58 - 64 | 4.97608943624e-05 58 - 65 | 1.11304139402e-05 58 - 66 | 9.72220485957e-06 58 - 67 | 2.4189054511e-05 58 - 68 | 2.18382963451e-05 58 - 69 | 1.76498412291e-05 58 - 70 | 4.16197074335e-06 58 - 71 | 0.0 58 - 72 | -5.62793736036e-06 58 - 73 | -2.29681914419e-05 58 - 74 | -3.5956183329e-05 58 - 75 | -5.27332174877e-05 58 - 76 | -4.2724929941e-05 58 - 77 | 2.26977695915e-05 58 - 78 | 1.6675102759e-05 58 - 79 | 2.42296574181e-05 58 - 80 | 3.08102175483e-05 58 - 81 | 2.28131208475e-05 58 - 82 | 1.07080597476e-05 58 - 83 | 9.54422611231e-08 58 - 84 | 1.32675750164e-05 58 - 85 | 2.47010216988e-07 58 - 86 | 1.32535453625e-05 58 - 87 | -2.8586964508e-06 58 - 88 | -2.9797857025e-06 58 - 89 | 1.91772362702e-05 58 - 90 | 1.26930589581e-05 58 - 91 | 1.54025557393e-05 58 - 92 | 2.66166500743e-05 58 - 93 | 3.10531257546e-05 58 - 94 | 3.62496441724e-05 58 - 95 | 2.24079843343e-06 59 - 0 | 0.0 59 - 1 | 0.0 59 - 2 | 0.0 59 - 3 | 0.0 59 - 4 | 0.0 59 - 5 | 0.0 59 - 6 | 0.0 59 - 7 | 0.0 59 - 8 | 0.0 59 - 9 | 0.0 59 - 10 | 0.0 59 - 11 | 0.0 59 - 12 | 0.0 59 - 13 | 0.0 59 - 14 | 0.0 59 - 15 | 0.0 59 - 16 | 0.0 59 - 17 | 0.0 59 - 18 | 0.0 59 - 19 | 0.0 59 - 20 | 0.0 59 - 21 | 0.0 59 - 22 | 0.0 59 - 23 | 0.0 59 - 24 | 0.0 59 - 25 | 0.0 59 - 26 | 0.0 59 - 27 | 0.0 59 - 28 | 0.0 59 - 29 | 0.0 59 - 30 | 0.0 59 - 31 | 0.0 59 - 32 | 0.0 59 - 33 | 0.0 59 - 34 | 0.0 59 - 35 | 0.0 59 - 36 | 0.0 59 - 37 | 0.0 59 - 38 | 0.0 59 - 39 | 0.0 59 - 40 | 0.0 59 - 41 | 0.0 59 - 42 | 0.0 59 - 43 | 0.0 59 - 44 | 0.0 59 - 45 | 0.0 59 - 46 | 0.0 59 - 47 | 0.0 59 - 48 | 0.0 59 - 49 | 0.0 59 - 50 | 0.0 59 - 51 | 0.0 59 - 52 | 0.0 59 - 53 | 0.0 59 - 54 | 0.0 59 - 55 | 0.0 59 - 56 | 0.0 59 - 57 | 0.0 59 - 58 | 0.0 59 - 59 | 0.0 59 - 60 | 0.0 59 - 61 | 0.0 59 - 62 | 0.0 59 - 63 | 0.0 59 - 64 | 0.0 59 - 65 | 0.0 59 - 66 | 0.0 59 - 67 | 0.0 59 - 68 | 0.0 59 - 69 | 0.0 59 - 70 | 0.0 59 - 71 | 0.0 59 - 72 | 0.0 59 - 73 | 0.0 59 - 74 | 0.0 59 - 75 | 0.0 59 - 76 | 0.0 59 - 77 | 0.0 59 - 78 | 0.0 59 - 79 | 0.0 59 - 80 | 0.0 59 - 81 | 0.0 59 - 82 | 0.0 59 - 83 | 0.0 59 - 84 | 0.0 59 - 85 | 0.0 59 - 86 | 0.0 59 - 87 | 0.0 59 - 88 | 0.0 59 - 89 | 0.0 59 - 90 | 0.0 59 - 91 | 0.0 59 - 92 | 0.0 59 - 93 | 0.0 59 - 94 | 0.0 59 - 95 | 0.0 60 - 0 | 0.00757011500512 60 - 1 | 0.00864535454908 60 - 2 | 0.006444257335 60 - 3 | 0.00136616902433 60 - 4 | -6.39926182246e-05 60 - 5 | 5.7182887464e-05 60 - 6 | -0.000113259837316 60 - 7 | -4.18760117072e-05 60 - 8 | 0.0 60 - 9 | 0.0 60 - 10 | 0.0 60 - 11 | 0.0 60 - 12 | 0.00586223927756 60 - 13 | 0.00776009528636 60 - 14 | 0.00566537069901 60 - 15 | 0.00138429345514 60 - 16 | 0.00173019344471 60 - 17 | 0.00020342009987 60 - 18 | -4.97111545211e-05 60 - 19 | 5.08897636169e-05 60 - 20 | -4.22519148636e-05 60 - 21 | 0.0 60 - 22 | 0.0 60 - 23 | 0.0 60 - 24 | 0.00645039998304 60 - 25 | 0.00809675711598 60 - 26 | 0.00623341094336 60 - 27 | 0.00218998996792 60 - 28 | 0.00199338274204 60 - 29 | 0.00151137338115 60 - 30 | 0.000110915336468 60 - 31 | 7.51455392689e-05 60 - 32 | -0.00101344043603 60 - 33 | -0.000146936873385 60 - 34 | 0.0 60 - 35 | 0.0 60 - 36 | 0.00742862269622 60 - 37 | 0.00850406345784 60 - 38 | 0.00636127687801 60 - 39 | 0.00615633065014 60 - 40 | 0.00257247154676 60 - 41 | 0.00190094280623 60 - 42 | 0.000831182763205 60 - 43 | 0.000340189222828 60 - 44 | -0.00053404796892 60 - 45 | -0.000727954224289 60 - 46 | 0.0 60 - 47 | 0.0 60 - 48 | 0.00754080248541 60 - 49 | 0.00522793384355 60 - 50 | 0.00638091036453 60 - 51 | 0.00459756415608 60 - 52 | 0.00354457880245 60 - 53 | 0.00451015215004 60 - 54 | 0.000744630446791 60 - 55 | 0.0205370737983 60 - 56 | 0.000347054492605 60 - 57 | -0.00019571448735 60 - 58 | -1.37348894853e-05 60 - 59 | 0.0 60 - 60 | 0.00758491032547 60 - 61 | 0.00243494486115 60 - 62 | 0.000778656205127 60 - 63 | -0.00129673679933 60 - 64 | -0.00113863311786 60 - 65 | 0.00353230979529 60 - 66 | 0.00410647127162 60 - 67 | 0.00129613826308 60 - 68 | 0.000478642791112 60 - 69 | -0.00036760196437 60 - 70 | -9.02275899044e-05 60 - 71 | 0.0 60 - 72 | 0.00585271211769 60 - 73 | 0.00862822073673 60 - 74 | 0.0126324790129 60 - 75 | 0.0145293659935 60 - 76 | 0.0122427127701 60 - 77 | 0.00198192449019 60 - 78 | 0.00259520572198 60 - 79 | 0.00182065570363 60 - 80 | 0.000691498785305 60 - 81 | 0.000617904188621 60 - 82 | 0.000114212254076 60 - 83 | -8.25699798032e-07 60 - 84 | 0.00170643293054 60 - 85 | 0.00416985982068 60 - 86 | 0.00387558657611 60 - 87 | 0.00543629563815 60 - 88 | 0.00364753098913 60 - 89 | 0.00078870401906 60 - 90 | 0.00196699524177 60 - 91 | 0.00208210748403 60 - 92 | 0.00113121488664 60 - 93 | 0.00055118518981 60 - 94 | 0.000339073273829 60 - 95 | -3.82050956291e-06 61 - 0 | 0.00279485588595 61 - 1 | 0.00491304299721 61 - 2 | 0.00276724267823 61 - 3 | 0.00128001458474 61 - 4 | 0.000786602340772 61 - 5 | 0.000338105588959 61 - 6 | 0.000151065724463 61 - 7 | 5.19360115654e-05 61 - 8 | 0.0 61 - 9 | 0.0 61 - 10 | 0.0 61 - 11 | 0.0 61 - 12 | 0.00241778445179 61 - 13 | 0.00387687637469 61 - 14 | 0.00380732772459 61 - 15 | 0.00245555603155 61 - 16 | 0.000813041627697 61 - 17 | 0.000715207796175 61 - 18 | 0.000430338589326 61 - 19 | 0.000165219514515 61 - 20 | 4.63719738142e-05 61 - 21 | 0.0 61 - 22 | 0.0 61 - 23 | 0.0 61 - 24 | 0.00242598737111 61 - 25 | 0.00438794258518 61 - 26 | 0.00497165180221 61 - 27 | 0.00393677201943 61 - 28 | 0.00165395031853 61 - 29 | 0.000842937753824 61 - 30 | 0.000949906258714 61 - 31 | 0.000491147475248 61 - 32 | 0.0001351161015 61 - 33 | 4.57132816249e-06 61 - 34 | 0.0 61 - 35 | 0.0 61 - 36 | 0.00171047374995 61 - 37 | 0.00295168249553 61 - 38 | 0.00357647906773 61 - 39 | 0.00225477115755 61 - 40 | 0.00215314310051 61 - 41 | 0.00139740457346 61 - 42 | 0.0013900288275 61 - 43 | 0.00112573316698 61 - 44 | 0.000557127447274 61 - 45 | 6.81335278145e-05 61 - 46 | 0.0 61 - 47 | 0.0 61 - 48 | 0.00189466745593 61 - 49 | 0.00488188643854 61 - 50 | 0.00486913991303 61 - 51 | 0.00420289410185 61 - 52 | 0.00333795977306 61 - 53 | 0.00146177566846 61 - 54 | 0.00190298895924 61 - 55 | -0.00386487634173 61 - 56 | 0.000950769093508 61 - 57 | 0.000371439609278 61 - 58 | 2.21017299083e-05 61 - 59 | 0.0 61 - 60 | 0.00243494486115 61 - 61 | 0.00671463548574 61 - 62 | 0.00942462583398 61 - 63 | 0.00950453114683 61 - 64 | 0.0069748757305 61 - 65 | 0.0021701341529 61 - 66 | 0.00168859062455 61 - 67 | 0.00189228132047 61 - 68 | 0.00161058908722 61 - 69 | 0.000807215122942 61 - 70 | 0.000140775088983 61 - 71 | 0.0 61 - 72 | 0.00192753195438 61 - 73 | 0.00142270009935 61 - 74 | -0.00197442900414 61 - 75 | -0.00363767184795 61 - 76 | -0.00297659865149 61 - 77 | 0.0042091334379 61 - 78 | 0.00243143747271 61 - 79 | 0.00241905463871 61 - 80 | 0.0020942410631 61 - 81 | 0.00123861257766 61 - 82 | 0.000464023823156 61 - 83 | 3.42369889374e-06 61 - 84 | 0.00242743396348 61 - 85 | 0.00212696550922 61 - 86 | 0.00242723675889 61 - 87 | 0.00157376561136 61 - 88 | 0.000688220940308 61 - 89 | 0.00328698040997 61 - 90 | 0.00212836512837 61 - 91 | 0.00178180525499 61 - 92 | 0.00183208194213 61 - 93 | 0.00168878454951 61 - 94 | 0.00157388008063 61 - 95 | 9.36902058897e-05 62 - 0 | 0.000574069419969 62 - 1 | 0.00334721030457 62 - 2 | 0.00163662686412 62 - 3 | 0.00149751768415 62 - 4 | 0.00161636009138 62 - 5 | 0.000692538090623 62 - 6 | 0.00040703243719 62 - 7 | 0.000127838845475 62 - 8 | 0.0 62 - 9 | 0.0 62 - 10 | 0.0 62 - 11 | 0.0 62 - 12 | 0.000907709559216 62 - 13 | 0.00116495942012 62 - 14 | 0.00441958185205 62 - 15 | 0.00441542057133 62 - 16 | 0.0002888252758 62 - 17 | 0.00125674533621 62 - 18 | 0.000918187833653 62 - 19 | 0.000346606361882 62 - 20 | 0.00015907842925 62 - 21 | 0.0 62 - 22 | 0.0 62 - 23 | 0.0 62 - 24 | 0.000382946569996 62 - 25 | 0.00231753952056 62 - 26 | 0.00696648601408 62 - 27 | 0.00739786265274 62 - 28 | 0.00197057251432 62 - 29 | 0.000605292928019 62 - 30 | 0.00178253926521 62 - 31 | 0.0010607568035 62 - 32 | 0.00121258537004 62 - 33 | 0.000147372158534 62 - 34 | 0.0 62 - 35 | 0.0 62 - 36 | -0.00143444864252 62 - 37 | -0.00183554549046 62 - 38 | 0.00221286665754 62 - 39 | 9.85978464838e-05 62 - 40 | 0.00274786275876 62 - 41 | 0.00132790129604 62 - 42 | 0.00200509101455 62 - 43 | 0.00202249837842 62 - 44 | 0.00151013311077 62 - 45 | 0.00067380187597 62 - 46 | 0.0 62 - 47 | 0.0 62 - 48 | -0.000743699243445 62 - 49 | 0.00433450777717 62 - 50 | 0.00616481642949 62 - 51 | 0.00605167484563 62 - 52 | 0.0051962732805 62 - 53 | -0.000951131530717 62 - 54 | 0.00291264089523 62 - 55 | -0.0175180739289 62 - 56 | 0.00155833810994 62 - 57 | 0.000823507066159 62 - 58 | 5.59238818778e-05 62 - 59 | 0.0 62 - 60 | 0.000778656205127 62 - 61 | 0.00942462583398 62 - 62 | 0.0225906564745 62 - 63 | 0.0239785611906 62 - 64 | 0.017360418093 62 - 65 | 0.00173172162843 62 - 66 | 0.000241166054685 62 - 67 | 0.00285704891438 62 - 68 | 0.00275859961759 62 - 69 | 0.00180880775515 62 - 70 | 0.000296144465212 62 - 71 | 0.0 62 - 72 | 0.000391593840343 62 - 73 | -0.00722668566219 62 - 74 | -0.0165015307943 62 - 75 | -0.0209296303636 62 - 76 | -0.0178546503961 62 - 77 | 0.0078638009214 62 - 78 | 0.00304977707762 62 - 79 | 0.0030987505493 62 - 80 | 0.00336454653888 62 - 81 | 0.00204536547517 62 - 82 | 0.000883100820192 62 - 83 | 6.44181149194e-06 62 - 84 | 0.00379353324342 62 - 85 | 0.000561683374476 62 - 86 | 0.00150451454536 62 - 87 | -0.000874099225694 62 - 88 | -0.00196270734373 62 - 89 | 0.00687541587309 62 - 90 | 0.00288001110313 62 - 91 | 0.00163931811828 62 - 92 | 0.00244044478898 62 - 93 | 0.00267353801516 62 - 94 | 0.00322362212748 62 - 95 | 0.000214110947224 63 - 0 | -0.00186754485194 63 - 1 | 0.000647558077231 63 - 2 | -0.000248290501065 63 - 3 | 0.00114388535449 63 - 4 | 0.00173938442693 63 - 5 | 0.000711002559225 63 - 6 | 0.000466815651379 63 - 7 | 0.000146396246169 63 - 8 | 0.0 63 - 9 | 0.0 63 - 10 | 0.0 63 - 11 | 0.0 63 - 12 | -0.000948990255407 63 - 13 | -0.00152441868254 63 - 14 | 0.00308019427296 63 - 15 | 0.00449648515342 63 - 16 | -0.000305437872496 63 - 17 | 0.00124497643652 63 - 18 | 0.000988218387516 63 - 19 | 0.000349766233691 63 - 20 | 0.000182299400462 63 - 21 | 0.0 63 - 22 | 0.0 63 - 23 | 0.0 63 - 24 | -0.00172310430856 63 - 25 | -0.000149151044963 63 - 26 | 0.00595646323031 63 - 27 | 0.00774330541944 63 - 28 | 0.00146699451764 63 - 29 | 0.000114836321969 63 - 30 | 0.00184868349374 63 - 31 | 0.00110468130646 63 - 32 | 0.00164505783309 63 - 33 | 0.000208997719726 63 - 34 | 0.0 63 - 35 | 0.0 63 - 36 | -0.00402285747962 63 - 37 | -0.00526003540063 63 - 38 | -0.000127221370495 63 - 39 | -0.00195466305944 63 - 40 | 0.0021917539027 63 - 41 | 0.000715434668755 63 - 42 | 0.00186010075837 63 - 43 | 0.00205336391392 63 - 44 | 0.00180176308599 63 - 45 | 0.000986185400937 63 - 46 | 0.0 63 - 47 | 0.0 63 - 48 | -0.00307761947079 63 - 49 | 0.00287726075887 63 - 50 | 0.00411149428239 63 - 51 | 0.00567158584842 63 - 52 | 0.00493921249139 63 - 53 | -0.00271434231766 63 - 54 | 0.00288337948991 63 - 55 | -0.0260101937038 63 - 56 | 0.0015554311413 63 - 57 | 0.000951038145605 63 - 58 | 6.1731782385e-05 63 - 59 | 0.0 63 - 60 | -0.00129673679933 63 - 61 | 0.00950453114683 63 - 62 | 0.0239785611906 63 - 63 | 0.0284601965592 63 - 64 | 0.0203701005528 63 - 65 | 0.000701815648515 63 - 66 | -0.00106054395663 63 - 67 | 0.00266320374512 63 - 68 | 0.0028153706578 63 - 69 | 0.00206579621199 63 - 70 | 0.000347090835974 63 - 71 | 0.0 63 - 72 | -0.00132786665215 63 - 73 | -0.0114907839967 63 - 74 | -0.0239259887123 63 - 75 | -0.0285518121129 63 - 76 | -0.024536381833 63 - 77 | 0.00821874699578 63 - 78 | 0.00251291612773 63 - 79 | 0.00274148506171 63 - 80 | 0.00338583402701 63 - 81 | 0.00199336999344 63 - 82 | 0.000942300837206 63 - 83 | 6.83388880725e-06 63 - 84 | 0.00363734106339 63 - 85 | -0.000929284438909 63 - 86 | 2.35087558817e-05 63 - 87 | -0.0028470409574 63 - 88 | -0.00365957388022 63 - 89 | 0.00737714858241 63 - 90 | 0.0024726917542 63 - 91 | 0.000998396911584 63 - 92 | 0.00212139802718 63 - 93 | 0.00259887921018 63 - 94 | 0.0034887232502 63 - 95 | 0.000240328677094 64 - 0 | -0.0015099728354 64 - 1 | 0.000368887789053 64 - 2 | -0.000222544588559 64 - 3 | 0.000875378910179 64 - 4 | 0.00133635502195 64 - 5 | 0.000548917207044 64 - 6 | 0.000361205727599 64 - 7 | 0.000114892405 64 - 8 | 0.0 64 - 9 | 0.0 64 - 10 | 0.0 64 - 11 | 0.0 64 - 12 | -0.000781369902774 64 - 13 | -0.00125313628052 64 - 14 | 0.00225721712128 64 - 15 | 0.00338717098102 64 - 16 | -0.00021352928326 64 - 17 | 0.000971030730058 64 - 18 | 0.00075810328622 64 - 19 | 0.000269643786557 64 - 20 | 0.000139081471277 64 - 21 | 0.0 64 - 22 | 0.0 64 - 23 | 0.0 64 - 24 | -0.00140575675297 64 - 25 | -0.000247025029155 64 - 26 | 0.00431188120742 64 - 27 | 0.00574474616179 64 - 28 | 0.00111672963381 64 - 29 | 0.000110781982703 64 - 30 | 0.00141399520879 64 - 31 | 0.000842499704481 64 - 32 | 0.00125938642516 64 - 33 | 0.00016022612122 64 - 34 | 0.0 64 - 35 | 0.0 64 - 36 | -0.00315361530781 64 - 37 | -0.00403620006663 64 - 38 | -7.80677417435e-05 64 - 39 | -0.00149541350941 64 - 40 | 0.00165768326077 64 - 41 | 0.000583643428323 64 - 42 | 0.00144608042395 64 - 43 | 0.00157414453918 64 - 44 | 0.00138781081825 64 - 45 | 0.000755706737247 64 - 46 | 0.0 64 - 47 | 0.0 64 - 48 | -0.00248184674885 64 - 49 | 0.00203495180918 64 - 50 | 0.00286548202006 64 - 51 | 0.00393783046143 64 - 52 | 0.00377269551038 64 - 53 | -0.00188109231459 64 - 54 | 0.00229703386877 64 - 55 | -0.0202929663998 64 - 56 | 0.00120731798436 64 - 57 | 0.000741425489908 64 - 58 | 4.97608943624e-05 64 - 59 | 0.0 64 - 60 | -0.00113863311786 64 - 61 | 0.0069748757305 64 - 62 | 0.017360418093 64 - 63 | 0.0203701005528 64 - 64 | 0.0155317800616 64 - 65 | 0.000759194976302 64 - 66 | -0.000721591872736 64 - 67 | 0.00204799427309 64 - 68 | 0.00216527673137 64 - 69 | 0.00159734363391 64 - 70 | 0.000271624182904 64 - 71 | 0.0 64 - 72 | -0.00109956828712 64 - 73 | -0.00859158609086 64 - 74 | -0.0177874463596 64 - 75 | -0.0214458468271 64 - 76 | -0.0180200219001 64 - 77 | 0.00612060031145 64 - 78 | 0.00190603655245 64 - 79 | 0.00212327790683 64 - 80 | 0.00262107074274 64 - 81 | 0.00155201117628 64 - 82 | 0.000733633534603 64 - 83 | 5.26983264225e-06 64 - 84 | 0.0026609257339 64 - 85 | -0.000780506617123 64 - 86 | -9.3812511713e-05 64 - 87 | -0.0022309825147 64 - 88 | -0.00267554987546 64 - 89 | 0.00541208330441 64 - 90 | 0.00180793832866 64 - 91 | 0.000763033649515 64 - 92 | 0.00161647897628 64 - 93 | 0.00200933380962 64 - 94 | 0.00269395083441 64 - 95 | 0.000184679655452 65 - 0 | 0.00424116677819 65 - 1 | 0.00514142752885 65 - 2 | 0.00364362981625 65 - 3 | 0.00112257351049 65 - 4 | 0.000291068648789 65 - 5 | 0.000161408812184 65 - 6 | 2.06965286956e-05 65 - 7 | 9.66668904312e-07 65 - 8 | 0.0 65 - 9 | 0.0 65 - 10 | 0.0 65 - 11 | 0.0 65 - 12 | 0.00335553192477 65 - 13 | 0.00444434119722 65 - 14 | 0.00346360539975 65 - 15 | 0.00129225538067 65 - 16 | 0.00114429563474 65 - 17 | 0.000415420310237 65 - 18 | 0.000143738665592 65 - 19 | 0.000106983093251 65 - 20 | 8.38247095585e-06 65 - 21 | 0.0 65 - 22 | 0.0 65 - 23 | 0.0 65 - 24 | 0.00364381801342 65 - 25 | 0.00456765444483 65 - 26 | 0.00374034717862 65 - 27 | 0.00176254355628 65 - 28 | 0.00144750580265 65 - 29 | 0.00106522034274 65 - 30 | 0.000442134138904 65 - 31 | 0.000269310049077 65 - 32 | -0.000358503420315 65 - 33 | -6.1154089559e-05 65 - 34 | 0.0 65 - 35 | 0.0 65 - 36 | 0.00389469924003 65 - 37 | 0.00469693180401 65 - 38 | 0.00407962438274 65 - 39 | 0.00345515806149 65 - 40 | 0.00181107874863 65 - 41 | 0.00146954160256 65 - 42 | 0.000959722676519 65 - 43 | 0.00061166432422 65 - 44 | 2.32140365302e-05 65 - 45 | -0.000339076742612 65 - 46 | 0.0 65 - 47 | 0.0 65 - 48 | 0.00365911006603 65 - 49 | 0.00336454776891 65 - 50 | 0.00391058519822 65 - 51 | 0.00293627555658 65 - 52 | 0.00238000212112 65 - 53 | 0.00292395941898 65 - 54 | 0.00123628865058 65 - 55 | 0.00830990458068 65 - 56 | 0.000567957383057 65 - 57 | 9.99192931789e-05 65 - 58 | 1.11304139402e-05 65 - 59 | 0.0 65 - 60 | 0.00353230979529 65 - 61 | 0.0021701341529 65 - 62 | 0.00173172162843 65 - 63 | 0.000701815648515 65 - 64 | 0.000759194976302 65 - 65 | 0.0030133003638 65 - 66 | 0.00271521737607 65 - 67 | 0.00129670598236 65 - 68 | 0.000890194275664 65 - 69 | 0.000225870019308 65 - 70 | 4.2936506768e-05 65 - 71 | 0.0 65 - 72 | 0.00295477808505 65 - 73 | 0.0046301825027 65 - 74 | 0.00626962244157 65 - 75 | 0.00685582744072 65 - 76 | 0.00591327521895 65 - 77 | 0.00190315306447 65 - 78 | 0.00209472262991 65 - 79 | 0.00173235466295 65 - 80 | 0.00113088349424 65 - 81 | 0.000845927837808 65 - 82 | 0.000312078990912 65 - 83 | 1.5891411152e-06 65 - 84 | 0.00143625808776 65 - 85 | 0.00248584915971 65 - 86 | 0.00253140472204 65 - 87 | 0.00299514554491 65 - 88 | 0.0022339682502 65 - 89 | 0.00105292097719 65 - 90 | 0.00153831612333 65 - 91 | 0.00167001136749 65 - 92 | 0.00122301901006 65 - 93 | 0.000955794453202 65 - 94 | 0.000939222709975 65 - 95 | 4.26977848969e-05 66 - 0 | 0.00470429596863 66 - 1 | 0.00546268144522 66 - 2 | 0.00389739988712 66 - 3 | 0.0010579681949 66 - 4 | 0.00010201213672 66 - 5 | 4.51845208554e-05 66 - 6 | -5.92069490779e-05 66 - 7 | -1.10230634106e-05 66 - 8 | 0.0 66 - 9 | 0.0 66 - 10 | 0.0 66 - 11 | 0.0 66 - 12 | 0.00367801008527 66 - 13 | 0.00496931783339 66 - 14 | 0.00339469880782 66 - 15 | 0.000929632546129 66 - 16 | 0.00122802165952 66 - 17 | 0.000254464817321 66 - 18 | 3.23893263978e-06 66 - 19 | 6.59527573768e-05 66 - 20 | -7.98247970154e-06 66 - 21 | 0.0 66 - 22 | 0.0 66 - 23 | 0.0 66 - 24 | 0.00406659717659 66 - 25 | 0.00505836523059 66 - 26 | 0.00359429939115 66 - 27 | 0.00131521937917 66 - 28 | 0.00140498086904 66 - 29 | 0.00114317294939 66 - 30 | 0.000205718779263 66 - 31 | 0.000112879116065 66 - 32 | -0.000626787890604 66 - 33 | -9.36554917869e-05 66 - 34 | 0.0 66 - 35 | 0.0 66 - 36 | 0.00467276702918 66 - 37 | 0.00560011760393 66 - 38 | 0.00409346950303 66 - 39 | 0.00386812653514 66 - 40 | 0.00175830469034 66 - 41 | 0.00144587137061 66 - 42 | 0.000836136991518 66 - 43 | 0.000336405190723 66 - 44 | -0.000220404106996 66 - 45 | -0.000487183123217 66 - 46 | 0.0 66 - 47 | 0.0 66 - 48 | 0.00444551637936 66 - 49 | 0.00344823813218 66 - 50 | 0.00388795552371 66 - 51 | 0.00282690956739 66 - 52 | 0.00221834961006 66 - 53 | 0.003286800244 66 - 54 | 0.00109338530555 66 - 55 | 0.0130934358169 66 - 56 | 0.000425144470654 66 - 57 | 9.66437085622e-06 66 - 58 | 9.72220485957e-06 66 - 59 | 0.0 66 - 60 | 0.00410647127162 66 - 61 | 0.00168859062455 66 - 62 | 0.000241166054685 66 - 63 | -0.00106054395663 66 - 64 | -0.000721591872736 66 - 65 | 0.00271521737607 66 - 66 | 0.00376217247876 66 - 67 | 0.0012695595666 66 - 68 | 0.000557638879161 66 - 69 | -1.46405692852e-05 66 - 70 | 1.75199006652e-05 66 - 71 | 0.0 66 - 72 | 0.00340606317709 66 - 73 | 0.0059476243286 66 - 74 | 0.00842220052558 66 - 75 | 0.00941801536428 66 - 76 | 0.00812692322047 66 - 77 | 0.00149431531575 66 - 78 | 0.00222818754621 66 - 79 | 0.00171378647009 66 - 80 | 0.000824186668443 66 - 81 | 0.000657317132246 66 - 82 | 0.000278327406863 66 - 83 | 1.21370940083e-06 66 - 84 | 0.00122404087308 66 - 85 | 0.00283787438472 66 - 86 | 0.00266929217476 66 - 87 | 0.0034676322207 66 - 88 | 0.00242138043398 66 - 89 | 0.000556312290323 66 - 90 | 0.0015547313461 66 - 91 | 0.00186680550049 66 - 92 | 0.0010546637585 66 - 93 | 0.000605477429009 66 - 94 | 0.00066383662683 66 - 95 | 2.14313544983e-05 67 - 0 | 0.00197113830862 67 - 1 | 0.00274657032443 67 - 2 | 0.00207876795473 67 - 3 | 0.000877961358449 67 - 4 | 0.000570420418135 67 - 5 | 0.000209680830718 67 - 6 | 7.99040437523e-05 67 - 7 | 4.58583651109e-05 67 - 8 | 0.0 67 - 9 | 0.0 67 - 10 | 0.0 67 - 11 | 0.0 67 - 12 | 0.00153309269583 67 - 13 | 0.00197112086859 67 - 14 | 0.0024543081437 67 - 15 | 0.00134748613721 67 - 16 | 0.000612757465804 67 - 17 | 0.000505384846876 67 - 18 | 0.000297532888634 67 - 19 | 0.000134282100757 67 - 20 | 4.57717953188e-05 67 - 21 | 0.0 67 - 22 | 0.0 67 - 23 | 0.0 67 - 24 | 0.00143905724683 67 - 25 | 0.00203679209119 67 - 26 | 0.00255789667475 67 - 27 | 0.00178865142473 67 - 28 | 0.00103028574033 67 - 29 | 0.000677767813543 67 - 30 | 0.000634021963648 67 - 31 | 0.000358219726882 67 - 32 | 8.12793120031e-05 67 - 33 | 6.38775250146e-06 67 - 34 | 0.0 67 - 35 | 0.0 67 - 36 | 0.00123721843216 67 - 37 | 0.00169233142763 67 - 38 | 0.00283514742976 67 - 39 | 0.00164665376339 67 - 40 | 0.00122023337888 67 - 41 | 0.000955659792815 67 - 42 | 0.000816825461955 67 - 43 | 0.000755477631188 67 - 44 | 0.000337826494978 67 - 45 | -1.25556573852e-06 67 - 46 | 0.0 67 - 47 | 0.0 67 - 48 | 0.0011928039447 67 - 49 | 0.00180610553231 67 - 50 | 0.00231426835419 67 - 51 | 0.00186618117413 67 - 52 | 0.00149727372786 67 - 53 | 0.00110712436973 67 - 54 | 0.0010969357319 67 - 55 | 0.00109051154256 67 - 56 | 0.000662998412529 67 - 57 | 0.000245188904554 67 - 58 | 2.4189054511e-05 67 - 59 | 0.0 67 - 60 | 0.00129613826308 67 - 61 | 0.00189228132047 67 - 62 | 0.00285704891438 67 - 63 | 0.00266320374512 67 - 64 | 0.00204799427309 67 - 65 | 0.00129670598236 67 - 66 | 0.0012695595666 67 - 67 | 0.00167424914489 67 - 68 | 0.00111258732224 67 - 69 | 0.000526977841578 67 - 70 | 8.56266451794e-05 67 - 71 | 0.0 67 - 72 | 0.00117016889074 67 - 73 | 0.00102842441167 67 - 74 | 0.00106093007554 67 - 75 | 0.000804171966556 67 - 76 | 0.000554402133968 67 - 77 | 0.00149929132801 67 - 78 | 0.00127137477031 67 - 79 | 0.00142069712792 67 - 80 | 0.00138184567023 67 - 81 | 0.000956728250895 67 - 82 | 0.000348671820544 67 - 83 | 2.18206169782e-06 67 - 84 | 0.00121371050085 67 - 85 | 0.000941895203773 67 - 86 | 0.00123733197854 67 - 87 | 0.00110451030622 67 - 88 | 0.000757172756667 67 - 89 | 0.00113510191546 67 - 90 | 0.000947360525271 67 - 91 | 0.000893521478249 67 - 92 | 0.00108822194291 67 - 93 | 0.00118786984669 67 - 94 | 0.00125043671444 67 - 95 | 7.7160007243e-05 68 - 0 | 0.00102743617456 68 - 1 | 0.00167395868741 68 - 2 | 0.00131082601607 68 - 3 | 0.000725116090676 68 - 4 | 0.000500800928101 68 - 5 | 0.000226336595278 68 - 6 | 0.000116319765078 68 - 7 | 3.29882402491e-05 68 - 8 | 0.0 68 - 9 | 0.0 68 - 10 | 0.0 68 - 11 | 0.0 68 - 12 | 0.00085399823275 68 - 13 | 0.00115729945144 68 - 14 | 0.0017129684139 68 - 15 | 0.00117281906948 68 - 16 | 0.000444335656066 68 - 17 | 0.000458106186948 68 - 18 | 0.000301947094339 68 - 19 | 0.000137187147623 68 - 20 | 3.9275845623e-05 68 - 21 | 0.0 68 - 22 | 0.0 68 - 23 | 0.0 68 - 24 | 0.000770523457419 68 - 25 | 0.00120708955503 68 - 26 | 0.00184444616842 68 - 27 | 0.00152166699876 68 - 28 | 0.000772368487625 68 - 29 | 0.000464870373812 68 - 30 | 0.000594871676923 68 - 31 | 0.000363871502896 68 - 32 | 0.000163848936147 68 - 33 | 1.53843324703e-05 68 - 34 | 0.0 68 - 35 | 0.0 68 - 36 | 0.000427291126097 68 - 37 | 0.000764968450583 68 - 38 | 0.00177961468444 68 - 39 | 0.000921064755015 68 - 40 | 0.000926374484984 68 - 41 | 0.000688034098448 68 - 42 | 0.000717235313197 68 - 43 | 0.000741953844916 68 - 44 | 0.000412877134131 68 - 45 | 4.72520131431e-05 68 - 46 | 0.0 68 - 47 | 0.0 68 - 48 | 0.000336955683598 68 - 49 | 0.00122590124378 68 - 50 | 0.00157657452373 68 - 51 | 0.00138403741479 68 - 52 | 0.00110273648045 68 - 53 | 0.000636333716814 68 - 54 | 0.0010232379267 68 - 55 | -0.00117322628756 68 - 56 | 0.000694001116479 68 - 57 | 0.000282636731789 68 - 58 | 2.18382963451e-05 68 - 59 | 0.0 68 - 60 | 0.000478642791112 68 - 61 | 0.00161058908722 68 - 62 | 0.00275859961759 68 - 63 | 0.0028153706578 68 - 64 | 0.00216527673137 68 - 65 | 0.000890194275664 68 - 66 | 0.000557638879161 68 - 67 | 0.00111258732224 68 - 68 | 0.00125820594542 68 - 69 | 0.000633252049384 68 - 70 | 0.000107350450022 68 - 71 | 0.0 68 - 72 | 0.000520989167479 68 - 73 | 0.000134561714228 68 - 74 | -0.000366082714015 68 - 75 | -0.000814719632766 68 - 76 | -0.000833744152229 68 - 77 | 0.00124653199946 68 - 78 | 0.000921765633333 68 - 79 | 0.00111949233155 68 - 80 | 0.00139823690449 68 - 81 | 0.000984401324373 68 - 82 | 0.000361808001432 68 - 83 | 2.45896680444e-06 68 - 84 | 0.00101137055311 68 - 85 | 0.000462643593258 68 - 86 | 0.000856490037463 68 - 87 | 0.000548161214367 68 - 88 | 0.000465270028719 68 - 89 | 0.00105425878655 68 - 90 | 0.000680021685053 68 - 91 | 0.000622625559897 68 - 92 | 0.00103221086394 68 - 93 | 0.00129041281345 68 - 94 | 0.00133702049963 68 - 95 | 8.06542236069e-05 69 - 0 | -8.9502972186e-05 69 - 1 | 0.000224982899631 69 - 2 | 0.000235969443513 69 - 3 | 0.000329864720182 69 - 4 | 0.000337638614512 69 - 5 | 0.000132307409299 69 - 6 | 8.39825861541e-05 69 - 7 | 2.87264297197e-05 69 - 8 | 0.0 69 - 9 | 0.0 69 - 10 | 0.0 69 - 11 | 0.0 69 - 12 | -4.76236568959e-05 69 - 13 | -2.46169387136e-05 69 - 14 | 0.000599681228219 69 - 15 | 0.000655366110081 69 - 16 | 0.000122529289649 69 - 17 | 0.000276049729958 69 - 18 | 0.000189295620218 69 - 19 | 8.40667288962e-05 69 - 20 | 3.45003388756e-05 69 - 21 | 0.0 69 - 22 | 0.0 69 - 23 | 0.0 69 - 24 | -0.000168287948648 69 - 25 | -2.66448207759e-05 69 - 26 | 0.00064301367569 69 - 27 | 0.000815734232727 69 - 28 | 0.000316822016546 69 - 29 | 0.000167158220761 69 - 30 | 0.000366106348718 69 - 31 | 0.000225620689243 69 - 32 | 0.00023508756848 69 - 33 | 3.18520708358e-05 69 - 34 | 0.0 69 - 35 | 0.0 69 - 36 | -0.000488866664434 69 - 37 | -0.000388504939304 69 - 38 | 0.000566518437485 69 - 39 | 1.76648202806e-05 69 - 40 | 0.000360697426325 69 - 41 | 0.00027739214235 69 - 42 | 0.000392297200318 69 - 43 | 0.000419357001121 69 - 44 | 0.000325415059967 69 - 45 | 0.000126703643428 69 - 46 | 0.0 69 - 47 | 0.0 69 - 48 | -0.000509130221683 69 - 49 | 0.00026477536036 69 - 50 | 0.000423401133418 69 - 51 | 0.00048126473843 69 - 52 | 0.000392104780351 69 - 53 | -4.98344481006e-05 69 - 54 | 0.000612268324772 69 - 55 | -0.00299380689126 69 - 56 | 0.00037364804416 69 - 57 | 0.000207880863165 69 - 58 | 1.76498412291e-05 69 - 59 | 0.0 69 - 60 | -0.00036760196437 69 - 61 | 0.000807215122942 69 - 62 | 0.00180880775515 69 - 63 | 0.00206579621199 69 - 64 | 0.00159734363391 69 - 65 | 0.000225870019308 69 - 66 | -1.46405692852e-05 69 - 67 | 0.000526977841578 69 - 68 | 0.000633252049384 69 - 69 | 0.000454040841609 69 - 70 | 8.41447107571e-05 69 - 71 | 0.0 69 - 72 | -0.000219448454972 69 - 73 | -0.000858233607717 69 - 74 | -0.00158576524429 69 - 75 | -0.00206058062069 69 - 76 | -0.00183651842218 69 - 77 | 0.000646000257073 69 - 78 | 0.000371237168868 69 - 79 | 0.000525489198697 69 - 80 | 0.000767405315516 69 - 81 | 0.000555421252938 69 - 82 | 0.000230101139144 69 - 83 | 1.67597332644e-06 69 - 84 | 0.000489644746527 69 - 85 | -0.000139107776366 69 - 86 | 0.000151733942884 69 - 87 | -0.00020176599345 69 - 88 | -0.000103296474937 69 - 89 | 0.000624448932057 69 - 90 | 0.000269467672118 69 - 91 | 0.000222148395448 69 - 92 | 0.000512216769971 69 - 93 | 0.000727406052429 69 - 94 | 0.000842849843311 69 - 95 | 5.36014107145e-05 70 - 0 | -3.87039978083e-05 70 - 1 | 2.47553656086e-05 70 - 2 | 2.02931363556e-05 70 - 3 | 5.74852684985e-05 70 - 4 | 5.87501901555e-05 70 - 5 | 2.02323147279e-05 70 - 6 | 1.42877260508e-05 70 - 7 | 5.50040780745e-06 70 - 8 | 0.0 70 - 9 | 0.0 70 - 10 | 0.0 70 - 11 | 0.0 70 - 12 | -2.42311296725e-05 70 - 13 | -2.47618794125e-06 70 - 14 | 8.2245791309e-05 70 - 15 | 0.000107273132427 70 - 16 | 2.34930635979e-05 70 - 17 | 4.75902457336e-05 70 - 18 | 2.99804612078e-05 70 - 19 | 1.52189210677e-05 70 - 20 | 6.50266772165e-06 70 - 21 | 0.0 70 - 22 | 0.0 70 - 23 | 0.0 70 - 24 | -4.32218518861e-05 70 - 25 | -1.02737750169e-05 70 - 26 | 8.73322752933e-05 70 - 27 | 0.000130253774663 70 - 28 | 5.31718298747e-05 70 - 29 | 3.19929726815e-05 70 - 30 | 6.14883117152e-05 70 - 31 | 3.60086612603e-05 70 - 32 | 4.02436702149e-05 70 - 33 | 6.44077665803e-06 70 - 34 | 0.0 70 - 35 | 0.0 70 - 36 | -0.000102698087557 70 - 37 | -6.76640432508e-05 70 - 38 | 7.55643795657e-05 70 - 39 | -9.61251377888e-06 70 - 40 | 5.89130897988e-05 70 - 41 | 5.01564085993e-05 70 - 42 | 7.70132790629e-05 70 - 43 | 6.87651258623e-05 70 - 44 | 5.94839447887e-05 70 - 45 | 2.65112433458e-05 70 - 46 | 0.0 70 - 47 | 0.0 70 - 48 | -0.000112139645564 70 - 49 | 4.2742021741e-05 70 - 50 | 5.23127893412e-05 70 - 51 | 7.08049197958e-05 70 - 52 | 5.63510370797e-05 70 - 53 | 2.30364428491e-06 70 - 54 | 0.000131116633699 70 - 55 | -0.000574909860233 70 - 56 | 6.81061284885e-05 70 - 57 | 4.23832974688e-05 70 - 58 | 4.16197074335e-06 70 - 59 | 0.0 70 - 60 | -9.02275899044e-05 70 - 61 | 0.000140775088983 70 - 62 | 0.000296144465212 70 - 63 | 0.000347090835974 70 - 64 | 0.000271624182904 70 - 65 | 4.2936506768e-05 70 - 66 | 1.75199006652e-05 70 - 67 | 8.56266451794e-05 70 - 68 | 0.000107350450022 70 - 69 | 8.41447107571e-05 70 - 70 | 2.09882916131e-05 70 - 71 | 0.0 70 - 72 | -5.37205925901e-05 70 - 73 | -0.000140167211958 70 - 74 | -0.000279235531771 70 - 75 | -0.000370171116193 70 - 76 | -0.000321158472791 70 - 77 | 0.000113229234704 70 - 78 | 8.17620072035e-05 70 - 79 | 0.000108726524404 70 - 80 | 0.000139835046114 70 - 81 | 9.48945914303e-05 70 - 82 | 5.11863706285e-05 70 - 83 | 3.67156112782e-07 70 - 84 | 8.24068080452e-05 70 - 85 | -2.48204798738e-05 70 - 86 | 3.03636819369e-05 70 - 87 | -4.1145186925e-05 70 - 88 | -2.08138186349e-05 70 - 89 | 0.000106720041846 70 - 90 | 5.71678554134e-05 70 - 91 | 6.39271131927e-05 70 - 92 | 9.89229262796e-05 70 - 93 | 0.000123323489987 70 - 94 | 0.000170938024389 70 - 95 | 1.02698110922e-05 71 - 0 | 0.0 71 - 1 | 0.0 71 - 2 | 0.0 71 - 3 | 0.0 71 - 4 | 0.0 71 - 5 | 0.0 71 - 6 | 0.0 71 - 7 | 0.0 71 - 8 | 0.0 71 - 9 | 0.0 71 - 10 | 0.0 71 - 11 | 0.0 71 - 12 | 0.0 71 - 13 | 0.0 71 - 14 | 0.0 71 - 15 | 0.0 71 - 16 | 0.0 71 - 17 | 0.0 71 - 18 | 0.0 71 - 19 | 0.0 71 - 20 | 0.0 71 - 21 | 0.0 71 - 22 | 0.0 71 - 23 | 0.0 71 - 24 | 0.0 71 - 25 | 0.0 71 - 26 | 0.0 71 - 27 | 0.0 71 - 28 | 0.0 71 - 29 | 0.0 71 - 30 | 0.0 71 - 31 | 0.0 71 - 32 | 0.0 71 - 33 | 0.0 71 - 34 | 0.0 71 - 35 | 0.0 71 - 36 | 0.0 71 - 37 | 0.0 71 - 38 | 0.0 71 - 39 | 0.0 71 - 40 | 0.0 71 - 41 | 0.0 71 - 42 | 0.0 71 - 43 | 0.0 71 - 44 | 0.0 71 - 45 | 0.0 71 - 46 | 0.0 71 - 47 | 0.0 71 - 48 | 0.0 71 - 49 | 0.0 71 - 50 | 0.0 71 - 51 | 0.0 71 - 52 | 0.0 71 - 53 | 0.0 71 - 54 | 0.0 71 - 55 | 0.0 71 - 56 | 0.0 71 - 57 | 0.0 71 - 58 | 0.0 71 - 59 | 0.0 71 - 60 | 0.0 71 - 61 | 0.0 71 - 62 | 0.0 71 - 63 | 0.0 71 - 64 | 0.0 71 - 65 | 0.0 71 - 66 | 0.0 71 - 67 | 0.0 71 - 68 | 0.0 71 - 69 | 0.0 71 - 70 | 0.0 71 - 71 | 0.0 71 - 72 | 0.0 71 - 73 | 0.0 71 - 74 | 0.0 71 - 75 | 0.0 71 - 76 | 0.0 71 - 77 | 0.0 71 - 78 | 0.0 71 - 79 | 0.0 71 - 80 | 0.0 71 - 81 | 0.0 71 - 82 | 0.0 71 - 83 | 0.0 71 - 84 | 0.0 71 - 85 | 0.0 71 - 86 | 0.0 71 - 87 | 0.0 71 - 88 | 0.0 71 - 89 | 0.0 71 - 90 | 0.0 71 - 91 | 0.0 71 - 92 | 0.0 71 - 93 | 0.0 71 - 94 | 0.0 71 - 95 | 0.0 72 - 0 | 0.00626571121633 72 - 1 | 0.0072260698718 72 - 2 | 0.00539105506912 72 - 3 | 0.00124882198415 72 - 4 | 4.92409478168e-05 72 - 5 | 7.72217396064e-05 72 - 6 | -7.98452315403e-05 72 - 7 | -2.67635989695e-05 72 - 8 | 0.0 72 - 9 | 0.0 72 - 10 | 0.0 72 - 11 | 0.0 72 - 12 | 0.00487704524262 72 - 13 | 0.0065018232222 72 - 14 | 0.00472039946108 72 - 15 | 0.00118541635665 72 - 16 | 0.00148924121463 72 - 17 | 0.000225923684571 72 - 18 | 2.54032809827e-07 72 - 19 | 6.61736154919e-05 72 - 20 | -2.45729459774e-05 72 - 21 | 0.0 72 - 22 | 0.0 72 - 23 | 0.0 72 - 24 | 0.00536284652328 72 - 25 | 0.00670938259616 72 - 26 | 0.00510007136544 72 - 27 | 0.00179072228228 72 - 28 | 0.00171189611704 72 - 29 | 0.0013119833308 72 - 30 | 0.000171619352244 72 - 31 | 0.000110991755569 72 - 32 | -0.000808184572311 72 - 33 | -0.000117559207513 72 - 34 | 0.0 72 - 35 | 0.0 72 - 36 | 0.00609353405063 72 - 37 | 0.00721613492066 72 - 38 | 0.00547722456619 72 - 39 | 0.00514157361736 72 - 40 | 0.00217996388905 72 - 41 | 0.00162812963636 72 - 42 | 0.000774424891418 72 - 43 | 0.000355163104325 72 - 44 | -0.000387178011868 72 - 45 | -0.000589579688467 72 - 46 | 0.0 72 - 47 | 0.0 72 - 48 | 0.00589078464534 72 - 49 | 0.00428532726931 72 - 50 | 0.00523774992377 72 - 51 | 0.00375375454797 72 - 52 | 0.00286368855752 72 - 53 | 0.00381234204753 72 - 54 | 0.000733378762406 72 - 55 | 0.0177275343634 72 - 56 | 0.00036628225244 72 - 57 | -0.00011656876654 72 - 58 | -5.62793736036e-06 72 - 59 | 0.0 72 - 60 | 0.00585271211769 72 - 61 | 0.00192753195438 72 - 62 | 0.000391593840343 72 - 63 | -0.00132786665215 72 - 64 | -0.00109956828712 72 - 65 | 0.00295477808505 72 - 66 | 0.00340606317709 72 - 67 | 0.00117016889074 72 - 68 | 0.000520989167479 72 - 69 | -0.000219448454972 72 - 70 | -5.37205925901e-05 72 - 71 | 0.0 72 - 72 | 0.0056805512793 72 - 73 | 0.00741999381774 72 - 74 | 0.010771223381 72 - 75 | 0.0122737931352 72 - 76 | 0.0103744416197 72 - 77 | 0.00160842136432 72 - 78 | 0.00217983183062 72 - 79 | 0.00162282186473 72 - 80 | 0.000732242260028 72 - 81 | 0.000616790853347 72 - 82 | 0.000134311253876 72 - 83 | -2.0360838175e-07 72 - 84 | 0.00169785025473 72 - 85 | 0.00349864887802 72 - 86 | 0.00331718304516 72 - 87 | 0.0045141311168 72 - 88 | 0.00306116023132 72 - 89 | 0.000553804803988 72 - 90 | 0.0016293211689 72 - 91 | 0.00180151048192 72 - 92 | 0.00106102659703 72 - 93 | 0.000612862833712 72 - 94 | 0.000400298026835 72 - 95 | 3.84341481566e-06 73 - 0 | 0.0101652144923 73 - 1 | 0.0117721993042 73 - 2 | 0.0078430203291 73 - 3 | 0.00169482139509 73 - 4 | -0.000503782089994 73 - 5 | -0.000106372894504 73 - 6 | -0.00023907852461 73 - 7 | -8.01185969771e-05 73 - 8 | 0.0 73 - 9 | 0.0 73 - 10 | 0.0 73 - 11 | 0.0 73 - 12 | 0.00792026484135 73 - 13 | 0.01179131568 73 - 14 | 0.00584939830844 73 - 15 | 0.000245606738472 73 - 16 | 0.0024729878623 73 - 17 | 1.95830830867e-05 73 - 18 | -0.000284718068091 73 - 19 | -1.48177106728e-05 73 - 20 | -0.00010968945764 73 - 21 | 0.0 73 - 22 | 0.0 73 - 23 | 0.0 73 - 24 | 0.00897916824969 73 - 25 | 0.0114337627827 73 - 26 | 0.00540345247046 73 - 27 | 3.19389769004e-06 73 - 28 | 0.00224823246981 73 - 29 | 0.00203108668658 73 - 30 | -0.00017330022147 73 - 31 | -0.000169129734917 73 - 32 | -0.00187978319275 73 - 33 | -0.000276039194183 73 - 34 | 0.0 73 - 35 | 0.0 73 - 36 | 0.0106615701232 73 - 37 | 0.0142113003174 73 - 38 | 0.00862406317932 73 - 39 | 0.00865728446544 73 - 40 | 0.00271501835803 73 - 41 | 0.00249537249464 73 - 42 | 0.000935145747357 73 - 43 | 4.67092521311e-06 73 - 44 | -0.00111923152962 73 - 45 | -0.00130373095208 73 - 46 | 0.0 73 - 47 | 0.0 73 - 48 | 0.00982275984449 73 - 49 | 0.00707674088381 73 - 50 | 0.00706745994842 73 - 51 | 0.00414304931846 73 - 52 | 0.0026851107441 73 - 53 | 0.00736563660353 73 - 54 | 0.000637095983184 73 - 55 | 0.0322016986822 73 - 56 | 0.000206250192601 73 - 57 | -0.000409486681244 73 - 58 | -2.29681914419e-05 73 - 59 | 0.0 73 - 60 | 0.00862822073673 73 - 61 | 0.00142270009935 73 - 62 | -0.00722668566219 73 - 63 | -0.0114907839967 73 - 64 | -0.00859158609086 73 - 65 | 0.0046301825027 73 - 66 | 0.0059476243286 73 - 67 | 0.00102842441167 73 - 68 | 0.000134561714228 73 - 69 | -0.000858233607717 73 - 70 | -0.000140167211958 73 - 71 | 0.0 73 - 72 | 0.00741999381774 73 - 73 | 0.0193322237794 73 - 74 | 0.0266140343396 73 - 75 | 0.02940879846 73 - 76 | 0.0252630478892 73 - 77 | 2.4732896027e-05 73 - 78 | 0.00289807972841 73 - 79 | 0.0022828726389 73 - 80 | 0.000416093999982 73 - 81 | 0.000389199593574 73 - 82 | -0.000100973121465 73 - 83 | -1.01847724426e-06 73 - 84 | 0.00124222419999 73 - 85 | 0.00696216655176 73 - 86 | 0.00613660149341 73 - 87 | 0.00824149596629 73 - 88 | 0.00659139841017 73 - 89 | -0.00132552173796 73 - 90 | 0.00220695533806 73 - 91 | 0.00322283228356 73 - 92 | 0.00158857004813 73 - 93 | 0.000498653324171 73 - 94 | -0.000761429556298 73 - 95 | -9.37306132021e-05 74 - 0 | 0.0152565774931 74 - 1 | 0.0159759563853 74 - 2 | 0.011521647503 74 - 3 | 0.00223287970077 74 - 4 | -0.000943792813395 74 - 5 | -0.000235822701035 74 - 6 | -0.000412343847133 74 - 7 | -0.000136149276658 74 - 8 | 0.0 74 - 9 | 0.0 74 - 10 | 0.0 74 - 11 | 0.0 74 - 12 | 0.0115725607421 74 - 13 | 0.0159902367356 74 - 14 | 0.00775106688838 74 - 15 | -0.000504895891191 74 - 16 | 0.00368848486164 74 - 17 | -5.22980886156e-05 74 - 18 | -0.000520231807983 74 - 19 | -2.37502394493e-05 74 - 20 | -0.000155939817195 74 - 21 | 0.0 74 - 22 | 0.0 74 - 23 | 0.0 74 - 24 | 0.0130895589273 74 - 25 | 0.0149634697841 74 - 26 | 0.00609863473523 74 - 27 | -0.00202378982812 74 - 28 | 0.00294201167529 74 - 29 | 0.00303632557127 74 - 30 | -0.000525170946974 74 - 31 | -0.000296736401608 74 - 32 | -0.0028341706174 74 - 33 | -0.000413776381231 74 - 34 | 0.0 74 - 35 | 0.0 74 - 36 | 0.0162575755755 74 - 37 | 0.0203360893775 74 - 38 | 0.0126089595629 74 - 39 | 0.012635225462 74 - 40 | 0.00339630510147 74 - 41 | 0.00347485813825 74 - 42 | 0.000881794459541 74 - 43 | -0.000291261193471 74 - 44 | -0.00187693439754 74 - 45 | -0.00210800898344 74 - 46 | 0.0 74 - 47 | 0.0 74 - 48 | 0.0147418798316 74 - 49 | 0.0081929557795 74 - 50 | 0.00859272367228 74 - 51 | 0.00417118525832 74 - 52 | 0.00248822410171 74 - 53 | 0.0108367468982 74 - 54 | 0.000156371624314 74 - 55 | 0.0539829983723 74 - 56 | 4.33041267195e-05 74 - 57 | -0.0007631289914 74 - 58 | -3.5956183329e-05 74 - 59 | 0.0 74 - 60 | 0.0126324790129 74 - 61 | -0.00197442900414 74 - 62 | -0.0165015307943 74 - 63 | -0.0239259887123 74 - 64 | -0.0177874463596 74 - 65 | 0.00626962244157 74 - 66 | 0.00842220052558 74 - 67 | 0.00106093007554 74 - 68 | -0.000366082714015 74 - 69 | -0.00158576524429 74 - 70 | -0.000279235531771 74 - 71 | 0.0 74 - 72 | 0.010771223381 74 - 73 | 0.0266140343396 74 - 74 | 0.0466330070978 74 - 75 | 0.0500641974246 74 - 76 | 0.0420312254645 74 - 77 | -0.00249346671467 74 - 78 | 0.00330973523733 74 - 79 | 0.00235798100535 74 - 80 | -8.58399007285e-05 74 - 81 | 0.000400193942256 74 - 82 | -0.000200081776948 74 - 83 | -2.90094588939e-06 74 - 84 | 0.000797857214882 74 - 85 | 0.00900481828519 74 - 86 | 0.00854756829251 74 - 87 | 0.0122995670969 74 - 88 | 0.0102147193549 74 - 89 | -0.00393285657545 74 - 90 | 0.00224849645584 74 - 91 | 0.00395430462266 74 - 92 | 0.00167506462568 74 - 93 | 0.000267434469281 74 - 94 | -0.00128395102197 74 - 95 | -0.00014860086963 75 - 0 | 0.0172984228592 75 - 1 | 0.0172867507994 75 - 2 | 0.0130743357289 75 - 3 | 0.00222718945288 75 - 4 | -0.0013427413171 75 - 5 | -0.000348267705941 75 - 6 | -0.000497528867014 75 - 7 | -0.000180496763689 75 - 8 | 0.0 75 - 9 | 0.0 75 - 10 | 0.0 75 - 11 | 0.0 75 - 12 | 0.0130757894272 75 - 13 | 0.0172882263506 75 - 14 | 0.00843159185614 75 - 15 | -0.000982872860752 75 - 16 | 0.00405457911648 75 - 17 | -0.000248339030904 75 - 18 | -0.000729508200303 75 - 19 | -6.06279056594e-05 75 - 20 | -0.000192317449157 75 - 21 | 0.0 75 - 22 | 0.0 75 - 23 | 0.0 75 - 24 | 0.0148591021385 75 - 25 | 0.0161143823176 75 - 26 | 0.00635593899777 75 - 27 | -0.00294066301648 75 - 28 | 0.00308916438366 75 - 29 | 0.00336431850207 75 - 30 | -0.000835851317142 75 - 31 | -0.000405671246594 75 - 32 | -0.00320960454145 75 - 33 | -0.000461995989945 75 - 34 | 0.0 75 - 35 | 0.0 75 - 36 | 0.018712728746 75 - 37 | 0.0224001327148 75 - 38 | 0.0137230832967 75 - 39 | 0.0143105594258 75 - 40 | 0.00359718898686 75 - 41 | 0.00374971546797 75 - 42 | 0.000685065187283 75 - 43 | -0.00056564382434 75 - 44 | -0.00225894385604 75 - 45 | -0.00242188075256 75 - 46 | 0.0 75 - 47 | 0.0 75 - 48 | 0.0170077209115 75 - 49 | 0.00828650782033 75 - 50 | 0.0089185701976 75 - 51 | 0.00423743721694 75 - 52 | 0.00243027828466 75 - 53 | 0.0119929333201 75 - 54 | -0.000278039975152 75 - 55 | 0.061282913844 75 - 56 | -0.000194616996678 75 - 57 | -0.000987571829748 75 - 58 | -5.27332174877e-05 75 - 59 | 0.0 75 - 60 | 0.0145293659935 75 - 61 | -0.00363767184795 75 - 62 | -0.0209296303636 75 - 63 | -0.0285518121129 75 - 64 | -0.0214458468271 75 - 65 | 0.00685582744072 75 - 66 | 0.00941801536428 75 - 67 | 0.000804171966556 75 - 68 | -0.000814719632766 75 - 69 | -0.00206058062069 75 - 70 | -0.000370171116193 75 - 71 | 0.0 75 - 72 | 0.0122737931352 75 - 73 | 0.02940879846 75 - 74 | 0.0500641974246 75 - 75 | 0.0604062009105 75 - 76 | 0.0492121180262 75 - 77 | -0.00357249347749 75 - 78 | 0.00346444463453 75 - 79 | 0.00219131205001 75 - 80 | -0.000599776478552 75 - 81 | 0.000199896218513 75 - 82 | -0.000280601270664 75 - 83 | -4.68307860076e-06 75 - 84 | 0.000402130294557 75 - 85 | 0.00969687251288 75 - 86 | 0.00855128546781 75 - 87 | 0.0141782452236 75 - 88 | 0.0116681183181 75 - 89 | -0.00504269532857 75 - 90 | 0.00214149162062 75 - 91 | 0.00405267212056 75 - 92 | 0.00133676282235 75 - 93 | -0.000226020786708 75 - 94 | -0.00159121157672 75 - 95 | -0.000180062640131 76 - 0 | 0.0144494146074 76 - 1 | 0.0145989538982 76 - 2 | 0.0106054649129 76 - 3 | 0.00177599801539 76 - 4 | -0.00124704708138 76 - 5 | -0.000344403790757 76 - 6 | -0.000450559410052 76 - 7 | -0.000150684387764 76 - 8 | 0.0 76 - 9 | 0.0 76 - 10 | 0.0 76 - 11 | 0.0 76 - 12 | 0.0109553075376 76 - 13 | 0.0149191673677 76 - 14 | 0.00661537307958 76 - 15 | -0.0011857648411 76 - 16 | 0.00334597335519 76 - 17 | -0.000317472482531 76 - 18 | -0.000685125607051 76 - 19 | -8.12783090711e-05 76 - 20 | -0.000170189089934 76 - 21 | 0.0 76 - 22 | 0.0 76 - 23 | 0.0 76 - 24 | 0.0124876138553 76 - 25 | 0.0139461131887 76 - 26 | 0.00495284498468 76 - 27 | -0.00279767509985 76 - 28 | 0.00246526250017 76 - 29 | 0.00274098993567 76 - 30 | -0.000823626527325 76 - 31 | -0.000426106826324 76 - 32 | -0.00282674381445 76 - 33 | -0.000407566055335 76 - 34 | 0.0 76 - 35 | 0.0 76 - 36 | 0.0157810088274 76 - 37 | 0.0193705962106 76 - 38 | 0.0110988089416 76 - 39 | 0.0119515124168 76 - 40 | 0.00286140440402 76 - 41 | 0.00302363464691 76 - 42 | 0.000503221249956 76 - 43 | -0.000607346184206 76 - 44 | -0.00201162447749 76 - 45 | -0.00213150956872 76 - 46 | 0.0 76 - 47 | 0.0 76 - 48 | 0.0143998188119 76 - 49 | 0.00720615445663 76 - 50 | 0.00740379744899 76 - 51 | 0.00341625089806 76 - 52 | 0.00194470881929 76 - 53 | 0.0102690622912 76 - 54 | -0.000417152752093 76 - 55 | 0.0531982663682 76 - 56 | -0.000248196210536 76 - 57 | -0.000866577248138 76 - 58 | -4.2724929941e-05 76 - 59 | 0.0 76 - 60 | 0.0122427127701 76 - 61 | -0.00297659865149 76 - 62 | -0.0178546503961 76 - 63 | -0.024536381833 76 - 64 | -0.0180200219001 76 - 65 | 0.00591327521895 76 - 66 | 0.00812692322047 76 - 67 | 0.000554402133968 76 - 68 | -0.000833744152229 76 - 69 | -0.00183651842218 76 - 70 | -0.000321158472791 76 - 71 | 0.0 76 - 72 | 0.0103744416197 76 - 73 | 0.0252630478892 76 - 74 | 0.0420312254645 76 - 75 | 0.0492121180262 76 - 76 | 0.0437453967515 76 - 77 | -0.00256631227729 76 - 78 | 0.00295827038624 76 - 79 | 0.00187170968451 76 - 80 | -0.000667579494999 76 - 81 | 4.97946488979e-05 76 - 82 | -0.000305158397639 76 - 83 | -3.79161446182e-06 76 - 84 | 0.000135641548062 76 - 85 | 0.00844969623569 76 - 86 | 0.0072315213723 76 - 87 | 0.0116354255117 76 - 88 | 0.00994868076869 76 - 89 | -0.00424458335019 76 - 90 | 0.00187365492116 76 - 91 | 0.00359014977811 76 - 92 | 0.00114541471285 76 - 93 | -0.000317697831417 76 - 94 | -0.00174344513663 76 - 95 | -0.00017732341192 77 - 0 | 0.00215971301558 77 - 1 | 0.00359663809602 77 - 2 | 0.00220009254348 77 - 3 | 0.00100356713005 77 - 4 | 0.000602874364142 77 - 5 | 0.000266216918922 77 - 6 | 0.000128463521603 77 - 7 | 4.05840905305e-05 77 - 8 | 0.0 77 - 9 | 0.0 77 - 10 | 0.0 77 - 11 | 0.0 77 - 12 | 0.00189865826564 77 - 13 | 0.00269097012582 77 - 14 | 0.0030025074562 77 - 15 | 0.00200845327509 77 - 16 | 0.00061476565534 77 - 17 | 0.000553121291578 77 - 18 | 0.000333050070988 77 - 19 | 0.000146680209447 77 - 20 | 4.90186141977e-05 77 - 21 | 0.0 77 - 22 | 0.0 77 - 23 | 0.0 77 - 24 | 0.00190324824599 77 - 25 | 0.00317332584799 77 - 26 | 0.00408851245567 77 - 27 | 0.00327536998039 77 - 28 | 0.0012938461477 77 - 29 | 0.000682728730098 77 - 30 | 0.000739462460819 77 - 31 | 0.0004331348559 77 - 32 | 0.000168312873489 77 - 33 | 1.08610004513e-05 77 - 34 | 0.0 77 - 35 | 0.0 77 - 36 | 0.00145930309748 77 - 37 | 0.00186124230451 77 - 38 | 0.00246559470762 77 - 39 | 0.00173220980077 77 - 40 | 0.0017702351534 77 - 41 | 0.00108647336346 77 - 42 | 0.00110586012482 77 - 43 | 0.000879992598728 77 - 44 | 0.000452370801938 77 - 45 | 2.74151768511e-05 77 - 46 | 0.0 77 - 47 | 0.0 77 - 48 | 0.00159027584814 77 - 49 | 0.00314258133358 77 - 50 | 0.00374274851018 77 - 51 | 0.00345417361462 77 - 52 | 0.00285790792894 77 - 53 | 0.00107347071794 77 - 54 | 0.00146412012998 77 - 55 | -0.00173387862878 77 - 56 | 0.000741551804652 77 - 57 | 0.000299489552606 77 - 58 | 2.26977695915e-05 77 - 59 | 0.0 77 - 60 | 0.00198192449019 77 - 61 | 0.0042091334379 77 - 62 | 0.0078638009214 77 - 63 | 0.00821874699578 77 - 64 | 0.00612060031145 77 - 65 | 0.00190315306447 77 - 66 | 0.00149431531575 77 - 67 | 0.00149929132801 77 - 68 | 0.00124653199946 77 - 69 | 0.000646000257073 77 - 70 | 0.000113229234704 77 - 71 | 0.0 77 - 72 | 0.00160842136432 77 - 73 | 2.4732896027e-05 77 - 74 | -0.00249346671467 77 - 75 | -0.00357249347749 77 - 76 | -0.00256631227729 77 - 77 | 0.0043972543228 77 - 78 | 0.00226440302339 77 - 79 | 0.00199879570783 77 - 80 | 0.00164079315202 77 - 81 | 0.00102129164812 77 - 82 | 0.000418529617141 77 - 83 | 2.844933536e-06 77 - 84 | 0.00188765572699 77 - 85 | 0.00150488401248 77 - 86 | 0.0016043457359 77 - 87 | 0.00110889606704 77 - 88 | 0.000369960683209 77 - 89 | 0.00284380494998 77 - 90 | 0.00179213456218 77 - 91 | 0.00145817505759 77 - 92 | 0.0013714991528 77 - 93 | 0.00123177567614 77 - 94 | 0.00133821314031 77 - 95 | 7.9135858054e-05 78 - 0 | 0.00320018389697 78 - 1 | 0.00414500797315 78 - 2 | 0.00289380096499 78 - 3 | 0.0010353344609 78 - 4 | 0.000379165340937 78 - 5 | 0.000173807091395 78 - 6 | 5.5585256659e-05 78 - 7 | 1.3124126616e-05 78 - 8 | 0.0 78 - 9 | 0.0 78 - 10 | 0.0 78 - 11 | 0.0 78 - 12 | 0.00259303108222 78 - 13 | 0.0034752072758 78 - 14 | 0.00305616445496 78 - 15 | 0.00142311490492 78 - 16 | 0.000935539233953 78 - 17 | 0.000452947975198 78 - 18 | 0.000165703767009 78 - 19 | 0.000112005450232 78 - 20 | 2.57108335718e-05 78 - 21 | 0.0 78 - 22 | 0.0 78 - 23 | 0.0 78 - 24 | 0.00274120816438 78 - 25 | 0.0036282822218 78 - 26 | 0.00344593667954 78 - 27 | 0.00200293195813 78 - 28 | 0.00130385311959 78 - 29 | 0.000911100663424 78 - 30 | 0.000510600841081 78 - 31 | 0.000316093335137 78 - 32 | -8.93139618917e-05 78 - 33 | -2.05893394024e-05 78 - 34 | 0.0 78 - 35 | 0.0 78 - 36 | 0.00273291305407 78 - 37 | 0.00335850317013 78 - 38 | 0.00327815003457 78 - 39 | 0.0026363054167 78 - 40 | 0.00165740271809 78 - 41 | 0.00131882284914 78 - 42 | 0.000991553230868 78 - 43 | 0.000621347682783 78 - 44 | 0.000196407024421 78 - 45 | -0.000175859832823 78 - 46 | 0.0 78 - 47 | 0.0 78 - 48 | 0.00258206915989 78 - 49 | 0.00295576460096 78 - 50 | 0.0034312635716 78 - 51 | 0.00272876785082 78 - 52 | 0.00214315242908 78 - 53 | 0.00202820079535 78 - 54 | 0.00130223325036 78 - 55 | 0.00358688607228 78 - 56 | 0.000583227041541 78 - 57 | 0.000182588158672 78 - 58 | 1.6675102759e-05 78 - 59 | 0.0 78 - 60 | 0.00259520572198 78 - 61 | 0.00243143747271 78 - 62 | 0.00304977707762 78 - 63 | 0.00251291612773 78 - 64 | 0.00190603655245 78 - 65 | 0.00209472262991 78 - 66 | 0.00222818754621 78 - 67 | 0.00127137477031 78 - 68 | 0.000921765633333 78 - 69 | 0.000371237168868 78 - 70 | 8.17620072035e-05 78 - 71 | 0.0 78 - 72 | 0.00217983183062 78 - 73 | 0.00289807972841 78 - 74 | 0.00330973523733 78 - 75 | 0.00346444463453 78 - 76 | 0.00295827038624 78 - 77 | 0.00226440302339 78 - 78 | 0.00260058092233 78 - 79 | 0.00194781099143 78 - 80 | 0.00125714047666 78 - 81 | 0.000849587527344 78 - 82 | 0.000384097895015 78 - 83 | 2.22436691491e-06 78 - 84 | 0.00142304508323 78 - 85 | 0.00191211014751 78 - 86 | 0.0020595625067 78 - 87 | 0.00221210550952 78 - 88 | 0.00158834500666 78 - 89 | 0.00144502601826 78 - 90 | 0.00161535602795 78 - 91 | 0.00162761277983 78 - 92 | 0.00122755428667 78 - 93 | 0.000959860207579 78 - 94 | 0.00116198289286 78 - 95 | 5.8224799959e-05 79 - 0 | 0.00252287353601 79 - 1 | 0.00357508857343 79 - 2 | 0.00241431422527 79 - 3 | 0.001018738971 79 - 4 | 0.000473813815811 79 - 5 | 0.000206155713091 79 - 6 | 8.92787871023e-05 79 - 7 | 3.05281452225e-05 79 - 8 | 0.0 79 - 9 | 0.0 79 - 10 | 0.0 79 - 11 | 0.0 79 - 12 | 0.0020872322784 79 - 13 | 0.00301101701349 79 - 14 | 0.00270688323905 79 - 15 | 0.00141916840516 79 - 16 | 0.000803881014436 79 - 17 | 0.000516885160013 79 - 18 | 0.000251117032279 79 - 19 | 0.000137721970303 79 - 20 | 4.1157705062e-05 79 - 21 | 0.0 79 - 22 | 0.0 79 - 23 | 0.0 79 - 24 | 0.00213002684137 79 - 25 | 0.0030502665183 79 - 26 | 0.00300537116061 79 - 27 | 0.001938408544 79 - 28 | 0.00122273697649 79 - 29 | 0.000824427116347 79 - 30 | 0.000654514321471 79 - 31 | 0.000401435306291 79 - 32 | 5.82381680456e-05 79 - 33 | -2.56076910477e-06 79 - 34 | 0.0 79 - 35 | 0.0 79 - 36 | 0.00195413249242 79 - 37 | 0.00277682149077 79 - 38 | 0.00301511146817 79 - 39 | 0.0022143682867 79 - 40 | 0.00152623822709 79 - 41 | 0.00119795211147 79 - 42 | 0.00104299866314 79 - 43 | 0.00075298837977 79 - 44 | 0.000329247782569 79 - 45 | -9.82206893846e-05 79 - 46 | 0.0 79 - 47 | 0.0 79 - 48 | 0.00179405468613 79 - 49 | 0.00267530619424 79 - 50 | 0.00296135429929 79 - 51 | 0.00240311034145 79 - 52 | 0.00185372979664 79 - 53 | 0.00170489639967 79 - 54 | 0.00130156713459 79 - 55 | 0.00155019634365 79 - 56 | 0.000677118457738 79 - 57 | 0.000251150994069 79 - 58 | 2.42296574181e-05 79 - 59 | 0.0 79 - 60 | 0.00182065570363 79 - 61 | 0.00241905463871 79 - 62 | 0.0030987505493 79 - 63 | 0.00274148506171 79 - 64 | 0.00212327790683 79 - 65 | 0.00173235466295 79 - 66 | 0.00171378647009 79 - 67 | 0.00142069712792 79 - 68 | 0.00111949233155 79 - 69 | 0.000525489198697 79 - 70 | 0.000108726524404 79 - 71 | 0.0 79 - 72 | 0.00162282186473 79 - 73 | 0.0022828726389 79 - 74 | 0.00235798100535 79 - 75 | 0.00219131205001 79 - 76 | 0.00187170968451 79 - 77 | 0.00199879570783 79 - 78 | 0.00194781099143 79 - 79 | 0.00225350116753 79 - 80 | 0.0016027292394 79 - 81 | 0.00100262364948 79 - 82 | 0.000408404974466 79 - 83 | 2.75656970794e-06 79 - 84 | 0.00133826290998 79 - 85 | 0.00158418743546 79 - 86 | 0.00175880872097 79 - 87 | 0.00164713538765 79 - 88 | 0.0012071940221 79 - 89 | 0.0013543241749 79 - 90 | 0.00141782477416 79 - 91 | 0.00154630141345 79 - 92 | 0.00140917638492 79 - 93 | 0.00124514853943 79 - 94 | 0.00126404410174 79 - 95 | 6.70456790903e-05 80 - 0 | 0.00146432512511 80 - 1 | 0.00235942944117 80 - 2 | 0.00177146812115 80 - 3 | 0.000929684276775 80 - 4 | 0.000629598515159 80 - 5 | 0.000268253859488 80 - 6 | 0.000137137446817 80 - 7 | 5.00890612776e-05 80 - 8 | 0.0 80 - 9 | 0.0 80 - 10 | 0.0 80 - 11 | 0.0 80 - 12 | 0.00118978582366 80 - 13 | 0.00165282341897 80 - 14 | 0.00224743975742 80 - 15 | 0.00149507292872 80 - 16 | 0.000577699353159 80 - 17 | 0.000589336346224 80 - 18 | 0.000375949846666 80 - 19 | 0.000175380348059 80 - 20 | 5.09745409787e-05 80 - 21 | 0.0 80 - 22 | 0.0 80 - 23 | 0.0 80 - 24 | 0.00105173884526 80 - 25 | 0.00162966087037 80 - 26 | 0.00240299932693 80 - 27 | 0.0019135685728 80 - 28 | 0.00100065552715 80 - 29 | 0.000637737656166 80 - 30 | 0.000761509042741 80 - 31 | 0.000462053482566 80 - 32 | 0.000207882086715 80 - 33 | 2.27029422912e-05 80 - 34 | 0.0 80 - 35 | 0.0 80 - 36 | 0.000690524283968 80 - 37 | 0.00115641388663 80 - 38 | 0.00239144190225 80 - 39 | 0.00129078507402 80 - 40 | 0.00122993675811 80 - 41 | 0.000910601576514 80 - 42 | 0.000951615232403 80 - 43 | 0.000934645661402 80 - 44 | 0.000517937776382 80 - 45 | 5.30224164162e-05 80 - 46 | 0.0 80 - 47 | 0.0 80 - 48 | 0.000540082232242 80 - 49 | 0.00165824967645 80 - 50 | 0.00203692045172 80 - 51 | 0.00180137065199 80 - 52 | 0.00141041386179 80 - 53 | 0.000903553063038 80 - 54 | 0.00131639913881 80 - 55 | -0.00196277554689 80 - 56 | 0.000845524117824 80 - 57 | 0.000360043380684 80 - 58 | 3.08102175483e-05 80 - 59 | 0.0 80 - 60 | 0.000691498785305 80 - 61 | 0.0020942410631 80 - 62 | 0.00336454653888 80 - 63 | 0.00338583402701 80 - 64 | 0.00262107074274 80 - 65 | 0.00113088349424 80 - 66 | 0.000824186668443 80 - 67 | 0.00138184567023 80 - 68 | 0.00139823690449 80 - 69 | 0.000767405315516 80 - 70 | 0.000139835046114 80 - 71 | 0.0 80 - 72 | 0.000732242260028 80 - 73 | 0.000416093999982 80 - 74 | -8.58399007285e-05 80 - 75 | -0.000599776478552 80 - 76 | -0.000667579494999 80 - 77 | 0.00164079315202 80 - 78 | 0.00125714047666 80 - 79 | 0.0016027292394 80 - 80 | 0.00203341782395 80 - 81 | 0.00130126119606 80 - 82 | 0.000484593019138 80 - 83 | 3.18317178819e-06 80 - 84 | 0.00124192477627 80 - 85 | 0.000645432226946 80 - 86 | 0.00107228235071 80 - 87 | 0.000726397934778 80 - 88 | 0.000566211758855 80 - 89 | 0.00129589423203 80 - 90 | 0.000923051648972 80 - 91 | 0.000929736120878 80 - 92 | 0.0014438099182 80 - 93 | 0.00169551408459 80 - 94 | 0.00176732663603 80 - 95 | 0.00010529013493 81 - 0 | 0.00118290409502 81 - 1 | 0.0017191806711 81 - 2 | 0.00148459386456 81 - 3 | 0.00069622915753 81 - 4 | 0.000427348324794 81 - 5 | 0.000188414524185 81 - 6 | 8.96498946338e-05 81 - 7 | 3.36005224848e-05 81 - 8 | 0.0 81 - 9 | 0.0 81 - 10 | 0.0 81 - 11 | 0.0 81 - 12 | 0.000915710296527 81 - 13 | 0.00121538522833 81 - 14 | 0.00172922063907 81 - 15 | 0.00104136940636 81 - 16 | 0.0004631048629 81 - 17 | 0.000412633775641 81 - 18 | 0.00025827099998 81 - 19 | 0.000131123728824 81 - 20 | 3.63230475461e-05 81 - 21 | 0.0 81 - 22 | 0.0 81 - 23 | 0.0 81 - 24 | 0.000822529079113 81 - 25 | 0.00116695924817 81 - 26 | 0.00178838384272 81 - 27 | 0.00131184811079 81 - 28 | 0.000729015845285 81 - 29 | 0.000489206880442 81 - 30 | 0.000517809327331 81 - 31 | 0.000333562509097 81 - 32 | 0.000102922264732 81 - 33 | 9.00114750981e-06 81 - 34 | 0.0 81 - 35 | 0.0 81 - 36 | 0.0006601122421 81 - 37 | 0.000922419625762 81 - 38 | 0.00178289449285 81 - 39 | 0.00107186431563 81 - 40 | 0.000894315334995 81 - 41 | 0.000650222692327 81 - 42 | 0.000637934641909 81 - 43 | 0.000659522999171 81 - 44 | 0.000345014754063 81 - 45 | -1.90858626809e-05 81 - 46 | 0.0 81 - 47 | 0.0 81 - 48 | 0.000555166378628 81 - 49 | 0.00106799154659 81 - 50 | 0.00144602768244 81 - 51 | 0.0012814746373 81 - 52 | 0.00102363528212 81 - 53 | 0.000727012850355 81 - 54 | 0.000858559296093 81 - 55 | -6.52773806881e-06 81 - 56 | 0.000617641894182 81 - 57 | 0.000253083533779 81 - 58 | 2.28131208475e-05 81 - 59 | 0.0 81 - 60 | 0.000617904188621 81 - 61 | 0.00123861257766 81 - 62 | 0.00204536547517 81 - 63 | 0.00199336999344 81 - 64 | 0.00155201117628 81 - 65 | 0.000845927837808 81 - 66 | 0.000657317132246 81 - 67 | 0.000956728250895 81 - 68 | 0.000984401324373 81 - 69 | 0.000555421252938 81 - 70 | 9.48945914303e-05 81 - 71 | 0.0 81 - 72 | 0.000616790853347 81 - 73 | 0.000389199593574 81 - 74 | 0.000400193942256 81 - 75 | 0.000199896218513 81 - 76 | 4.97946488979e-05 81 - 77 | 0.00102129164812 81 - 78 | 0.000849587527344 81 - 79 | 0.00100262364948 81 - 80 | 0.00130126119606 81 - 81 | 0.00110008172504 81 - 82 | 0.00038395535876 81 - 83 | 2.40850685825e-06 81 - 84 | 0.000786509761147 81 - 85 | 0.000442091929595 81 - 86 | 0.000763146728206 81 - 87 | 0.000645414879648 81 - 88 | 0.000470301876154 81 - 89 | 0.000790684856785 81 - 90 | 0.000570338695268 81 - 91 | 0.000583802102687 81 - 92 | 0.00097360909815 81 - 93 | 0.00133051535539 81 - 94 | 0.00137412959425 81 - 95 | 8.19292811922e-05 82 - 0 | 0.000308989244786 82 - 1 | 0.000490638824414 82 - 2 | 0.000490915534417 82 - 3 | 0.000257543082579 82 - 4 | 0.000174753055025 82 - 5 | 6.49758934587e-05 82 - 6 | 3.1628135217e-05 82 - 7 | 1.11758289942e-05 82 - 8 | 0.0 82 - 9 | 0.0 82 - 10 | 0.0 82 - 11 | 0.0 82 - 12 | 0.000243458629137 82 - 13 | 0.000305680951194 82 - 14 | 0.00061572695175 82 - 15 | 0.000416557801807 82 - 16 | 0.000173152704311 82 - 17 | 0.000163146031535 82 - 18 | 8.64062360184e-05 82 - 19 | 4.68615979227e-05 82 - 20 | 1.55979660256e-05 82 - 21 | 0.0 82 - 22 | 0.0 82 - 23 | 0.0 82 - 24 | 0.000192442202741 82 - 25 | 0.000287824351026 82 - 26 | 0.000646373296884 82 - 27 | 0.000525557191366 82 - 28 | 0.000273335832261 82 - 29 | 0.000190281141298 82 - 30 | 0.00019112767067 82 - 31 | 0.000119844634491 82 - 32 | 6.96562387585e-05 82 - 33 | 8.87981568853e-06 82 - 34 | 0.0 82 - 35 | 0.0 82 - 36 | 0.000107550981436 82 - 37 | 0.000149756512755 82 - 38 | 0.000572753375097 82 - 39 | 0.000322883965612 82 - 40 | 0.000332694128957 82 - 41 | 0.000255435992611 82 - 42 | 0.000264841744946 82 - 43 | 0.000232042541714 82 - 44 | 0.000152341748451 82 - 45 | 1.54201090104e-05 82 - 46 | 0.0 82 - 47 | 0.0 82 - 48 | 7.51360982311e-05 82 - 49 | 0.000307280396424 82 - 50 | 0.000466931788235 82 - 51 | 0.000458971028748 82 - 52 | 0.000382314448626 82 - 53 | 0.000231023659742 82 - 54 | 0.000404017887192 82 - 55 | -0.000524955513131 82 - 56 | 0.000239702913147 82 - 57 | 0.000113871785394 82 - 58 | 1.07080597476e-05 82 - 59 | 0.0 82 - 60 | 0.000114212254076 82 - 61 | 0.000464023823156 82 - 62 | 0.000883100820192 82 - 63 | 0.000942300837206 82 - 64 | 0.000733633534603 82 - 65 | 0.000312078990912 82 - 66 | 0.000278327406863 82 - 67 | 0.000348671820544 82 - 68 | 0.000361808001432 82 - 69 | 0.000230101139144 82 - 70 | 5.11863706285e-05 82 - 71 | 0.0 82 - 72 | 0.000134311253876 82 - 73 | -0.000100973121465 82 - 74 | -0.000200081776948 82 - 75 | -0.000280601270664 82 - 76 | -0.000305158397639 82 - 77 | 0.000418529617141 82 - 78 | 0.000384097895015 82 - 79 | 0.000408404974466 82 - 80 | 0.000484593019138 82 - 81 | 0.00038395535876 82 - 82 | 0.0002057037827 82 - 83 | 1.15625578536e-06 82 - 84 | 0.00030110001104 82 - 85 | 6.98996166943e-05 82 - 86 | 0.000212911540168 82 - 87 | 0.000150457229668 82 - 88 | 0.000103428111814 82 - 89 | 0.000331845414732 82 - 90 | 0.000232532843623 82 - 91 | 0.000258354367377 82 - 92 | 0.000346391840682 82 - 93 | 0.000439373555806 82 - 94 | 0.000661878050894 82 - 95 | 3.81995800147e-05 83 - 0 | 3.13326041213e-07 83 - 1 | 2.12561622041e-06 83 - 2 | 1.63135619153e-06 83 - 3 | 1.63567939637e-06 83 - 4 | 1.26661479731e-06 83 - 5 | 4.52720100477e-07 83 - 6 | 2.77319257244e-07 83 - 7 | 1.18150047906e-07 83 - 8 | 0.0 83 - 9 | 0.0 83 - 10 | 0.0 83 - 11 | 0.0 83 - 12 | 4.15413622361e-07 83 - 13 | 1.60413405321e-06 83 - 14 | 2.79634930964e-06 83 - 15 | 2.46376449701e-06 83 - 16 | 8.48383212098e-07 83 - 17 | 1.10571143935e-06 83 - 18 | 6.65127775293e-07 83 - 19 | 3.35187150971e-07 83 - 20 | 1.4905664864e-07 83 - 21 | 0.0 83 - 22 | 0.0 83 - 23 | 0.0 83 - 24 | 9.7427520798e-08 83 - 25 | 1.49451239487e-06 83 - 26 | 2.77701952251e-06 83 - 27 | 3.11271678503e-06 83 - 28 | 1.55210987606e-06 83 - 29 | 9.40384724127e-07 83 - 30 | 1.38396531643e-06 83 - 31 | 8.38271750971e-07 83 - 32 | 6.86427964683e-07 83 - 33 | 8.8129000637e-08 83 - 34 | 0.0 83 - 35 | 0.0 83 - 36 | -8.75711502888e-07 83 - 37 | 6.96393175477e-07 83 - 38 | 2.91894251315e-06 83 - 39 | 1.14264518989e-06 83 - 40 | 1.76242660314e-06 83 - 41 | 1.41019215883e-06 83 - 42 | 1.79570286554e-06 83 - 43 | 1.52517740197e-06 83 - 44 | 1.14258474604e-06 83 - 45 | 2.6415453348e-07 83 - 46 | 0.0 83 - 47 | 0.0 83 - 48 | -1.07908824119e-06 83 - 49 | 2.21981435786e-06 83 - 50 | 2.5150826409e-06 83 - 51 | 2.49252719886e-06 83 - 52 | 1.78662802616e-06 83 - 53 | 1.00760765114e-06 83 - 54 | 2.52259423777e-06 83 - 55 | -4.86912722922e-06 83 - 56 | 1.49711528522e-06 83 - 57 | 8.17984764515e-07 83 - 58 | 9.54422611231e-08 83 - 59 | 0.0 83 - 60 | -8.25699798032e-07 83 - 61 | 3.42369889374e-06 83 - 62 | 6.44181149194e-06 83 - 63 | 6.83388880725e-06 83 - 64 | 5.26983264225e-06 83 - 65 | 1.5891411152e-06 83 - 66 | 1.21370940083e-06 83 - 67 | 2.18206169782e-06 83 - 68 | 2.45896680444e-06 83 - 69 | 1.67597332644e-06 83 - 70 | 3.67156112782e-07 83 - 71 | 0.0 83 - 72 | -2.0360838175e-07 83 - 73 | -1.01847724426e-06 83 - 74 | -2.90094588939e-06 83 - 75 | -4.68307860076e-06 83 - 76 | -3.79161446182e-06 83 - 77 | 2.844933536e-06 83 - 78 | 2.22436691491e-06 83 - 79 | 2.75656970794e-06 83 - 80 | 3.18317178819e-06 83 - 81 | 2.40850685825e-06 83 - 82 | 1.15625578536e-06 83 - 83 | 1.27047675652e-08 83 - 84 | 1.75498194395e-06 83 - 85 | 5.23087799626e-07 83 - 86 | 1.72691876617e-06 83 - 87 | 1.94473702701e-07 83 - 88 | 2.42985384714e-07 83 - 89 | 2.36134808214e-06 83 - 90 | 1.65470036039e-06 83 - 91 | 1.92351347909e-06 83 - 92 | 2.65734139959e-06 83 - 93 | 3.21446142587e-06 83 - 94 | 3.53821159875e-06 83 - 95 | 2.15735747227e-07 84 - 0 | 0.00229149359019 84 - 1 | 0.0030850025486 84 - 2 | 0.00225565245924 84 - 3 | 0.000863059894371 84 - 4 | 0.000565403371192 84 - 5 | 0.000204476650376 84 - 6 | 5.318355987e-05 84 - 7 | 1.98300169732e-05 84 - 8 | 0.0 84 - 9 | 0.0 84 - 10 | 0.0 84 - 11 | 0.0 84 - 12 | 0.00182808096654 84 - 13 | 0.00237824954516 84 - 14 | 0.00273757625198 84 - 15 | 0.00146355093023 84 - 16 | 0.000695460851309 84 - 17 | 0.000437981784059 84 - 18 | 0.000262161218164 84 - 19 | 0.000110580685534 84 - 20 | 3.20642187595e-05 84 - 21 | 0.0 84 - 22 | 0.0 84 - 23 | 0.0 84 - 24 | 0.00186741783405 84 - 25 | 0.00270325082135 84 - 26 | 0.00313499064516 84 - 27 | 0.00211502538038 84 - 28 | 0.00110833014491 84 - 29 | 0.000690464046554 84 - 30 | 0.000573289869797 84 - 31 | 0.000314285388898 84 - 32 | 2.34648556168e-05 84 - 33 | -6.93547785704e-07 84 - 34 | 0.0 84 - 35 | 0.0 84 - 36 | 0.00155037641603 84 - 37 | 0.00208311591441 84 - 38 | 0.00306759497376 84 - 39 | 0.00187740354299 84 - 40 | 0.00136100384651 84 - 41 | 0.000993445639154 84 - 42 | 0.000838008249892 84 - 43 | 0.000716585299354 84 - 44 | 0.000302805971576 84 - 45 | 3.81628566171e-05 84 - 46 | 0.0 84 - 47 | 0.0 84 - 48 | 0.00156525449067 84 - 49 | 0.00218414471405 84 - 50 | 0.00288020090249 84 - 51 | 0.00232562516546 84 - 52 | 0.00184577312017 84 - 53 | 0.00120727804121 84 - 54 | 0.00118207840804 84 - 55 | 0.00385012599935 84 - 56 | 0.000624461100099 84 - 57 | 0.000233030707166 84 - 58 | 1.32675750164e-05 84 - 59 | 0.0 84 - 60 | 0.00170643293054 84 - 61 | 0.00242743396348 84 - 62 | 0.00379353324342 84 - 63 | 0.00363734106339 84 - 64 | 0.0026609257339 84 - 65 | 0.00143625808776 84 - 66 | 0.00122404087308 84 - 67 | 0.00121371050085 84 - 68 | 0.00101137055311 84 - 69 | 0.000489644746527 84 - 70 | 8.24068080452e-05 84 - 71 | 0.0 84 - 72 | 0.00169785025473 84 - 73 | 0.00124222419999 84 - 74 | 0.000797857214882 84 - 75 | 0.000402130294557 84 - 76 | 0.000135641548062 84 - 77 | 0.00188765572699 84 - 78 | 0.00142304508323 84 - 79 | 0.00133826290998 84 - 80 | 0.00124192477627 84 - 81 | 0.000786509761147 84 - 82 | 0.00030110001104 84 - 83 | 1.75498194395e-06 84 - 84 | 0.00265388494501 84 - 85 | 0.0013503676251 84 - 86 | 0.00159254968893 84 - 87 | 0.00133638204761 84 - 88 | 0.000702091728817 84 - 89 | 0.00139218217535 84 - 90 | 0.00113469610763 84 - 91 | 0.000991880077418 84 - 92 | 0.000948254707334 84 - 93 | 0.00100143435978 84 - 94 | 0.00110388322809 84 - 95 | 6.93986850936e-05 85 - 0 | 0.00481620895723 85 - 1 | 0.00612857737993 85 - 2 | 0.00392170889588 85 - 3 | 0.00100607580953 85 - 4 | 1.43071257275e-05 85 - 5 | 4.65672016148e-05 85 - 6 | -5.26235267137e-05 85 - 7 | -1.5980348131e-05 85 - 8 | 0.0 85 - 9 | 0.0 85 - 10 | 0.0 85 - 11 | 0.0 85 - 12 | 0.00382907425086 85 - 13 | 0.00588916360739 85 - 14 | 0.00353325445569 85 - 15 | 0.000854561638168 85 - 16 | 0.00121277162448 85 - 17 | 0.000211379757869 85 - 18 | 7.88450726967e-06 85 - 19 | 5.05537189692e-05 85 - 20 | -1.43980051954e-05 85 - 21 | 0.0 85 - 22 | 0.0 85 - 23 | 0.0 85 - 24 | 0.00424264303091 85 - 25 | 0.00599294118269 85 - 26 | 0.00388745069427 85 - 27 | 0.00137255433566 85 - 28 | 0.00139319956358 85 - 29 | 0.00102451072911 85 - 30 | 0.000219285836917 85 - 31 | 0.000113316734522 85 - 32 | -0.000637116842714 85 - 33 | -0.000100189384624 85 - 34 | 0.0 85 - 35 | 0.0 85 - 36 | 0.0047566824517 85 - 37 | 0.00648585747289 85 - 38 | 0.00435856332008 85 - 39 | 0.00405305356061 85 - 40 | 0.00173343459276 85 - 41 | 0.00134716167815 85 - 42 | 0.000741509306869 85 - 43 | 0.00029963294886 85 - 44 | -0.00028678700416 85 - 45 | -0.00049412275492 85 - 46 | 0.0 85 - 47 | 0.0 85 - 48 | 0.00454000202874 85 - 49 | 0.00419781598097 85 - 50 | 0.0043764939403 85 - 51 | 0.00305317994636 85 - 52 | 0.00223681511455 85 - 53 | 0.00319787646152 85 - 54 | 0.000636146903544 85 - 55 | 0.0134964952211 85 - 56 | 0.000293537268032 85 - 57 | -7.78773980159e-05 85 - 58 | 2.47010216988e-07 85 - 59 | 0.0 85 - 60 | 0.00416985982068 85 - 61 | 0.00212696550922 85 - 62 | 0.000561683374476 85 - 63 | -0.000929284438909 85 - 64 | -0.000780506617123 85 - 65 | 0.00248584915971 85 - 66 | 0.00283787438472 85 - 67 | 0.000941895203773 85 - 68 | 0.000462643593258 85 - 69 | -0.000139107776366 85 - 70 | -2.48204798738e-05 85 - 71 | 0.0 85 - 72 | 0.00349864887802 85 - 73 | 0.00696216655176 85 - 74 | 0.00900481828519 85 - 75 | 0.00969687251288 85 - 76 | 0.00844969623569 85 - 77 | 0.00150488401248 85 - 78 | 0.00191211014751 85 - 79 | 0.00158418743546 85 - 80 | 0.000645432226946 85 - 81 | 0.000442091929595 85 - 82 | 6.98996166943e-05 85 - 83 | 5.23087799626e-07 85 - 84 | 0.0013503676251 85 - 85 | 0.00466164430598 85 - 86 | 0.00347439688538 85 - 87 | 0.00382537661359 85 - 88 | 0.00264988053091 85 - 89 | 0.000690050012279 85 - 90 | 0.00158398335296 85 - 91 | 0.00180007284793 85 - 92 | 0.00114136022863 85 - 93 | 0.000567742346902 85 - 94 | 4.06087835724e-05 85 - 95 | -1.52063722868e-05 86 - 0 | 0.00473625865517 86 - 1 | 0.00601995008058 86 - 2 | 0.00392191373561 86 - 3 | 0.00120711818272 86 - 4 | 0.000284634008729 86 - 5 | 0.000154200077751 86 - 6 | 8.56562044085e-06 86 - 7 | 1.91110975354e-06 86 - 8 | 0.0 86 - 9 | 0.0 86 - 10 | 0.0 86 - 11 | 0.0 86 - 12 | 0.00377818077254 86 - 13 | 0.00556987585579 86 - 14 | 0.00375891588839 86 - 15 | 0.00124364125129 86 - 16 | 0.00129029355397 86 - 17 | 0.000428015846882 86 - 18 | 0.000158470331452 86 - 19 | 0.0001160567703 86 - 20 | 1.40870933455e-05 86 - 21 | 0.0 86 - 22 | 0.0 86 - 23 | 0.0 86 - 24 | 0.0041739835671 86 - 25 | 0.00571920787824 86 - 26 | 0.00401202302071 86 - 27 | 0.00168500215025 86 - 28 | 0.00156618271153 86 - 29 | 0.00111582089007 86 - 30 | 0.000467994612776 86 - 31 | 0.00026932175237 86 - 32 | -0.000495006207797 86 - 33 | -8.09397403979e-05 86 - 34 | 0.0 86 - 35 | 0.0 86 - 36 | 0.0044359620233 86 - 37 | 0.00604236320093 86 - 38 | 0.00472853885754 86 - 39 | 0.00382750680341 86 - 40 | 0.00188571065938 86 - 41 | 0.00150057586419 86 - 42 | 0.000958574078294 86 - 43 | 0.000580057089819 86 - 44 | -7.75766601118e-05 86 - 45 | -0.00040884156645 86 - 46 | 0.0 86 - 47 | 0.0 86 - 48 | 0.00415348546791 86 - 49 | 0.0041772803798 86 - 50 | 0.00453398826449 86 - 51 | 0.00314638031445 86 - 52 | 0.00231042627079 86 - 53 | 0.00308004404624 86 - 54 | 0.00103164693417 86 - 55 | 0.0125579004817 86 - 56 | 0.000530677276973 86 - 57 | 5.14418517417e-05 86 - 58 | 1.32535453625e-05 86 - 59 | 0.0 86 - 60 | 0.00387558657611 86 - 61 | 0.00242723675889 86 - 62 | 0.00150451454536 86 - 63 | 2.35087558817e-05 86 - 64 | -9.3812511713e-05 86 - 65 | 0.00253140472204 86 - 66 | 0.00266929217476 86 - 67 | 0.00123733197854 86 - 68 | 0.000856490037463 86 - 69 | 0.000151733942884 86 - 70 | 3.03636819369e-05 86 - 71 | 0.0 86 - 72 | 0.00331718304516 86 - 73 | 0.00613660149341 86 - 74 | 0.00854756829251 86 - 75 | 0.00855128546781 86 - 76 | 0.0072315213723 86 - 77 | 0.0016043457359 86 - 78 | 0.0020595625067 86 - 79 | 0.00175880872097 86 - 80 | 0.00107228235071 86 - 81 | 0.000763146728206 86 - 82 | 0.000212911540168 86 - 83 | 1.72691876617e-06 86 - 84 | 0.00159254968893 86 - 85 | 0.00347439688538 86 - 86 | 0.00530714543756 86 - 87 | 0.00408741716804 86 - 88 | 0.00271080520039 86 - 89 | 0.000990211418649 86 - 90 | 0.00172367767987 86 - 91 | 0.00190689455255 86 - 92 | 0.0015107006842 86 - 93 | 0.00107678199482 86 - 94 | 0.000589615762782 86 - 95 | 2.01089179579e-05 87 - 0 | 0.006340450537 87 - 1 | 0.00723738364666 87 - 2 | 0.00523790953475 87 - 3 | 0.00124032600841 87 - 4 | -1.50388179219e-05 87 - 5 | 7.30548558005e-05 87 - 6 | -6.59927900925e-05 87 - 7 | -2.86507010327e-05 87 - 8 | 0.0 87 - 9 | 0.0 87 - 10 | 0.0 87 - 11 | 0.0 87 - 12 | 0.00491378017153 87 - 13 | 0.00661225539675 87 - 14 | 0.00436477753721 87 - 15 | 0.000971873789125 87 - 16 | 0.00153099793592 87 - 17 | 0.000261547816219 87 - 18 | -5.22247884546e-06 87 - 19 | 7.30396151324e-05 87 - 20 | -2.51672187618e-05 87 - 21 | 0.0 87 - 22 | 0.0 87 - 23 | 0.0 87 - 24 | 0.00548545479525 87 - 25 | 0.00668410753825 87 - 26 | 0.00456006139707 87 - 27 | 0.00130287870412 87 - 28 | 0.0016577514821 87 - 29 | 0.00133660263441 87 - 30 | 0.000204639912467 87 - 31 | 0.000137419417974 87 - 32 | -0.000838779205982 87 - 33 | -0.000127059269758 87 - 34 | 0.0 87 - 35 | 0.0 87 - 36 | 0.006323447098 87 - 37 | 0.00750333201935 87 - 38 | 0.00542023463474 87 - 39 | 0.00510518796563 87 - 40 | 0.00210595392103 87 - 41 | 0.00169020583847 87 - 42 | 0.000806972868292 87 - 43 | 0.000381343633703 87 - 44 | -0.000385545532223 87 - 45 | -0.000671867108283 87 - 46 | 0.0 87 - 47 | 0.0 87 - 48 | 0.00593993953069 87 - 49 | 0.00441881640039 87 - 50 | 0.00500416398825 87 - 51 | 0.00345182370005 87 - 52 | 0.00253828832723 87 - 53 | 0.00398226482258 87 - 54 | 0.000758942524178 87 - 55 | 0.0172645482177 87 - 56 | 0.00039449145764 87 - 57 | -0.000111395032687 87 - 58 | -2.8586964508e-06 87 - 59 | 0.0 87 - 60 | 0.00543629563815 87 - 61 | 0.00157376561136 87 - 62 | -0.000874099225694 87 - 63 | -0.0028470409574 87 - 64 | -0.0022309825147 87 - 65 | 0.00299514554491 87 - 66 | 0.0034676322207 87 - 67 | 0.00110451030622 87 - 68 | 0.000548161214367 87 - 69 | -0.00020176599345 87 - 70 | -4.1145186925e-05 87 - 71 | 0.0 87 - 72 | 0.0045141311168 87 - 73 | 0.00824149596629 87 - 74 | 0.0122995670969 87 - 75 | 0.0141782452236 87 - 76 | 0.0116354255117 87 - 77 | 0.00110889606704 87 - 78 | 0.00221210550952 87 - 79 | 0.00164713538765 87 - 80 | 0.000726397934778 87 - 81 | 0.000645414879648 87 - 82 | 0.000150457229668 87 - 83 | 1.94473702701e-07 87 - 84 | 0.00133638204761 87 - 85 | 0.00382537661359 87 - 86 | 0.00408741716804 87 - 87 | 0.00651390815241 87 - 88 | 0.00392297535579 87 - 89 | 0.000407038299956 87 - 90 | 0.00172149496332 87 - 91 | 0.00202186147061 87 - 92 | 0.00127056664446 87 - 93 | 0.000718904353003 87 - 94 | 0.000365864037683 87 - 95 | -2.488585058e-06 88 - 0 | 0.00447960875436 88 - 1 | 0.00515742562265 88 - 2 | 0.00362181112298 88 - 3 | 0.000943896580766 88 - 4 | -2.57015360191e-06 88 - 5 | 0.000103389716695 88 - 6 | 1.20847867903e-05 88 - 7 | -1.97616394945e-05 88 - 8 | 0.0 88 - 9 | 0.0 88 - 10 | 0.0 88 - 11 | 0.0 88 - 12 | 0.0035295522578 88 - 13 | 0.00474861922987 88 - 14 | 0.00306126325257 88 - 15 | 0.000769119500356 88 - 16 | 0.00118168873857 88 - 17 | 0.0002646666016 88 - 18 | 1.37374421694e-05 88 - 19 | 5.99261380982e-05 88 - 20 | -2.54958755208e-05 88 - 21 | 0.0 88 - 22 | 0.0 88 - 23 | 0.0 88 - 24 | 0.00391019543057 88 - 25 | 0.00469749088513 88 - 26 | 0.00290241720095 88 - 27 | 0.000678996195219 88 - 28 | 0.00123320805488 88 - 29 | 0.000985542481251 88 - 30 | 0.000187526079493 88 - 31 | 0.000113010155223 88 - 32 | -0.000529996833275 88 - 33 | -7.88366513816e-05 88 - 34 | 0.0 88 - 35 | 0.0 88 - 36 | 0.0043653168445 88 - 37 | 0.00552772674272 88 - 38 | 0.00422440576738 88 - 39 | 0.00386228986029 88 - 40 | 0.00146183733889 88 - 41 | 0.00142522919834 88 - 42 | 0.000694207948451 88 - 43 | 0.000320493845016 88 - 44 | -0.000210267565886 88 - 45 | -0.000428807204756 88 - 46 | 0.0 88 - 47 | 0.0 88 - 48 | 0.00386887541147 88 - 49 | 0.00316682210261 88 - 50 | 0.00348999262289 88 - 51 | 0.00223080676966 88 - 52 | 0.0014695481714 88 - 53 | 0.00301874488316 88 - 54 | 0.000826119729231 88 - 55 | 0.00702022233212 88 - 56 | 0.000282593664144 88 - 57 | -7.32822142575e-05 88 - 58 | -2.9797857025e-06 88 - 59 | 0.0 88 - 60 | 0.00364753098913 88 - 61 | 0.000688220940308 88 - 62 | -0.00196270734373 88 - 63 | -0.00365957388022 88 - 64 | -0.00267554987546 88 - 65 | 0.0022339682502 88 - 66 | 0.00242138043398 88 - 67 | 0.000757172756667 88 - 68 | 0.000465270028719 88 - 69 | -0.000103296474937 88 - 70 | -2.08138186349e-05 88 - 71 | 0.0 88 - 72 | 0.00306116023132 88 - 73 | 0.00659139841017 88 - 74 | 0.0102147193549 88 - 75 | 0.0116681183181 88 - 76 | 0.00994868076869 88 - 77 | 0.000369960683209 88 - 78 | 0.00158834500666 88 - 79 | 0.0012071940221 88 - 80 | 0.000566211758855 88 - 81 | 0.000470301876154 88 - 82 | 0.000103428111814 88 - 83 | 2.42985384714e-07 88 - 84 | 0.000702091728817 88 - 85 | 0.00264988053091 88 - 86 | 0.00271080520039 88 - 87 | 0.00392297535579 88 - 88 | 0.00433980201904 88 - 89 | 0.000333998701578 88 - 90 | 0.0012851264202 88 - 91 | 0.00144171521242 88 - 92 | 0.000986406176529 88 - 93 | 0.000609756138317 88 - 94 | 0.000345270204795 88 - 95 | -7.77351387876e-07 89 - 0 | 0.000906874287803 89 - 1 | 0.00203672925602 89 - 2 | 0.00120977448322 89 - 3 | 0.000706469933582 89 - 4 | 0.000563578772703 89 - 5 | 0.000257229679212 89 - 6 | 0.000150554797854 89 - 7 | 4.04630644302e-05 89 - 8 | 0.0 89 - 9 | 0.0 89 - 10 | 0.0 89 - 11 | 0.0 89 - 12 | 0.000895026295766 89 - 13 | 0.00126859444928 89 - 14 | 0.00209407270783 89 - 15 | 0.00170173650989 89 - 16 | 0.000341391218293 89 - 17 | 0.000493147438129 89 - 18 | 0.000311852553481 89 - 19 | 0.000125523068849 89 - 20 | 4.71610461667e-05 89 - 21 | 0.0 89 - 22 | 0.0 89 - 23 | 0.0 89 - 24 | 0.000801479969185 89 - 25 | 0.00168895146958 89 - 26 | 0.00291222420622 89 - 27 | 0.00267780535844 89 - 28 | 0.000912198147294 89 - 29 | 0.000385590407844 89 - 30 | 0.000653357894256 89 - 31 | 0.000372825844427 89 - 32 | 0.000339623731327 89 - 33 | 4.17341213253e-05 89 - 34 | 0.0 89 - 35 | 0.0 89 - 36 | 0.000164325702809 89 - 37 | 0.000390457627465 89 - 38 | 0.00161324712063 89 - 39 | 0.000801538762 89 - 40 | 0.00119058595896 89 - 41 | 0.000768761519323 89 - 42 | 0.00084934202201 89 - 43 | 0.000754791768003 89 - 44 | 0.000501940182567 89 - 45 | 0.000186818354332 89 - 46 | 0.0 89 - 47 | 0.0 89 - 48 | 0.000298708594685 89 - 49 | 0.00209408931648 89 - 50 | 0.00257687850064 89 - 51 | 0.00245485571918 89 - 52 | 0.00200079085404 89 - 53 | 0.000248514044695 89 - 54 | 0.00124668415306 89 - 55 | -0.00640866791546 89 - 56 | 0.000584849206474 89 - 57 | 0.000279324138048 89 - 58 | 1.91772362702e-05 89 - 59 | 0.0 89 - 60 | 0.00078870401906 89 - 61 | 0.00328698040997 89 - 62 | 0.00687541587309 89 - 63 | 0.00737714858241 89 - 64 | 0.00541208330441 89 - 65 | 0.00105292097719 89 - 66 | 0.000556312290323 89 - 67 | 0.00113510191546 89 - 68 | 0.00105425878655 89 - 69 | 0.000624448932057 89 - 70 | 0.000106720041846 89 - 71 | 0.0 89 - 72 | 0.000553804803988 89 - 73 | -0.00132552173796 89 - 74 | -0.00393285657545 89 - 75 | -0.00504269532857 89 - 76 | -0.00424458335019 89 - 77 | 0.00284380494998 89 - 78 | 0.00144502601826 89 - 79 | 0.0013543241749 89 - 80 | 0.00129589423203 89 - 81 | 0.000790684856785 89 - 82 | 0.000331845414732 89 - 83 | 2.36134808214e-06 89 - 84 | 0.00139218217535 89 - 85 | 0.000690050012279 89 - 86 | 0.000990211418649 89 - 87 | 0.000407038299956 89 - 88 | 0.000333998701578 89 - 89 | 0.00286742252349 89 - 90 | 0.00145627037084 89 - 91 | 0.000924206879197 89 - 92 | 0.00108557839059 89 - 93 | 0.00105247872342 89 - 94 | 0.00122335890534 89 - 95 | 7.62483772376e-05 90 - 0 | 0.00230199524518 90 - 1 | 0.00321652691664 90 - 2 | 0.00212668159646 90 - 3 | 0.000773755756163 90 - 4 | 0.000297770109144 90 - 5 | 0.000133880645795 90 - 6 | 4.87922470406e-05 90 - 7 | 1.23884958941e-05 90 - 8 | 0.0 90 - 9 | 0.0 90 - 10 | 0.0 90 - 11 | 0.0 90 - 12 | 0.00192917468639 90 - 13 | 0.00281213761845 90 - 14 | 0.00236924922463 90 - 15 | 0.00114216252521 90 - 16 | 0.000682595428772 90 - 17 | 0.000333912779089 90 - 18 | 0.000138656988571 90 - 19 | 7.94130473013e-05 90 - 20 | 1.91389252777e-05 90 - 21 | 0.0 90 - 22 | 0.0 90 - 23 | 0.0 90 - 24 | 0.00206899683556 90 - 25 | 0.00300495683681 90 - 26 | 0.00275828026208 90 - 27 | 0.00168891327966 90 - 28 | 0.00100183057441 90 - 29 | 0.000658110775842 90 - 30 | 0.000405189186024 90 - 31 | 0.000223426726393 90 - 32 | -7.47101510213e-05 90 - 33 | -1.56305786449e-05 90 - 34 | 0.0 90 - 35 | 0.0 90 - 36 | 0.00198152853013 90 - 37 | 0.00270214346627 90 - 38 | 0.0026122856627 90 - 39 | 0.00207619222986 90 - 40 | 0.00127224339794 90 - 41 | 0.00101095493968 90 - 42 | 0.000768844395631 90 - 43 | 0.000467887378755 90 - 44 | 0.000140287030672 90 - 45 | -0.000103960809337 90 - 46 | 0.0 90 - 47 | 0.0 90 - 48 | 0.00189500973967 90 - 49 | 0.00247404063373 90 - 50 | 0.00283783316799 90 - 51 | 0.0022739312612 90 - 52 | 0.00172375099838 90 - 53 | 0.00152388361718 90 - 54 | 0.000982153008946 90 - 55 | 0.00213734773968 90 - 56 | 0.000408601200677 90 - 57 | 0.000124782018724 90 - 58 | 1.26930589581e-05 90 - 59 | 0.0 90 - 60 | 0.00196699524177 90 - 61 | 0.00212836512837 90 - 62 | 0.00288001110313 90 - 63 | 0.0024726917542 90 - 64 | 0.00180793832866 90 - 65 | 0.00153831612333 90 - 66 | 0.0015547313461 90 - 67 | 0.000947360525271 90 - 68 | 0.000680021685053 90 - 69 | 0.000269467672118 90 - 70 | 5.71678554134e-05 90 - 71 | 0.0 90 - 72 | 0.0016293211689 90 - 73 | 0.00220695533806 90 - 74 | 0.00224849645584 90 - 75 | 0.00214149162062 90 - 76 | 0.00187365492116 90 - 77 | 0.00179213456218 90 - 78 | 0.00161535602795 90 - 79 | 0.00141782477416 90 - 80 | 0.000923051648972 90 - 81 | 0.000570338695268 90 - 82 | 0.000232532843623 90 - 83 | 1.65470036039e-06 90 - 84 | 0.00113469610763 90 - 85 | 0.00158398335296 90 - 86 | 0.00172367767987 90 - 87 | 0.00172149496332 90 - 88 | 0.0012851264202 90 - 89 | 0.00145627037084 90 - 90 | 0.00169366601558 90 - 91 | 0.00146613995431 90 - 92 | 0.00102347931509 90 - 93 | 0.00071127327106 90 - 94 | 0.000700904318335 90 - 95 | 3.48611441228e-05 91 - 0 | 0.00254598026848 91 - 1 | 0.00343058166403 91 - 2 | 0.00228214810817 91 - 3 | 0.000817446352964 91 - 4 | 0.000226650311371 91 - 5 | 9.09902446366e-05 91 - 6 | 1.83575947219e-05 91 - 7 | 7.85667780722e-06 91 - 8 | 0.0 91 - 9 | 0.0 91 - 10 | 0.0 91 - 11 | 0.0 91 - 12 | 0.00210458821759 91 - 13 | 0.00325402630619 91 - 14 | 0.00231578421108 91 - 15 | 0.000919177964981 91 - 16 | 0.000776493963073 91 - 17 | 0.000304624593477 91 - 18 | 8.9954803605e-05 91 - 19 | 7.24978995631e-05 91 - 20 | 1.56237009275e-05 91 - 21 | 0.0 91 - 22 | 0.0 91 - 23 | 0.0 91 - 24 | 0.00229698066262 91 - 25 | 0.00328006657358 91 - 26 | 0.00253242433844 91 - 27 | 0.00131254238258 91 - 28 | 0.00101620731331 91 - 29 | 0.000738565197947 91 - 30 | 0.000360810616355 91 - 31 | 0.000199064051663 91 - 32 | -0.00018578268629 91 - 33 | -3.16622437516e-05 91 - 34 | 0.0 91 - 35 | 0.0 91 - 36 | 0.00235951432142 91 - 37 | 0.00333895167049 91 - 38 | 0.00274136770307 91 - 39 | 0.00232370765648 91 - 40 | 0.00127744319426 91 - 41 | 0.00104542168909 91 - 42 | 0.000781397475941 91 - 43 | 0.000401012248404 91 - 44 | 5.90072614572e-05 91 - 45 | -0.000199530251545 91 - 46 | 0.0 91 - 47 | 0.0 91 - 48 | 0.00218736670617 91 - 49 | 0.00254885214633 91 - 50 | 0.00274308966498 91 - 51 | 0.00210464484668 91 - 52 | 0.00156491176814 91 - 53 | 0.0019120972783 91 - 54 | 0.000953252603925 91 - 55 | 0.00482530078534 91 - 56 | 0.000395141642494 91 - 57 | 0.000110383544327 91 - 58 | 1.54025557393e-05 91 - 59 | 0.0 91 - 60 | 0.00208210748403 91 - 61 | 0.00178180525499 91 - 62 | 0.00163931811828 91 - 63 | 0.000998396911584 91 - 64 | 0.000763033649515 91 - 65 | 0.00167001136749 91 - 66 | 0.00186680550049 91 - 67 | 0.000893521478249 91 - 68 | 0.000622625559897 91 - 69 | 0.000222148395448 91 - 70 | 6.39271131927e-05 91 - 71 | 0.0 91 - 72 | 0.00180151048192 91 - 73 | 0.00322283228356 91 - 74 | 0.00395430462266 91 - 75 | 0.00405267212056 91 - 76 | 0.00359014977811 91 - 77 | 0.00145817505759 91 - 78 | 0.00162761277983 91 - 79 | 0.00154630141345 91 - 80 | 0.000929736120878 91 - 81 | 0.000583802102687 91 - 82 | 0.000258354367377 91 - 83 | 1.92351347909e-06 91 - 84 | 0.000991880077418 91 - 85 | 0.00180007284793 91 - 86 | 0.00190689455255 91 - 87 | 0.00202186147061 91 - 88 | 0.00144171521242 91 - 89 | 0.000924206879197 91 - 90 | 0.00146613995431 91 - 91 | 0.0018912373623 91 - 92 | 0.00118528019888 91 - 93 | 0.000728665480497 91 - 94 | 0.000675980928462 91 - 95 | 2.84236057841e-05 92 - 0 | 0.00172735378144 92 - 1 | 0.00265928243105 92 - 2 | 0.00183276394893 92 - 3 | 0.00082894342513 92 - 4 | 0.000422975814312 92 - 5 | 0.000194423582576 92 - 6 | 0.000101225251295 92 - 7 | 3.60963477671e-05 92 - 8 | 0.0 92 - 9 | 0.0 92 - 10 | 0.0 92 - 11 | 0.0 92 - 12 | 0.00143325653292 92 - 13 | 0.00227960773679 92 - 14 | 0.00209437098026 92 - 15 | 0.00114713495716 92 - 16 | 0.000609938712503 92 - 17 | 0.00046343161874 92 - 18 | 0.000268952010863 92 - 19 | 0.000141128674853 92 - 20 | 4.07713416332e-05 92 - 21 | 0.0 92 - 22 | 0.0 92 - 23 | 0.0 92 - 24 | 0.00143258194655 92 - 25 | 0.00223103317178 92 - 26 | 0.00219632869514 92 - 27 | 0.00149644983631 92 - 28 | 0.000947599204277 92 - 29 | 0.000615723664124 92 - 30 | 0.000601341935868 92 - 31 | 0.000374808850978 92 - 32 | 6.45877652854e-05 92 - 33 | 1.99952353142e-06 92 - 34 | 0.0 92 - 35 | 0.0 92 - 36 | 0.0012706479882 92 - 37 | 0.00206073150304 92 - 38 | 0.00237754730584 92 - 39 | 0.00159720319167 92 - 40 | 0.00113049630665 92 - 41 | 0.000863604367057 92 - 42 | 0.000798424882557 92 - 43 | 0.000705463180465 92 - 44 | 0.000320367893727 92 - 45 | -5.59216150489e-05 92 - 46 | 0.0 92 - 47 | 0.0 92 - 48 | 0.00109221137644 92 - 49 | 0.00200533744508 92 - 50 | 0.00217654584111 92 - 51 | 0.00175475577818 92 - 52 | 0.00130450379217 92 - 53 | 0.00119373125294 92 - 54 | 0.000998605661241 92 - 55 | 0.00116171868728 92 - 56 | 0.000618441387253 92 - 57 | 0.000233178703388 92 - 58 | 2.66166500743e-05 92 - 59 | 0.0 92 - 60 | 0.00113121488664 92 - 61 | 0.00183208194213 92 - 62 | 0.00244044478898 92 - 63 | 0.00212139802718 92 - 64 | 0.00161647897628 92 - 65 | 0.00122301901006 92 - 66 | 0.0010546637585 92 - 67 | 0.00108822194291 92 - 68 | 0.00103221086394 92 - 69 | 0.000512216769971 92 - 70 | 9.89229262796e-05 92 - 71 | 0.0 92 - 72 | 0.00106102659703 92 - 73 | 0.00158857004813 92 - 74 | 0.00167506462568 92 - 75 | 0.00133676282235 92 - 76 | 0.00114541471285 92 - 77 | 0.0013714991528 92 - 78 | 0.00122755428667 92 - 79 | 0.00140917638492 92 - 80 | 0.0014438099182 92 - 81 | 0.00097360909815 92 - 82 | 0.000346391840682 92 - 83 | 2.65734139959e-06 92 - 84 | 0.000948254707334 92 - 85 | 0.00114136022863 92 - 86 | 0.0015107006842 92 - 87 | 0.00127056664446 92 - 88 | 0.000986406176529 92 - 89 | 0.00108557839059 92 - 90 | 0.00102347931509 92 - 91 | 0.00118528019888 92 - 92 | 0.00162360841 92 - 93 | 0.00145258716639 92 - 94 | 0.00125639065257 92 - 95 | 6.94114570798e-05 93 - 0 | 0.00125301107251 93 - 1 | 0.00203462625572 93 - 2 | 0.00162944691279 93 - 3 | 0.000840404153384 93 - 4 | 0.000556359168046 93 - 5 | 0.000253656072122 93 - 6 | 0.000135693731911 93 - 7 | 4.9725636217e-05 93 - 8 | 0.0 93 - 9 | 0.0 93 - 10 | 0.0 93 - 11 | 0.0 93 - 12 | 0.000998206255637 93 - 13 | 0.00145762081629 93 - 14 | 0.00200695946297 93 - 15 | 0.0012920445037 93 - 16 | 0.000529318406691 93 - 17 | 0.000541785124794 93 - 18 | 0.000366127891345 93 - 19 | 0.000177015282715 93 - 20 | 4.77818388183e-05 93 - 21 | 0.0 93 - 22 | 0.0 93 - 23 | 0.0 93 - 24 | 0.000883526579267 93 - 25 | 0.00138503696596 93 - 26 | 0.00201362120629 93 - 27 | 0.00158165513924 93 - 28 | 0.000869129294622 93 - 29 | 0.000554233737807 93 - 30 | 0.000693877978744 93 - 31 | 0.000437865997598 93 - 32 | 0.0001555350427 93 - 33 | 1.58422154463e-05 93 - 34 | 0.0 93 - 35 | 0.0 93 - 36 | 0.000598572627125 93 - 37 | 0.00109323262099 93 - 38 | 0.00214097129875 93 - 39 | 0.00114725810081 93 - 40 | 0.00103480172227 93 - 41 | 0.000749514181074 93 - 42 | 0.000794164399874 93 - 43 | 0.000878361296735 93 - 44 | 0.000472395429721 93 - 45 | 2.01928692972e-05 93 - 46 | 0.0 93 - 47 | 0.0 93 - 48 | 0.000443347835033 93 - 49 | 0.00136825614883 93 - 50 | 0.00172104185797 93 - 51 | 0.00146780644326 93 - 52 | 0.00113135249663 93 - 53 | 0.000788104408505 93 - 54 | 0.00108978352022 93 - 55 | -0.000850467479292 93 - 56 | 0.000801660480984 93 - 57 | 0.000331774090554 93 - 58 | 3.10531257546e-05 93 - 59 | 0.0 93 - 60 | 0.00055118518981 93 - 61 | 0.00168878454951 93 - 62 | 0.00267353801516 93 - 63 | 0.00259887921018 93 - 64 | 0.00200933380962 93 - 65 | 0.000955794453202 93 - 66 | 0.000605477429009 93 - 67 | 0.00118786984669 93 - 68 | 0.00129041281345 93 - 69 | 0.000727406052429 93 - 70 | 0.000123323489987 93 - 71 | 0.0 93 - 72 | 0.000612862833712 93 - 73 | 0.000498653324171 93 - 74 | 0.000267434469281 93 - 75 | -0.000226020786708 93 - 76 | -0.000317697831417 93 - 77 | 0.00123177567614 93 - 78 | 0.000959860207579 93 - 79 | 0.00124514853943 93 - 80 | 0.00169551408459 93 - 81 | 0.00133051535539 93 - 82 | 0.000439373555806 93 - 83 | 3.21446142587e-06 93 - 84 | 0.00100143435978 93 - 85 | 0.000567742346902 93 - 86 | 0.00107678199482 93 - 87 | 0.000718904353003 93 - 88 | 0.000609756138317 93 - 89 | 0.00105247872342 93 - 90 | 0.00071127327106 93 - 91 | 0.000728665480497 93 - 92 | 0.00145258716639 93 - 93 | 0.00205312152822 93 - 94 | 0.00176932988696 93 - 95 | 0.000105596750406 94 - 0 | 0.00104598311201 94 - 1 | 0.00152840995187 94 - 2 | 0.00162098262583 94 - 3 | 0.000850018588175 94 - 4 | 0.00065373773787 94 - 5 | 0.000259836281434 94 - 6 | 0.000134885606349 94 - 7 | 4.53272707252e-05 94 - 8 | 0.0 94 - 9 | 0.0 94 - 10 | 0.0 94 - 11 | 0.0 94 - 12 | 0.000783566757454 94 - 13 | 0.000709777532503 94 - 14 | 0.00211488788243 94 - 15 | 0.00152627568981 94 - 16 | 0.00054356606817 94 - 17 | 0.000597738487733 94 - 18 | 0.000354646350379 94 - 19 | 0.000182400427173 94 - 20 | 5.50023108642e-05 94 - 21 | 0.0 94 - 22 | 0.0 94 - 23 | 0.0 94 - 24 | 0.000567729207548 94 - 25 | 0.000688713978931 94 - 26 | 0.00217875843103 94 - 27 | 0.00185350063204 94 - 28 | 0.000908943336008 94 - 29 | 0.000615212051141 94 - 30 | 0.000704262709621 94 - 31 | 0.00044708681201 94 - 32 | 0.00027630682444 94 - 33 | 3.78507445547e-05 94 - 34 | 0.0 94 - 35 | 0.0 94 - 36 | 0.000237745688713 94 - 37 | 0.000115378271617 94 - 38 | 0.00196562054018 94 - 39 | 0.0009233460503 94 - 40 | 0.00108539539659 94 - 41 | 0.000831442890983 94 - 42 | 0.000876016503464 94 - 43 | 0.000895214620571 94 - 44 | 0.000580169074205 94 - 45 | 0.000102998841976 94 - 46 | 0.0 94 - 47 | 0.0 94 - 48 | 0.000118122186153 94 - 49 | 0.000873529426231 94 - 50 | 0.00149075546094 94 - 51 | 0.00146521144907 94 - 52 | 0.0012475885112 94 - 53 | 0.000553158525452 94 - 54 | 0.00141972179062 94 - 55 | -0.00311272327584 94 - 56 | 0.000881124870652 94 - 57 | 0.000407932083797 94 - 58 | 3.62496441724e-05 94 - 59 | 0.0 94 - 60 | 0.000339073273829 94 - 61 | 0.00157388008063 94 - 62 | 0.00322362212748 94 - 63 | 0.0034887232502 94 - 64 | 0.00269395083441 94 - 65 | 0.000939222709975 94 - 66 | 0.00066383662683 94 - 67 | 0.00125043671444 94 - 68 | 0.00133702049963 94 - 69 | 0.000842849843311 94 - 70 | 0.000170938024389 94 - 71 | 0.0 94 - 72 | 0.000400298026835 94 - 73 | -0.000761429556298 94 - 74 | -0.00128395102197 94 - 75 | -0.00159121157672 94 - 76 | -0.00174344513663 94 - 77 | 0.00133821314031 94 - 78 | 0.00116198289286 94 - 79 | 0.00126404410174 94 - 80 | 0.00176732663603 94 - 81 | 0.00137412959425 94 - 82 | 0.000661878050894 94 - 83 | 3.53821159875e-06 94 - 84 | 0.00110388322809 94 - 85 | 4.06087835724e-05 94 - 86 | 0.000589615762782 94 - 87 | 0.000365864037683 94 - 88 | 0.000345270204795 94 - 89 | 0.00122335890534 94 - 90 | 0.000700904318335 94 - 91 | 0.000675980928462 94 - 92 | 0.00125639065257 94 - 93 | 0.00176932988696 94 - 94 | 0.00255703378682 94 - 95 | 0.000148832702583 95 - 0 | 3.60236316688e-05 95 - 1 | 6.10118531234e-05 95 - 2 | 7.7193312075e-05 95 - 3 | 4.75029801892e-05 95 - 4 | 4.39538659098e-05 95 - 5 | 1.60833419184e-05 95 - 6 | 8.06396721e-06 95 - 7 | 3.24060679452e-06 95 - 8 | 0.0 95 - 9 | 0.0 95 - 10 | 0.0 95 - 11 | 0.0 95 - 12 | 2.40824546492e-05 95 - 13 | 8.00226061321e-06 95 - 14 | 0.000114160740723 95 - 15 | 9.22706509619e-05 95 - 16 | 2.53156969404e-05 95 - 17 | 3.60881149899e-05 95 - 18 | 2.310816281e-05 95 - 19 | 1.06503082887e-05 95 - 20 | 3.52111379177e-06 95 - 21 | 0.0 95 - 22 | 0.0 95 - 23 | 0.0 95 - 24 | 7.49168332211e-06 95 - 25 | 9.46763661834e-06 95 - 26 | 0.00011701564704 95 - 27 | 0.000113928782886 95 - 28 | 4.97486446007e-05 95 - 29 | 3.19750611457e-05 95 - 30 | 4.39476962669e-05 95 - 31 | 2.65819294049e-05 95 - 32 | 2.03492963186e-05 95 - 33 | 2.88367659891e-06 95 - 34 | 0.0 95 - 35 | 0.0 95 - 36 | -1.95088871282e-05 95 - 37 | -3.34816128694e-05 95 - 38 | 0.000107008386367 95 - 39 | 3.24910968683e-05 95 - 40 | 5.72253265754e-05 95 - 41 | 4.35407012771e-05 95 - 42 | 4.91817638905e-05 95 - 43 | 5.55900666221e-05 95 - 44 | 3.80667280221e-05 95 - 45 | 1.12068143166e-05 95 - 46 | 0.0 95 - 47 | 0.0 95 - 48 | -2.08572846028e-05 95 - 49 | 3.17250783299e-05 95 - 50 | 7.2409123562e-05 95 - 51 | 7.52757130931e-05 95 - 52 | 6.6851230661e-05 95 - 53 | 1.10099684471e-05 95 - 54 | 8.2126045507e-05 95 - 55 | -0.000243078458657 95 - 56 | 5.3057782944e-05 95 - 57 | 2.59247868768e-05 95 - 58 | 2.24079843343e-06 95 - 59 | 0.0 95 - 60 | -3.82050956291e-06 95 - 61 | 9.36902058897e-05 95 - 62 | 0.000214110947224 95 - 63 | 0.000240328677094 95 - 64 | 0.000184679655452 95 - 65 | 4.26977848969e-05 95 - 66 | 2.14313544983e-05 95 - 67 | 7.7160007243e-05 95 - 68 | 8.06542236069e-05 95 - 69 | 5.36014107145e-05 95 - 70 | 1.02698110922e-05 95 - 71 | 0.0 95 - 72 | 3.84341481566e-06 95 - 73 | -9.37306132021e-05 95 - 74 | -0.00014860086963 95 - 75 | -0.000180062640131 95 - 76 | -0.00017732341192 95 - 77 | 7.9135858054e-05 95 - 78 | 5.8224799959e-05 95 - 79 | 6.70456790903e-05 95 - 80 | 0.00010529013493 95 - 81 | 8.19292811922e-05 95 - 82 | 3.81995800147e-05 95 - 83 | 2.15735747227e-07 95 - 84 | 6.93986850936e-05 95 - 85 | -1.52063722868e-05 95 - 86 | 2.01089179579e-05 95 - 87 | -2.488585058e-06 95 - 88 | -7.77351387876e-07 95 - 89 | 7.62483772376e-05 95 - 90 | 3.48611441228e-05 95 - 91 | 2.84236057841e-05 95 - 92 | 6.94114570798e-05 95 - 93 | 0.000105596750406 95 - 94 | 0.000148832702583 95 - 95 | 9.53334376027e-06 diff --git a/src/ANL/ANL_CCQE_Evt_1DQ2_nu.cxx b/src/ANL/ANL_CCQE_Evt_1DQ2_nu.cxx index b6bc1de..53b5b17 100755 --- a/src/ANL/ANL_CCQE_Evt_1DQ2_nu.cxx +++ b/src/ANL/ANL_CCQE_Evt_1DQ2_nu.cxx @@ -1,160 +1,160 @@ // Copyright 2016 L. Pickering, P Stowell, R. Terri, C. Wilkinson, C. Wret /******************************************************************************* * This file is part of NUISANCE. * * NUISANCE is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * NUISANCE is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with NUISANCE. If not, see . *******************************************************************************/ #include "ANL_CCQE_Evt_1DQ2_nu.h" //******************************************************************** ANL_CCQE_Evt_1DQ2_nu::ANL_CCQE_Evt_1DQ2_nu(nuiskey samplekey) { //******************************************************************** // Sample overview --------------------------------------------------- std::string descrip = "ANL CCQ2 Event Rate 1DQ2 nu sample. \n" \ "Target: D2 \n" \ "Flux: \n" \ "Signal: \n"; // Setup common settings fSettings = LoadSampleSettings(samplekey); fSettings.SetDescription(descrip); fSettings.SetXTitle("Q^{2}_{CCQE} (GeV^{2})"); fSettings.SetYTitle("Number of events"); fSettings.SetAllowedTypes("EVT/SHAPE/DIAG", "EVT/SHAPE/DIAG/Q2CORR/MASK"); fSettings.SetEnuRange(0.0, 6.0); fSettings.DefineAllowedTargets("D,H"); // plot information fSettings.SetTitle("ANL #nu_mu CCQE"); fSettings.DefineAllowedSpecies("numu"); // Hadronic Cut Info if (fSettings.Found("name", "PRL31")) { fSettings.SetDataInput( FitPar::GetDataBase() + "ANL/ANL_CCQE_Data_PRL31_844.root;ANL_1DQ2_Data" ); fSettings.SetEnuRange(0.0, 3.0); } else if (fSettings.Found("name", "PRD16")) { fSettings.SetDataInput( FitPar::GetDataBase() + "ANL/ANL_CCQE_Data_PRD16_3103.root;ANL_1DQ2_Data" ); } else { fSettings.SetDataInput( FitPar::GetDataBase() + "ANL/ANL_Data_PRD26_537.root;ANL_1DQ2_Data" ); } // is Q2 Correction applied applyQ2correction = fSettings.Found("type", "Q2CORR"); if (applyQ2correction) { fSettings.SetS("q2correction_file", FitPar::GetDataBase() + "/ANL/ANL_CCQE_Data_PRL31_844.root"); - fSettings.SetS("q2correction_hist", "ANL_XSec_1DQ2_Correction"); + fSettings.SetS("q2correction_hist", "ANL_1DQ2_Correction"); } FinaliseSampleSettings(); // Scaling Setup --------------------------------------------------- // ScaleFactor for shape fScaleFactor = 1.0; // Plot Setup ------------------------------------------------------- SetDataFromRootFile( fSettings.GetDataInput() ); SetPoissonErrors(); SetCovarFromDiagonal(); // Correction Histogram if (applyQ2correction) { // Correction Hist CorrectionHist = PlotUtils::GetTH1DFromFile( fSettings.GetS("q2correction_file"), fSettings.GetS("q2correction_hist") ); SetAutoProcessTH1(CorrectionHist, kCMD_Write); // Make uncorrected MC hist fMCHist_NoCorr = (TH1D*) fDataHist->Clone(); fMCHist_NoCorr->Reset(); fMCHist_NoCorr->SetNameTitle( (fName + "_NOCORR").c_str(), (fName + "_NOCORR").c_str()); SetAutoProcessTH1(fMCHist_NoCorr); } // Final setup --------------------------------------------------- FinaliseMeasurement(); } //******************************************************************** void ANL_CCQE_Evt_1DQ2_nu::FillEventVariables(FitEvent * event) { //******************************************************************** if (event->NumFSParticle(13) == 0) return; // Fill histogram with reconstructed Q2 Distribution fXVar = -999.9; TLorentzVector Pnu = event->GetNeutrinoIn()->fP; TLorentzVector Pmu = event->GetHMFSParticle(13)->fP; ThetaMu = Pnu.Vect().Angle(Pmu.Vect()); fXVar = FitUtils::Q2QErec(Pmu, cos(ThetaMu), 0., true); GetQ2Box()->fQ2 = fXVar; return; }; //******************************************************************** bool ANL_CCQE_Evt_1DQ2_nu::isSignal(FitEvent * event) { //******************************************************************** if (!SignalDef::isCCQE(event, 14, EnuMin, EnuMax)) return false; // Q2 cut if (GetQ2Box()->fQ2 <= 0) return false; return true; }; //******************************************************************** void ANL_CCQE_Evt_1DQ2_nu::FillHistograms() { //******************************************************************** if (applyQ2correction) { fMCHist_NoCorr->Fill( GetQ2Box()->fQ2, Weight); if (GetQ2Box()->fQ2 < CorrectionHist->GetXaxis()->GetXmax() && GetQ2Box()->fQ2 > CorrectionHist->GetXaxis()->GetXmin()) Weight *= CorrectionHist->Interpolate(GetQ2Box()->fQ2); } Measurement1D::FillHistograms(); } //******************************************************************** void ANL_CCQE_Evt_1DQ2_nu::ScaleEvents() { //******************************************************************** Measurement1D::ScaleEvents(); // Flux unfold our extra histogram if (applyQ2correction) { if (fMCHist_NoCorr->Integral()) { fMCHist_NoCorr->Scale(fDataHist->Integral() / fMCHist_NoCorr->Integral()); } } } diff --git a/src/ANL/ANL_CCQE_XSec_1DEnu_nu.cxx b/src/ANL/ANL_CCQE_XSec_1DEnu_nu.cxx index 563487c..aca2998 100644 --- a/src/ANL/ANL_CCQE_XSec_1DEnu_nu.cxx +++ b/src/ANL/ANL_CCQE_XSec_1DEnu_nu.cxx @@ -1,154 +1,152 @@ // Copyright 2016 L. Pickering, P Stowell, R. Terri, C. Wilkinson, C. Wret /******************************************************************************* * This file is part of NUISANCE. * * NUISANCE is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * NUISANCE is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with NUISANCE. If not, see . *******************************************************************************/ #include "ANL_CCQE_XSec_1DEnu_nu.h" //******************************************************************** ANL_CCQE_XSec_1DEnu_nu::ANL_CCQE_XSec_1DEnu_nu(nuiskey samplekey) { //******************************************************************** // Sample overview --------------------------------------------------- std::string descrip = "ANL CCQ2 XSec 1DEnu nu sample. \n" \ "Target: D2 \n" \ "Flux: \n" \ "Signal: \n"; // Setup common settings fSettings = LoadSampleSettings(samplekey); fSettings.SetDescription(descrip); fSettings.SetXTitle("E_{#nu} (GeV)"); fSettings.SetYTitle("#sigma(#E_{#nu}) (cm^{2}/neutron)"); fSettings.SetAllowedTypes("EVT/SHAPE/DIAG", "EVT/SHAPE/DIAG/Q2CORR/MASK"); fSettings.SetEnuRange(0.0, 6.0); fSettings.DefineAllowedTargets("D,H"); // plot information fSettings.SetTitle("ANL #nu_mu CCQE"); fSettings.DefineAllowedSpecies("numu"); // Hadronic Cut Info if (fSettings.Found("name", "PRL31")) { fSettings.SetDataInput( FitPar::GetDataBase() + "ANL/ANL_CCQE_Data_PRL31_844.root;ANL_1DEnu_Data" ); fSettings.SetEnuRange(0.0, 3.0); } else { fSettings.SetDataInput( FitPar::GetDataBase() + "ANL/ANL_CCQE_Data_PRD16_3103.root;ANL_1DEnu_fluxtuned_Data" ); } // is Q2 Correction applied applyQ2correction = fSettings.Found("type", "Q2CORR"); - if (applyQ2correction) { - fSettings.SetS("q2correction_file", FitPar::GetDataBase() + "/ANL/ANL_CCQE_Data_PRL31_844.root"); - fSettings.SetS("q2correction_hist", "ANL_XSec_1DQ2_Correction"); - } + fSettings.SetS("q2correction_file", FitPar::GetDataBase() + "/ANL/ANL_CCQE_Data_PRL31_844.root"); + fSettings.SetS("q2correction_hist", "ANL_1DQ2_Correction"); FinaliseSampleSettings(); // Scaling Setup --------------------------------------------------- // ScaleFactor for shape fScaleFactor = (GetEventHistogram()->Integral("width") * 2.0 / 1.0 * 1E-38 / (fNEvents + 0.)); // Plot Setup ------------------------------------------------------- SetDataFromRootFile( fSettings.GetDataInput() ); SetCovarFromDiagonal(); // Correction Histogram if (applyQ2correction) { // Correction Hist CorrectionHist = PlotUtils::GetTH1DFromFile( fSettings.GetS("q2correction_file"), fSettings.GetS("q2correction_hist") ); SetAutoProcessTH1(CorrectionHist, kCMD_Write); // Make uncorrected MC hist fMCHist_NoCorr = (TH1D*) fDataHist->Clone(); fMCHist_NoCorr->Reset(); fMCHist_NoCorr->SetNameTitle( (fName + "_NOCORR").c_str(), (fName + "_NOCORR").c_str()); SetAutoProcessTH1(fMCHist_NoCorr); } // Final setup --------------------------------------------------- FinaliseMeasurement(); } //******************************************************************** void ANL_CCQE_XSec_1DEnu_nu::FillEventVariables(FitEvent *event) { //******************************************************************** if (event->NumFSParticle(13) == 0) return; // Get Q2 double q2qe = 0.0; TLorentzVector Pnu = event->GetNeutrinoIn()->fP; TLorentzVector Pmu = event->GetHMFSParticle(13)->fP; ThetaMu = Pnu.Vect().Angle(Pmu.Vect()); q2qe = FitUtils::Q2QErec(Pmu, cos(ThetaMu), 0., true); Enu_rec = FitUtils::EnuQErec(Pmu, cos(ThetaMu), 0., true); fXVar = Enu_rec; GetQ2Box()->fQ2 = q2qe; return; }; //******************************************************************** bool ANL_CCQE_XSec_1DEnu_nu::isSignal(FitEvent *event) { //******************************************************************** return SignalDef::isCCQE(event, 14, EnuMin, EnuMax); }; //******************************************************************** void ANL_CCQE_XSec_1DEnu_nu::FillHistograms() { //******************************************************************** if (applyQ2correction) { fMCHist_NoCorr->Fill( GetQ2Box()->fQ2, Weight); if (GetQ2Box()->fQ2 < CorrectionHist->GetXaxis()->GetXmax() && GetQ2Box()->fQ2 > CorrectionHist->GetXaxis()->GetXmin()) Weight *= CorrectionHist->Interpolate(GetQ2Box()->fQ2); } Measurement1D::FillHistograms(); } //******************************************************************** void ANL_CCQE_XSec_1DEnu_nu::ScaleEvents() { //******************************************************************** Measurement1D::ScaleEvents(); // Flux unfold our extra histogram if (applyQ2correction) { PlotUtils::FluxUnfoldedScaling(fMCHist_NoCorr, GetFluxHistogram(), GetEventHistogram(), fScaleFactor, fNEvents); } } diff --git a/src/BNL/BNL_CCQE_Evt_1DQ2_nu.cxx b/src/BNL/BNL_CCQE_Evt_1DQ2_nu.cxx index 9dfb637..6e91ddb 100755 --- a/src/BNL/BNL_CCQE_Evt_1DQ2_nu.cxx +++ b/src/BNL/BNL_CCQE_Evt_1DQ2_nu.cxx @@ -1,148 +1,148 @@ // Copyright 2016 L. Pickering, P Stowell, R. Terri, C. Wilkinson, C. Wret /******************************************************************************* * This file is part of NUISANCE. * * NUISANCE is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * NUISANCE is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with NUISANCE. If not, see . *******************************************************************************/ #include "BNL_CCQE_Evt_1DQ2_nu.h" //******************************************************************** BNL_CCQE_Evt_1DQ2_nu::BNL_CCQE_Evt_1DQ2_nu(nuiskey samplekey) { //******************************************************************** // Sample overview --------------------------------------------------- std::string descrip = "BNL_CCQE_Evt_1DQ2_nu sample. \n" \ "Target: D2 \n" \ "Flux: \n" \ "Signal: \n"; // Setup common settings fSettings = LoadSampleSettings(samplekey); fSettings.SetDescription(descrip); fSettings.SetXTitle("Q^{2}_{CCQE} (GeV^{2})"); fSettings.SetYTitle("Number of events"); fSettings.SetAllowedTypes("EVT/SHAPE/DIAG", "EVT/SHAPE/DIAG/Q2CORR/MASK"); fSettings.SetEnuRange(0.0, 6.0); fSettings.DefineAllowedTargets("D,H"); // plot information fSettings.SetTitle("BNL #nu_mu CCQE"); fSettings.DefineAllowedSpecies("numu"); fSettings.SetDataInput( FitPar::GetDataBase() + "BNL/BNL_Data_PRD23_2499.root;BNL_1DQ2_Data"); // is Q2 Correction applied applyQ2correction = fSettings.Found("type", "Q2CORR"); if (applyQ2correction) { fSettings.SetS("q2correction_file", FitPar::GetDataBase() + "ANL/ANL_CCQE_Data_PRL31_844.root"); - fSettings.SetS("q2correction_hist", "ANL_XSec_1DQ2_Correction"); + fSettings.SetS("q2correction_hist", "ANL_1DQ2_Correction"); } FinaliseSampleSettings(); // Scaling Setup --------------------------------------------------- // ScaleFactor for shape fScaleFactor = 1.0; // Plot Setup ------------------------------------------------------- SetDataFromRootFile( fSettings.GetDataInput() ); SetPoissonErrors(); SetCovarFromDiagonal(); // Correction Histogram if (applyQ2correction) { // Correction Hist CorrectionHist = PlotUtils::GetTH1DFromFile( fSettings.GetS("q2correction_file"), fSettings.GetS("q2correction_hist") ); SetAutoProcessTH1(CorrectionHist, kCMD_Write); // Make uncorrected MC hist fMCHist_NoCorr = (TH1D*) fDataHist->Clone(); fMCHist_NoCorr->Reset(); fMCHist_NoCorr->SetNameTitle( (fName + "_NOCORR").c_str(), (fName + "_NOCORR").c_str()); SetAutoProcessTH1(fMCHist_NoCorr); } // Final setup --------------------------------------------------- FinaliseMeasurement(); } //******************************************************************** void BNL_CCQE_Evt_1DQ2_nu::FillEventVariables(FitEvent * event) { //******************************************************************** if (event->NumFSParticle(13) == 0) return; // Fill histogram with reconstructed Q2 Distribution fXVar = -999.9; TLorentzVector Pnu = event->GetNeutrinoIn()->fP; TLorentzVector Pmu = event->GetHMFSParticle(13)->fP; ThetaMu = Pnu.Vect().Angle(Pmu.Vect()); fXVar = FitUtils::Q2QErec(Pmu, cos(ThetaMu), 0., true); GetQ2Box()->fQ2 = fXVar; return; }; //******************************************************************** bool BNL_CCQE_Evt_1DQ2_nu::isSignal(FitEvent * event) { //******************************************************************** if (!SignalDef::isCCQE(event, 14, EnuMin, EnuMax)) return false; // Q2 cut if (GetQ2Box()->fQ2 <= 0) return false; return true; }; //******************************************************************** void BNL_CCQE_Evt_1DQ2_nu::FillHistograms() { //******************************************************************** if (applyQ2correction) { fMCHist_NoCorr->Fill( GetQ2Box()->fQ2, Weight); if (GetQ2Box()->fQ2 < CorrectionHist->GetXaxis()->GetXmax() && GetQ2Box()->fQ2 > CorrectionHist->GetXaxis()->GetXmin()) Weight *= CorrectionHist->Interpolate(GetQ2Box()->fQ2); } Measurement1D::FillHistograms(); } //******************************************************************** void BNL_CCQE_Evt_1DQ2_nu::ScaleEvents() { //******************************************************************** Measurement1D::ScaleEvents(); // Flux unfold our extra histogram if (applyQ2correction) { if (fMCHist_NoCorr->Integral()) { fMCHist_NoCorr->Scale(fDataHist->Integral() / fMCHist_NoCorr->Integral()); } } } diff --git a/src/BNL/BNL_CCQE_XSec_1DEnu_nu.cxx b/src/BNL/BNL_CCQE_XSec_1DEnu_nu.cxx index f337515..fad5e99 100644 --- a/src/BNL/BNL_CCQE_XSec_1DEnu_nu.cxx +++ b/src/BNL/BNL_CCQE_XSec_1DEnu_nu.cxx @@ -1,147 +1,147 @@ // Copyright 2016 L. Pickering, P Stowell, R. Terri, C. Wilkinson, C. Wret /******************************************************************************* * This file is part of NUISANCE. * * NUISANCE is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * NUISANCE is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with NUISANCE. If not, see . *******************************************************************************/ #include "BNL_CCQE_XSec_1DEnu_nu.h" //******************************************************************** BNL_CCQE_XSec_1DEnu_nu::BNL_CCQE_XSec_1DEnu_nu(nuiskey samplekey) { //******************************************************************** // Sample overview --------------------------------------------------- std::string descrip = "BNL CCQ2 XSec 1DEnu nu sample. \n" \ "Target: D2 \n" \ "Flux: \n" \ "Signal: \n"; // Setup common settings fSettings = LoadSampleSettings(samplekey); fSettings.SetDescription(descrip); fSettings.SetXTitle("E_{#nu} (GeV)"); fSettings.SetYTitle("#sigma(#E_{#nu}) (cm^{2}/neutron)"); fSettings.SetAllowedTypes("EVT/SHAPE/DIAG", "EVT/SHAPE/DIAG/Q2CORR/MASK"); fSettings.SetEnuRange(0.0, 6.0); fSettings.DefineAllowedTargets("D,H"); // plot information fSettings.SetTitle("BNL #nu_mu CCQE"); fSettings.DefineAllowedSpecies("numu"); fSettings.SetDataInput( FitPar::GetDataBase() + "BNL/BNL_Data_PRD23_2499.root;BNL_1DEnu_Data"); // is Q2 Correction applied applyQ2correction = fSettings.Found("type", "Q2CORR"); if (applyQ2correction) { fSettings.SetS("q2correction_file", FitPar::GetDataBase() + "/ANL/ANL_CCQE_Data_PRL31_844.root"); - fSettings.SetS("q2correction_hist", "ANL_XSec_1DQ2_Correction"); + fSettings.SetS("q2correction_hist", "ANL_1DQ2_Correction"); } FinaliseSampleSettings(); // Scaling Setup --------------------------------------------------- // ScaleFactor for shape fScaleFactor = (GetEventHistogram()->Integral("width") * (2.0 / 1.0) * 1E-38 / (fNEvents + 0.)); // Plot Setup ------------------------------------------------------- SetDataFromRootFile( fSettings.GetDataInput() ); SetCovarFromDiagonal(); // Correction Histogram if (applyQ2correction) { // Correction Hist CorrectionHist = PlotUtils::GetTH1DFromFile( fSettings.GetS("q2correction_file"), fSettings.GetS("q2correction_hist") ); SetAutoProcessTH1(CorrectionHist, kCMD_Write); // Make uncorrected MC hist fMCHist_NoCorr = (TH1D*) fDataHist->Clone(); fMCHist_NoCorr->Reset(); fMCHist_NoCorr->SetNameTitle( (fName + "_NOCORR").c_str(), (fName + "_NOCORR").c_str()); SetAutoProcessTH1(fMCHist_NoCorr); } // Final setup --------------------------------------------------- FinaliseMeasurement(); } //******************************************************************** void BNL_CCQE_XSec_1DEnu_nu::FillEventVariables(FitEvent *event) { //******************************************************************** if (event->NumFSParticle(13) == 0) return; // Get Q2 double q2qe = 0.0; TLorentzVector Pnu = event->GetNeutrinoIn()->fP; TLorentzVector Pmu = event->GetHMFSParticle(13)->fP; ThetaMu = Pnu.Vect().Angle(Pmu.Vect()); q2qe = FitUtils::Q2QErec(Pmu, cos(ThetaMu), 0., true); Enu_rec = FitUtils::EnuQErec(Pmu, cos(ThetaMu), 0., true); fXVar = Enu_rec; GetQ2Box()->fQ2 = q2qe; return; }; //******************************************************************** bool BNL_CCQE_XSec_1DEnu_nu::isSignal(FitEvent *event) { //******************************************************************** return SignalDef::isCCQE(event, 14, EnuMin, EnuMax); }; //******************************************************************** void BNL_CCQE_XSec_1DEnu_nu::FillHistograms() { //******************************************************************** if (applyQ2correction) { fMCHist_NoCorr->Fill( GetQ2Box()->fQ2, Weight); if (GetQ2Box()->fQ2 < CorrectionHist->GetXaxis()->GetXmax() && GetQ2Box()->fQ2 > CorrectionHist->GetXaxis()->GetXmin()) Weight *= CorrectionHist->Interpolate(GetQ2Box()->fQ2); } Measurement1D::FillHistograms(); } //******************************************************************** void BNL_CCQE_XSec_1DEnu_nu::ScaleEvents() { //******************************************************************** Measurement1D::ScaleEvents(); // Flux unfold our extra histogram if (applyQ2correction) { PlotUtils::FluxUnfoldedScaling(fMCHist_NoCorr, GetFluxHistogram(), GetEventHistogram(), fScaleFactor, fNEvents); } } diff --git a/src/MINERvA/MINERvA_CCinc_XSec_2DEavq3_nu.cxx b/src/MINERvA/MINERvA_CCinc_XSec_2DEavq3_nu.cxx index 02710ca..fde3809 100755 --- a/src/MINERvA/MINERvA_CCinc_XSec_2DEavq3_nu.cxx +++ b/src/MINERvA/MINERvA_CCinc_XSec_2DEavq3_nu.cxx @@ -1,153 +1,153 @@ // Copyright 2016 L. Pickering, P Stowell, R. Terri, C. Wilkinson, C. Wret /******************************************************************************* * This file is part of NUISANCE. * * NUISANCE is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * NUISANCE is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with NUISANCE. If not, see . *******************************************************************************/ #include "MINERvA_SignalDef.h" #include "MINERvA_CCinc_XSec_2DEavq3_nu.h" //******************************************************************** MINERvA_CCinc_XSec_2DEavq3_nu::MINERvA_CCinc_XSec_2DEavq3_nu(nuiskey samplekey) { //******************************************************************** // Sample overview --------------------------------------------------- std::string descrip = "MINERvA_CCinc_XSec_2DEavq3_nu sample. \n" \ "Target: CH \n" \ "Flux: MINERvA Medium Energy FHC numu \n" \ "Signal: CC-inclusive with theta < 20deg \n"; // Setup common settings fSettings = LoadSampleSettings(samplekey); fSettings.SetDescription(descrip); fSettings.SetXTitle("q_{3} (GeV)"); fSettings.SetYTitle("E_{avail} (GeV)"); fSettings.SetZTitle("d^{2}#sigma/dq_{3}dE_{avail} (cm^{2}/GeV^{2})"); fSettings.SetAllowedTypes("FIX,FREE,SHAPE/FULL,DIAG/MASK", "FIX/FULL"); fSettings.SetEnuRange(2.0, 6.0); fSettings.DefineAllowedTargets("C,H"); // CCQELike plot information fSettings.SetTitle("MINERvA_CCinc_XSec_2DEavq3_nu"); fSettings.SetDataInput( FitPar::GetDataBase() + "/MINERvA/CCEavq3/data_2D.txt" ); fSettings.SetCovarInput( FitPar::GetDataBase() + "/MINERvA/CCEavq3/covar_2D.txt" ); fSettings.SetMapInput( FitPar::GetDataBase() + "/MINERvA/CCEavq3/map_2D.txt" ); fSettings.DefineAllowedSpecies("numu"); hadroncut = FitPar::Config().GetParB("MINERvA_CCinc_XSec_2DEavq3_nu.hadron_cut"); useq3true = FitPar::Config().GetParB("MINERvA_CCinc_XSec_2DEavq3_nu.useq3true"); splitMEC_PN_NN = FitPar::Config().GetParB("Modes.split_PN_NN"); FinaliseSampleSettings(); // Scaling Setup --------------------------------------------------- // ScaleFactor automatically setup for DiffXSec/cm2/Nucleon fScaleFactor = (GetEventHistogram()->Integral("width") * 1E-42 / (fNEvents + 0.)) / this->TotalIntegratedFlux(); // Plot Setup ------------------------------------------------------- Double_t binx[7] = {0.0, 0.2, 0.3, 0.4, 0.5, 0.6, 0.8}; Double_t biny[17] = {0.0, 0.02, 0.04, 0.06, 0.08, 0.10, 0.12, 0.14, 0.16, 0.20, 0.25, 0.30, 0.35, 0.40, 0.50, 0.60, 0.80}; CreateDataHistogram(7, binx, 17, biny); SetDataValuesFromTextFile( fSettings.GetDataInput() ); ScaleData(1E-42); SetMapValuesFromText( fSettings.GetMapInput() ); - SetCholDecompFromTextFile( fSettings.GetCovarInput() ); + SetCholDecompFromTextFile( fSettings.GetCovarInput(), 67); ScaleCovar(1E-16); StatUtils::SetDataErrorFromCov(fDataHist, fFullCovar, fMapHist, 1E-38); // Final setup --------------------------------------------------- FinaliseMeasurement(); }; //******************************************************************** void MINERvA_CCinc_XSec_2DEavq3_nu::FillEventVariables(FitEvent *event) { //******************************************************************** // Seperate MEC if (splitMEC_PN_NN) { int npr = 0; int nne = 0; for (UInt_t j = 0; j < event->Npart(); j++) { if ((event->PartInfo(j))->fIsAlive) continue; if (event->PartInfo(j)->fPID == 2212) npr++; else if (event->PartInfo(j)->fPID == 2112) nne++; } if (event->Mode == 2 and npr == 1 and nne == 1) { event->Mode = 2; Mode = 2; } else if (event->Mode == 2 and npr == 0 and nne == 2) { event->Mode = 3; Mode = 3; } } // Set Defaults double Eav = -999.9; double q3 = -999.9; // If muon found get kinematics FitParticle* muon = event->GetHMFSParticle(13); FitParticle* neutrino = event->GetNeutrinoIn(); if (muon && neutrino) { // Set Q from Muon TLorentzVector q = neutrino->fP - muon->fP; double q0 = (q.E()) / 1.E3; //double q3_true = (q.Vect().Mag())/1.E3; double thmu = muon->fP.Vect().Angle(neutrino->fP.Vect()); double pmu = muon->fP.Vect().Mag() / 1.E3; double emu = muon->fP.E() / 1.E3; double mmu = muon->fP.Mag() / 1.E3; // Get Enu Rec double enu_rec = emu + q0; // Set Q2 QE double q2qe = 2 * enu_rec * (emu - pmu * cos(thmu)) - mmu * mmu; // Calc Q3 from Q2QE and EnuTree q3 = sqrt(q2qe + q0 * q0); // Get Eav too Eav = FitUtils::GetErecoil_MINERvA_LowRecoil(event) / 1.E3; } // Set Hist Variables fXVar = q3; fYVar = Eav; return; } //******************************************************************** bool MINERvA_CCinc_XSec_2DEavq3_nu::isSignal(FitEvent *event) { //******************************************************************** return SignalDef::isCCincLowRecoil_MINERvA(event, EnuMin, EnuMax); } diff --git a/src/Reweight/NUISANCEWeightCalcs.cxx b/src/Reweight/NUISANCEWeightCalcs.cxx index 1f3ddf2..4dac738 100644 --- a/src/Reweight/NUISANCEWeightCalcs.cxx +++ b/src/Reweight/NUISANCEWeightCalcs.cxx @@ -1,329 +1,349 @@ #include "NUISANCEWeightCalcs.h" ModeNormCalc::ModeNormCalc(){ fNormRES = 1.0; } double ModeNormCalc::CalcWeight(BaseFitEvt* evt) { FitEvent* fevt = static_cast(evt); int mode = abs(fevt->Mode); double w = 1.0; if (mode == 11 or mode == 12 or mode == 13){ w *= fNormRES; } return w; } void ModeNormCalc::SetDialValue(std::string name, double val) { SetDialValue(Reweight::ConvDial(name, kCUSTOM), val); } void ModeNormCalc::SetDialValue(int rwenum, double val) { int curenum = rwenum % 1000; // Check Handled if (!IsHandled(curenum)) return; if (curenum == kModeNorm_NormRES) fNormRES = val; } bool ModeNormCalc::IsHandled(int rwenum) { int curenum = rwenum % 1000; switch (curenum) { case kModeNorm_NormRES: return true; default: return false; } } GaussianModeCorr::GaussianModeCorr() { // Init fApply_CCQE = false; fGausVal_CCQE[kPosNorm] = 0.0; fGausVal_CCQE[kPosTilt] = 0.0; fGausVal_CCQE[kPosPq0] = 1.0; fGausVal_CCQE[kPosWq0] = 1.0; fGausVal_CCQE[kPosPq3] = 1.0; fGausVal_CCQE[kPosWq3] = 1.0; fApply_2p2h = false; fGausVal_2p2h[kPosNorm] = 0.0; fGausVal_2p2h[kPosTilt] = 0.0; fGausVal_2p2h[kPosPq0] = 1.0; fGausVal_2p2h[kPosWq0] = 1.0; fGausVal_2p2h[kPosPq3] = 1.0; fGausVal_2p2h[kPosWq3] = 1.0; fApply_2p2h_PPandNN = false; fGausVal_2p2h_PPandNN[kPosNorm] = 0.0; fGausVal_2p2h_PPandNN[kPosTilt] = 0.0; fGausVal_2p2h_PPandNN[kPosPq0] = 1.0; fGausVal_2p2h_PPandNN[kPosWq0] = 1.0; fGausVal_2p2h_PPandNN[kPosPq3] = 1.0; fGausVal_2p2h_PPandNN[kPosWq3] = 1.0; fApply_2p2h_NP = false; fGausVal_2p2h_NP[kPosNorm] = 0.0; fGausVal_2p2h_NP[kPosTilt] = 0.0; fGausVal_2p2h_NP[kPosPq0] = 1.0; fGausVal_2p2h_NP[kPosWq0] = 1.0; fGausVal_2p2h_NP[kPosPq3] = 1.0; fGausVal_2p2h_NP[kPosWq3] = 1.0; fApply_CC1pi = false; fGausVal_CC1pi[kPosNorm] = 0.0; fGausVal_CC1pi[kPosTilt] = 0.0; fGausVal_CC1pi[kPosPq0] = 1.0; fGausVal_CC1pi[kPosWq0] = 1.0; fGausVal_CC1pi[kPosPq3] = 1.0; fGausVal_CC1pi[kPosWq3] = 1.0; + fAllowSuppression = false; + fDebugStatements = FitPar::Config().GetParB("GaussianModeCorr_DEBUG"); } double GaussianModeCorr::CalcWeight(BaseFitEvt* evt) { FitEvent* fevt = static_cast(evt); double rw_weight = 1.0; // Get Neutrino if (!fevt->Npart()){ THROW("NO particles found in stack!"); } FitParticle* pnu = fevt->PartInfo(0); if (!pnu){ THROW("NO Starting particle found in stack!"); } int pdgnu = pnu->fPID; FitParticle* plep = fevt->GetHMFSParticle(abs(pdgnu) - 1); if (!plep) return 1.0; TLorentzVector q = pnu->fP - plep->fP; // Extra q0,q3 double q0 = fabs(q.E()) / 1.E3; double q3 = fabs(q.Vect().Mag()) / 1.E3; int initialstate = -1; // Undef if (abs(fevt->Mode) == 2) { int npr = 0; int nne = 0; for (UInt_t j = 0; j < fevt->Npart(); j++) { if ((fevt->PartInfo(j))->fIsAlive) continue; if (fevt->PartInfo(j)->fPID == 2212) npr++; else if (fevt->PartInfo(j)->fPID == 2112) nne++; } // std::cout << "PN State = " << npr << " " << nne << std::endl; if (fevt->Mode == 2 and npr == 1 and nne == 1) { initialstate = 2; } else if (fevt->Mode == 2 and ((npr == 0 and nne == 2) or (npr == 2 and nne == 0))) { initialstate = 1; } } // std::cout << "Got q0 q3 = " << q0 << " " << q3 << std::endl; // Apply weighting if (fApply_CCQE and abs(fevt->Mode) == 1) { if (fDebugStatements) std::cout << "Getting CCQE Weight" << std::endl; double g = GetGausWeight(q0, q3, fGausVal_CCQE); if (g < 1.0) g = 1.0; rw_weight *= g; } if (fApply_2p2h and abs(fevt->Mode) == 2) { if (fDebugStatements) std::cout << "Getting 2p2h Weight" << std::endl; rw_weight *= GetGausWeight(q0, q3, fGausVal_2p2h); } if (fApply_2p2h_PPandNN and abs(fevt->Mode) == 2 and initialstate == 1) { if (fDebugStatements) std::cout << "Getting 2p2h PPandNN Weight" << std::endl; rw_weight *= GetGausWeight(q0, q3, fGausVal_2p2h_PPandNN); } if (fApply_2p2h_NP and abs(fevt->Mode) == 2 and initialstate == 2) { if (fDebugStatements) std::cout << "Getting 2p2h NP Weight" << std::endl; rw_weight *= GetGausWeight(q0, q3, fGausVal_2p2h_NP); } if (fApply_CC1pi and abs(fevt->Mode) >= 11 and abs(fevt->Mode) <= 13) { if (fDebugStatements) std::cout << "Getting CC1pi Weight" << std::endl; rw_weight *= GetGausWeight(q0, q3, fGausVal_CC1pi); } + + // if (fDebugStatements) std::cout << "Returning Weight " << rw_weight << std::endl; return rw_weight; } double GaussianModeCorr::GetGausWeight(double q0, double q3, double vals[]) { // // CCQE Without Suppression // double Norm = 4.82788679036; // double Tilt = 2.3501416116; // double Pq0 = 0.363964889702; // double Wq0 = 0.133976806938; // double Pq3 = 0.431769740224; // double Wq3 = 0.207666663434; // // Also add for CCQE at the end // return (w > 1.0) ? w : 1.0; // // 2p2h with suppression // double Norm = 15.967; // double Tilt = -0.455655; // double Pq0 = 0.214598; // double Wq0 = 0.0291061; // double Pq3 = 0.480194; // double Wq3 = 0.134588; double Norm = vals[kPosNorm]; double Tilt = vals[kPosTilt]; double Pq0 = vals[kPosPq0]; double Wq0 = vals[kPosWq0]; double Pq3 = vals[kPosPq3]; double Wq3 = vals[kPosWq3]; double a = cos(Tilt) * cos(Tilt) / (2 * Wq0 * Wq0); a += sin(Tilt) * sin(Tilt) / (2 * Wq3 * Wq3); double b = - sin(2 * Tilt) / (4 * Wq0 * Wq0); b += sin(2 * Tilt) / (4 * Wq3 * Wq3); double c = sin(Tilt) * sin(Tilt) / (2 * Wq0 * Wq0); c += cos(Tilt) * cos(Tilt) / (2 * Wq3 * Wq3); double w = Norm; w *= exp(-a * (q0 - Pq0) * (q0 - Pq0)); w *= exp(+2.0 * b * (q0 - Pq0) * (q3 - Pq3)); w *= exp(-c * (q3 - Pq3) * (q3 - Pq3)); if (fDebugStatements) { std::cout << "Applied Tilt " << Tilt << " " << cos(Tilt) << " " << sin(Tilt) << std::endl; std::cout << "abc = " << a << " " << b << " " << c << std::endl; std::cout << "Returning " << Norm << " " << Pq0 << " " << Wq0 << " " << Pq3 << " " << Wq3 << " " << w << std::endl; } + // if (w != w || isnan(w)){ + // w = 0.0; + // } + + if (w < 1.0){ + //std::cout << "REMOVING SUPRPESSION" << std::endl; + w = 1.0; + } //else { + // std::cout << "W = " << w << std::endl; + // } + return w; } void GaussianModeCorr::SetDialValue(std::string name, double val) { SetDialValue(Reweight::ConvDial(name, kCUSTOM), val); } void GaussianModeCorr::SetDialValue(int rwenum, double val) { int curenum = rwenum % 1000; // Check Handled if (!IsHandled(curenum)) return; // CCQE Setting for (int i = kGaussianCorr_CCQE_norm; i <= kGaussianCorr_CCQE_Wq3; i++) { if (i == curenum) { int index = i - kGaussianCorr_CCQE_norm; fGausVal_CCQE[index] = val; fApply_CCQE = true; } } // 2p2h Setting for (int i = kGaussianCorr_2p2h_norm; i <= kGaussianCorr_2p2h_Wq3; i++) { if (i == curenum) { int index = i - kGaussianCorr_2p2h_norm; fGausVal_2p2h[index] = val; fApply_2p2h = true; } } // 2p2h_PPandNN Setting for (int i = kGaussianCorr_2p2h_PPandNN_norm; i <= kGaussianCorr_2p2h_PPandNN_Wq3; i++) { if (i == curenum) { int index = i - kGaussianCorr_2p2h_PPandNN_norm; fGausVal_2p2h_PPandNN[index] = val; fApply_2p2h_PPandNN = true; } } // 2p2h_NP Setting for (int i = kGaussianCorr_2p2h_NP_norm; i <= kGaussianCorr_2p2h_NP_Wq3; i++) { if (i == curenum) { int index = i - kGaussianCorr_2p2h_NP_norm; fGausVal_2p2h_NP[index] = val; fApply_2p2h_NP = true; } } // CC1pi Setting for (int i = kGaussianCorr_CC1pi_norm; i <= kGaussianCorr_CC1pi_Wq3; i++) { if (i == curenum) { int index = i - kGaussianCorr_CC1pi_norm; fGausVal_CC1pi[index] = val; fApply_CC1pi = true; } } + if (curenum == kGaussianCorr_AllowSuppression){ + fAllowSuppression = (val > 0.5); + } + } bool GaussianModeCorr::IsHandled(int rwenum) { int curenum = rwenum % 1000; switch (curenum) { case kGaussianCorr_CCQE_norm: case kGaussianCorr_CCQE_tilt: case kGaussianCorr_CCQE_Pq0: case kGaussianCorr_CCQE_Wq0: case kGaussianCorr_CCQE_Pq3: case kGaussianCorr_CCQE_Wq3: case kGaussianCorr_2p2h_norm: case kGaussianCorr_2p2h_tilt: case kGaussianCorr_2p2h_Pq0: case kGaussianCorr_2p2h_Wq0: case kGaussianCorr_2p2h_Pq3: case kGaussianCorr_2p2h_Wq3: case kGaussianCorr_2p2h_PPandNN_norm: case kGaussianCorr_2p2h_PPandNN_tilt: case kGaussianCorr_2p2h_PPandNN_Pq0: case kGaussianCorr_2p2h_PPandNN_Wq0: case kGaussianCorr_2p2h_PPandNN_Pq3: case kGaussianCorr_2p2h_PPandNN_Wq3: case kGaussianCorr_2p2h_NP_norm: case kGaussianCorr_2p2h_NP_tilt: case kGaussianCorr_2p2h_NP_Pq0: case kGaussianCorr_2p2h_NP_Wq0: case kGaussianCorr_2p2h_NP_Pq3: case kGaussianCorr_2p2h_NP_Wq3: case kGaussianCorr_CC1pi_norm: case kGaussianCorr_CC1pi_tilt: case kGaussianCorr_CC1pi_Pq0: case kGaussianCorr_CC1pi_Wq0: case kGaussianCorr_CC1pi_Pq3: case kGaussianCorr_CC1pi_Wq3: + case kGaussianCorr_AllowSuppression: return true; default: return false; } } diff --git a/src/Routines/SystematicRoutines.cxx b/src/Routines/SystematicRoutines.cxx index dd13fda..8e17091 100755 --- a/src/Routines/SystematicRoutines.cxx +++ b/src/Routines/SystematicRoutines.cxx @@ -1,1206 +1,1457 @@ // Copyright 2016 L. Pickering, P Stowell, R. Terri, C. Wilkinson, C. Wret /******************************************************************************* * This file is part of NUISANCE. * * NUISANCE is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * NUISANCE is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with NUISANCE. If not, see . *******************************************************************************/ #include "SystematicRoutines.h" void SystematicRoutines::Init(){ fInputFile = ""; fInputRootFile = NULL; fOutputFile = ""; fOutputRootFile = NULL; fCovar = fCovarFree = NULL; fCorrel = fCorrelFree = NULL; fDecomp = fDecompFree = NULL; fStrategy = "ErrorBands"; fRoutines.clear(); fRoutines.push_back("ErrorBands"); fCardFile = ""; fFakeDataInput = ""; fSampleFCN = NULL; fAllowedRoutines = ("ErrorBands,PlotLimits"); }; SystematicRoutines::~SystematicRoutines(){ }; SystematicRoutines::SystematicRoutines(int argc, char* argv[]){ // Initialise Defaults Init(); nuisconfig configuration = Config::Get(); // Default containers std::string cardfile = ""; std::string maxevents = "-1"; int errorcount = 0; int verbocount = 0; std::vector xmlcmds; std::vector configargs; fNThrows = 250; fStartThrows = 0; fThrowString = ""; // Make easier to handle arguments. std::vector args = GeneralUtils::LoadCharToVectStr(argc, argv); ParserUtils::ParseArgument(args, "-c", fCardFile, true); ParserUtils::ParseArgument(args, "-o", fOutputFile, false, false); ParserUtils::ParseArgument(args, "-n", maxevents, false, false); ParserUtils::ParseArgument(args, "-f", fStrategy, false, false); ParserUtils::ParseArgument(args, "-d", fFakeDataInput, false, false); ParserUtils::ParseArgument(args, "-s", fStartThrows, false, false); ParserUtils::ParseArgument(args, "-t", fNThrows, false, false); ParserUtils::ParseArgument(args, "-p", fThrowString, false, false); ParserUtils::ParseArgument(args, "-i", xmlcmds); ParserUtils::ParseArgument(args, "-q", configargs); ParserUtils::ParseCounter(args, "e", errorcount); ParserUtils::ParseCounter(args, "v", verbocount); ParserUtils::CheckBadArguments(args); // Add extra defaults if none given if (fCardFile.empty() and xmlcmds.empty()) { ERR(FTL) << "No input supplied!" << std::endl; throw; } if (fOutputFile.empty() and !fCardFile.empty()) { fOutputFile = fCardFile + ".root"; ERR(WRN) << "No output supplied so saving it to: " << fOutputFile << std::endl; } else if (fOutputFile.empty()) { ERR(FTL) << "No output file or cardfile supplied!" << std::endl; throw; } // Configuration Setup ============================= // Check no comp key is available if (Config::Get().GetNodes("nuiscomp").empty()) { fCompKey = Config::Get().CreateNode("nuiscomp"); } else { fCompKey = Config::Get().GetNodes("nuiscomp")[0]; } if (!fCardFile.empty()) fCompKey.Set("cardfile", fCardFile); if (!fOutputFile.empty()) fCompKey.Set("outputfile", fOutputFile); if (!fStrategy.empty()) fCompKey.Set("strategy", fStrategy); // Load XML Cardfile configuration.LoadSettings( fCompKey.GetS("cardfile"), ""); // Add Config Args for (size_t i = 0; i < configargs.size(); i++) { configuration.OverrideConfig(configargs[i]); } if (maxevents.compare("-1")){ configuration.OverrideConfig("MAXEVENTS=" + maxevents); } // Finish configuration XML configuration.FinaliseSettings(fCompKey.GetS("outputfile") + ".xml"); // Add Error Verbo Lines verbocount += Config::GetParI("VERBOSITY"); errorcount += Config::GetParI("ERROR"); std::cout << "[ NUISANCE ]: Setting VERBOSITY=" << verbocount << std::endl; std::cout << "[ NUISANCE ]: Setting ERROR=" << errorcount << std::endl; SETVERBOSITY(verbocount); // Proper Setup if (fStrategy.find("ErrorBands") != std::string::npos || fStrategy.find("MergeErrors") != std::string::npos){ fOutputRootFile = new TFile(fCompKey.GetS("outputfile").c_str(), "RECREATE"); } // fOutputRootFile = new TFile(fCompKey.GetS("outputfile").c_str(), "RECREATE"); SetupSystematicsFromXML(); SetupCovariance(); SetupRWEngine(); SetupFCN(); GetCovarFromFCN(); // Run(); return; }; void SystematicRoutines::SetupSystematicsFromXML(){ LOG(FIT) << "Setting up nuismin" << std::endl; // Setup Parameters ------------------------------------------ std::vector parkeys = Config::QueryKeys("parameter"); if (!parkeys.empty()) { LOG(FIT) << "Number of parameters : " << parkeys.size() << std::endl; } for (size_t i = 0; i < parkeys.size(); i++) { nuiskey key = parkeys.at(i); // Check for type,name,nom if (!key.Has("type")) { ERR(FTL) << "No type given for parameter " << i << std::endl; throw; } else if (!key.Has("name")) { ERR(FTL) << "No name given for parameter " << i << std::endl; throw; } else if (!key.Has("nominal")) { ERR(FTL) << "No nominal given for parameter " << i << std::endl; throw; } // Get Inputs std::string partype = key.GetS("type"); std::string parname = key.GetS("name"); double parnom = key.GetD("nominal"); double parlow = parnom - 1; double parhigh = parnom + 1; double parstep = 1; // Override if state not given if (!key.Has("state")){ key.SetS("state","FIX"); } std::string parstate = key.GetS("state"); // Extra limits if (key.Has("low")) { parlow = key.GetD("low"); parhigh = key.GetD("high"); parstep = key.GetD("step"); LOG(FIT) << "Read " << partype << " : " << parname << " = " << parnom << " : " << parlow << " < p < " << parhigh << " : " << parstate << std::endl; } else { LOG(FIT) << "Read " << partype << " : " << parname << " = " << parnom << " : " << parstate << std::endl; } // Run Parameter Conversion if needed if (parstate.find("ABS") != std::string::npos) { parnom = FitBase::RWAbsToSigma( partype, parname, parnom ); parlow = FitBase::RWAbsToSigma( partype, parname, parlow ); parhigh = FitBase::RWAbsToSigma( partype, parname, parhigh ); parstep = FitBase::RWAbsToSigma( partype, parname, parstep ); } else if (parstate.find("FRAC") != std::string::npos) { parnom = FitBase::RWFracToSigma( partype, parname, parnom ); parlow = FitBase::RWFracToSigma( partype, parname, parlow ); parhigh = FitBase::RWFracToSigma( partype, parname, parhigh ); parstep = FitBase::RWFracToSigma( partype, parname, parstep ); } // Push into vectors fParams.push_back(parname); fTypeVals[parname] = FitBase::ConvDialType(partype);; fStartVals[parname] = parnom; fCurVals[parname] = parnom; fErrorVals[parname] = 0.0; fStateVals[parname] = parstate; bool fixstate = parstate.find("FIX") != std::string::npos; fFixVals[parname] = fixstate; fStartFixVals[parname] = fFixVals[parname]; fMinVals[parname] = parlow; fMaxVals[parname] = parhigh; fStepVals[parname] = parstep; } // Setup Samples ---------------------------------------------- std::vector samplekeys = Config::QueryKeys("sample"); if (!samplekeys.empty()) { LOG(FIT) << "Number of samples : " << samplekeys.size() << std::endl; } for (size_t i = 0; i < samplekeys.size(); i++) { nuiskey key = samplekeys.at(i); // Get Sample Options std::string samplename = key.GetS("name"); std::string samplefile = key.GetS("input"); std::string sampletype = key.Has("type") ? key.GetS("type") : "DEFAULT"; double samplenorm = key.Has("norm") ? key.GetD("norm") : 1.0; // Print out LOG(FIT) << "Read sample info " << i << " : " << samplename << std::endl << "\t\t input -> " << samplefile << std::endl << "\t\t state -> " << sampletype << std::endl << "\t\t norm -> " << samplenorm << std::endl; // If FREE add to parameters otherwise continue if (sampletype.find("FREE") == std::string::npos) { continue; } // Form norm dial from samplename + sampletype + "_norm"; std::string normname = samplename + "_norm"; // Check normname not already present if (fTypeVals.find(normname) != fTypeVals.end()) { continue; } // Add new norm dial to list if its passed above checks fParams.push_back(normname); fTypeVals[normname] = kNORM; fStateVals[normname] = sampletype; fCurVals[normname] = samplenorm; fErrorVals[normname] = 0.0; fMinVals[normname] = 0.1; fMaxVals[normname] = 10.0; fStepVals[normname] = 0.5; bool state = sampletype.find("FREE") == std::string::npos; fFixVals[normname] = state; fStartFixVals[normname] = state; } // Setup Fake Parameters ----------------------------- std::vector fakekeys = Config::QueryKeys("fakeparameter"); if (!fakekeys.empty()) { LOG(FIT) << "Number of fake parameters : " << fakekeys.size() << std::endl; } for (size_t i = 0; i < fakekeys.size(); i++) { nuiskey key = fakekeys.at(i); // Check for type,name,nom if (!key.Has("name")) { ERR(FTL) << "No name given for fakeparameter " << i << std::endl; throw; } else if (!key.Has("nom")) { ERR(FTL) << "No nominal given for fakeparameter " << i << std::endl; throw; } // Get Inputs std::string parname = key.GetS("name"); double parnom = key.GetD("nom"); // Push into vectors fFakeVals[parname] = parnom; } } /* Setup Functions */ //************************************* void SystematicRoutines::SetupRWEngine(){ //************************************* for (UInt_t i = 0; i < fParams.size(); i++){ std::string name = fParams[i]; FitBase::GetRW() -> IncludeDial(name, fTypeVals.at(name) ); } UpdateRWEngine(fStartVals); return; } //************************************* void SystematicRoutines::SetupFCN(){ //************************************* LOG(FIT)<<"Making the jointFCN"<Reconfigure(); fSampleFCN->ReconfigureAllEvents(); fSampleFCN->SetFakeData("MC"); UpdateRWEngine(fCurVals); LOG(FIT)<<"Set all data to fake MC predictions."<SetFakeData(fFakeDataInput); } return; } //***************************************** void SystematicRoutines::GetCovarFromFCN(){ //***************************************** LOG(FIT) << "Loading ParamPull objects from FCN to build covar" << std::endl; // Make helperstring std::ostringstream helperstr; // Keep track of what is being thrown std::map dialthrowhandle; // Get Covariance Objects from FCN std::list inputpulls = fSampleFCN->GetPullList(); for (PullListConstIter iter = inputpulls.begin(); iter != inputpulls.end(); iter++){ ParamPull* pull = (*iter); if (pull->GetType().find("THROW")){ fInputThrows.push_back(pull); fInputCovar.push_back(pull->GetFullCovarMatrix()); fInputDials.push_back(pull->GetDataHist()); LOG(FIT) << "Read ParamPull: " << pull->GetName() << " " << pull->GetType() << std::endl; } TH1D dialhist = pull->GetDataHist(); TH1D minhist = pull->GetMinHist(); TH1D maxhist = pull->GetMaxHist(); TH1I typehist = pull->GetDialTypes(); for (int i = 0; i < dialhist.GetNbinsX(); i++){ std::string name = std::string(dialhist.GetXaxis()->GetBinLabel(i+1)); dialthrowhandle[name] = pull->GetName(); if (fCurVals.find(name) == fCurVals.end()){ // Add to Containers fParams.push_back(name); fCurVals[name] = dialhist.GetBinContent(i+1); fStartVals[name] = dialhist.GetBinContent(i+1); fMinVals[name] = minhist.GetBinContent(i+1); fMaxVals[name] = maxhist.GetBinContent(i+1); fStepVals[name] = 1.0; fFixVals[name] = false; fStartFixVals[name] = false; fTypeVals[name] = typehist.GetBinContent(i+1); fStateVals[name] = "FREE" + pull->GetType(); // Maker Helper helperstr << std::string(16, ' ' ) << FitBase::ConvDialType(fTypeVals[name]) << " " << name << " " << fMinVals[name] << " " << fMaxVals[name] << " " << fStepVals[name] << " " << fStateVals[name] << std::endl; } } } // Check if no throws given if (fInputThrows.empty()){ ERR(WRN) << "No covariances given to nuissyst" << std::endl; ERR(WRN) << "Pushing back an uncorrelated gaussian throw error for each free parameter using step size" << std::endl; for (UInt_t i = 0; i < fParams.size(); i++){ std::string syst = fParams[i]; if (fFixVals[syst]) continue; // Make Terms std::string name = syst + "_pull"; std::ostringstream pullterm; pullterm << "DIAL:" << syst << ";" << fStartVals[syst] << ";" << fStepVals[syst]; std::string type = "GAUSTHROW/NEUT"; // Push Back Pulls ParamPull* pull = new ParamPull( name, pullterm.str(), type ); fInputThrows.push_back(pull); fInputCovar.push_back(pull->GetFullCovarMatrix()); fInputDials.push_back(pull->GetDataHist()); // Print Whats added ERR(WRN) << "Added ParamPull : " << name << " " << pullterm.str() << " " << type << std::endl; // Add helper string for future fits helperstr << std::string(16, ' ' ) << "covar " << name << " " << pullterm.str() << " " << type << std::endl; // Keep Track of Throws dialthrowhandle[syst] = pull->GetName(); } } // Print Helper String if (!helperstr.str().empty()){ LOG(FIT) << "To remove these statements in future studies, add the lines below to your card:" << std::endl; // Can't use the logger properly because this can be multi-line. Use cout and added spaces to look better! std::cout << helperstr.str(); sleep(2); } // Print Throw State for (UInt_t i = 0; i < fParams.size(); i++){ std::string syst = fParams[i]; if (dialthrowhandle.find(syst) != dialthrowhandle.end()){ LOG(FIT) << "Dial " << i << ". " << setw(40) << syst << " = THROWING with " << dialthrowhandle[syst] << std::endl; } else { LOG(FIT) << "Dial " << i << ". " << setw(40) << syst << " = FIXED" << std::endl; } } // Pause anyway sleep(1); return; } /* Fitting Functions */ //************************************* void SystematicRoutines::UpdateRWEngine(std::map& updateVals){ //************************************* for (UInt_t i = 0; i < fParams.size(); i++){ std::string name = fParams[i]; if (updateVals.find(name) == updateVals.end()) continue; FitBase::GetRW()->SetDialValue(name,updateVals.at(name)); } FitBase::GetRW()->Reconfigure(); return; } //************************************* void SystematicRoutines::PrintState(){ //************************************* LOG(FIT)<<"------------"<GetLikelihood(); LOG(FIT) << std::left << std::setw(46) << "Likelihood for JointFCN: " << like << std::endl; LOG(FIT)<<"------------"<cd(); SaveCurrentState(); } //************************************* void SystematicRoutines::SaveCurrentState(std::string subdir){ //************************************* LOG(FIT)<<"Saving current full FCN predictions" <mkdir(subdir.c_str()); newdir->cd(); } FitBase::GetRW()->Reconfigure(); fSampleFCN->ReconfigureAllEvents(); fSampleFCN->Write(); // Change back to current DIR curdir->cd(); return; } //************************************* void SystematicRoutines::SaveNominal(){ //************************************* if (!fOutputRootFile) fOutputRootFile = new TFile(fCompKey.GetS("outputfile").c_str(), "RECREATE"); fOutputRootFile->cd(); LOG(FIT)<<"Saving Nominal Predictions (be cautious with this)" <Reconfigure(); SaveCurrentState("nominal"); }; //************************************* void SystematicRoutines::SavePrefit(){ //************************************* if (!fOutputRootFile) fOutputRootFile = new TFile(fCompKey.GetS("outputfile").c_str(), "RECREATE"); fOutputRootFile->cd(); LOG(FIT)<<"Saving Prefit Predictions"< 0){ fCovarFree = new TH2D("covariance_free", "covariance_free", NFREE,0,NFREE, NFREE,0,NFREE); } // Set Bin Labels int countall = 0; int countfree = 0; for (UInt_t i = 0; i < fParams.size(); i++){ fCovar->GetXaxis()->SetBinLabel(countall+1,fParams[i].c_str()); fCovar->GetYaxis()->SetBinLabel(countall+1,fParams[i].c_str()); countall++; if (!fFixVals[fParams[i]] and NFREE > 0){ fCovarFree->GetXaxis()->SetBinLabel(countfree+1,fParams[i].c_str()); fCovarFree->GetYaxis()->SetBinLabel(countfree+1,fParams[i].c_str()); countfree++; } } fCorrel = PlotUtils::GetCorrelationPlot(fCovar,"correlation"); fDecomp = PlotUtils::GetDecompPlot(fCovar,"decomposition"); if (NFREE > 0)fCorrelFree = PlotUtils::GetCorrelationPlot(fCovarFree, "correlation_free"); if (NFREE > 0)fDecompFree = PlotUtils::GetDecompPlot(fCovarFree,"decomposition_free"); return; }; //************************************* void SystematicRoutines::ThrowCovariance(bool uniformly){ //************************************* // Set fThrownVals to all values in currentVals for (UInt_t i = 0; i < fParams.size(); i++){ std::string name = fParams.at(i); fThrownVals[name] = fCurVals[name]; } for (PullListConstIter iter = fInputThrows.begin(); iter != fInputThrows.end(); iter++){ ParamPull* pull = *iter; pull->ThrowCovariance(); TH1D dialhist = pull->GetDataHist(); for (int i = 0; i < dialhist.GetNbinsX(); i++){ std::string name = std::string(dialhist.GetXaxis()->GetBinLabel(i+1)); if (fCurVals.find(name) != fCurVals.end()){ fThrownVals[name] = dialhist.GetBinContent(i+1); } } // Reset throw incase pulls are calculated. pull->ResetToy(); } return; }; //************************************* void SystematicRoutines::PlotLimits(){ //************************************* std::cout << "Plotting Limits" << std::endl; if (!fOutputRootFile) fOutputRootFile = new TFile(fCompKey.GetS("outputfile").c_str(), "RECREATE"); TDirectory* limfolder = (TDirectory*) fOutputRootFile->mkdir("Limits"); limfolder->cd(); // Set all parameters at their starting values for (UInt_t i = 0; i < fParams.size(); i++){ fCurVals[fParams[i]] = fStartVals[fParams[i]]; } TDirectory* nomfolder = (TDirectory*) limfolder->mkdir("nominal"); nomfolder->cd(); UpdateRWEngine(fCurVals); fSampleFCN->ReconfigureAllEvents(); fSampleFCN->Write(); limfolder->cd(); std::vector allfolders; // Loop through each parameter for (UInt_t i = 0; i < fParams.size(); i++){ std::string syst = fParams[i]; std::cout << "Starting Param " << syst << std::endl; if (fFixVals[syst]) continue; // Loop Downwards while (fCurVals[syst] > fMinVals[syst]){ fCurVals[syst] = fCurVals[syst] - fStepVals[syst]; // Check Limit if (fCurVals[syst] < fMinVals[syst]) fCurVals[syst] = fMinVals[syst]; // Check folder exists std::string curvalstring = std::string( Form( (syst + "_%f").c_str(), fCurVals[syst] ) ); if (std::find(allfolders.begin(), allfolders.end(), curvalstring) != allfolders.end()) break; // Make new folder for variation TDirectory* minfolder = (TDirectory*) limfolder->mkdir(Form( (syst + "_%f").c_str(), fCurVals[syst] ) ); minfolder->cd(); allfolders.push_back(curvalstring); // Update Iterations double *vals = FitUtils::GetArrayFromMap( fParams, fCurVals ); fSampleFCN->DoEval( vals ); delete vals; // Save to folder fSampleFCN->Write(); } // Reset before next loop fCurVals[syst] = fStartVals[syst]; // Loop Upwards now while (fCurVals[syst] < fMaxVals[syst]){ fCurVals[syst] = fCurVals[syst] + fStepVals[syst]; // Check Limit if (fCurVals[syst] > fMaxVals[syst]) fCurVals[syst] = fMaxVals[syst]; // Check folder exists std::string curvalstring = std::string( Form( (syst + "_%f").c_str(), fCurVals[syst] ) ); if (std::find(allfolders.begin(), allfolders.end(), curvalstring) != allfolders.end()) break; // Make new folder TDirectory* maxfolder = (TDirectory*) limfolder->mkdir(Form( (syst + "_%f").c_str(), fCurVals[syst] ) ); maxfolder->cd(); allfolders.push_back(curvalstring); // Update Iterations double *vals = FitUtils::GetArrayFromMap( fParams, fCurVals ); fSampleFCN->DoEval( vals ); delete vals; // Save to file fSampleFCN->Write(); } // Reset before leaving fCurVals[syst] = fStartVals[syst]; UpdateRWEngine(fCurVals); } return; } //************************************* void SystematicRoutines::Run(){ //************************************* std::cout << "Running routines "<< std::endl; fRoutines = GeneralUtils::ParseToStr(fStrategy,","); for (UInt_t i = 0; i < fRoutines.size(); i++){ std::string routine = fRoutines.at(i); int fitstate = kFitUnfinished; LOG(FIT)<<"Running Routine: "<cd(); int nthrows = fNThrows; int startthrows = fStartThrows; int endthrows = startthrows + nthrows; if (nthrows < 0) nthrows = endthrows; if (startthrows < 0) startthrows = 0; if (endthrows < 0) endthrows = startthrows + nthrows; // Setting Seed // Matteo Mazzanti's Fix struct timeval mytime; gettimeofday(&mytime, NULL); Double_t seed = time(NULL) + int(getpid())+ (mytime.tv_sec * 1000.) + (mytime.tv_usec / 1000.); gRandom->SetSeed(seed); // int seed = (gRandom->Uniform(0.0,1.0)*100000 + 100000000*(startthrows + endthrows) + time(NULL) + int(getpid()) ); // gRandom->SetSeed(seed); LOG(FIT) << "Using Seed : " << seed << std::endl; LOG(FIT) << "nthrows = " << nthrows << std::endl; LOG(FIT) << "startthrows = " << startthrows << std::endl; LOG(FIT) << "endthrows = " << endthrows << std::endl; UpdateRWEngine(fCurVals); fSampleFCN->ReconfigureAllEvents(); if (startthrows == 0){ LOG(FIT) << "Making nominal " << std::endl; TDirectory* nominal = (TDirectory*) tempfile->mkdir("nominal"); nominal->cd(); fSampleFCN->Write(); } LOG(SAM) << "nthrows = " << nthrows << std::endl; LOG(SAM) << "startthrows = " << startthrows << std::endl; LOG(SAM) << "endthrows = " << endthrows << std::endl; TTree* parameterTree = new TTree("throws","throws"); double chi2; for (UInt_t i = 0; i < fParams.size(); i++) parameterTree->Branch(fParams[i].c_str(), &fThrownVals[fParams[i]], (fParams[i] + "/D").c_str()); parameterTree->Branch("chi2",&chi2,"chi2/D"); fSampleFCN->CreateIterationTree("error_iterations", FitBase::GetRW()); // Would anybody actually want to do uniform throws of any parameter?? bool uniformly = FitPar::Config().GetParB("error_uniform"); // Run Throws and save for (Int_t i = 0; i < endthrows+1; i++){ LOG(FIT) << "Loop " << i << std::endl; ThrowCovariance(uniformly); if (i < startthrows) continue; if (i == 0) continue; LOG(FIT) << "Throw " << i << " ================================" << std::endl; // Generate Random Parameter Throw // ThrowCovariance(uniformly); TDirectory* throwfolder = (TDirectory*)tempfile->mkdir(Form("throw_%i",i)); throwfolder->cd(); // Run Eval double *vals = FitUtils::GetArrayFromMap( fParams, fThrownVals ); chi2 = fSampleFCN->DoEval( vals ); delete vals; // Save the FCN fSampleFCN->Write(); parameterTree->Fill(); } tempfile->cd(); fSampleFCN->WriteIterationTree(); tempfile->Close(); } void SystematicRoutines::MergeThrows(){ fOutputRootFile = new TFile(fCompKey.GetS("outputfile").c_str(), "RECREATE"); fOutputRootFile->cd(); // Make a container folder TDirectory* errorDIR = (TDirectory*) fOutputRootFile->mkdir("error_bands"); errorDIR->cd(); TDirectory* outnominal = (TDirectory*) fOutputRootFile->mkdir("nominal_throw"); outnominal->cd(); // Split Input Files if (!fThrowString.empty()) fThrowList = GeneralUtils::ParseToStr(fThrowString,","); // Add default if no throwlist given if (fThrowList.size() < 1) fThrowList.push_back( fOutputFile + ".throws.root" ); /// Save location of file containing nominal std::string nominalfile; bool nominalfound; // Loop over files and check they exist. for (uint i = 0; i < fThrowList.size(); i++){ std::string file = fThrowList[i]; bool found = false; // normal std::string newfile = file; TFile* throwfile = new TFile(file.c_str(),"READ"); if (throwfile and !throwfile->IsZombie()){ found = true; } // normal.throws.root if (!found){ newfile = file + ".throws.root"; throwfile = new TFile((file + ".throws.root").c_str(),"READ"); if (throwfile and !throwfile->IsZombie()) { found = true; } } // If its found save to throwlist, else save empty. // Also search for nominal if (found){ fThrowList[i] = newfile; LOG(FIT) << "Throws File :" << newfile << std::endl; // Find input which contains nominal if (throwfile->Get("nominal")){ nominalfound = true; nominalfile = newfile; } throwfile->Close(); } else { fThrowList[i] = ""; } delete throwfile; } // Make sure we have a nominal file if (!nominalfound or nominalfile.empty()){ ERR(FTL) << "No nominal found when mergining! Exiting!" << std::endl; throw; } // Get the nominal throws file TFile* tempfile = new TFile((nominalfile).c_str(),"READ"); tempfile->cd(); TDirectory* nominal = (TDirectory*)tempfile->Get("nominal"); // int nthrows = FitPar::Config().GetParI("error_throws"); bool uniformly = FitPar::Config().GetParB("error_uniform"); // Check percentage of bad files is okay. int badfilecount = 0; for (uint i = 0; i < fThrowList.size(); i++){ if (!fThrowList[i].empty()){ LOG(FIT) << "Loading Throws From File " << i << " : " << fThrowList[i] << std::endl; } else { badfilecount++; } } // Check we have at least one good file if ((uint)badfilecount == fThrowList.size()){ ERR(FTL) << "Found no good throw files for MergeThrows" << std::endl; throw; } else if (badfilecount > fThrowList.size()*0.25){ ERR(WRN) << "Over 25% of your throw files are dodgy. Please check this is okay!" << std::endl; ERR(WRN) << "Will continue for the time being..." << std::endl; sleep(5); } // Now go through the keys in the temporary file and look for TH1D, and TH2D plots TIter next(nominal->GetListOfKeys()); TKey *key; while ((key = (TKey*)next())) { TClass *cl = gROOT->GetClass(key->GetClassName()); if (!cl->InheritsFrom("TH1D") and !cl->InheritsFrom("TH2D")) continue; TH1* baseplot = (TH1D*)key->ReadObj(); std::string plotname = std::string(baseplot->GetName()); LOG(FIT) << "Creating error bands for " << plotname; if (LOG_LEVEL(FIT)){ if (!uniformly) std::cout << " : Using COVARIANCE Throws! " << std::endl; else std::cout << " : Using UNIFORM THROWS!!! " << std::endl; } int nbins = 0; if (cl->InheritsFrom("TH1D")) nbins = ((TH1D*)baseplot)->GetNbinsX(); else nbins = ((TH1D*)baseplot)->GetNbinsX()* ((TH1D*)baseplot)->GetNbinsY(); // Setup TProfile with RMS option TProfile* tprof = new TProfile((plotname + "_prof").c_str(),(plotname + "_prof").c_str(),nbins, 0, nbins, "S"); // Setup The TTREE double* bincontents; bincontents = new double[nbins]; double* binlowest; binlowest = new double[nbins]; double* binhighest; binhighest = new double[nbins]; errorDIR->cd(); TTree* bintree = new TTree((plotname + "_tree").c_str(), (plotname + "_tree").c_str()); for (Int_t i = 0; i < nbins; i++){ bincontents[i] = 0.0; binhighest[i] = 0.0; binlowest[i] = 0.0; bintree->Branch(Form("content_%i",i),&bincontents[i],Form("content_%i/D",i)); } // Make new throw plot TH1* newplot; // Run Throw Merging. for (UInt_t i = 0; i < fThrowList.size(); i++){ TFile* throwfile = new TFile(fThrowList[i].c_str(), "READ"); // Loop over all throws in a folder TIter nextthrow(throwfile->GetListOfKeys()); TKey *throwkey; while ((throwkey = (TKey*)nextthrow())) { // Skip non throw folders if (std::string(throwkey->GetName()).find("throw_") == std::string::npos) continue; // Get Throw DIR TDirectory* throwdir = (TDirectory*)throwkey->ReadObj(); // Get Plot From Throw newplot = (TH1*)throwdir->Get(plotname.c_str()); if (!newplot) continue; // Loop Over Plot for (Int_t j = 0; j < nbins; j++){ tprof->Fill(j+0.5, newplot->GetBinContent(j+1)); bincontents[j] = newplot->GetBinContent(j+1); if (bincontents[j] < binlowest[j] or i == 0) binlowest[j] = bincontents[j]; if (bincontents[j] > binhighest[j] or i == 0) binhighest[j] = bincontents[j]; } errorDIR->cd(); bintree->Fill(); } throwfile->Close(); delete throwfile; } errorDIR->cd(); if (uniformly){ LOG(FIT) << "Uniformly Calculating Plot Errors!" << std::endl; } TH1* statplot = (TH1*) baseplot->Clone(); for (Int_t j = 0; j < nbins; j++){ if (!uniformly){ // if ((baseplot->GetBinError(j+1)/baseplot->GetBinContent(j+1)) < 1.0) { // baseplot->SetBinError(j+1,sqrt(pow(tprof->GetBinError(j+1),2) + pow(baseplot->GetBinError(j+1),2))); // } else { - baseplot->SetBinContent(j+1,tprof->GetBinContent(j+1)); + //baseplot->SetBinContent(j+1,tprof->GetBinContent(j+1)); baseplot->SetBinError(j+1,tprof->GetBinError(j+1)); // } } else { baseplot->SetBinContent(j+1, 0.0);//(binlowest[j] + binhighest[j]) / 2.0); baseplot->SetBinError(j+1, 0.0); //(binhighest[j] - binlowest[j])/2.0); } } errorDIR->cd(); baseplot->Write(); tprof->Write(); bintree->Write(); outnominal->cd(); for (int i = 0; i < nbins; i++){ baseplot->SetBinError(i+1, sqrt(pow(statplot->GetBinError(i+1),2) + pow(baseplot->GetBinError(i+1),2))); } baseplot->Write(); delete statplot; delete baseplot; delete tprof; delete bintree; delete [] bincontents; } return; }; + +void SystematicRoutines::EigenErrors(){ + + + fOutputRootFile = new TFile(fCompKey.GetS("outputfile").c_str(), "RECREATE"); + fOutputRootFile->cd(); + + // Make Covariance + TMatrixDSym* fullcovar = new TMatrixDSym( fParams.size() ); + + // Extract covariance from all loaded ParamPulls + for (PullListConstIter iter = fInputThrows.begin(); + iter != fInputThrows.end(); iter++){ + ParamPull* pull = *iter; + + // Check pull is actualyl Gaussian + std::string pulltype = pull->GetType(); + if (pulltype.find("GAUSTHROW") == std::string::npos){ + THROW("Can only calculate EigenErrors for Gaussian pulls!"); + } + + // Get data and covariances + TH1D dialhist = pull->GetDataHist(); + TH2D covhist = pull->GetFullCovar(); + + // Loop over all dials and compare names + for (int pari = 0; pari < fParams.size(); pari++){ + for (int parj = 0; parj < fParams.size(); parj++){ + + std::string name_pari = fParams[pari]; + std::string name_parj = fParams[parj]; + + // Compare names to those in the pull + for (int pulli = 0; pulli < dialhist.GetNbinsX(); pulli++){ + for (int pullj = 0; pullj < dialhist.GetNbinsX(); pullj++){ + + std::string name_pulli = dialhist.GetXaxis()->GetBinLabel(pulli+1); + std::string name_pullj = dialhist.GetXaxis()->GetBinLabel(pullj+1); + + if (name_pulli == name_pari && name_pullj == name_parj){ + (*fullcovar)[pari][parj] = covhist.GetBinContent(pulli+1, pullj+1); + fCurVals[name_pari] = dialhist.GetBinContent(pulli+1); + fCurVals[name_parj] = dialhist.GetBinContent(pullj+1); + } + + } + } + + } + } + } + + /* + TFile* test = new TFile("testingcovar.root","RECREATE"); + test->cd(); + TH2D* joinedcov = new TH2D("COVAR","COVAR", + fullcovar->GetNrows(), 0.0, float(fullcovar->GetNrows()), + fullcovar->GetNrows(), 0.0, float(fullcovar->GetNrows())); + for (int i = 0; i < fullcovar->GetNrows(); i++){ + for (int j = 0; j < fullcovar->GetNcols(); j++){ + joinedcov->SetBinContent(i+1, j+1, (*fullcovar)[i][j]); + } + } + joinedcov->Write("COVAR"); + test->Close(); + */ + + // Calculator all EigenVectors and EigenValues + TMatrixDSymEigen* eigen = new TMatrixDSymEigen(*fullcovar); + const TVectorD eigenVals = eigen->GetEigenValues(); + const TMatrixD eigenVect = eigen->GetEigenVectors(); + eigenVals.Print(); + eigenVect.Print(); + + TDirectory* outnominal = (TDirectory*) fOutputRootFile->mkdir("nominal"); + outnominal->cd(); + + double *valst = FitUtils::GetArrayFromMap( fParams, fCurVals ); + double chi2 = fSampleFCN->DoEval( valst ); + delete valst; + fSampleFCN->Write(); + + // Loop over all throws + TDirectory* throwsdir = (TDirectory*) fOutputRootFile->mkdir("throws"); + throwsdir->cd(); + + int count = 0; + // Produce all error throws. + for (int i = 0; i < eigenVect.GetNrows(); i++){ + + TDirectory* throwfolder = (TDirectory*)throwsdir->mkdir(Form("throw_%i",count)); + throwfolder->cd(); + + // Get New Parameter Vector + LOG(FIT) << "Parameter Set " << count << std::endl; + for (int j = 0; j < eigenVect.GetNrows(); j++){ + std::string param = fParams[j]; + LOG(FIT) << " " << j << ". " << param << " : " << fCurVals[param] + sqrt(eigenVals[i]) * eigenVect[j][i] << std::endl; + fThrownVals[param] = fCurVals[param] + sqrt(eigenVals[i]) * eigenVect[j][i]; + } + + // Run Eval + double *vals = FitUtils::GetArrayFromMap( fParams, fThrownVals ); + double chi2 = fSampleFCN->DoEval( vals ); + delete vals; + count++; + + fSampleFCN->Write(); + + + throwfolder = (TDirectory*)throwsdir->mkdir(Form("throw_%i",count)); + throwfolder->cd(); + + // Get New Parameter Vector + LOG(FIT) << "Parameter Set " << count << std::endl; + for (int j = 0; j < eigenVect.GetNrows(); j++){ + std::string param = fParams[j]; + LOG(FIT) << " " << j << ". " << param << " : " <DoEval( vals2 ); + delete vals2; + count++; + + // Save the FCN + fSampleFCN->Write(); + + } + + fOutputRootFile->Close(); + fOutputRootFile = new TFile(fCompKey.GetS("outputfile").c_str(), "UPDATE"); + fOutputRootFile->cd(); + throwsdir = (TDirectory*) fOutputRootFile->Get("throws"); + outnominal = (TDirectory*) fOutputRootFile->Get("nominal"); + + // Loop through Error DIR + TDirectory* outerr = (TDirectory*) fOutputRootFile->mkdir("errors"); + outerr->cd(); + TIter next(outnominal->GetListOfKeys()); + TKey *key; + while ((key = (TKey*)next())) { + + TClass *cl = gROOT->GetClass(key->GetClassName()); + if (!cl->InheritsFrom("TH1D") and !cl->InheritsFrom("TH2D")) continue; + + LOG(FIT) << "Creating error bands for " << key->GetName() << std::endl; + std::string plotname = std::string(key->GetName()); + + if (plotname.find("_EVT") != std::string::npos) continue; + if (plotname.find("_FLUX") != std::string::npos) continue; + if (plotname.find("_FLX") != std::string::npos) continue; + + TH1* baseplot = (TH1D*)key->ReadObj()->Clone(Form("%s_ORIGINAL",key->GetName())); + TH1* errorplot_upper = (TH1D*)baseplot->Clone(Form("%s_ERROR_UPPER",key->GetName())); + TH1* errorplot_lower = (TH1D*)baseplot->Clone(Form("%s_ERROR_LOWER", key->GetName())); + TH1* meanplot = (TH1D*)baseplot->Clone(Form("%s_SET_MEAN", key->GetName())); + TH1* systplot = (TH1D*)baseplot->Clone(Form("%s_SYST", key->GetName())); + TH1* statplot = (TH1D*)baseplot->Clone(Form("%s_STAT", key->GetName())); + TH1* totlplot = (TH1D*)baseplot->Clone(Form("%s_TOTAL", key->GetName())); + + int nbins = 0; + if (cl->InheritsFrom("TH1D")) nbins = ((TH1D*)baseplot)->GetNbinsX(); + else nbins = ((TH1D*)baseplot)->GetNbinsX()* ((TH1D*)baseplot)->GetNbinsY(); + + meanplot->Reset(); + errorplot_upper->Reset(); + errorplot_lower->Reset(); + + for (int j = 0; j < nbins; j++){ + errorplot_upper->SetBinError(j+1, 0.0); + errorplot_lower->SetBinError(j+1, 0.0); + } + + // Loop over throws and calculate mean and error for +- throws + int addcount = 0; + + // Add baseplot first to slightly bias to central value + meanplot->Add(baseplot); + addcount++; + + for (int i = 0; i < count; i++){ + TH1* newplot = (TH1D*) throwsdir->Get(Form("throw_%i/%s",i,plotname.c_str())); + if (!newplot){ + ERR(WRN) << "Cannot find new plot : " << Form("throw_%i/%s",i,plotname.c_str()) << std::endl; + ERR(WRN) << "This plot will not have the correct errors!" << std::endl; + continue; + } + newplot->SetDirectory(0); + nbins = newplot->GetNbinsX(); + + for (int j = 0; j < nbins; j++){ + if (i % 2 == 0){ + // std::cout << plotname<< " : upper " << errorplot_upper->GetBinContent(j+1) << " adding " << pow(baseplot->GetBinContent(j+1) - newplot->GetBinContent(j+1),2) << std::endl; + // std::cout << " -> " << baseplot->GetBinContent(j+1) << " " <GetBinContent(j+1) << std::endl; + errorplot_upper->SetBinContent(j+1, errorplot_upper->GetBinContent(j+1) + + pow(baseplot->GetBinContent(j+1) - newplot->GetBinContent(j+1),2)); + // newplot->Print(); + } else { + // std::cout << plotname << " : lower " << errorplot_lower->GetBinContent(j+1) << " adding " << pow(baseplot->GetBinContent(j+1) - newplot->GetBinContent(j+1),2) << std::endl; + // std::cout << " -> " << baseplot->GetBinContent(j+1) << " " << newplot->GetBinContent(j+1) << std::endl; + errorplot_lower->SetBinContent(j+1, errorplot_lower->GetBinContent(j+1) + + pow(baseplot->GetBinContent(j+1) - newplot->GetBinContent(j+1),2)); + // newplot->Print(); + } + meanplot->SetBinContent(j+1, meanplot->GetBinContent(j+1) + baseplot->GetBinContent(j+1)); + } + delete newplot; + addcount++; + } + + // Get mean Average + for (int j = 0; j < nbins; j++){ + meanplot->SetBinContent(j+1, meanplot->GetBinContent(j+1)/double(addcount)); + } + + for (int j = 0; j < nbins; j++){ + errorplot_upper->SetBinContent(j+1, sqrt(errorplot_upper->GetBinContent(j+1))); + errorplot_lower->SetBinContent(j+1, sqrt(errorplot_lower->GetBinContent(j+1))); + + statplot->SetBinError(j+1, baseplot->GetBinError(j+1) ); + systplot->SetBinError(j+1, (errorplot_upper->GetBinContent(j+1) + errorplot_lower->GetBinContent(j+1))/2.0); + totlplot->SetBinError(j+1, sqrt( pow(statplot->GetBinError(j+1),2) + pow(systplot->GetBinError(j+1),2) ) ); + + meanplot->SetBinError(j+1, sqrt( pow(statplot->GetBinError(j+1),2) + pow(systplot->GetBinError(j+1),2) ) ); + + } + + outerr->cd(); + errorplot_upper->Write(); + errorplot_lower->Write(); + baseplot->Write(); + meanplot->Write(); + + statplot->Write(); + systplot->Write(); + totlplot->Write(); + + delete errorplot_upper; + delete errorplot_lower; + delete baseplot; + delete meanplot; + delete statplot; + delete systplot; + delete totlplot; + } + +} diff --git a/src/Routines/SystematicRoutines.h b/src/Routines/SystematicRoutines.h index f726e07..b069a4b 100755 --- a/src/Routines/SystematicRoutines.h +++ b/src/Routines/SystematicRoutines.h @@ -1,267 +1,269 @@ // Copyright 2016 L. Pickering, P Stowell, R. Terri, C. Wilkinson, C. Wret /******************************************************************************* * This file is part of NUISANCE. * * NUISANCE is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * NUISANCE is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with NUISANCE. If not, see . *******************************************************************************/ #ifndef SYSTEMATIC_ROUTINES_H #define SYSTEMATIC_ROUTINES_H /*! * \addtogroup Minimizer * @{ */ #include "TH1.h" #include "TF1.h" #include "TMatrixD.h" #include "TVectorD.h" #include "TSystem.h" #include "TFile.h" #include "TProfile.h" #include #include #include #include #include #include #include "FitEvent.h" #include "JointFCN.h" - +#include "TMatrixDSymEigen.h" #include "ParserUtils.h" enum minstate { kErrorStatus = -1, kGoodStatus, kFitError, kNoChange, kFitFinished, kFitUnfinished, kStateChange, }; //************************************* //! Collects all possible fit routines into a single class to avoid repeated code class SystematicRoutines{ //************************************* public: /* Constructor/Destructor */ //! Constructor reads in arguments given at the command line for the fit here. SystematicRoutines(int argc, char* argv[]); //! Default destructor ~SystematicRoutines(); //! Reset everything to default/NULL void Init(); /* Input Functions */ //! Splits the arguments ready for initial setup void ParseArgs(int argc, char* argv[]); //! Sorts out configuration and verbosity right at the very start. //! Calls readCard to set everything else up. void InitialSetup(); //! Loops through each line of the card file and passes it to other read functions void ReadCard(std::string cardfile); //! Check for parameter string in the line and assign the correct type. //! Fills maps for each of the parameters int ReadParameters(std::string parstring); //! Reads in fake parameters and assigns them (Requires the parameter to be included as a normal parameter as well) int ReadFakeDataPars(std::string parstring); //! Read in the samples so we can set up the free normalisation dials if required int ReadSamples(std::string sampleString); /* Setup Functions */ void SetupSystematicsFromXML(); //! Setup the configuration given the arguments passed at the commandline and card file void SetupConfig(); //! Setups up our custom RW engine with all the parameters passed in the card file void SetupRWEngine(); //! Setups up the jointFCN. void SetupFCN(); //! Sets up the minimizerObj for ROOT. there are cases where this is called repeatedly, e.g. If you are using a brute force scan before using Migrad. void SetupFitter(std::string routine); //! Set the current data histograms in each sample to the fake data. void SetFakeData(); //! Setup the covariances with the correct dimensions. At the start this is either uncorrelated or merged given all the input covariances. //! At the end of the fit this produces the blank covariances which can then be filled by the minimizerObj with best fit covariances. void SetupCovariance(); void GetCovarFromFCN(); /* Fitting Functions */ //! Main function to actually start iterating over the different required fit routines void Run(); //! Given a new map change the values that the RW engine is currently set to void UpdateRWEngine(std::map& updateVals); //! Given a single routine (see tutorial for options) run that fit routine now. int RunFitRoutine(std::string routine); //! Print current value void PrintState(); //! Performs a fit routine where the input.maxevents is set to a much lower value to try and move closer to the best fit minimum. void LowStatRoutine(std::string routine); //! Perform a chi2 scan in 1D around the current point void Create1DScans(); //! Perform a chi2 scan in 2D around the current point void Chi2Scan2D(); //! Currently a placeholder NEEDS UPDATING void CreateContours(); //! If any currentVals are close to the limits set them to the limit and fix them int FixAtLimit(); //! Throw the current covariance of dial values we have, and fill the thrownVals and thrownNorms maps. //! If uniformly is true parameters will be thrown uniformly between their upper and lower limits. void ThrowCovariance(bool uniformly); //! Given the covariance we currently have generate error bands by throwing the covariance. //! The FitPar config "error_uniform" defines whether to throw using the covariance or uniformly. //! The FitPar config "error_throws" defines how many throws are needed. //! Currently only supports TH1D plots. void GenerateErrorBands(); void GenerateThrows(); void MergeThrows(); //! Step through each parameter one by one and create folders containing the MC predictions at each step. //! Doesn't handle correlated parameters well void PlotLimits(); + + void EigenErrors(); /* Write Functions */ //! Save the sample plots for current MC //! dir if not empty forces plots to be saved in a subdirectory of outputfile void SaveCurrentState(std::string subdir=""); //! Save starting predictions into a seperate folder void SaveNominal(); //! Save predictions before the main study is ran into a seperate folder void SavePrefit(); //! Save final outputs void SaveResults(); /* MISC Functions */ //! Get previous fit status from a file Int_t GetStatus(); protected: //! Our Custom ReWeight Object FitWeight* rw; std::string fOutputFile; std::string fInputFile; TFile* fInputRootFile; TFile* fOutputRootFile; //! Flag for whether the fit should be continued if an output file is already found. bool fitContinue; //! Minimizer Object for handling roots different minimizer methods JointFCN* fSampleFCN; int nfreepars; std::string fCardFile; std::string fStrategy; std::vector fRoutines; std::string fAllowedRoutines; std::string fFakeDataInput; // Input Dial Vals //! Vector of dial names std::vector fParams; std::map fStateVals; std::map fStartVals; std::map fCurVals; std::map fErrorVals; std::map fMinVals; std::map fMaxVals; std::map fStepVals; std::map fTypeVals; std::map fFixVals; std::map fStartFixVals; //! Vector of fake parameter names std::map fFakeVals; //! Map of thrown parameter names and values (After ThrowCovariance) std::map fThrownVals; TH2D* fCorrel; TH2D* fDecomp; TH2D* fCovar; TH2D* fCorrelFree; TH2D* fDecompFree; TH2D* fCovarFree; std::list fInputThrows; //!< Pointers to pull terms std::vector fInputDials; //!< Vector of Input Histograms std::vector fInputCovar; //!< Vector of Input Covariances nuiskey fCompKey; std::vector fThrowList; std::string fThrowString; int fNThrows; int fStartThrows; }; /*! @} */ #endif diff --git a/src/T2K/T2K_CC0pi_XSec_2DPcos_nu.cxx b/src/T2K/T2K_CC0pi_XSec_2DPcos_nu.cxx index e1ed1d0..f333b23 100644 --- a/src/T2K/T2K_CC0pi_XSec_2DPcos_nu.cxx +++ b/src/T2K/T2K_CC0pi_XSec_2DPcos_nu.cxx @@ -1,275 +1,164 @@ // Copyright 2016 L. Pickering, P Stowell, R. Terri, C. Wilkinson, C. Wret /******************************************************************************* * This file is part of NUISANCE. * * NUISANCE is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * NUISANCE is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with NUISANCE. If not, see . *******************************************************************************/ #include "T2K_SignalDef.h" #include "T2K_CC0pi_XSec_2DPcos_nu.h" //******************************************************************** T2K_CC0pi_XSec_2DPcos_nu::T2K_CC0pi_XSec_2DPcos_nu(nuiskey samplekey) { //******************************************************************** // Sample overview --------------------------------------------------- std::string descrip = "T2K_CC0pi_XSec_2DPcos_nu sample. \n" \ "Target: CH \n" \ "Flux: MINERvA Medium Energy FHC numu \n" \ "Signal: CC-inclusive with theta < 20deg \n"; // Setup common settings fSettings = LoadSampleSettings(samplekey); fSettings.SetDescription(descrip); fSettings.SetXTitle("P_{#mu} (GeV)"); fSettings.SetYTitle("cos#theta_{#mu}"); fSettings.SetZTitle("d^{2}#sigma/dP_{#mu}dcos#theta_{#mu} (cm^{2}/GeV)"); fSettings.SetAllowedTypes("DIAG,FULL/FREE,SHAPE,FIX/SYSTCOV/STATCOV","FIX"); fSettings.SetEnuRange(0.0, 10.0); fSettings.DefineAllowedTargets("C,H"); if (fName == "T2K_CC0pi_XSec_2DPcos_nu_I") fAnalysis = 1; else fAnalysis = 2; // CCQELike plot information fSettings.SetTitle("T2K_CC0pi_XSec_2DPcos_nu"); fSettings.DefineAllowedSpecies("numu"); forwardgoing = (fSettings.GetS("type").find("REST") != std::string::npos); FinaliseSampleSettings(); // Scaling Setup --------------------------------------------------- // ScaleFactor automatically setup for DiffXSec/cm2/Nucleon fScaleFactor = ((GetEventHistogram()->Integral("width")/(fNEvents+0.)) * 1E-38 / (TotalIntegratedFlux())); // Setup Histograms SetHistograms(); - StatUtils::SetDataErrorFromCov(fDataHist, fFullCovar, fMapHist, 1E-38); // Final setup --------------------------------------------------- FinaliseMeasurement(); }; bool T2K_CC0pi_XSec_2DPcos_nu::isSignal(FitEvent *event){ return SignalDef::isT2K_CC0pi(event, EnuMin, EnuMax, forwardgoing); }; void T2K_CC0pi_XSec_2DPcos_nu::FillEventVariables(FitEvent* event){ if (event->NumFSParticle(13) == 0) return; TLorentzVector Pnu = event->GetNeutrinoIn()->fP; TLorentzVector Pmu = event->GetHMFSParticle(13)->fP; double pmu = Pmu.Vect().Mag()/1000.; double CosThetaMu = cos(Pnu.Vect().Angle(Pmu.Vect())); fXVar = pmu; fYVar = CosThetaMu; return; }; -// Modification is needed after the full reconfigure to move bins around -// Otherwise this would need to be replaced by a TH2Poly which is too awkward. -void T2K_CC0pi_XSec_2DPcos_nu::ConvertEventRates(){ - - // Do standard conversion. - Measurement2D::ConvertEventRates(); - - if (fAnalysis == 1){ - - // Following code handles weird ND280 Binning - int nbins = this->fMCHist->GetNbinsX() + 1; - double total = 0.0; - - // Y = 1 - total = 0.0; - for (int i = 3; i < nbins; i++){ - - double width = this->fMCHist->GetXaxis()->GetBinWidth(i) * this->fMCHist->GetYaxis()->GetBinWidth(1); - total += this->fMCHist->GetBinContent(i, 1) * width; - this->fMCHist->SetBinContent(i,1,0); - } - this->fMCHist->SetBinContent(3, 1, total / (1.0 * 29.6)); - - // Y = 2 - total = 0.0; - for (int i = 5; i < nbins; i++){ - double width = this->fMCHist->GetXaxis()->GetBinWidth(i) * this->fMCHist->GetYaxis()->GetBinWidth(2); - total += this->fMCHist->GetBinContent(i, 2)* width; - this->fMCHist->SetBinContent(i,2,0); - } - this->fMCHist->SetBinContent(5, 2, total / (0.6 *29.4)); - - // Y = 3 - total = 0.0; - for (int i = 7; i < nbins; i++){ - double width = this->fMCHist->GetXaxis()->GetBinWidth(i) * this->fMCHist->GetYaxis()->GetBinWidth(3); - total += this->fMCHist->GetBinContent(i, 3)* width; - this->fMCHist->SetBinContent(i, 3,0); - } - this->fMCHist->SetBinContent(7, 3, total/ (0.1 * 29.2)); - - // Y = 4 - total = 0.0; - for (int i = 7; i < nbins; i++){ - double width = this->fMCHist->GetXaxis()->GetBinWidth(i) * this->fMCHist->GetYaxis()->GetBinWidth(4); - total += this->fMCHist->GetBinContent(i, 4)* width; - this->fMCHist->SetBinContent(i, 4,0); - } - this->fMCHist->SetBinContent(7, 4, total / (0.1 * 29.2)); - - // Y = 5 - total = 0.0; - for (int i = 8; i < nbins; i++){ - double width = this->fMCHist->GetXaxis()->GetBinWidth(i) * this->fMCHist->GetYaxis()->GetBinWidth(5); - total += this->fMCHist->GetBinContent(i, 5)* width; - this->fMCHist->SetBinContent(i,5,0); - } - this->fMCHist->SetBinContent(8, 5, total / (0.05 * 29.0)); - - // Y = 6 - total = 0.0; - for (int i = 9; i < nbins; i++){ - double width = this->fMCHist->GetXaxis()->GetBinWidth(i) * this->fMCHist->GetYaxis()->GetBinWidth(6); - total += this->fMCHist->GetBinContent(i, 6)* width; - this->fMCHist->SetBinContent(i, 6,0); - } - this->fMCHist->SetBinContent(9, 6, total / (0.05 * 28.5)); - - // Y = 7 - total = 0.0; - for (int i = 8; i < nbins; i++){ - double width = this->fMCHist->GetXaxis()->GetBinWidth(i) * this->fMCHist->GetYaxis()->GetBinWidth(7); - total += this->fMCHist->GetBinContent(i, 7)* width; - this->fMCHist->SetBinContent(i, 7,0); - } - this->fMCHist->SetBinContent(8, 7, total/ (0.04 * 28.0)); - - // Y = 8 - total = 0.0; - for (int i = 11; i < nbins; i++){ - double width = this->fMCHist->GetXaxis()->GetBinWidth(i) * this->fMCHist->GetYaxis()->GetBinWidth(8); - total += this->fMCHist->GetBinContent(i, 8)* width; - this->fMCHist->SetBinContent(i, 8,0); - } - this->fMCHist->SetBinContent(11, 8, total / (0.4 * 27.0)); - - // Y = 9 - total = 0.0; - for (int i = 9; i < nbins; i++){ - double width = this->fMCHist->GetXaxis()->GetBinWidth(i) * this->fMCHist->GetYaxis()->GetBinWidth(9); - total += this->fMCHist->GetBinContent(i, 9)* width; - this->fMCHist->SetBinContent(i,9,0); - } - this->fMCHist->SetBinContent(9, 9, total / (0.02 * 25.0)); - } - - return; -} - - void T2K_CC0pi_XSec_2DPcos_nu::SetHistograms(){ fIsSystCov = fSettings.GetS("type").find("SYSTCOV") != std::string::npos; fIsStatCov = fSettings.GetS("type").find("STATCOV") != std::string::npos; fIsNormCov = fSettings.GetS("type").find("NORMCOV") != std::string::npos; fNDataPointsX = 12; fNDataPointsY = 10; // Open file std::string infile = FitPar::GetDataBase()+"/T2K/CC0pi/T2K_CC0PI_2DPmuCosmu_Data.root"; TFile* rootfile = new TFile(infile.c_str(), "READ"); TH2D* tempcov = NULL; // ANALYSIS 2 if (fAnalysis == 2){ // Get Data fDataHist = (TH2D*) rootfile->Get("analysis2_data"); fDataHist->SetDirectory(0); fDataHist->SetNameTitle((fName + "_data").c_str(), (fName + "_data" + fPlotTitles).c_str()); // Get Map fMapHist = (TH2I*) rootfile->Get("analysis2_map"); fMapHist->SetDirectory(0); fMapHist->SetNameTitle((fName + "_map").c_str(), (fName + "_map" + fPlotTitles).c_str()); // Get Syst/Stat Covar TH2D* tempsyst = (TH2D*) rootfile->Get("analysis2_systcov"); TH2D* tempstat = (TH2D*) rootfile->Get("analysis2_statcov"); TH2D* tempnorm = (TH2D*) rootfile->Get("analysis2_normcov"); // Create covar [Default is both] tempcov = (TH2D*) tempsyst->Clone(); tempcov->Reset(); if (fIsSystCov) tempcov->Add(tempsyst); if (fIsStatCov) tempcov->Add(tempstat); if (fIsNormCov) tempcov->Add(tempnorm); if (!fIsSystCov && !fIsStatCov && !fIsNormCov){ tempcov->Add(tempsyst); tempcov->Add(tempstat); tempcov->Add(tempnorm); } - - // SARAS ANALYSIS - } else if (fAnalysis == 1){ - - //TODO (P.Stowell) Add a TH2Poly Measurement class - ERR(FTL) << "T2K CC0Pi Analysis 1 is not yet available due to its awkward binning!" << std::endl; - ERR(FTL) << "If you want to use it, add a TH2Poly Class!" << std::endl; - throw; - } + if (!tempcov){ ERR(FTL) << "TEMPCOV NOT SET" << std::endl; throw; } // Setup Covar int nbins = tempcov->GetNbinsX(); fFullCovar = new TMatrixDSym(nbins); for (int i = 0; i < nbins; i++){ for (int j = 0; j < nbins; j++){ - (*fFullCovar)(i,j) = tempcov->GetBinContent(i+1,j+1); - } } covar = StatUtils::GetInvert(fFullCovar); fDecomp = StatUtils::GetDecomp(covar); // Set Data Errors StatUtils::SetDataErrorFromCov(fDataHist, fFullCovar, fMapHist, 1E-38); // Remove root file rootfile->Close(); return; }; diff --git a/src/T2K/T2K_CC0pi_XSec_2DPcos_nu.h b/src/T2K/T2K_CC0pi_XSec_2DPcos_nu.h index a856cef..afcbb61 100644 --- a/src/T2K/T2K_CC0pi_XSec_2DPcos_nu.h +++ b/src/T2K/T2K_CC0pi_XSec_2DPcos_nu.h @@ -1,67 +1,67 @@ // Copyright 2016 L. Pickering, P Stowell, R. Terri, C. Wilkinson, C. Wret /******************************************************************************* * This file is part of NUISANCE. * * NUISANCE is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * NUISANCE is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with NUISANCE. If not, see . *******************************************************************************/ #ifndef T2K_CC0PI_2DPCOS_NU_H_SEEN #define T2K_CC0PI_2DPCOS_NU_H_SEEN #include "Measurement2D.h" class T2K_CC0pi_XSec_2DPcos_nu : public Measurement2D { public: /// Basic Constructor. /// /brief Parses two different measurements. /// /// T2K_CC0pi_XSec_2DPcos_nu -> T2K CC0PI Analysis 2 /// T2K_CC0pi_XSec_2DPcos_nu_I -> T2K CC0PI Analysis 1 /// T2K_CC0pi_XSec_2DPcos_nu_II -> T2K CC0PI Analysis 2 T2K_CC0pi_XSec_2DPcos_nu(nuiskey samplekey); /// Virtual Destructor ~T2K_CC0pi_XSec_2DPcos_nu() {}; /// Numu CC0PI Signal Definition /// /// /item bool isSignal(FitEvent *nvect); /// Read histograms in a special way because format is different. /// Read from FitPar::GetDataBase()+"/T2K/CC0pi/T2K_CC0PI_2DPmuCosmu_Data.root" void SetHistograms(); /// Bin Tmu CosThetaMu void FillEventVariables(FitEvent* customEvent); /// Have to do a weird event scaling for analysis 1 - void ConvertEventRates(); + // void ConvertEventRates(); private: bool forwardgoing; bool only_allowed_particles; bool numu_event; double numu_energy; int particle_pdg; double pmu, CosThetaMu; int fAnalysis; bool fIsSystCov, fIsStatCov, fIsNormCov; }; #endif diff --git a/src/T2K/T2K_CC0pi_XSec_2DPcos_nu_nonuniform.cxx b/src/T2K/T2K_CC0pi_XSec_2DPcos_nu_nonuniform.cxx index 9f83362..d55c194 100644 --- a/src/T2K/T2K_CC0pi_XSec_2DPcos_nu_nonuniform.cxx +++ b/src/T2K/T2K_CC0pi_XSec_2DPcos_nu_nonuniform.cxx @@ -1,210 +1,215 @@ // Copyright 2016 L. Pickering, P Stowell, R. Terri, C. Wilkinson, C. Wret /******************************************************************************* * This file is part of NUISANCE. * * NUISANCE is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * NUISANCE is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with NUISANCE. If not, see . *******************************************************************************/ #include "T2K_SignalDef.h" #include "T2K_CC0pi_XSec_2DPcos_nu_nonuniform.h" //******************************************************************** T2K_CC0pi_XSec_2DPcos_nu_nonuniform::T2K_CC0pi_XSec_2DPcos_nu_nonuniform(nuiskey samplekey) { //******************************************************************** // Sample overview --------------------------------------------------- std::string descrip = "T2K_CC0pi_XSec_2DPcos_nu_nonuniform sample. \n" \ "Target: CH \n" \ "Flux: MINERvA Medium Energy FHC numu \n" \ "Signal: CC-inclusive with theta < 20deg \n"; // Setup common settings fSettings = LoadSampleSettings(samplekey); fSettings.SetDescription(descrip); fSettings.SetXTitle("P_{#mu} (GeV)"); fSettings.SetYTitle("cos#theta_{#mu}"); fSettings.SetZTitle("d^{2}#sigma/dP_{#mu}dcos#theta_{#mu} (cm^{2}/GeV)"); fSettings.SetAllowedTypes("FULL,DIAG/FREE,SHAPE,FIX/SYSTCOV/STATCOV","FIX/FULL"); fSettings.SetEnuRange(0.0, 10.0); fSettings.DefineAllowedTargets("C,H"); fAnalysis = 1; // CCQELike plot information fSettings.SetTitle("T2K_CC0pi_XSec_2DPcos_nu_nonuniform"); fSettings.DefineAllowedSpecies("numu"); forwardgoing = (fSettings.GetS("type").find("REST") != std::string::npos); FinaliseSampleSettings(); // Scaling Setup --------------------------------------------------- // ScaleFactor automatically setup for DiffXSec/cm2/Nucleon fScaleFactor = ((GetEventHistogram()->Integral("width")/(fNEvents+0.)) * 1E-38 / (TotalIntegratedFlux())); // Setup Histograms SetHistograms(); // Final setup --------------------------------------------------- FinaliseMeasurement(); }; bool T2K_CC0pi_XSec_2DPcos_nu_nonuniform::isSignal(FitEvent *event){ return SignalDef::isT2K_CC0pi(event, EnuMin, EnuMax, forwardgoing); }; void T2K_CC0pi_XSec_2DPcos_nu_nonuniform::FillEventVariables(FitEvent* event){ if (event->NumFSParticle(13) == 0) return; TLorentzVector Pnu = event->GetNeutrinoIn()->fP; TLorentzVector Pmu = event->GetHMFSParticle(13)->fP; double pmu = Pmu.Vect().Mag()/1000.; double CosThetaMu = cos(Pnu.Vect().Angle(Pmu.Vect())); fXVar = pmu; fYVar = CosThetaMu; return; }; void T2K_CC0pi_XSec_2DPcos_nu_nonuniform::FillHistograms(){ Measurement1D::FillHistograms(); if (Signal){ fMCHist_Fine2D->Fill( fXVar, fYVar, Weight ); FillMCSlice( fXVar, fYVar, Weight ); } } // Modification is needed after the full reconfigure to move bins around // Otherwise this would need to be replaced by a TH2Poly which is too awkward. void T2K_CC0pi_XSec_2DPcos_nu_nonuniform::ConvertEventRates(){ + for (int i = 0; i < 9; i++){ + fMCHist_Slices[i]->GetSumw2(); + } + // Do standard conversion. Measurement1D::ConvertEventRates(); // First scale MC slices also by their width in Y fMCHist_Slices[0]->Scale(1.0 / 1.00); fMCHist_Slices[1]->Scale(1.0 / 0.60); fMCHist_Slices[2]->Scale(1.0 / 0.10); fMCHist_Slices[3]->Scale(1.0 / 0.10); fMCHist_Slices[4]->Scale(1.0 / 0.05); fMCHist_Slices[5]->Scale(1.0 / 0.05); fMCHist_Slices[6]->Scale(1.0 / 0.04); fMCHist_Slices[7]->Scale(1.0 / 0.04); fMCHist_Slices[8]->Scale(1.0 / 0.02); // Now Convert into 1D list fMCHist->Reset(); int bincount = 0; for (int i = 0; i < 9; i++){ for (int j = 0; j < fDataHist_Slices[i]->GetNbinsX(); j++){ fMCHist->SetBinContent(bincount+1, fMCHist_Slices[i]->GetBinContent(j+1)); + fMCHist->SetBinError(bincount+1, fMCHist_Slices[i]->GetBinError(j+1)); bincount++; } } return; } void T2K_CC0pi_XSec_2DPcos_nu_nonuniform::FillMCSlice(double x, double y, double w){ if (y >= -1.0 and y < 0.0) fMCHist_Slices[0]->Fill(x,w); else if (y >= 0.0 and y < 0.6) fMCHist_Slices[1]->Fill(x,w); else if (y >= 0.6 and y < 0.7) fMCHist_Slices[2]->Fill(x,w); else if (y >= 0.7 and y < 0.8) fMCHist_Slices[3]->Fill(x,w); else if (y >= 0.8 and y < 0.85) fMCHist_Slices[4]->Fill(x,w); else if (y >= 0.85 and y < 0.90) fMCHist_Slices[5]->Fill(x,w); else if (y >= 0.90 and y < 0.94) fMCHist_Slices[6]->Fill(x,w); else if (y >= 0.94 and y < 0.98) fMCHist_Slices[7]->Fill(x,w); else if (y >= 0.98 and y <= 1.00) fMCHist_Slices[8]->Fill(x,w); } void T2K_CC0pi_XSec_2DPcos_nu_nonuniform::SetHistograms(){ // Read in 1D Data Histograms fInputFile = new TFile( (FitPar::GetDataBase() + "/T2K/CC0pi/T2K_CC0PI_2DPmuCosmu_Data.root").c_str(),"READ"); fInputFile->ls(); // Read in 1D Data fDataHist = (TH1D*) fInputFile->Get("datahist"); fMCHist_Fine2D = new TH2D("T2K_CC0pi_XSec_2DPcos_nu_nonuniform_Fine2D","T2K_CC0pi_XSec_2DPcos_nu_nonuniform_Fine2D", 400, 0.0,30.0,100,-1.0,1.0); SetAutoProcessTH1(fMCHist_Fine2D); TH2D* tempcov = (TH2D*) fInputFile->Get("analysis1_totcov"); fFullCovar = new TMatrixDSym(fDataHist->GetNbinsX()); for (int i = 0; i < fDataHist->GetNbinsX(); i++){ for (int j = 0; j < fDataHist->GetNbinsX(); j++){ (*fFullCovar)(i,j) = tempcov->GetBinContent(i+1, j+1); } } covar = StatUtils::GetInvert(fFullCovar); fDecomp = StatUtils::GetDecomp(fFullCovar); // Read in 2D Data fDataPoly = (TH2Poly*) fInputFile->Get("datapoly"); fDataPoly->SetNameTitle("T2K_CC0pi_XSec_2DPcos_nu_nonuniform_datapoly","T2K_CC0pi_XSec_2DPcos_nu_nonuniform_datapoly"); SetAutoProcessTH1(fDataPoly, kCMD_Write); fDataHist->Reset(); // Read in 2D Data Slices and Make MC Slices int bincount = 0; for (int i = 0; i < 9; i++){ // Get Data Histogram fInputFile->ls(); fDataHist_Slices.push_back((TH1D*)fInputFile->Get(Form("dataslice_%i",i))->Clone()); fDataHist_Slices[i]->SetNameTitle(Form("T2K_CC0pi_XSec_2DPcos_nu_nonuniform_data_Slice%i",i), (Form("T2K_CC0pi_XSec_2DPcos_nu_nonuniform_data_Slice%i",i))); // Loop over nbins and set errors from covar for (int j = 0; j < fDataHist_Slices[i]->GetNbinsX(); j++){ fDataHist_Slices[i]->SetBinError(j+1, sqrt((*fFullCovar)(bincount,bincount)) * 1E-38); std::cout << "Setting data hist " << fDataHist_Slices[i]->GetBinContent(j+1) << " " << fDataHist_Slices[i]->GetBinError(j+1) << std::endl; fDataHist->SetBinContent(bincount+1, fDataHist_Slices[i]->GetBinContent(j+1) ); fDataHist->SetBinError(bincount+1, fDataHist_Slices[i]->GetBinError(j+1) ); bincount++; } // Make MC Clones fMCHist_Slices.push_back((TH1D*) fDataHist_Slices[i]->Clone()); fMCHist_Slices[i]->SetNameTitle(Form("T2K_CC0pi_XSec_2DPcos_nu_nonuniform_MC_Slice%i",i), (Form("T2K_CC0pi_XSec_2DPcos_nu_nonuniform_MC_Slice%i",i))); SetAutoProcessTH1(fDataHist_Slices[i],kCMD_Write); SetAutoProcessTH1(fMCHist_Slices[i]); // fMCHist_Slices[i]->Reset(); } return; };