diff --git a/CaseStudies/noPCM/src/Julia/Calculations.jl b/CaseStudies/noPCM/src/Julia/Calculations.jl new file mode 100644 index 00000000..8b4196bf --- /dev/null +++ b/CaseStudies/noPCM/src/Julia/Calculations.jl @@ -0,0 +1,54 @@ +module Calculations + +import DifferentialEquations as D + +function func_V_W(V_tank::Float64) + return V_tank +end + +function func_m_W(rho_W::Float64, V_W::Float64) + return V_W * rho_W +end + +function func_tau_W(C_W::Float64, h_C::Float64, A_C::Float64, m_W::Float64) + return m_W * C_W / (h_C * A_C) +end + +""" Calculates temperature of the water: the average kinetic energy of the particles within the water (degreeC) + - Parameter T_C: temperature of the heating coil: the average kinetic energy of the particles within the coil (degreeC) + - Parameter T_init: initial temperature: the temperature at the beginning of the simulation (degreeC) + - Parameter t_final: final time: the amount of time elapsed from the beginning of the simulation to its conclusion (s) + - Parameter A_tol: absolute tolerance + - Parameter R_tol: relative tolerance + - Parameter t_step: time step for simulation: the finite discretization of time used in the numerical method for solving the computational model (s) + - Parameter tau_W: ODE parameter for water related to decay time: derived parameter based on rate of change of temperature of water (s) + - Returns: temperature of the water: the average kinetic energy of the particles within the water (degreeC) +""" +function func_T_W(T_C::Float64, T_init::Float64, T_final::Float64, A_tol::Float64, R_tol::Float64, t_step::Float64, tau_W::Float64) + """ Calculates the rate of change of T_W based on its current value + - Parameter T_W: current value of T_W + - Parameter _: params (unused) + - Parameter t: time(?) (unused) + - Returns: derivative of T_W + """ + function f(T_W, _, _) + return [-(1.0 / tau_W) * T_W[1] + 1.0 / tau_W * T_C] + end + + # Need to specify total time range. + t_span = (0.0, T_final) + # Need to give derivative function, initial value, and total time range. + r = D.ODEProblem(f, [T_init], t_span) + # Need to give problem, algorithm (if you want to choose it), relative tolerance, + # absolute tolerance, and length of time steps. + sol = D.solve(r, alg=D.DP5(), reltol=R_tol, abstol=A_tol, saveat=t_step) + # Some post-processing to unwrap the data we want. + T_W = Array{Float64}([]) + for x in sol.u + append!(T_W, x[1]) + end + + return T_W +end + +end \ No newline at end of file diff --git a/CaseStudies/noPCM/src/Julia/Constants.jl b/CaseStudies/noPCM/src/Julia/Constants.jl new file mode 100644 index 00000000..d23b02b8 --- /dev/null +++ b/CaseStudies/noPCM/src/Julia/Constants.jl @@ -0,0 +1,17 @@ +module Constants + +const PI = 3.14159265 +const L_MIN = 0.1 +const L_MAX = 50.0 +const RHO_W_MIN = 950.0 +const RHO_W_MAX = 1000.0 +const A_C_MAX = 100000.0 +const C_W_MIN = 4170.0 +const C_W_MAX = 4210.0 +const H_C_MIN = 10.0 +const H_C_MAX = 10000.0 +const T_FINAL_MAX = 86400.0 +const AR_MIN = 1.0e-2 +const AR_MAX = 100.0 + +end \ No newline at end of file diff --git a/CaseStudies/noPCM/src/Julia/Control.jl b/CaseStudies/noPCM/src/Julia/Control.jl new file mode 100644 index 00000000..30a3c956 --- /dev/null +++ b/CaseStudies/noPCM/src/Julia/Control.jl @@ -0,0 +1,20 @@ +module Control + +include("Calculations.jl") +import .Calculations +include("InputParameters.jl") +import .InputParameters +include("OutputFormat.jl") +import .OutputFormat + +filename = ARGS[1] +A_C, C_W, h_C, T_init, t_final, L, T_C, t_step, rho_W, D, A_tol, R_tol, E_W = InputParameters.get_input(filename) +V_tank = InputParameters.derived_values(D, L) +InputParameters.input_constraints(A_C, C_W, h_C, T_init, t_final, L, T_C, t_step, rho_W, D, E_W) +V_W = Calculations.func_V_W(V_tank) +m_W = Calculations.func_m_W(rho_W, V_W) +tau_W = Calculations.func_tau_W(C_W, h_C, A_C, m_W) +T_W = Calculations.func_T_W(T_C, T_init, t_final, A_tol, R_tol, t_step, tau_W) +OutputFormat.write_output(E_W, T_W) + +end \ No newline at end of file diff --git a/CaseStudies/noPCM/src/Julia/InputParameters.jl b/CaseStudies/noPCM/src/Julia/InputParameters.jl new file mode 100644 index 00000000..8d948f5f --- /dev/null +++ b/CaseStudies/noPCM/src/Julia/InputParameters.jl @@ -0,0 +1,239 @@ +module InputParameters + +include("Constants.jl") +import .Constants + +function get_input(filename::String) + infile = open(filename, "r") + readline(infile) + A_C = parse(Float64, readline(infile)) + readline(infile) + C_W = parse(Float64, readline(infile)) + readline(infile) + h_C = parse(Float64, readline(infile)) + readline(infile) + T_init = parse(Float64, readline(infile)) + readline(infile) + t_final = parse(Float64, readline(infile)) + readline(infile) + L = parse(Float64, readline(infile)) + readline(infile) + T_C = parse(Float64, readline(infile)) + readline(infile) + t_step = parse(Float64, readline(infile)) + readline(infile) + rho_W = parse(Float64, readline(infile)) + readline(infile) + D = parse(Float64, readline(infile)) + readline(infile) + A_tol = parse(Float64, readline(infile)) + readline(infile) + R_tol = parse(Float64, readline(infile)) + readline(infile) + E_W = parse(Float64, readline(infile)) + close(infile) + + return A_C, C_W, h_C, T_init, t_final, L, T_C, t_step, rho_W, D, A_tol, R_tol, E_W +end + +function derived_values(D::Float64, L::Float64) + V_tank = Constants.PI * (D / 2.0) ^ 2.0 * L + + return V_tank +end + +function input_constraints(A_C::Float64, C_W::Float64, h_C::Float64, T_init::Float64, t_final::Float64, L::Float64, T_C::Float64, t_step::Float64, rho_W::Float64, D::Float64, E_W::Float64) + if !(A_C <= Constants.Constants.A_C_MAX) + print("Warning: ") + print("A_C has value ") + print(A_C) + print(", but is suggested to be ") + print("below ") + print(Constants.Constants.A_C_MAX) + print(" (A_C_max)") + println(".") + end + if !(Constants.Constants.C_W_MIN < C_W && C_W < Constants.Constants.C_W_MAX) + print("Warning: ") + print("C_W has value ") + print(C_W) + print(", but is suggested to be ") + print("between ") + print(Constants.Constants.C_W_MIN) + print(" (C_W_min)") + print(" && ") + print(Constants.Constants.C_W_MAX) + print(" (C_W_max)") + println(".") + end + if !(Constants.Constants.H_C_MIN <= h_C && h_C <= Constants.Constants.H_C_MAX) + print("Warning: ") + print("h_C has value ") + print(h_C) + print(", but is suggested to be ") + print("between ") + print(Constants.Constants.H_C_MIN) + print(" (h_C_min)") + print(" && ") + print(Constants.Constants.H_C_MAX) + print(" (h_C_max)") + println(".") + end + if !(t_final < Constants.Constants.T_FINAL_MAX) + print("Warning: ") + print("t_final has value ") + print(t_final) + print(", but is suggested to be ") + print("below ") + print(Constants.Constants.T_FINAL_MAX) + print(" (t_final_max)") + println(".") + end + if !(Constants.Constants.L_MIN <= L && L <= Constants.Constants.L_MAX) + print("Warning: ") + print("L has value ") + print(L) + print(", but is suggested to be ") + print("between ") + print(Constants.Constants.L_MIN) + print(" (L_min)") + print(" && ") + print(Constants.Constants.L_MAX) + print(" (L_max)") + println(".") + end + if !(Constants.Constants.RHO_W_MIN < rho_W && rho_W <= Constants.Constants.RHO_W_MAX) + print("Warning: ") + print("rho_W has value ") + print(rho_W) + print(", but is suggested to be ") + print("between ") + print(Constants.Constants.RHO_W_MIN) + print(" (rho_W_min)") + print(" && ") + print(Constants.Constants.RHO_W_MAX) + print(" (rho_W_max)") + println(".") + end + if !(Constants.Constants.AR_MIN <= D && D <= Constants.Constants.AR_MAX) + print("Warning: ") + print("D has value ") + print(D) + print(", but is suggested to be ") + print("between ") + print(Constants.Constants.AR_MIN) + print(" (AR_min)") + print(" && ") + print(Constants.Constants.AR_MAX) + print(" (AR_max)") + println(".") + end + if !(A_C > 0.0) + print("Warning: ") + print("A_C has value ") + print(A_C) + print(", but is suggested to be ") + print("above ") + print(0.0) + println(".") + end + if !(C_W > 0.0) + print("Warning: ") + print("C_W has value ") + print(C_W) + print(", but is suggested to be ") + print("above ") + print(0.0) + println(".") + end + if !(h_C > 0.0) + print("Warning: ") + print("h_C has value ") + print(h_C) + print(", but is suggested to be ") + print("above ") + print(0.0) + println(".") + end + if !(0.0 < T_init && T_init < 100.0) + print("Warning: ") + print("T_init has value ") + print(T_init) + print(", but is suggested to be ") + print("between ") + print(0.0) + print(" && ") + print(100.0) + println(".") + end + if !(t_final > 0.0) + print("Warning: ") + print("t_final has value ") + print(t_final) + print(", but is suggested to be ") + print("above ") + print(0.0) + println(".") + end + if !(L > 0.0) + print("Warning: ") + print("L has value ") + print(L) + print(", but is suggested to be ") + print("above ") + print(0.0) + println(".") + end + if !(0.0 < T_C && T_C < 100.0) + print("Warning: ") + print("T_C has value ") + print(T_C) + print(", but is suggested to be ") + print("between ") + print(0.0) + print(" && ") + print(100.0) + println(".") + end + if !(0.0 < t_step && t_step < t_final) + print("Warning: ") + print("t_step has value ") + print(t_step) + print(", but is suggested to be ") + print("between ") + print(0.0) + print(" && ") + print(t_final) + print(" (t_final)") + println(".") + end + if !(rho_W > 0.0) + print("Warning: ") + print("rho_W has value ") + print(rho_W) + print(", but is suggested to be ") + print("above ") + print(0.0) + println(".") + end + if !(D > 0.0) + print("Warning: ") + print("D has value ") + print(D) + print(", but is suggested to be ") + print("above ") + print(0.0) + println(".") + end + if !(E_W >= 0.0) + print("Warning: ") + print("E_W has value ") + print(E_W) + print(", but is suggested to be ") + print("above ") + print(0.0) + println(".") + end +end + +end \ No newline at end of file diff --git a/CaseStudies/noPCM/src/Julia/Makefile b/CaseStudies/noPCM/src/Julia/Makefile new file mode 100644 index 00000000..a16b0d6c --- /dev/null +++ b/CaseStudies/noPCM/src/Julia/Makefile @@ -0,0 +1,13 @@ +# Generated by Drasil v0.1-alpha + +# Project Name: SWHSNoPCM + +# Project Purpose: Investigate the heating of water in a solar water heating +# tank. + +build: + +run: build + julia Control.jl $(RUNARGS) + +.PHONY: build run diff --git a/CaseStudies/noPCM/src/Julia/OutputFormat.jl b/CaseStudies/noPCM/src/Julia/OutputFormat.jl new file mode 100644 index 00000000..2ec8e4c9 --- /dev/null +++ b/CaseStudies/noPCM/src/Julia/OutputFormat.jl @@ -0,0 +1,12 @@ +module OutputFormat + +function write_output(E_W::Float64, T_W::Array{Float64}) + outputfile = open("output.txt", "w") + print(outputfile, "T_W = ") + println(outputfile, T_W) + print(outputfile, "E_W = ") + println(outputfile, E_W) + close(outputfile) +end + +end \ No newline at end of file diff --git a/CaseStudies/noPCM/src/Julia/input.txt b/CaseStudies/noPCM/src/Julia/input.txt new file mode 100644 index 00000000..c162afb8 --- /dev/null +++ b/CaseStudies/noPCM/src/Julia/input.txt @@ -0,0 +1,26 @@ +# heating coil surface area (m^2) +0.12 +# specific heat capacity of water (J/(kg degreeC)) +4186.0 +# convective heat transfer coefficient between coil and water (W/(m^2 degreeC)) +1000.0 +# initial temperature (degreeC) +40.0 +# final time (s) +50000.0 +# length of tank (m) +1.5 +# temperature of the heating coil (degreeC) +50.0 +# time step for simulation (s) +10.0 +# density of water (kg/m^3) +1000.0 +# diameter of tank (m) +0.412 +# absolute tolerance +1.0e-10 +# relative tolerance +1.0e-10 +# change in heat energy in the water (J) +0.0 diff --git a/CaseStudies/noPCM/src/Julia/output.txt b/CaseStudies/noPCM/src/Julia/output.txt new file mode 100644 index 00000000..3bc9f2e8 --- /dev/null +++ b/CaseStudies/noPCM/src/Julia/output.txt @@ -0,0 +1,2 @@ +T_W = [40.0, 40.01432501879317, 40.02862951697, 40.0429135239263, 40.05717706901646, 40.0714201815544, 40.08564289080837, 40.0998452260047, 40.11402721632829, 40.12818889092262, 40.142330278889766, 40.15645140929037, 40.17055231114365, 40.18463301342743, 40.198693545078086, 40.212733934990595, 40.2267542120185, 40.24075440497393, 40.25473454262759, 40.268694653708785, 40.28263476690549, 40.29655491086932, 40.31045511420637, 40.32433540547873, 40.33819581320817, 40.35203636587621, 40.36585709192404, 40.3796580197526, 40.39343917772251, 40.40720059415412, 40.420942297327485, 40.43466431548237, 40.44836667681826, 40.46204940949433, 40.475712541629484, 40.489356101302334, 40.50298011655121, 40.51658461537413, 40.530169625728846, 40.54373517553281, 40.55728129266319, 40.570808004956945, 40.58431534022051, 40.59780332621416, 40.61127199065078, 40.624721361204315, 40.63815146550987, 40.651562331163646, 40.66495398572294, 40.678326456706166, 40.69167977159286, 40.70501395782365, 40.71832904280029, 40.73162505388564, 40.74490201840365, 40.75815996363941, 40.7713989168391, 40.78461890521001, 40.797819955920566, 40.81100209610027, 40.82416535283975, 40.837309753190745, 40.8504353241661, 40.86354209273977, 40.87663008584683, 40.889699330383436, 40.90274985320689, 40.91578168113559, 40.92879484095006, 40.941789359405405, 40.95476526320475, 40.96772257900789, 40.980661333437304, 40.99358155307811, 41.0064832644781, 41.01936649414772, 41.03223126856008, 41.045077614150955, 41.057905557318776, 41.07071512442464, 41.0835063417923, 41.09627923570817, 41.10903383242133, 41.12177015814352, 41.13448823904915, 41.14718810127526, 41.159869770921595, 41.17253327405054, 41.18517863668712, 41.197805884819054, 41.21041504439672, 41.22300614133314, 41.235579201503995, 41.248134250747654, 41.26067131486513, 41.273190419620086, 41.285691590738864, 41.29817485391046, 41.310640234798036, 41.323087759026045, 41.335517452167494, 41.34792933975961, 41.360323447303905, 41.37269980026615, 41.385058424076384, 41.39739934412891, 41.40972258578229, 41.42202817435937, 41.434316135147256, 41.446586493397305, 41.458839274325165, 41.47107450311073, 41.48329220489816, 41.49549240479591, 41.50767512787667, 41.51984039917739, 41.531988243699324, 41.54411868640796, 41.55623175223307, 41.56832746606868, 41.58040585277308, 41.59246693716886, 41.60451074404282, 41.61653729814606, 41.628546624193966, 41.64053874686614, 41.652513690806494, 41.66447148062318, 41.67641214088862, 41.68833569614363, 41.700242170907146, 41.71213158964262, 41.72400397677642, 41.735859356700814, 41.74769775377393, 41.75951919231976, 41.77132369662818, 41.78311129095494, 41.79488199952168, 41.80663584651587, 41.818372856090896, 41.83009305236601, 41.84179645942632, 41.85348310132284, 41.86515300207241, 41.8768061856578, 41.888442676027616, 41.90006249709634, 41.91166567274436, 41.9232522268179, 41.93482218312908, 41.94637556545588, 41.957912397542174, 41.969432703097695, 41.98093650579805, 41.992423829284725, 42.00389469716509, 42.01534913301236, 42.02678716036565, 42.03820880272995, 42.04961408357611, 42.06100302634086, 42.07237565444082, 42.0837319912538, 42.095072060110134, 42.10639588430762, 42.117703487111484, 42.12899489175443, 42.14027012143661, 42.151529199325616, 42.16277214855652, 42.17399899223183, 42.18520975342151, 42.196404455162984, 42.20758312046113, 42.21874577228827, 42.2298924335842, 42.24102312725614, 42.2521378761788, 42.26323670319432, 42.274319631112306, 42.285386682709806, 42.29643788073133, 42.30747324788885, 42.318492806861784, 42.329496580297004, 42.34048459080883, 42.35145686097905, 42.3624134133569, 42.37335427045906, 42.3842794547697, 42.39518898874039, 42.406082894790195, 42.416961195305625, 42.42782391264063, 42.43867106912227, 42.44950268705723, 42.46031878869925, 42.471119396269046, 42.48190453195636, 42.49267421791991, 42.503428476287404, 42.514167329155555, 42.52489079859005, 42.535598906625594, 42.546291675265856, 42.55696912648352, 42.56763128222025, 42.5782781643867, 42.58890979486254, 42.59952619549639, 42.6101273881059, 42.6207133944777, 42.63128423636741, 42.64183993549964, 42.65238051356799, 42.662905992235075, 42.67341639313248, 42.683911737860775, 42.69439204798955, 42.70485734505737, 42.71530765057179, 42.725742986009365, 42.73616337281564, 42.74656883240515, 42.75695938616143, 42.767335055436995, 42.77769586155336, 42.78804182580104, 42.79837296944524, 42.80868931373217, 42.81899087985668, 42.82927768898224, 42.83954976224277, 42.8498071207427, 42.86004978555693, 42.870277777730834, 42.880491118280275, 42.890689828191604, 42.90087392842163, 42.91104343989767, 42.921198383517506, 42.9313387801494, 42.94146465063211, 42.95157601577486, 42.961672896357356, 42.9717553131298, 42.98182328681285, 42.991876838097674, 43.001915987645894, 43.011940756089636, 43.0219511640315, 43.031947232044544, 43.041928980672346, 43.05189643042894, 43.06184960179885, 43.071788515237074, 43.081713191169094, 43.09162364999088, 43.10151991206887, 43.11140199774, 43.12126992731167, 43.131123721061776, 43.14096339923893, 43.150788982078126, 43.16060048977505, 43.17039794248578, 43.18018136033831, 43.18995076343258, 43.19970617184042, 43.20944760560558, 43.219175084743746, 43.22888862924251, 43.23858825906138, 43.24827399413178, 43.25794585435706, 43.267603859612485, 43.27724802974523, 43.28687838457441, 43.29649494389103, 43.30609772745802, 43.31568675501024, 43.325262046254466, 43.33482362086938, 43.34437149850559, 43.35390569878562, 43.363426241303905, 43.37293314562681, 43.382426431292615, 43.391906117811516, 43.40137222466562, 43.41082477130896, 43.420263777167484, 43.42968926163906, 43.43910124409348, 43.448499743872425, 43.45788478028953, 43.46725637263033, 43.476614540152624, 43.48595930210218, 43.495290677685915, 43.5046086860734, 43.513913346407506, 43.523204677804436, 43.53248269935367, 43.54174743011799, 43.55099888913349, 43.56023709540955, 43.56946206792887, 43.57867382564744, 43.58787238749456, 43.59705777237282, 43.606229999158124, 43.61538908669967, 43.624535053819955, 43.63366791931478, 43.64278770195326, 43.651894420477795, 43.6609880936041, 43.67006874002117, 43.67913637839133, 43.68819102735018, 43.69723270550664, 43.70626143144293, 43.71527722371457, 43.72428010085037, 43.73327008135246, 43.74224718369625, 43.75121142633048, 43.76016282767716, 43.76910140613163, 43.778027180062516, 43.786940167811736, 43.79584038769454, 43.80472785800679, 43.813602597026, 43.82246462298408, 43.8313139540867, 43.84015060851416, 43.84897460442137, 43.857785959937914, 43.86658469316796, 43.87537082219035, 43.884144365058525, 43.89290533980059, 43.90165376441927, 43.910389656891915, 43.91911303517052, 43.9278239171817, 43.93652232082671, 43.94520826398145, 43.95388176449643, 43.96254284019681, 43.97119150888238, 43.979827788327555, 43.98845169628139, 43.99706325046757, 44.00566246858441, 44.014249368304874, 44.02282396727654, 44.03138628312161, 44.03993633343696, 44.048474135794066, 44.05699970773904, 44.065513066792626, 44.07401423045022, 44.08250321618183, 44.0909800414321, 44.099444723620316, 44.107897280140385, 44.11633772837149, 44.12476608566887, 44.13318236934663, 44.14158659669469, 44.14997878497887, 44.15835895144092, 44.16672711329848, 44.17508328774512, 44.183427491950304, 44.19175974305944, 44.20008005819383, 44.20838845445067, 44.2166849489031, 44.22496955860015, 44.233242300566786, 44.24150319180385, 44.249752249288136, 44.25798948997233, 44.266214930785026, 44.27442858863074, 44.28263048038991, 44.29082062291886, 44.298999033049846, 44.307165727591034, 44.3153207233265, 44.32346403701623, 44.33159568539613, 44.33971568517801, 44.3478240530496, 44.35592080567453, 44.364005959692356, 44.37207953171855, 44.38014153834448, 44.38819199613744, 44.396230921640615, 44.404258331373136, 44.41227424183545, 44.420278669514985, 44.428271630856244, 44.43625314227916, 44.444223220180824, 44.45218188093546, 44.46012914089444, 44.46806501638626, 44.475989523716585, 44.4839026791682, 44.49180449900105, 44.49969499945219, 44.50757419673585, 44.5154421070434, 44.52329874654331, 44.53114413138125, 44.53897827767998, 44.54680120153944, 44.554612919036686, 44.562413446225925, 44.570202799138514, 44.57798099378294, 44.58574804614482, 44.593503972186944, 44.60124878784922, 44.60898250904871, 44.616705151679604, 44.62441673161324, 44.632117264698095, 44.6398067667598, 44.64748525360111, 44.655152741001935, 44.66280924471932, 44.67045478048745, 44.67808936401765, 44.6857130109984, 44.6933257370953, 44.70092755796259, 44.708518489230514, 44.71609854649253, 44.72366774532043, 44.731226101264284, 44.738773629852524, 44.74631034659189, 44.75383626696743, 44.76135140644253, 44.768855780458885, 44.77634940443652, 44.783832293773784, 44.791304463847325, 44.798765930012145, 44.806216707601536, 44.813656811927125, 44.82108625827887, 44.82850506192502, 44.83591323811219, 44.843310802065275, 44.85069776898751, 44.858074154060446, 44.865439972443966, 44.87279523927625, 44.88013996967382, 44.88747417873152, 44.8947978815225, 44.90211109309825, 44.90941382848855, 44.91670610270154, 44.92398793072365, 44.93125932751965, 44.93852030803262, 44.945770887183976, 44.95301107987343, 44.96024090097904, 44.96746036535716, 44.974669487851294, 44.981868283287284, 44.98905676645315, 44.99623495211604, 45.00340285502255, 45.01056048989873, 45.017707871450106, 45.02484501436162, 45.0319719332977, 45.03908864290219, 45.04619515779844, 45.05329149258919, 45.06037766185668, 45.06745368016258, 45.07451956204802, 45.08157532203358, 45.088620974619296, 45.09565653428465, 45.102682015488575, 45.10969743266948, 45.116702800245186, 45.12369813261301, 45.13068344414968, 45.13765874921142, 45.144624062133865, 45.151579397232126, 45.15852476880077, 45.16546019111379, 45.17238567842467, 45.17930124496631, 45.1862069049511, 45.19310267257084, 45.19998856199681, 45.20686458737974, 45.21373076284981, 45.22058710251665, 45.22743362046935, 45.23427033077753, 45.24109724750549, 45.24791438468313, 45.254721756314254, 45.261519376383255, 45.268307258855025, 45.27508541767501, 45.2818538667692, 45.288612620044105, 45.29536169138679, 45.302101094664835, 45.308830843726376, 45.31555095240009, 45.322261434495175, 45.328962303801376, 45.335653574088965, 45.342335259108765, 45.34900737259213, 45.35566992825096, 45.36232293977768, 45.36896642084524, 45.375600385107155, 45.382224846197474, 45.38883981773077, 45.39544531330215, 45.40204134648727, 45.408627930842336, 45.415205079904055, 45.4217728071897, 45.42833112619707, 45.43488005040451, 45.441419593270886, 45.447949768235624, 45.45447058871867, 45.460982068120515, 45.467484219822175, 45.47397705718522, 45.480460593551754, 45.48693484224552, 45.493399816585736, 45.49985552985844, 45.506301995324904, 45.512739226227936, 45.51916723579197, 45.525586037222986, 45.53199564370854, 45.53839606841779, 45.54478732450144, 45.55116942509179, 45.55754238330271, 45.56390621222965, 45.57026092494963, 45.57660653452125, 45.582943053984685, 45.5892704963617, 45.59558887465562, 45.60189820185134, 45.60819849091536, 45.61448975479574, 45.62077200642211, 45.62704525870568, 45.63330952453924, 45.639564816797176, 45.645811148335405, 45.65204853199146, 45.65827698058444, 45.664496506915015, 45.67070712376543, 45.67690884389952, 45.68310168006268, 45.68928564498189, 45.69546075136571, 45.70162701190427, 45.70778443926928, 45.71393304611403, 45.720072845073375, 45.72620384876376, 45.73232606979165, 45.73843952074868, 45.74454421419291, 45.75064016266472, 45.75672737868705, 45.76280587476541, 45.76887566338789, 45.774936757025145, 45.78098916813042, 45.78703290913949, 45.79306799247076, 45.79909443052515, 45.8051122356862, 45.811121420319985, 45.81712199677518, 45.823113977383, 45.82909737445726, 45.83507220029434, 45.841038467173185, 45.846996187355316, 45.85294537308482, 45.85888603658837, 45.864818190075205, 45.87074184573712, 45.8766570157485, 45.8825637122663, 45.88846194743003, 45.8943517333618, 45.900233082166274, 45.90610600593069, 45.91197051672485, 45.91782662660114, 45.92367434759452, 45.929513691722505, 45.9353446709852, 45.94116729736528, 45.94698158282797, 45.9527875393211, 45.958585178775046, 45.96437451311296, 45.970155554240144, 45.97592831403155, 45.9816928043456, 45.98744903702425, 45.99319702389298, 45.99893677676081, 46.004668307420246, 46.01039162764735, 46.016106749201704, 46.02181368382641, 46.027512443248085, 46.03320303917688, 46.03888548330648, 46.04455978731407, 46.05022596286038, 46.05588402158965, 46.061533975129656, 46.067175835091696, 46.07280961307058, 46.078435320644665, 46.084052969375804, 46.089662570809395, 46.09526413647435, 46.10085767788312, 46.10644320653165, 46.11202073389945, 46.11759027144952, 46.1231518306284, 46.12870542286615, 46.13425105957635, 46.13978875215612, 46.14531851198609, 46.150840350430414, 46.15635427883677, 46.16186030853638, 46.16735845084396, 46.172848717057775, 46.17833111845959, 46.18380566631854, 46.18927237189854, 46.194731246430585, 46.20018230112801, 46.205625547188596, 46.21106099579454, 46.21648865811248, 46.221908545293516, 46.22732066847314, 46.232725038771314, 46.23812166729241, 46.24351056512526, 46.2488917433431, 46.254265213003634, 46.25963098514897, 46.26498907080568, 46.27033948098476, 46.275682226681624, 46.281017318876145, 46.286344768532615, 46.29166458659978, 46.2969767840108, 46.30228137168328, 46.307578360519265, 46.31286776140522, 46.31814958521206, 46.32342384279513, 46.32869054499421, 46.33394970263351, 46.33920132652169, 46.34444542745182, 46.34968201620143, 46.354911103532466, 46.36013270019133, 46.36534681690884, 46.37055346440026, 46.375752653365275, 46.38094439448803, 46.38612869843708, 46.39130557586544, 46.39647503741645, 46.40163709372528, 46.406791755395794, 46.4119390330164, 46.4170789371608, 46.422211478387986, 46.42733666724227, 46.43245451425328, 46.43756502993592, 46.44266822479042, 46.44776410930231, 46.45285269394245, 46.45793398916695, 46.463008005417294, 46.46807475312021, 46.47313424268778, 46.47818648451736, 46.48323148899162, 46.48826926647855, 46.49329982733143, 46.498323181888836, 46.50333934047468, 46.508348313398166, 46.513350110953795, 46.51834474342137, 46.523332221066035, 46.52831255413819, 46.53328575287358, 46.538251827493234, 46.5432107882035, 46.54816264519602, 46.553107408647755, 46.55804508872095, 46.56297569556319, 46.56789923930733, 46.572815730071554, 46.577725177959344, 46.58262759305948, 46.587522985446064, 46.5924113651785, 46.59729274230328, 46.60216712686536, 46.607034528880725, 46.61189495834743, 46.61674842524965, 46.62159493955771, 46.626434511228084, 46.63126715020336, 46.63609286641227, 46.64091166976969, 46.64572357017665, 46.65052857752028, 46.65532670167386, 46.660117952496826, 46.66490233983473, 46.669679873519286, 46.67445056336832, 46.679214419185804, 46.68397145076185, 46.688721667872706, 46.69346508028076, 46.69820169773454, 46.702931529968694, 46.70765458670403, 46.71237087764748, 46.71708041249212, 46.721783200917166, 46.72647925258796, 46.731168577155984, 46.73585118425886, 46.74052708352037, 46.74519628455039, 46.74985879694496, 46.75451463028626, 46.759163794142594, 46.76380629806842, 46.768442151604305, 46.773071364276994, 46.77769394559934, 46.782309905070335, 46.78691925217512, 46.79152199638855, 46.796118147182234, 46.8007077139985, 46.805290706264664, 46.80986713339497, 46.81443700479059, 46.81900032983964, 46.823557117917154, 46.828107378385106, 46.832651120592395, 46.83718835387486, 46.84171908755526, 46.8462433309433, 46.850761093335606, 46.85527238401574, 46.85977721225419, 46.86427558730837, 46.86876751842265, 46.873253014828315, 46.877732085743574, 46.88220474037359, 46.88667098791043, 46.891130837533105, 46.89558429840757, 46.900031379686695, 46.90447209051029, 46.90890644000508, 46.91333443728476, 46.91775609144991, 46.922171411588074, 46.92658040677371, 46.930983086068224, 46.935379458519925, 46.939769533164096, 46.94415331902291, 46.94853082510549, 46.95290206040791, 46.957267033913126, 46.96162575459107, 46.965978231398594, 46.97032447327947, 46.9746644891651, 46.97899828798669, 46.98332587865172, 46.98764727004913, 46.99196247105555, 46.99627149053529, 47.000574337340375, 47.00487102031049, 47.00916154827302, 47.01344593004305, 47.01772417442333, 47.02199629020432, 47.02626228616417, 47.0305221710687, 47.034775953671435, 47.03902364271359, 47.04326524692406, 47.04750077501943, 47.05173023570398, 47.05595363766967, 47.060170989596166, 47.064382300150804, 47.06858757798862, 47.072786831752346, 47.07698007007237, 47.08116730156682, 47.08534853484147, 47.0895237784898, 47.09369304109298, 47.09785633121987, 47.102013657427015, 47.106165028258644, 47.11031045224669, 47.114449937910756, 47.11858349375816, 47.12271112828388, 47.126832849970604, 47.1309486672887, 47.135058588696225, 47.13916262263893, 47.143260777550246, 47.14735306185131, 47.151439483952664, 47.1555200522648, 47.15959477517254, 47.16366366104539, 47.16772671824126, 47.17178395510647, 47.17583537997575, 47.17988100117225, 47.18392082700752, 47.18795486578153, 47.191983125782656, 47.19600561528769, 47.20002234256183, 47.20403331585869, 47.208038543420294, 47.212038033477086, 47.2160317942479, 47.22001983393999, 47.22400216074905, 47.22797878285914, 47.231949708442755, 47.23591494566081, 47.23987450266261, 47.243828387585886, 47.24777660855677, 47.25171917368982, 47.25565609108799, 47.259587368842666, 47.26351301503361, 47.267433037729035, 47.271347444985544, 47.27525624484815, 47.27915944535029, 47.2830570545138, 47.286949080348926, 47.290835530854345, 47.294716414017124, 47.29859173781275, 47.30246151020513, 47.30632573914655, 47.31018443257776, 47.31403759842788, 47.317885244614466, 47.321727379053904, 47.325564009647145, 47.3293951442744, 47.33322079080497, 47.33704095709726, 47.34085565099876, 47.34466488034609, 47.348468652964925, 47.35226697667009, 47.356059859265464, 47.35984730854407, 47.363629332287985, 47.367405938268426, 47.371177134245684, 47.37494292796916, 47.37870332717734, 47.38245833959784, 47.38620797294735, 47.38995223493167, 47.39369113324569, 47.397424675573404, 47.401152869587925, 47.40487572295144, 47.40859324331524, 47.41230543831972, 47.41601231559439, 47.419713882757826, 47.42341014741773, 47.4271011171709, 47.430786799603226, 47.4344672022897, 47.43814233279442, 47.441812198670576, 47.44547680746046, 47.44913616669546, 47.45279028389607, 47.4564391665719, 47.46008282222161, 47.46372125833301, 47.46735448238299, 47.47098250183753, 47.47460532415173, 47.47822295676998, 47.481835407137105, 47.48544268268015, 47.48904479080816, 47.49264173891993, 47.496233534404034, 47.49982018463878, 47.503401696992235, 47.50697807882223, 47.51054933747635, 47.51411548029191, 47.51767651459602, 47.52123244770552, 47.524783286927004, 47.52832903955684, 47.531869712881125, 47.535405314175726, 47.538935850706274, 47.542461329728134, 47.54598175848644, 47.54949714421608, 47.553007494141696, 47.556512815477674, 47.56001311542818, 47.5635084011871, 47.56699867993811, 47.57048395885462, 47.573964245099816, 47.5774395458266, 47.58090986817767, 47.584375219285455, 47.58783560627215, 47.5912910362497, 47.59474151631981, 47.59818705357392, 47.60162765509327, 47.6050633279488, 47.60849407920124, 47.611919915901076, 47.61534084508853, 47.6187568737936, 47.62216800903601, 47.62557425782527, 47.628975627160635, 47.632372124035534, 47.63576375544065, 47.639150528342796, 47.642532449698216, 47.64590952645353, 47.64928176554575, 47.652649173902255, 47.6560117584408, 47.659369526069526, 47.66272248368695, 47.66607063818197, 47.66941399643385, 47.672752565312265, 47.67608635167723, 47.67941536237916, 47.68273960425884, 47.686059084147445, 47.68937380886652, 47.692683785227985, 47.695989020034155, 47.6992895200777, 47.70258529214169, 47.705876342999574, 47.70916267941515, 47.71244430814263, 47.71572123592659, 47.718993469501974, 47.72226101559413, 47.725523880918765, 47.728782072181964, 47.73203559608021, 47.73528445930034, 47.738528668519585, 47.741768230405555, 47.74500315161623, 47.74823343879998, 47.75145909859553, 47.75468013763202, 47.75789656252895, 47.76110837989618, 47.76431559633399, 47.76751821843299, 47.770716252774214, 47.77390970592905, 47.77709858446345, 47.780282894941315, 47.78346264390358, 47.78663783788119, 47.78980848339603, 47.79297458696097, 47.79613615507986, 47.799293194247504, 47.802445710949684, 47.80559371166317, 47.80873720285568, 47.81187619098592, 47.815010682503555, 47.818140683849236, 47.82126620145458, 47.82438724174216, 47.82750381112554, 47.83061591600926, 47.83372356278881, 47.83682675785067, 47.83992550757229, 47.843019818322084, 47.846109696459436, 47.84919514833471, 47.852276180289245, 47.85535279865533, 47.85842500975626, 47.86149281990627, 47.86455623541058, 47.867615262565394, 47.870669907657856, 47.87372017696612, 47.876766076759274, 47.879807613297416, 47.88284479283158, 47.88587762160379, 47.88890610584704, 47.89193025178531, 47.894950065633516, 47.89796555359758, 47.90097672187438, 47.90398357665176, 47.906986124108556, 47.909984370414556, 47.91297832173061, 47.91596798421861, 47.91895336402645, 47.92193446728555, 47.924911300118865, 47.92788386864089, 47.930852178957664, 47.933816237166745, 47.936776049357235, 47.939731621609766, 47.94268295999652, 47.94563007058119, 47.94857295941903, 47.95151163255681, 47.95444609603284, 47.95737635587698, 47.9603024181106, 47.96322428874662, 47.9661419737895, 47.96905547923522, 47.97196481107132, 47.97486997527684, 47.97777097782238, 47.98066782467008, 47.9835605217736, 47.986449075078134, 47.98933349052042, 47.992213774028734, 47.995089931522884, 47.997961968914204, 48.00082989210557, 48.003693706991406, 48.006553419457646, 48.00940903538178, 48.012260560632825, 48.01510800107133, 48.0179513625494, 48.020790650910634, 48.023625871990205, 48.02645703161481, 48.02928413560267, 48.032107189763565, 48.03492619989878, 48.03774117180115, 48.04055211125506, 48.0433590240364, 48.046161915919924, 48.048960792672716, 48.051755660043064, 48.05454652377127, 48.057333389589715, 48.060116263222824, 48.06289515038712, 48.06567005679119, 48.068440988135684, 48.07120795011332, 48.073970948408906, 48.0767299886993, 48.07948507665344, 48.08223621793233, 48.084983418189054, 48.087726683068745, 48.09046601820863, 48.093201429238, 48.0959329217782, 48.09866050144267, 48.10138417383691, 48.10410394455849, 48.106819819197035, 48.10953180333427, 48.112239902543976, 48.114944122392, 48.117644468436254, 48.12034094622675, 48.12303356130553, 48.125722319206744, 48.128407225456584, 48.131088285573334, 48.13376550506732, 48.13643888944098, 48.139108444188786, 48.14177417479729, 48.144436086745124, 48.14709418550298, 48.14974847653363, 48.1523989652919, 48.15504565722472, 48.15768855777104, 48.16032767236192, 48.16296300642049, 48.16559456536192, 48.16822235459369, 48.17084637952548, 48.17346664555265, 48.176083158056606, 48.178695922411286, 48.181304943983235, 48.18391022813157, 48.18651178020798, 48.18910960555674, 48.19170370951469, 48.19429409741127, 48.19688077456848, 48.19946374630091, 48.202043017915706, 48.20461859471262, 48.20719048198398, 48.20975868501466, 48.21232320908216, 48.214884059456516, 48.217441241400365, 48.219994760168916, 48.22254462100995, 48.225090829163854, 48.22763338986355, 48.230172308334566, 48.23270758979501, 48.23523923945556, 48.23776726251946, 48.240291664182564, 48.24281244963327, 48.24532962405258, 48.247843192614056, 48.25035316048385, 48.252859532820686, 48.255362314775866, 48.25786151149328, 48.26035712810939, 48.262849169753224, 48.2653376415464, 48.26782254860313, 48.27030389603017, 48.27278168892688, 48.275255932385186, 48.27772663148959, 48.280193791317195, 48.28265741693765, 48.28511751341321, 48.28757408580356, 48.29002713916586, 48.29247667853833, 48.29492270895178, 48.29736523543012, 48.29980426299029, 48.3022397966423, 48.3046718413892, 48.307100402227135, 48.30952548414528, 48.31194709212589, 48.314365231144265, 48.31677990616877, 48.319191122160824, 48.32159888407492, 48.324003196858605, 48.32640406545247, 48.32880149479019, 48.33119548979848, 48.33358605539713, 48.335973196498976, 48.338356918009914, 48.34073722482892, 48.34311412184801, 48.345487613952265, 48.347857706019816, 48.35022440292188, 48.3525877095227, 48.35494763067961, 48.35730417124299, 48.35965733605626, 48.362007129955934, 48.364353557771565, 48.366696624325776, 48.36903633443424, 48.3713726929057, 48.37370570454194, 48.376035374137835, 48.378361706481286, 48.38068470635327, 48.383004378527836, 48.38532072777206, 48.387633758846114, 48.389943476503205, 48.392249885489605, 48.39455299054465, 48.39685279640074, 48.39914930778793, 48.401442529434355, 48.40373246604994, 48.406019122337625, 48.40830250299388, 48.41058261270868, 48.412859456165535, 48.41513303804144, 48.41740336300693, 48.419670435726054, 48.42193426085637, 48.42419484304894, 48.426452186948374, 48.42870629719277, 48.43095717841375, 48.43320483523646, 48.43544927227955, 48.437690494155184, 48.43992850546906, 48.442163310820376, 48.44439491480185, 48.446623321999716, 48.44884853699372, 48.45107056435713, 48.45328940865674, 48.45550507445282, 48.45771756629921, 48.459926888743226, 48.46213304632571, 48.464336043581035, 48.46653588503707, 48.4687325752152, 48.470926118630345, 48.47311651979092, 48.475303783198875, 48.477487913349655, 48.479668914732244, 48.48184679182912, 48.484021549116285, 48.486193191063265, 48.488361722133085, 48.490527146782306, 48.49268946946099, 48.49484869461272, 48.4970048266746, 48.499157870077234, 48.50130782924475, 48.5034547085949, 48.50559851254787, 48.50773924551279, 48.509876911885925, 48.5120115160575, 48.51414306241169, 48.51627155532662, 48.51839699917435, 48.52051939832089, 48.522638757126224, 48.524755079944235, 48.526868371122795, 48.52897863500371, 48.531085875922734, 48.533190098209566, 48.53529130618785, 48.53738950417519, 48.53948469648313, 48.54157688741715, 48.54366608127671, 48.54575228235518, 48.54783549493991, 48.54991572331217, 48.55199297174719, 48.55406724451416, 48.5561385458762, 48.55820688009038, 48.560272251407724, 48.562334664073205, 48.56439412232574, 48.56645063039819, 48.56850419251736, 48.57055481290402, 48.57260249577288, 48.574647245332585, 48.57668906578575, 48.578727961328916, 48.580763936152586, 48.58279699444121, 48.58482714037317, 48.586854378120826, 48.58887871185045, 48.59090014572229, 48.59291868389052, 48.594934330503285, 48.59694708970266, 48.598956965624666, 48.60096396239929, 48.602968084150454, 48.604969335000725, 48.60696771907076, 48.60896324046469, 48.610955903280654, 48.61294571161116, 48.614932669543045, 48.61691678115753, 48.618898050530184, 48.62087648173092, 48.62285207882402, 48.624824845868126, 48.62679478691622, 48.628761906015654, 48.630726207208134, 48.632687694529714, 48.63464637201082, 48.636602243676215, 48.638555313545034, 48.64050558563076, 48.64245306394123, 48.64439775247865, 48.64633965523957, 48.64827877621491, 48.65021511938991, 48.65214868874422, 48.65407948825181, 48.65600752188101, 48.65793279359451, 48.65985530734937, 48.66177506709698, 48.66369207678312, 48.665606340347885, 48.667517861725756, 48.669426644845565, 48.6713326936305, 48.673236011998085, 48.67513660386024, 48.67703447312321, 48.678929623687594, 48.680822059448374, 48.682711784294874, 48.68459880211076, 48.68648311677408, 48.68836473215722, 48.690243652126924, 48.6921198805443, 48.69399342126481, 48.69586427813827, 48.69773245500885, 48.699597955719746, 48.70146078411235, 48.70332094401232, 48.705178439239724, 48.707033273609376, 48.70888545093084, 48.71073497500843, 48.712581849641175, 48.71442607862288, 48.71626766574206, 48.718106614781995, 48.7199429295207, 48.72177661373093, 48.7236076711802, 48.72543610563073, 48.72726192083951, 48.72908512055828, 48.7309057085335, 48.73272368850638, 48.73453906421288, 48.7363518393837, 48.73816201774428, 48.73996960301479, 48.74177459891016, 48.74357700914007, 48.745376837408905, 48.747174087415836, 48.748968762854744, 48.75076086741427, 48.7525504047778, 48.75433737862345, 48.75612179262408, 48.75790365044729, 48.759682955755444, 48.76145971220563, 48.763233923449675, 48.765005593134156, 48.76677472490039, 48.768541322384436, 48.77030538921711, 48.772066929023936, 48.773825945425216, 48.775582442035976, 48.77733642246599, 48.77908789031978, 48.78083684919659, 48.782583302690426, 48.784327254390035, 48.78606870787889, 48.78780766673532, 48.78954413454067, 48.791278114866685, 48.79300961127408, 48.79473862731871, 48.796465166551506, 48.798189232518524, 48.79991082876092, 48.80162995881496, 48.80334662621201, 48.80506083447857, 48.806772587136194, 48.8084818877016, 48.81018873968659, 48.811893146598045, 48.813595111938014, 48.81529463920359, 48.81699173188702, 48.81868639347564, 48.82037862745188, 48.8220684372933, 48.82375582647255, 48.82544079845741, 48.827123356710736, 48.82880350469051, 48.83048124584982, 48.83215658363686, 48.833829521494934, 48.83550006286244, 48.837168211172894, 48.83883396985492, 48.84049734233225, 48.842158332023715, 48.84381694234325, 48.84547317669992, 48.847127038497874, 48.84877853113638, 48.8504276580098, 48.85207442250763, 48.85371882801443, 48.85536087790991, 48.85700057556887, 48.858637924361204, 48.860272927651934, 48.861905588801186, 48.863535911164185, 48.86516389809126, 48.866789552927855, 48.86841287901452, 48.870033879686915, 48.871652558275805, 48.87326891811058, 48.87488296252101, 48.87649469482198, 48.878104118323215, 48.87971123632991, 48.8813160521427, 48.88291856905768, 48.88451879036637, 48.88611671935578, 48.88771235930835, 48.889305713501976, 48.89089678520999, 48.8924855777012, 48.894072094239846, 48.89565633808563, 48.897238312493705, 48.89881802071467, 48.90039546599458, 48.90197065157493, 48.90354358069268, 48.905114256580234, 48.90668268246546, 48.90824886157165, 48.909812797117574, 48.91137449231744, 48.91293395038092, 48.91449117451311, 48.91604616791459, 48.91759893378136, 48.919149475304906, 48.920697795672126, 48.92224389806541, 48.92378778566257, 48.92532946163687, 48.92686892915705, 48.928406191387275, 48.929941251487165, 48.93147411261181, 48.93300477791173, 48.93453325053291, 48.93605953361677, 48.9375836303002, 48.93910554371554, 48.94062527699056, 48.94214283324851, 48.94365821560807, 48.94517142718337, 48.94668247108401, 48.94819135041503, 48.94969806827692, 48.951202627765625, 48.95270503197484, 48.954205284000665, 48.955703386924846, 48.957199343823696, 48.95869315776928, 48.96018483182945, 48.96167436906783, 48.963161772543806, 48.964647045312574, 48.966130190425076, 48.96761121092804, 48.96909010986396, 48.97056689027113, 48.972041555183594, 48.97351410763118, 48.9749845506395, 48.976452887229925, 48.97791912041963, 48.97938325322152, 48.980845288644325, 48.98230522969253, 48.983763079366376, 48.98521884066191, 48.986672516570934, 48.98812411008105, 48.989573624175605, 48.99102106183375, 48.99246642603038, 48.9939097197362, 48.99535094591767, 48.99679010753703, 48.9982272075523, 48.999662248917254, 49.001095234581484, 49.002526167490316, 49.00395505058488, 49.00538188680206, 49.00680667907453, 49.00822943033074, 49.00965014349491, 49.01106882148703, 49.01248546722288, 49.013900083614004, 49.015312673567735, 49.01672323998716, 49.01813178577116, 49.019538313814394, 49.020942827007275, 49.022345328236014, 49.02374582038259, 49.02514430632475, 49.02654078893603, 49.02793527108894, 49.029327755656944, 49.03071824549983, 49.032106743472866, 49.033493252427405, 49.03487777521087, 49.036260314666784, 49.03764087363473, 49.03901945495038, 49.04039606144549, 49.04177069594791, 49.04314336128154, 49.04451406026639, 49.045882795718526, 49.04724957045013, 49.048614387269424, 49.04997724898075, 49.0513381583845, 49.052697118277166, 49.054054131451316, 49.0554092006956, 49.05676232879475, 49.05811351852957, 49.05946277267695, 49.06081009400988, 49.06215548529741, 49.063498949304666, 49.064840488792875, 49.06618010651934, 49.06751780523743, 49.068853587696616, 49.07018745664244, 49.07151941481652, 49.07284946495657, 49.07417760979637, 49.07550385206579, 49.07682819449079, 49.078150639793385, 49.0794711906917, 49.080789849899915, 49.08210662012831, 49.08342150408325, 49.08473450446716, 49.08604562397856, 49.08735486531206, 49.08866223115833, 49.089967724204136, 49.09127134713232, 49.09257310262181, 49.09387299334761, 49.09517102198081, 49.09646719118857, 49.09776150363417, 49.099053961983714, 49.10034456889705, 49.10163332702419, 49.10292023901147, 49.104205307501616, 49.10548853513374, 49.106769924543286, 49.108049478362105, 49.10932719921838, 49.11060308973669, 49.11187715253798, 49.11314939023954, 49.114419805455064, 49.11568840079459, 49.11695517886453, 49.118220142267674, 49.11948329360317, 49.12074463546654, 49.12200417044967, 49.12326190114082, 49.12451783012463, 49.12577195998208, 49.12702429329054, 49.128274832623745, 49.1295235805518, 49.130770539641176, 49.13201571245471, 49.133259101551616, 49.134500709487476, 49.135740538814225, 49.13697859208019, 49.13821487183006, 49.13944938060487, 49.14068212094206, 49.14191309537542, 49.1431423064351, 49.14436975664764, 49.14559544853594, 49.146819384619256, 49.14804156741324, 49.149261999429875, 49.150480683177555, 49.15169762116101, 49.15291281588136, 49.154126269836084, 49.155337985519026, 49.1565479654204, 49.15775621202681, 49.1589627278212, 49.16016751528289, 49.16137057688759, 49.16257191510735, 49.16377153241061, 49.16496943126437, 49.16616561413819, 49.167360083489086, 49.168552841769674, 49.169743891429185, 49.17093323491352, 49.17212087466519, 49.173306813123375, 49.174491052723866, 49.17567359589912, 49.176854445078206, 49.17803360268685, 49.17921107114743, 49.18038685287892, 49.181560950296976, 49.182733365813874, 49.18390410183853, 49.185073160776504, 49.18624054502999, 49.187406256997825, 49.18857029907549, 49.189732673655094, 49.19089338312539, 49.19205242987177, 49.19320981627628, 49.19436554471757, 49.19551961757097, 49.19667203720842, 49.19782280599851, 49.19897192630647, 49.200119400494174, 49.201265230920114, 49.20240941993945, 49.20355196990397, 49.20469288316208, 49.20583216205887, 49.20696980893602, 49.20810582613189, 49.20924021598145, 49.21037298081633, 49.21150412296478, 49.21263364475172, 49.21376154849867, 49.21488783652381, 49.21601251114196, 49.21713557466458, 49.218257029399766, 49.21937687765225, 49.22049512172341, 49.221611763911255, 49.222726806510444, 49.22384025181226, 49.22495210210465, 49.22606235967217, 49.22717102679671, 49.22827810576435, 49.22938359885082, 49.23048750832594, 49.2315898364564, 49.2326905855058, 49.23378975773463, 49.23488735540027, 49.23598338075699, 49.237077836055974, 49.23817072354527, 49.239262045469836, 49.24035180407152, 49.24144000158907, 49.24252664025812, 49.243611722311186, 49.244695249977696, 49.24577722548397, 49.24685765105321, 49.24793652890551, 49.249013861257886, 49.2500896503242, 49.25116389831525, 49.2522366074387, 49.25330777989911, 49.25437741789796, 49.2554455236336, 49.256512099301254, 49.25757714709309, 49.25864066919812, 49.25970266780228, 49.26076314508839, 49.26182210323616, 49.262879544422205, 49.26393547082001, 49.26498988459997, 49.26604278792938, 49.26709418297241, 49.268144071890134, 49.269192456840514, 49.27023933997842, 49.271284723455594, 49.27232860942068, 49.273371000019225, 49.27441189739365, 49.27545130368329, 49.27648922102435, 49.27752565154995, 49.2785605973901, 49.27959406067168, 49.280626043518495, 49.281656548051224, 49.28268557638744, 49.28371313064162, 49.28473921292513, 49.28576382534653, 49.2867869700185, 49.287808649045225, 49.28882886452436, 49.28984761855068, 49.29086491321608, 49.29188075060961, 49.292895132817435, 49.29390806192285, 49.29491954000629, 49.29592956914533, 49.29693815141465, 49.29794528888609, 49.29895098362861, 49.29995523770828, 49.300958053188346, 49.30195943212915, 49.30295937658818, 49.30395788862005, 49.304954970276505, 49.30595062360643, 49.30694485065583, 49.30793765346785, 49.30892903408277, 49.309918994537995, 49.31090753686806, 49.311894663104624, 49.31288037527649, 49.313864675409604, 49.31484756552702, 49.31582904764893, 49.31680912379266, 49.31778779597268, 49.318765066200555, 49.31974093648503, 49.320715408831944, 49.32168848524429, 49.32266016772218, 49.32363045826285, 49.32459935886069, 49.325566871507206, 49.32653299819104, 49.327497740897975, 49.3284611016109, 49.32942308230986, 49.33038368497202, 49.331342911571674, 49.332300764080266, 49.333257244466346, 49.33421235469561, 49.33516609673089, 49.336118472532135, 49.337069484056435, 49.33801913325801, 49.33896742208822, 49.339914352495526, 49.34085992642594, 49.34180414582963, 49.342747012648296, 49.343688528817715, 49.34462869627102, 49.345567516938694, 49.34650499274858, 49.347441125625856, 49.34837591749308, 49.349309370270156, 49.35024148587434, 49.35117226622025, 49.352101713219845, 49.35302982878246, 49.35395661481476, 49.354882073220786, 49.35580620590192, 49.35672901475691, 49.35765050168185, 49.358570668570195, 49.359489517312745, 49.36040704979767, 49.361323267910485, 49.36223817353407, 49.363151768548626, 49.364064054831765, 49.3649750342584, 49.36588470870084, 49.36679308002872, 49.367700150109044, 49.368605920806175, 49.36951039398181, 49.370413571495035, 49.37131545520225, 49.37221604695725, 49.373115348611144, 49.37401336201244, 49.37491008900696, 49.37580553143791, 49.37669969114584, 49.37759256996865, 49.378484169741604, 49.379374492297316, 49.38026353946575, 49.38115131307425, 49.382037814947466, 49.38292304690746, 49.38380701077361, 49.38468970836266, 49.385571141488704, 49.38645131196321, 49.38733022159497, 49.388207872190165, 49.3890842655523, 49.38995940348226, 49.390833287778264, 49.39170592023591, 49.39257730264897, 49.3934474368153, 49.394316324523295, 49.395183967556804, 49.396050367697235, 49.39691552672356, 49.397779446412315, 49.39864212853761, 49.39950357487111, 49.400363787182044, 49.40122276723721, 49.402080516800964, 49.40293703763523, 49.403792331499496, 49.40464640015082, 49.405499245343805, 49.406350868830636, 49.40720127236106, 49.40805045768238, 49.408898426539466, 49.40974518067476, 49.410590721828264, 49.411435051737534, 49.412278172137704, 49.41312008476146, 49.41396079133906, 49.414800293598326, 49.415638593264646, 49.416475692060956, 49.41731159170779, 49.41814629392319, 49.41897980042283, 49.41981211291991, 49.420643233125176, 49.42147316274698, 49.42230190349122, 49.423129457061336, 49.42395582515837, 49.42478100948092, 49.42560501172512, 49.4264278335847, 49.42724947675092, 49.42806994291265, 49.42888923375629, 49.42970735096581, 49.43052429622275, 49.431340071206215, 49.43215467759286, 49.43296811705693, 49.433780391270204, 49.43459150190205, 49.43540145061938, 49.43621023908669, 49.437017868966024, 49.43782434191699, 49.43862965959678, 49.439433823660124, 49.440236835759336, 49.44103869754623, 49.44183941067533, 49.442638976791194, 49.44343739753531, 49.44423467454694, 49.4450308094631, 49.44582580391856, 49.44661965954586, 49.44741237797529, 49.4482039608349, 49.44899440975052, 49.4497837263457, 49.45057191224179, 49.45135896905787, 49.45214489841081, 49.452929701915195, 49.45371338118343, 49.45449593782561, 49.45527737344966, 49.45605768966121, 49.45683688806368, 49.45761497025823, 49.45839193784379, 49.45916779241706, 49.459942535572495, 49.46071616890228, 49.46148869399641, 49.46226011244259, 49.46303042582632, 49.46379963573085, 49.46456774373718, 49.46533475142408, 49.466100660368085, 49.46686547214347, 49.46762918832228, 49.46839181047433, 49.46915334016718, 49.46991377896616, 49.47067312843435, 49.471431390132594, 49.472188565619504, 49.47294465645143, 49.47369966418252, 49.47445359036463, 49.47520643654742, 49.475958204278285, 49.4767088951024, 49.47745851056267, 49.478207052199785, 49.4789545215522, 49.479700920156084, 49.48044624954543, 49.481190511251945, 49.48193370680511, 49.48267583773216, 49.48341690555811, 49.484156911805705, 49.48489585799547, 49.485633745645686, 49.48637057627625, 49.487106351406204, 49.487841072546026, 49.48857474120405, 49.48930735888656, 49.4900389270978, 49.49076944733993, 49.49149892111306, 49.49222734991526, 49.49295473524251, 49.49368107858877, 49.49440638144591, 49.49513064530376, 49.49585387165009, 49.496576061970615, 49.49729721774898, 49.49801734046678, 49.49873643160356, 49.4994544926368, 49.50017152504193, 49.500887530292296, 49.501602509859225, 49.50231646521196, 49.50302939781769, 49.50374130914157, 49.504452200646654, 49.505162073793976, 49.50587093004249, 49.50657877084912, 49.50728559766869, 49.50799141195401, 49.50869621515581, 49.50940000872276, 49.51010279410147, 49.51080457273652, 49.5115053460704, 49.512205115543566, 49.512903882594394, 49.51360164865922, 49.51429841517231, 49.514994183565896, 49.51568895527012, 49.516382731713094, 49.51707551432085, 49.517767304517385, 49.51845810372462, 49.519147913362424, 49.51983673484861, 49.52052456959894, 49.521211419027104, 49.52189728454475, 49.52258216756145, 49.52326606948474, 49.52394899172008, 49.524630935670885, 49.52531190273851, 49.52599189432224, 49.52667091181932, 49.527348956624934, 49.528026030132345, 49.528702133738705, 49.529377268835304, 49.53005143680804, 49.53072463904092, 49.53139687691606, 49.532068151813704, 49.53273846511219, 49.53340781818798, 49.53407621241565, 49.53474364916787, 49.53541012981547, 49.53607565572733, 49.536740228270496, 49.537403848810094, 49.53806651870938, 49.538728239329714, 49.53938901203058, 49.54004883816957, 49.54070771910238, 49.541365656182826, 49.54202265076284, 49.54267870419246, 49.54333381781986, 49.543987992991276, 49.54464123105112, 49.54529353334188, 49.545944901204145, 49.546595335976654, 49.54724483899624, 49.54789341159784, 49.548541055114526, 49.54918777087747, 49.54983356021594, 49.55047842445735, 49.55112236492722, 49.551765382949156, 49.552407479844916, 49.55304865693434, 49.55368891553538, 49.55432825696414, 49.5549666825348, 49.55560419355965, 49.556240791349126, 49.556876477211745, 49.557511252454155, 49.55814511838111, 49.55877807629548, 49.55941012749825, 49.56004127328851, 49.560671514963474, 49.56130085381846, 49.561929291146896, 49.56255682824033, 49.56318346638843, 49.56380920687897, 49.56443405099783, 49.56505800002901, 49.56568105525462, 49.566303217954896, 49.566924489408166, 49.56754487089188, 49.5681643636872, 49.56878296906714, 49.56940068830152, 49.57001752265843, 49.57063347340426, 49.57124854180363, 49.57186272911947, 49.572476036612954, 49.573088465543556, 49.573700017168996, 49.574310692745286, 49.57492049352669, 49.57552942076577, 49.57613747571333, 49.57674465961848, 49.57735097372856, 49.57795641928922, 49.578560997544365, 49.579164709736176, 49.5797675571051, 49.58036954088986, 49.58097066232746, 49.581570922653164, 49.582170323100506, 49.5827688649013, 49.583366549285635, 49.583963377481865, 49.58455935071661, 49.58515447021478, 49.585748737199545, 49.58634215289234, 49.5869347185129, 49.587526435279194, 49.5881173044075, 49.588707327112324, 49.589296504606494, 49.58988483810108, 49.590472328805426, 49.59105897792716, 49.59164478667216, 49.59222975624461, 49.59281388784694, 49.593397182679844, 49.59397964194232, 49.59456126683162, 49.59514205854325, 49.59572201827103, 49.59630114720702, 49.59687944654156, 49.59745691746326, 49.598033561159006, 49.59860937881396, 49.59918437161155, 49.599758540733475, 49.60033188735971, 49.60090441266849, 49.60147611783635, 49.60204700403806, 49.602617072446705, 49.6031863242336, 49.60375476056835, 49.604322382621035, 49.60488919156363, 49.605455188559944, 49.606020374771774, 49.60658475135936, 49.60714831948133, 49.60771108029478, 49.608273034955175, 49.608834184616434, 49.60939453043088, 49.60995407354927, 49.61051281512076, 49.61107075629294, 49.61162789821182, 49.61218424202183, 49.612739788865824, 49.613294539885054, 49.61384849621923, 49.61440165900643, 49.61495402938321, 49.61550560848451, 49.6160563974437, 49.616606397392566, 49.617155609461314, 49.617704034778576, 49.618251674471395, 49.618798529665256, 49.61934460148403, 49.619889891050036, 49.620434399484, 49.62097812790507, 49.62152107743081, 49.62206324917723, 49.622604644258715, 49.6231452637881, 49.62368510887665, 49.62422418063402, 49.6247624801683, 49.625300008586, 49.62583676699206, 49.626372756489815, 49.626907978181045, 49.62744243316593, 49.62797612254309, 49.62850904740955, 49.62904120886076, 49.629572607990596, 49.630103245891334, 49.6306331236537, 49.63116224236682, 49.63169060311823, 49.63221820699392, 49.632745055078274, 49.63327114845409, 49.63379648820262, 49.634321075403506, 49.634844911134806, 49.63536799647303, 49.63589033249308, 49.63641192026827, 49.63693276087039, 49.637452855369574, 49.63797220483443, 49.63849081033516, 49.639008672941884, 49.63952579371757, 49.64004217372365, 49.64055781402014, 49.64107271566561, 49.64158687971716, 49.64210030723048, 49.642612999259796, 49.64312495685791, 49.64363618107617, 49.644146672964474, 49.6446564335713, 49.64516546394366, 49.64567376512714, 49.64618133816589, 49.64668818410259, 49.647194303978495, 49.64769969883342, 49.64820436970574, 49.64870831763237, 49.6492115436488, 49.64971404878908, 49.6502158340858, 49.65071690057012, 49.65121724927175, 49.651716881218974, 49.652215797438615, 49.65271399895607, 49.653211486795264, 49.65370826197872, 49.654204325527495, 49.654699678461206, 49.65519432179803, 49.6556882565547, 49.65618148374651, 49.656674004387305, 49.6571658194895, 49.65765693006406, 49.658147337120496, 49.65863704166689, 49.6591260447099, 49.6596143472547, 49.66010195030505, 49.66058885486326, 49.661075061930205, 49.66156057250531, 49.662045387586545, 49.662529508170465, 49.66301293525217, 49.66349566982531, 49.66397771288211, 49.664459065413325, 49.66493972840831, 49.665419702854926, 49.66589898973963, 49.66637759004743, 49.666855504761884, 49.66733273486511, 49.66780928133778, 49.66828514515913, 49.668760327306956, 49.6692348287576, 49.66970865048597, 49.67018179346897, 49.67065425868277, 49.671126047097054, 49.671597159680196, 49.672067597399234, 49.67253736121988, 49.67300645210656, 49.673474871022364, 49.67394261892908, 49.67440969678717, 49.67487610555579, 49.67534184619278, 49.67580691965466, 49.676271326896654, 49.67673506887263, 49.6771981465352, 49.677660560835605, 49.67812231272381, 49.678583403148444, 49.67904383305683, 49.67950360339499, 49.6799627151076, 49.68042116913805, 49.680878966428395, 49.68133610791939, 49.68179259455048, 49.682248427259765, 49.68270360698407, 49.68315813465887, 49.68361201121835, 49.684065237595384, 49.684517814721495, 49.684969743526935, 49.685421024940624, 49.685871659890154, 49.68632164930182, 49.6867709941006, 49.687219695210146, 49.687667753552816, 49.68811517004964, 49.68856194562033, 49.68900808118328, 49.6894535776556, 49.68989843595304, 49.690342656990076, 49.690786241679845, 49.69122919093417, 49.691671505663585, 49.69211318677728, 49.69255423518313, 49.69299465178772, 49.69343443749631, 49.69387359321283, 49.694312119839914, 49.694750018278874, 49.69518728942971, 49.69562393419111, 49.69605995346044, 49.69649534813376, 49.6969301191058, 49.69736426726999, 49.69779779351845, 49.698230698741966, 49.698662983830026, 49.69909464967079, 49.69952569715374, 49.69995612716906, 49.70038594060024, 49.700815138329446, 49.70124372123762, 49.70167169020452, 49.70209904610871, 49.702525789827554, 49.702951922237226, 49.7033774442127, 49.70380235662775, 49.704226660354955, 49.70465035626571, 49.7050734452302, 49.705495928117415, 49.70591780579515, 49.706339079130025, 49.70675974898742, 49.707179816231566, 49.707599281725464, 49.70801814633093, 49.70843641090859, 49.70885407631787, 49.709271143417, 49.709687613063004, 49.71010348611173, 49.7105187634178, 49.710933445834684, 49.71134753421462, 49.711761029408656, 49.71217393226665, 49.71258624363727, 49.712997964367965, 49.71340909530502, 49.7138196372935, 49.71422959117728, 49.714638957799046, 49.71504773800027, 49.71545593262125, 49.71586354250108, 49.716270568477654, 49.716677011387674, 49.71708287206663, 49.71748815134884, 49.71789285006742, 49.71829696905428, 49.718700509140135, 49.71910347115452, 49.719505855925746, 49.71990766428097, 49.720308897046095, 49.72070955504589, 49.72110963910388, 49.72150915004242, 49.72190808868265, 49.722306455844546, 49.72270425234685, 49.72310147900713, 49.72349813664175, 49.72389422606589, 49.724289748093504, 49.72468470353739, 49.72507909320913, 49.725472917919106, 49.7258661784765, 49.72625887568932, 49.72665101036538, 49.72704258331572, 49.72743359534481, 49.72782404725512, 49.728213939848, 49.72860327392373, 49.72899205028151, 49.72938026971946, 49.72976793303457, 49.73015504102281, 49.730541594479014, 49.730927594196935, 49.73131304096926, 49.73169793558758, 49.7320822788424, 49.73246607152313, 49.7328493144181, 49.73323200831455, 49.73361415399866, 49.733995752255474, 49.734376803869, 49.734757309622125, 49.73513727029666, 49.735516686673336, 49.7358955595318, 49.73627388965059, 49.73665167780718, 49.73702892477796, 49.737405631338206, 49.73778179826214, 49.738157426322886, 49.738532516292466, 49.73890706894184, 49.73928108504087, 49.73965456535833, 49.74002751066191, 49.740399921718215, 49.74077179929276, 49.74114314414997, 49.74151395705321, 49.74188423876472, 49.742253990045675, 49.742623211656166, 49.742991904355186, 49.74336006890066, 49.7437277060494, 49.744094816557144, 49.74446140117856, 49.74482746066722, 49.74519299577558, 49.745558007255056, 49.74592249585595, 49.74628646232748, 49.7466499074178, 49.74701283187393, 49.747375236441854, 49.74773712186644, 49.748098488891486, 49.74845933825969, 49.74881967071268, 49.74917948699097, 49.74953878783401, 49.74989757398017, 49.750255846166716, 49.75061360512983, 49.75097085160461, 49.751327586325075, 49.751683810024154, 49.7520395234372, 49.752394727298146, 49.75274942233589, 49.75310360927834, 49.753457288852424, 49.75381046178407, 49.75416312879825, 49.75451529061891, 49.754866947969056, 49.75521810157068, 49.75556875214479, 49.755918900411416, 49.756268547089604, 49.75661769289742, 49.75696633855194, 49.75731448476924, 49.757662132264436, 49.75800928175165, 49.758355933944, 49.75870208955366, 49.75904774929178, 49.75939291386854, 49.75973758399314, 49.760081760373794, 49.76042544371772, 49.76076863473117, 49.761111334119384, 49.76145354258664, 49.76179526083623, 49.76213648957045, 49.762477229490614, 49.762817481297056, 49.763157245689115, 49.76349652336517, 49.76383531502258, 49.76417362135774, 49.76451144306607, 49.76484878084197, 49.7651856353789, 49.7655220073693, 49.76585789750463, 49.76619330647538, 49.766528234971055, 49.76686268368015, 49.767196653290206, 49.767530144487765, 49.767863157958374, 49.76819569438662, 49.76852775445608, 49.76885933884936, 49.769190448248075, 49.76952108333287, 49.769851244783375, 49.77018093327827, 49.77051014949522, 49.77083889411093, 49.7711671678011, 49.77149497124046, 49.77182230510274, 49.7721491700607, 49.77247556678611, 49.77280149594975, 49.773126958221425, 49.773451954269945, 49.77377648476314, 49.77410055036785, 49.77442415174994, 49.77474728957428, 49.775069964504866, 49.77539217720903, 49.775713928350434, 49.776035218589314, 49.77635604858499, 49.77667641899589, 49.77699633047956, 49.77731578369267, 49.77763477929096, 49.77795331792931, 49.7782714002617, 49.77858902694121, 49.77890619862005, 49.77922291594951, 49.77953917958002, 49.779854990161084, 49.78017034834135, 49.78048525476855, 49.78079971008954, 49.781113714950266, 49.7814272699958, 49.78174037587032, 49.78205303321711, 49.78236524267856, 49.782677004896165, 49.782988320510555, 49.78329919016142, 49.78360961448762, 49.78391959412706, 49.78422912971681, 49.784538221893015, 49.78484687129093, 49.78515507854494, 49.78546284428852, 49.78577016915425, 49.78607705377383, 49.78638349877807, 49.7866895047969, 49.78699507245931, 49.78730020239347, 49.78760489522659, 49.78790915158504, 49.78821297209427, 49.788516357378846, 49.78881930806245, 49.78912182476787, 49.78942390811698, 49.78972555873081, 49.79002677722945, 49.79032756423213, 49.790627920357174, 49.79092784622202, 49.791227342443214, 49.79152640963642, 49.791825048416385, 49.792123259396995, 49.792421043191226, 49.79271840041117, 49.79301533166802, 49.79331183757209, 49.79360791873279, 49.79390357575865, 49.794198809257296, 49.79449361983548, 49.79478800809905, 49.79508197465296, 49.79537552010128, 49.7956686450472, 49.79596135009299, 49.796253635840046, 49.79654550288888, 49.79683695184262, 49.79712798330259, 49.79741859786593, 49.79770879612898, 49.79799857868726, 49.798287946135495, 49.79857689906761, 49.7988654380767, 49.7991535637551, 49.79944127669429, 49.79972857748497, 49.80001546671704, 49.80030194497959, 49.80058801286089, 49.800873670948434, 49.801158919828886, 49.80144376008812, 49.801728192311195, 49.80201221708237, 49.802295834985095, 49.80257904660203, 49.80286185251501, 49.80314425330507, 49.803426249552444, 49.80370784183658, 49.80398903073607, 49.80426981682876, 49.80455020069165, 49.80483018290095, 49.805109764032075, 49.80538894465961, 49.80566772535736, 49.8059461066983, 49.806224089254634, 49.80650167359772, 49.80677886029815, 49.807055649925694, 49.8073320430493, 49.80760804023714, 49.80788364205657, 49.808158849074125, 49.80843366185557, 49.80870808096583, 49.80898210696904, 49.80925574042854, 49.80952898190685, 49.80980183196569, 49.810074291165975, 49.81034636006782, 49.81061803923052, 49.810889329212586, 49.8111602305717, 49.81143074386477, 49.811700869647865, 49.81197060847628, 49.81223996090448, 49.812508927486135, 49.81277750877412, 49.81304570532049, 49.8133135176765, 49.813580946392605, 49.813847992018445, 49.81411465510287, 49.814380936193906, 49.814646835838786, 49.814912354583946, 49.815177492974996, 49.81544225155676, 49.815706630873244, 49.81597063146766, 49.8162342538824, 49.816497498659906, 49.81676036634555, 49.81702285747944, 49.81728497260015, 49.817546712245516, 49.81780807695265, 49.818069067257944, 49.81832968369705, 49.81858992680492, 49.81884979711575, 49.819109295163045, 49.819368421479545, 49.819627176597294, 49.819885561047606, 49.82014357536106, 49.82040122006751, 49.820658495696094, 49.82091540277522, 49.82117194183257, 49.82142811339509, 49.82168391798903, 49.821939356139886, 49.822194428372434, 49.822449135210725, 49.8227034771781, 49.82295745479716, 49.82321106858978, 49.823464319077104, 49.82371720677957, 49.82396973221688, 49.824221895908, 49.82447369837119, 49.824725140123974, 49.824976221683144, 49.82522694356478, 49.82547730628423, 49.82572731035611, 49.82597695629432, 49.826226244612045, 49.82647517582171, 49.82672375043505, 49.82697196896306, 49.827219831916004, 49.827467339803434, 49.82771449313415, 49.827961292416276, 49.828207738157154, 49.82845383086343, 49.828699571041035, 49.82894495919514, 49.829189995830234, 49.82943468145004, 49.82967901655757, 49.82992300165513, 49.830166637244275, 49.83040992382583, 49.830652861899935, 49.83089545196596, 49.83113769452257, 49.83137959006769, 49.83162113909855, 49.83186234211163, 49.83210319960268, 49.832343712066745, 49.832583879998126, 49.832823703890405, 49.83306318423645, 49.833302321528386, 49.83354111625762, 49.833779568914835, 49.834017679989984, 49.834255449972304, 49.834492879350286, 49.83472996861266, 49.83496671825083, 49.83520312875111, 49.835439200598536, 49.835674934277456, 49.8359103302716, 49.83614538906403, 49.83638011113716, 49.836614496972736, 49.83684854705188, 49.83708226185503, 49.837315641862, 49.83754868755193, 49.83778139940332, 49.83801377789401, 49.8382458235012, 49.83847753670141, 49.83870891797054, 49.83893996778382, 49.83917068661584, 49.83940107494051, 49.83963113323112, 49.83986086196029, 49.84009026159998, 49.840319332621526, 49.840548075495576, 49.84077649069216, 49.841004578680625, 49.84123233992968, 49.841459774907385, 49.84168688408115, 49.84191366791771, 49.84214012688317, 49.842366261442976, 49.842592072061926, 49.84281755920415, 49.84304272333314, 49.84326756491173, 49.84349208440211, 49.843716282265795, 49.84394015896368, 49.84416371495598, 49.844386950702265, 49.844609866661465, 49.844832463291844, 49.845054741051015, 49.845276700395935, 49.84549834178292, 49.84571966566763, 49.845940672505066, 49.846161362749584, 49.84638173685488, 49.846601795274, 49.84682153845934, 49.84704096686264, 49.847260080935, 49.847478881126854, 49.847697367887974, 49.847915541667504, 49.84813340291392, 49.84835095207505, 49.84856818959807, 49.848785115929495, 49.8490017315152, 49.84921803680041, 49.849434032229674, 49.84964971824691, 49.84986509529538, 49.850080163817694, 49.85029492425579, 49.85050937705099, 49.85072352264393, 49.850937361474614, 49.851150893982386, 49.851364120605965, 49.851577041786825, 49.85178965796422, 49.85200196957428, 49.85221397705259, 49.85242568083413, 49.8526370813533, 49.8528481790439, 49.85305897433918, 49.853269467671744, 49.85347965947368, 49.85368955017644, 49.85389914021091, 49.8541084300074, 49.85431741999561, 49.85452611060467, 49.85473450226311, 49.8549425953989, 49.85515039043942, 49.85535788781143, 49.85556508794114, 49.855771991254166, 49.85597859817553, 49.85618490912968, 49.85639092454046, 49.856596644831164, 49.85680207042446, 49.85700720174244, 49.85721203920664, 49.85741658323797, 49.857620834256785, 49.857824792682834, 49.85802845893529, 49.85823183343274, 49.85843491659319, 49.858637708834046, 49.85884021057214, 49.85904242222372, 49.85924434420444, 49.85944597692937, 49.859647320812996, 49.859848376269234, 49.86004914371138, 49.86024962355217, 49.860449816203754, 49.86064972207768, 49.86084934158494, 49.861048675135905, 49.86124772314038, 49.86144648600758, 49.86164496414614, 49.8618431579641, 49.86204106786893, 49.862238694267496, 49.862436037566084, 49.862633098170406, 49.86282987648557, 49.8630263729161, 49.86322258786596, 49.86341852173851, 49.86361417493651, 49.863809547862154, 49.86400464091705, 49.86419945450221, 49.864393989018076, 49.864588244864485, 49.8647822224407, 49.864975922145405, 49.865169344376675, 49.865362489532025, 49.865555358008365, 49.86574795020204, 49.86594026650879, 49.866132307323774, 49.866324073041575, 49.86651556405617, 49.86670678076102, 49.86689772355222, 49.86708839282377, 49.86727878896676, 49.86746891237176, 49.867658763428835, 49.86784834252751, 49.86803765005679, 49.86822668640515, 49.86841545196055, 49.868603947110415, 49.86879217224166, 49.86898012774066, 49.86916781399328, 49.869355231384844, 49.86954238030017, 49.86972926112353, 49.8699158742387, 49.87010222002891, 49.87028829887687, 49.87047411116477, 49.87065965727427, 49.87084493758651, 49.871029952482104, 49.87121470234114, 49.87139918754319, 49.871583408467295, 49.87176736549196, 49.871951058995194, 49.87213448935445, 49.87231765694669, 49.87250056214832, 49.872683205335235, 49.87286558688281, 49.87304770716589, 49.8732295665588, 49.873411165435336, 49.87359250416877, 49.87377358313186, 49.87395440269682, 49.87413496323535, 49.87431526511863, 49.87449530871732, 49.87467509440154, 49.87485462254089, 49.87503389350445, 49.875212907660774, 49.875391665377904, 49.87557016702333, 49.875748412964036, 49.87592640356649, 49.87610413919661, 49.87628162021982, 49.876458847001, 49.87663581990449, 49.87681253929415, 49.87698900553328, 49.87716521898467, 49.87734118001059, 49.87751688897276, 49.8776923462324, 49.87786755215021, 49.87804250708634, 49.87821721140044, 49.87839166545162, 49.87856586959848, 49.87873982419909, 49.878913529610976, 49.879086986191176, 49.87926019429617, 49.879433154281934, 49.879605866503915, 49.87977833131704, 49.879950549075694, 49.88012252013376, 49.88029424484458, 49.880465723560974, 49.88063695663526, 49.880807944419864, 49.88097868726987, 49.88114918553614, 49.88131943956839, 49.88148944971586, 49.881659216327314, 49.881828739751064, 49.88199802033495, 49.88216705842633, 49.88233585437211, 49.88250440851871, 49.8826727212121, 49.88284079279778, 49.88300862362076, 49.8831762140256, 49.8833435643564, 49.883510674956774, 49.88367754616987, 49.88384417833838, 49.8840105718045, 49.88417672691, 49.88434264399615, 49.88450832340375, 49.88467376547315, 49.88483897054423, 49.88500393895638, 49.88516867104855, 49.885333167159196, 49.885497427626326, 49.88566145278747, 49.885825242979685, 49.88598879853957, 49.886152119803256, 49.88631520710639, 49.88647806078417, 49.886640681171315, 49.88680306860208, 49.88696522341024, 49.88712714592912, 49.887288836491564, 49.88745029542996, 49.887611523076195, 49.88777251976174, 49.887933285817546, 49.88809382157414, 49.888254127361535, 49.88841420350932, 49.888574050346584, 49.888733668201965, 49.88889305740363, 49.88905221827927, 49.889211151156104, 49.8893698563609, 49.889528334219946, 49.88968658505907, 49.889844609203614, 49.89000240697847, 49.890159978708056, 49.890317324716314, 49.89047444532673, 49.89063134086231, 49.89078801164561, 49.89094445799869, 49.89110068024316, 49.89125667870017, 49.89141245369037, 49.89156800553398, 49.89172333455072, 49.89187844105986, 49.8920333253802, 49.892187987830056, 49.892342428727304, 49.89249664838932, 49.89265064713303, 49.892804425274896, 49.8929579831309, 49.89311132101656, 49.89326443924692, 49.89341733813657, 49.89357001799973, 49.89372247915334, 49.893874721911736, 49.894026746587144, 49.894178553491365, 49.8943301429358, 49.894481515231426, 49.8946326706888, 49.89478360961805, 49.89493433232892, 49.89508483913071, 49.895235130332296, 49.89538520624217, 49.89553506716837, 49.89568471341853, 49.895834145299894, 49.895983363119235, 49.89613236718296, 49.89628115779703, 49.896429735266985, 49.896578099897965, 49.89672625199469, 49.89687419186146, 49.89702191980214, 49.89716943612021, 49.89731674111871, 49.89746383510026, 49.89761071836709, 49.897757391220985, 49.897903853963314, 49.89805010689505, 49.89819615031672, 49.898341984528464, 49.89848760982998, 49.898633026520564, 49.89877823489908, 49.89892323526399, 49.89906802791334, 49.89921261314473, 49.89935699125538, 49.89950116254207, 49.89964512730117, 49.899788885828634, 49.89993243841999, 49.90007578537036, 49.90021892697444, 49.90036186352651, 49.90050459532044, 49.90064712264967, 49.90078944580724, 49.900931565085756, 49.90107348077742, 49.901215193174, 49.90135670256686, 49.90149800924694, 49.90163911350478, 49.90178001563047, 49.90192071591372, 49.90206121464379, 49.902201512109535, 49.9023416085994, 49.90248150440141, 49.902621199803164, 49.90276069509186, 49.902899990554246, 49.903039086476696, 49.90317798314513, 49.90331668084508, 49.90345517986163, 49.90359348047948, 49.903731582982886, 49.90386948765569, 49.90400719478134, 49.90414470464284, 49.90428201752278, 49.90441913370336, 49.904556053466315, 49.90469277709301, 49.904829304864364, 49.90496563706088, 49.90510177396267, 49.90523771584945, 49.90537346300351, 49.905509015704965, 49.90564437423179, 49.90577953886159, 49.90591450987158, 49.90604928753862, 49.9061838721392, 49.90631826394944, 49.90645246324508, 49.90658647030149, 49.90672028539368, 49.90685390879628, 49.906987340783544, 49.90712058162937, 49.90725363160727, 49.907386490990405, 49.907519160051535, 49.90765163906308, 49.90778392829707, 49.90791602802518, 49.90804793851868, 49.90817966004851, 49.90831119288522, 49.908442537298995, 49.90857369355964, 49.90870466193659, 49.908835442698916, 49.90896603611532, 49.90909644245412, 49.90922666198328, 49.90935669497039, 49.90948654168265, 49.90961620238691, 49.90974567734963, 49.90987496683693, 49.91000407111453, 49.910132990447785, 49.9102617251017, 49.910390275340866, 49.910518641429555, 49.91064682363163, 49.9107748222106, 49.910902637429594, 49.91103026955138, 49.911157718838346, 49.91128498555252, 49.91141206995554, 49.9115389723087, 49.91166569287289, 49.91179223190866, 49.91191858967618, 49.91204476643524, 49.912170762445264, 49.9122965779653, 49.91242221325405, 49.9125476685698, 49.91267294417051, 49.91279804031375, 49.91292295725671, 49.913047695256225, 49.91317225456875, 49.913296635450365, 49.9134208381568, 49.91354486294339, 49.91366871006511, 49.91379237977657, 49.913915872331984, 49.91403918798523, 49.9141623269898, 49.9142852895988, 49.91440807606499, 49.91453068664074, 49.91465312157806, 49.914775381128585, 49.91489746554358, 49.91501937507394, 49.915141109970186, 49.91526267048247, 49.915384056860574, 49.91550526935391, 49.915626308211515, 49.91574717368206, 49.915867866014025, 49.91598838545849, 49.91610873226376, 49.91622890667661, 49.91634890894347, 49.916468739310446, 49.91658839802332, 49.91670788532755, 49.916827201468244, 49.9169463466902, 49.917065321237885, 49.91718412535543, 49.91730275928665, 49.91742122327501, 49.91753951756366, 49.917657642395426, 49.917775598012796, 49.91789338465794, 49.91801100257268, 49.918128451998534, 49.91824573317667, 49.91836284634793, 49.918479791752844, 49.9185965696316, 49.91871318022406, 49.91882962376975, 49.91894590050788, 49.91906201067732, 49.91917795451663, 49.91929373226401, 49.91940934415735, 49.91952479043423, 49.91964007133186, 49.919755187087155, 49.919870137936684, 49.91998492411669, 49.920099545863096, 49.92021400341149, 49.92032829699712, 49.920442426854926, 49.920556393219506, 49.92067019632514, 49.92078383640576, 49.920897313694994, 49.92101062842611, 49.92112378083208, 49.921236771145544, 49.92134959959878, 49.92146226642377, 49.92157477185215, 49.92168711611524, 49.921799299444025, 49.921911322069164, 49.92202318422098, 49.92213488612948, 49.922246428024316, 49.92235781013485, 49.92246903269009, 49.92258009591871, 49.92269100004908, 49.92280174530921, 49.92291233192681, 49.92302276012924, 49.92313303014356, 49.92324314219646, 49.92335309651433, 49.923462893323226, 49.92357253284887, 49.923682015316665, 49.923791340951674, 49.92390050997864, 49.924009522621965, 49.92411837910574, 49.92422707965371, 49.92433562448931, 49.924444013835625, 49.92455224791542, 49.92466032695115, 49.9247682511649, 49.92487602077847, 49.92498363601331, 49.92509109709053, 49.92519840423093, 49.92530555765499, 49.92541255758282, 49.92551940423479, 49.92562609783348, 49.925732638598184, 49.92583902674735, 49.92594526249912, 49.92605134607134, 49.92615727768159, 49.92626305754714, 49.92636868588496, 49.92647416291176, 49.926579488843934, 49.926684663897596, 49.92678968828857, 49.926894562232384, 49.92699928594428, 49.9271038596392, 49.92720828353182, 49.92731255783649, 49.927416682767294, 49.92752065853803, 49.92762448536218, 49.92772816345296, 49.927831693023286, 49.92793507428578, 49.92803830745277, 49.928141392736315, 49.928244330348164, 49.92834712049977, 49.92844976340232, 49.92855225926668, 49.92865460830346, 49.928756810722945, 49.928858866735155, 49.92896077654981, 49.92906254037633, 49.92916415842386, 49.92926563090125, 49.929366958017056, 49.92946813997954, 49.929569176996694, 49.929670069276185, 49.92977081702542, 49.9298714204515, 49.92997187976123, 49.93007219516116, 49.9301723668575, 49.93027239505619, 49.9303722799629, 49.93047202178299, 49.930571620721516, 49.930671076983266, 49.930770390772736, 49.93086956229411, 49.930968591751316, 49.93106747934796, 49.93116622528737, 49.931264829772594, 49.93136329300636, 49.93146161519114, 49.93155979652909, 49.9316578372221, 49.93175573747173, 49.931853497479295, 49.931951117445784, 49.93204859757192, 49.93214593805813, 49.93224313910452, 49.932340200910964, 49.93243712367698, 49.93253390760186, 49.932630552884554, 49.93272705972374, 49.93282342831782, 49.932919658864876, 49.93301575156272, 49.93311170660888, 49.93320752420056, 49.933303204534724, 49.93339874780799, 49.93349415421673, 49.933589423957, 49.93368455722457, 49.933779554214944, 49.933874415123285, 49.93396914014451, 49.93406372947323, 49.934158183303765, 49.934252501831175, 49.93434668525188, 49.93444073375915, 49.93453464754578, 49.934628426804316, 49.93472207172705, 49.934815582506026, 49.93490895933302, 49.93500220239956, 49.93509531189691, 49.935188288016086, 49.93528113094784, 49.93537384088268, 49.93546641801085, 49.93555886252232, 49.935651174606846, 49.9357433544539, 49.935835402252685, 49.935927318192185, 49.9360191024611, 49.93611075524789, 49.93620227674074, 49.936293667127586, 49.936384926596126, 49.936476055333785, 49.93656705352773, 49.93665792136488, 49.93674865903189, 49.936839266715175, 49.93692974460088, 49.93702009287489, 49.93711031172284, 49.93720040133012, 49.937290361881836, 49.93738019356287, 49.937469896557836, 49.93755947105109, 49.93764891722672, 49.93773823526857, 49.93782742536024, 49.93791648768505, 49.93800542242609, 49.93809422976616, 49.938182909887836, 49.93827146297342, 49.93835988920497, 49.93844818876427, 49.93853636183287, 49.93862440859205, 49.93871232922284, 49.938800123906, 49.93888779282206, 49.938975336151266, 49.939062754073625, 49.939150046768894, 49.93923721441655, 49.939324257195835, 49.93941117528573, 49.93949796886495, 49.93958463811197, 49.93967118320499, 49.93975760432198, 49.93984390164063, 49.93993007533838, 49.94001612559242, 49.94010205257968, 49.94018785647684, 49.94027353746031, 49.940359095706256, 49.94044453139058, 49.940529844688946, 49.94061503577674, 49.94070010482909, 49.94078505202089, 49.94086987752677, 49.9409545815211, 49.94103916417798, 49.94112362567128, 49.941207966174595, 49.94129218586128, 49.94137628490442, 49.94146026347685, 49.94154412175115, 49.94162785989963, 49.941711478094376, 49.94179497650719, 49.94187835530961, 49.94196161467296, 49.94204475476826, 49.94212777576761, 49.942210677843825, 49.942293461166884, 49.94237612590648, 49.94245867223207, 49.9425411003129, 49.94262341031799, 49.94270560241613, 49.942787676775886, 49.94286963356559, 49.94295147295337, 49.94303319510711, 49.94311480019448, 49.943196288382914, 49.94327765983964, 49.94335891473163, 49.94344005322568, 49.943521075488306, 49.94360198168583, 49.943682771984356, 49.94376344654974, 49.943844005547625, 49.94392444914343, 49.94400477750234, 49.944084990789335, 49.944165089169154, 49.94424507280631, 49.94432494186509, 49.94440469650957, 49.9444843369036, 49.94456386321078, 49.944643275594515, 49.94472257421796, 49.94480175924408, 49.94488083083557, 49.944959789154936, 49.945038634364444, 49.945117366626135, 49.94519598610183, 49.94527449295312, 49.94535288734137, 49.945431169427735, 49.945509339373125, 49.94558739733824, 49.94566534348353, 49.94574317796926, 49.94582090095545, 49.94589851260187, 49.94597601306812, 49.94605340251352, 49.9461306810972, 49.94620784897806, 49.94628490631476, 49.94636185326574, 49.94643868998923, 49.94651541664322, 49.946592033385485, 49.946668540373565, 49.94674493776478, 49.94682122571622, 49.94689740438477, 49.94697347392706, 49.94704943449952, 49.94712528625834, 49.94720102935949, 49.94727666395872, 49.94735219021155, 49.947427608273266, 49.94750291829895, 49.947578120443445, 49.947653214861376, 49.94772820170713, 49.94780308113488, 49.94787785329857, 49.94795251835193, 49.94802707644846, 49.948101527741414, 49.94817587238385, 49.94825011052859, 49.948324242328226, 49.948398267935126, 49.94847218750145, 49.94854600117911, 49.948619709119804, 49.948693311475004, 49.94876680839596, 49.94884020003369, 49.948913486539, 49.948986668062446, 49.94905974475439, 49.94913271676496, 49.94920558424503, 49.94927834734664, 49.94935100621903, 49.949423561011116, 49.94949601187161, 49.94956835894903, 49.9496406023917, 49.949712742347764, 49.94978477896513, 49.94985671239155, 49.94992854277454, 49.95000027026146, 49.950071894999446, 49.95014341713544, 49.950214836816194, 49.950286154188255, 49.95035736939798, 49.950428482591526, 49.950499493914855, 49.95057040351373, 49.95064121153372, 49.9507119181202, 49.95078252341833, 49.950853027573096, 49.950923430729276, 49.950993733031446, 49.951063934623996, 49.95113403565112, 49.9512040362568, 49.95127393658483, 49.951343736778824, 49.951413436982165, 49.95148303733806, 49.951552537989514, 49.951621939079345, 49.951691240750165, 49.95176044314438, 49.95182954640422, 49.9518985506717, 49.951967456088646, 49.95203626279669, 49.95210497093726, 49.952173580651596, 49.95224209208072, 49.95231050536549, 49.952378820646544, 49.95244703806432, 49.95251515775907, 49.952583179870864, 49.95265110453954, 49.952718931904755, 49.952786662105986, 49.95285429528248, 49.95292183157332, 49.95298927111737, 49.953056614053295, 49.95312386051959, 49.95319101065453, 49.95325806459619, 49.95332502248246, 49.95339188445103, 49.9534586506394, 49.95352532118485, 49.95359189622449, 49.953658375895216, 49.95372476033374, 49.95379104967656, 49.953857244059996, 49.953923343620154, 49.953989348492954, 49.954055258814115, 49.95412107471916, 49.954186796343414, 49.95425242382201, 49.95431795728988, 49.95438339688175, 49.954448742732176, 49.95451399497548, 49.95457915374582, 49.95464421917713, 49.954709191403175, 49.954774070557505, 49.95483885677347, 49.954903550184234, 49.95496815092276, 49.95503265912181, 49.95509707491396, 49.95516139843157, 49.95522562980683, 49.955289769171706, 49.95535381665799, 49.955417772397254, 49.955481636520894, 49.955545409160315, 49.95560909044895, 49.95567268051803, 49.95573617949784, 49.95579958751853, 49.95586290471004, 49.95592613120216, 49.95598926712452, 49.95605231260656, 49.956115267777534, 49.95617813276656, 49.95624090770256, 49.95630359271429, 49.956366187930335, 49.956428693479104, 49.956491109488844, 49.95655343608762, 49.95661567340333, 49.956677821563694, 49.95673988069627, 49.95680185092844, 49.95686373238742, 49.956925525200226, 49.95698722949375, 49.95704884539467, 49.95711037302951, 49.95717181252462, 49.95723316400618, 49.957294427600196, 49.95735560343251, 49.95741669162877, 49.95747769231448, 49.95753860561495, 49.95759943165533, 49.9576601705606, 49.95772082245556, 49.95778138746485, 49.95784186571291, 49.95790225732404, 49.95796256242236, 49.9580227811318, 49.95808291357615, 49.958142959879005, 49.958202920163785, 49.958262794553754, 49.958322583172, 49.95838228614143, 49.958441903584784, 49.95850143562464, 49.95856088238338, 49.95862024398325, 49.95867952054629, 49.95873871219439, 49.958797819049245, 49.95885684123241, 49.95891577886525, 49.958974632068944, 49.959033400964536, 49.95909208567286, 49.9591506863146, 49.95920920301027, 49.959267635880195, 49.95932598504455, 49.95938425062331, 49.95944243273631, 49.959500531503195, 49.95955854704343, 49.95961647947633, 49.95967432892103, 49.95973209549648, 49.959789779321476, 49.95984738051463, 49.95990489919439, 49.95996233547903, 49.96001968948664, 49.96007696133517, 49.96013415114236, 49.960191259025805, 49.960248285102914, 49.96030522949093, 49.96036209230692, 49.96041887366779, 49.96047557369026, 49.96053219249089, 49.96058873018605, 49.960645186891966, 49.96070156272467, 49.960757857800026, 49.96081407223374, 49.960870206141315, 49.96092625963813, 49.96098223283934, 49.961038125859965, 49.96109393881484, 49.961149671818625, 49.96120532498582, 49.961260898431235, 49.961316392271335, 49.96137180662013, 49.96142714159116, 49.9614823972978, 49.96153757385329, 49.96159267137072, 49.96164768996301, 49.961702629742966, 49.96175749082321, 49.96181227331624, 49.961866977334395, 49.961921602989854, 49.96197615039467, 49.962030619660716, 49.96208501089974, 49.962139324223344, 49.96219355974296, 49.96224771756987, 49.96230179781524, 49.962355800590046, 49.96240972600514, 49.96246357417122, 49.96251734519881, 49.96257103919833, 49.96262465628002, 49.96267819655397, 49.96273166013014, 49.96278504711831, 49.962838357628144, 49.962891591769136, 49.96294474965063, 49.96299783138184, 49.963050837071805, 49.963103766829434, 49.96315662076348, 49.96320939898253, 49.963262101595056, 49.96331472870935, 49.96336728043358, 49.96341975687574, 49.96347215814368, 49.963524484345115, 49.96357673558761, 49.96362891197855, 49.96368101362521, 49.9637330406347, 49.963784993113975, 49.96383687116983, 49.96388867490895, 49.96394040443783, 49.96399205986283, 49.964043641290175, 49.96409514882592, 49.96414658257597, 49.9641979426461, 49.96424922914192, 49.9643004421689, 49.96435158183234, 49.964402648237424, 49.96445364148916, 49.96450456169241, 49.9645554089519, 49.9646061833722, 49.96465688505772, 49.96470751411274, 49.964758070641366, 49.96480855474758, 49.964858966535196, 49.9649093061079, 49.96495957356919, 49.96500976902246, 49.96505989257092, 49.96510994431765, 49.96515992436558, 49.96520983281748, 49.96525966977597, 49.96530943534353, 49.96535912962249, 49.96540875271503, 49.965458304723164, 49.965507785748784, 49.965557195893616, 49.96560653525924, 49.96565580394709, 49.96570500205843, 49.96575412969441, 49.965803186956, 49.96585217394404, 49.96590109075922, 49.96594993750206, 49.96599871427294, 49.966047421172114, 49.966096058299655, 49.966144625755504, 49.96619312363944, 49.966241552051116, 49.96628991109, 49.9663382008555, 49.96638642144882, 49.966434572969675, 49.966482655516714, 49.966530669188444, 49.966578614083225, 49.96662649029931, 49.96667429793481, 49.96672203708771, 49.96676970785587, 49.96681731033701, 49.96686484462872, 49.96691231082848, 49.96695970903362, 49.96700703934134, 49.967054301848734, 49.967101496652745, 49.9671486238502, 49.967195683537774, 49.96724267581203, 49.96728960076942, 49.96733645850622, 49.96738324911861, 49.96742997270265, 49.96747662935423, 49.967523219169145, 49.96756974224305, 49.96761619867147, 49.96766258854981, 49.96770891197331, 49.96775516903713, 49.96780135983628, 49.96784748446562, 49.96789354301992, 49.96793953559378, 49.967985462281696, 49.96803132317803, 49.96807711837702, 49.96812284797276, 49.968168512059215, 49.968214110730244, 49.96825964407955, 49.968305112200724, 49.96835051518721, 49.96839585313234, 49.968441126129306, 49.968486334271184, 49.9685314776509, 49.96857655636126, 49.96862157049495, 49.96866652014452, 49.968711405402374, 49.96875622636082, 49.968800983112004, 49.968845675747964, 49.9688903043606, 49.96893486904168, 49.96897936988286, 49.969023806975635, 49.9690681804114, 49.969112490281404, 49.96915673667677, 49.9692009196885, 49.969245039407454, 49.969289095924374, 49.969333089329865, 49.9693770197144, 49.96942088716833, 49.96946469178188, 49.96950843364513, 49.96955211284804, 49.969595729480446, 49.96963928363205, 49.96968277539242, 49.96972620485099, 49.96976957209709, 49.969812877219894, 49.96985612030845, 49.96989930145169, 49.969942420738406, 49.96998547825727, 49.97002847409681, 49.97007140834543, 49.97011428109142, 49.970157092422916, 49.970199842427945, 49.97024253119439, 49.970285158810015, 49.97032772536244, 49.970370230939174, 49.97041267562759, 49.97045505951493, 49.9704973826883, 49.97053964523469, 49.97058184724094, 49.97062398879379, 49.97066606997983, 49.970708090885516, 49.97075005159719, 49.97079195220107, 49.97083379278322, 49.97087557342964, 49.97091729422797, 49.97095895526463, 49.97100055662493, 49.97104209839409, 49.9710835806572, 49.971125003499246, 49.971166367005104, 49.97120767125953, 49.97124891634718, 49.97129010235258, 49.971331229360175, 49.971372297454266, 49.971413306719064, 49.971454257238655, 49.97149514909702, 49.97153598237803, 49.97157675716544, 49.971617473542885, 49.97165813159392, 49.97169873140195, 49.97173927305029, 49.971779756622134, 49.971820182200574, 49.97186054986858, 49.971900859709024, 49.97194111180465, 49.9719813062381, 49.9720214430919, 49.97206152244846, 49.97210154439011, 49.972141508999016, 49.97218141635727, 49.972221266546846, 49.97226105964959, 49.972300795747266, 49.972340474921495, 49.972380097253804, 49.97241966282561, 49.9724591717182, 49.97249862401278, 49.97253801979041, 49.97257735913206, 49.972616642118595, 49.972655868830735, 49.972695039349134, 49.97273415375429, 49.97277321212662, 49.97281221454641, 49.97285116109386, 49.97289005184902, 49.972928886891864, 49.97296766630224, 49.97300639015988, 49.973045058544415, 49.97308367153535, 49.97312222921209, 49.97316073165393, 49.973199178940035, 49.97323757114948, 49.97327590836123, 49.973314190654115, 49.97335241810686, 49.973390590798104, 49.973428708806345, 49.97346677220998, 49.9735047810873, 49.97354273551647, 49.973580635575544, 49.97361848134249, 49.97365627289514, 49.97369401031122, 49.97373169366834, 49.97376932304401, 49.97380689851562, 49.97384442016045, 49.97388188805566, 49.97391930227831, 49.97395666290536, 49.97399397001363, 49.97403122367984, 49.974068423980604, 49.974105570992414, 49.97414266479167, 49.97417970545464, 49.97421669305748, 49.97425362767625, 49.97429050938688, 49.97432733826522, 49.974364114386965, 49.97440083782773, 49.97443750866301, 49.974474126968175, 49.974510692818505, 49.97454720628915, 49.97458366745517, 49.97462007639149, 49.97465643317293, 49.974692737874214, 49.974728990569936, 49.974765191334576, 49.97480134024252, 49.97483743736804, 49.97487348278527, 49.97490947656842, 49.9749454187933, 49.97498130953409, 49.97501714886427, 49.97505293685724, 49.9750886735863, 49.97512435912464, 49.97515999354537, 49.9751955769215, 49.97523110932594, 49.97526659083151, 49.97530202151093, 49.97533740143682, 49.97537273068171, 49.97540800931804, 49.97544323741814, 49.975478415054255, 49.97551354229853, 49.97554861922301, 49.97558364589966, 49.975618622400326, 49.975653548796764, 49.975688425160655, 49.975723251563565, 49.97575802807696, 49.97579275477222, 49.97582743172063, 49.97586205899338, 49.97589663666155, 49.975931164796144, 49.97596564346805, 49.97600007274807, 49.97603445270693, 49.976068783415215, 49.97610306494345, 49.97613729736206, 49.97617148074136, 49.97620561515157, 49.97623970066283, 49.976273737345174, 49.97630772526854, 49.976341664502776, 49.97637555511761, 49.97640939718272, 49.97644319076764, 49.97647693594184, 49.976510632774676, 49.97654428133542, 49.97657788169324, 49.97661143391721, 49.97664493807632, 49.97667839423944, 49.97671180247537, 49.976745162852794, 49.976778475440305, 49.97681174030641, 49.97684495751951, 49.97687812714791, 49.97691124925983, 49.97694432392337, 49.976977351206564, 49.97701033117734, 49.97704326390351, 49.97707614945282, 49.9771089878929, 49.97714177929129, 49.97717452371543, 49.97720722123269, 49.97723987191029, 49.97727247581542, 49.977305033015114, 49.977337543576354, 49.977370007566, 49.977402425050826, 49.97743479609751, 49.97746712077264, 49.97749939914269, 49.97753163127405, 49.97756381723302, 49.97759595708579, 49.977628050898474, 49.97766009873706, 49.977692100667475, 49.97772405675552, 49.97775596706692, 49.97778783166729, 49.977819650622166, 49.97785142399697, 49.97788315185703, 49.977914834267594, 49.9779464712938, 49.9779780630007, 49.97800960945324, 49.97804111071627, 49.97807256685455, 49.97810397793275, 49.97813534401543, 49.97816666516706, 49.97819794145202, 49.978229172934576, 49.97826035967893, 49.97829150174915, 49.978322599209235, 49.97835365212308, 49.9783846605545, 49.97841562456716, 49.9784465442247, 49.97847741959096, 49.97850825073113, 49.97853903770862, 49.978569780586454, 49.97860047942757, 49.97863113429483, 49.97866174525102, 49.97869231235883, 49.97872283568088, 49.97875331527969, 49.97878375121772, 49.97881414355734, 49.978844492360835, 49.9788747976904, 49.978905059608174, 49.97893527817619, 49.9789654534564, 49.97899558551068, 49.97902567440083, 49.97905572018856, 49.97908572293551, 49.97911568270321, 49.979145599553135, 49.97917547354667, 49.979205304745115, 49.97923509320969, 49.97926483900152, 49.97929454218169, 49.97932420281115, 49.9793538209508, 49.97938339666144, 49.979412930003804, 49.97944242103855, 49.97947186982621, 49.9795012764273, 49.9795306409022, 49.97955996331123, 49.97958924371462, 49.97961848217254, 49.97964767874504, 49.97967683349212, 49.979705946473686, 49.97973501774956, 49.9797640473795, 49.979793035423135, 49.97982198194007, 49.979850886989794, 49.979879750631724, 49.97990857292519, 49.97993735392944, 49.97996609370364, 49.97999479230689, 49.980023449798175, 49.98005206623643, 49.9800806416805, 49.98010917618913, 49.980137669821005, 49.980166122634714, 49.98019453468878, 49.98022290604161, 49.98025123675157, 49.98027952687693, 49.980307776475854, 49.98033598560646, 49.98036415432676, 49.980392282694694, 49.98042037076812, 49.980448418604816, 49.980476426262456, 49.98050439379867, 49.98053232127097, 49.980560208736804, 49.980588056253545, 49.98061586387846, 49.98064363166876, 49.98067135968156, 49.98069904797389, 49.98072669660271, 49.98075430562488, 49.9807818750972, 49.98080940507637, 49.98083689561902, 49.980864346781686, 49.980891758620835, 49.98091913119284, 49.98094646455401, 49.98097375876054, 49.98100101386858, 49.98102822993417, 49.98105540701328, 49.9810825451618, 49.981109644435534, 49.9811367048902, 49.98116372658144, 49.981190709564814, 49.9812176538958, 49.981244559629786, 49.98127142682208, 49.98129825552793, 49.98132504580247, 49.98135179770077, 49.9813785112778, 49.98140518658849, 49.981431823687636, 49.98145842262998, 49.98148498347018, 49.98151150626282, 49.981537991062375, 49.98156443792326, 49.981590846899806, 49.98161721804661, 49.98164355141947, 49.98166984707252, 49.98169610505959, 49.98172232543442, 49.98174850825068, 49.98177465356199, 49.98180076142188, 49.98182683188382, 49.98185286500121, 49.98187886082737, 49.98190481941557, 49.98193074081899, 49.98195662509075, 49.9819824722839, 49.982008282451424, 49.98203405564622, 49.98205979192113, 49.98208549132893, 49.98211115392231, 49.982136779753915, 49.98216236887629, 49.982187921341925, 49.98221343720324, 49.9822389165126, 49.98226435932227, 49.98228976568446, 49.982315135651326, 49.98234046927493, 49.982365766607266, 49.982391027700274, 49.98241625260581, 49.98244144137566, 49.98246659406156, 49.98249171071516, 49.98251679138803, 49.98254183613169, 49.982566844997585, 49.98259181803708, 49.98261675530148, 49.98264165684201, 49.982666522709856, 49.98269135295609, 49.982716147631734, 49.982740906787754, 49.98276563047503, 49.98279031874437, 49.98281497164652, 49.98283958923216, 49.98286417155188, 49.98288871865623, 49.98291323059566, 49.98293770742058, 49.982962149181304, 49.982986555928086, 49.98301092771111, 49.9830352645805, 49.9830595665863, 49.98308383377847, 49.98310806620694, 49.983132263921526, 49.983156426972, 49.98318055540806, 49.98320464927933, 49.983228708635366, 49.98325273352565, 49.98327672399961, 49.98330068010659, 49.98332460189585, 49.98334848941662, 49.98337234271803, 49.983396161849136, 49.98341994685895, 49.983443697796396, 49.983467414710326, 49.98349109764953, 49.98351474666273, 49.98353836179857, 49.983561943105634, 49.98358549063242, 49.983609004427386, 49.98363248453888, 49.98365593101521, 49.983679343904605, 49.98370272325522, 49.98372606911516, 49.98374938153242, 49.98377266055497, 49.98379590623068, 49.983819118607364, 49.983842297732764, 49.983865443654544, 49.983888556420304, 49.983911636077586, 49.98393468267384, 49.98395769625646, 49.98398067687277, 49.984003624570015, 49.98402653939538, 49.98404942139598, 49.984072270618846, 49.984095087110965, 49.98411787091923, 49.98414062209048, 49.984163340671465, 49.98418602670888, 49.98420868024936, 49.98423130133945, 49.98425389002563, 49.984276446354315, 49.98429897037185, 49.98432146212451, 49.9843439216585, 49.98436634902001, 49.98438874425653, 49.98441110741453, 49.98443343853975, 49.984455737677905, 49.98447800487461, 49.98450024017546, 49.98452244362595, 49.98454461527155, 49.98456675515767, 49.984588863329634, 49.98461093983273, 49.98463298471218, 49.984654998013134, 49.98467697978071, 49.98469893005995, 49.98472084889583, 49.98474273633328, 49.98476459241717, 49.98478641719231, 49.98480821070344, 49.98482997299525, 49.98485170411238, 49.98487340409938, 49.984895073000786, 49.98491671086103, 49.98493831772452, 49.98495989363558, 49.98498143863849, 49.985002952777464, 49.98502443609666, 49.98504588864017, 49.985067310452045, 49.985088701576245, 49.98511006205671, 49.98513139193729, 49.98515269126178, 49.985173960073936, 49.985195198417436, 49.9852164063359, 49.9852375838729, 49.98525873107194, 49.98527984797646, 49.985300934629855, 49.985321991075445, 49.98534301735651, 49.985364013516254, 49.985384979597825, 49.98540591564432, 49.98542682169877, 49.98544769780415, 49.98546854400337, 49.98548936033929, 49.98551014685469, 49.98553090359233, 49.98555163059487, 49.98557232790494, 49.98559299556509, 49.98561363361783, 49.9856342421056, 49.98565482107076, 49.98567537055566, 49.98569589060255, 49.98571638125364, 49.98573684255106, 49.985757274536915, 49.985777677253225, 49.985798050741955, 49.985818395045015, 49.985838710204256, 49.98585899626147, 49.985879253258375, 49.98589948123666, 49.98591968023792, 49.98593985030372, 49.98595999147556, 49.985980103794866, 49.986000187303006, 49.98602024204131, 49.986040268051035, 49.98606026537337, 49.98608023404946, 49.98610017412039, 49.98612008562717, 49.98613996861077, 49.98615982311209, 49.98617964917197, 49.98619944683121, 49.98621921613051, 49.98623895711055, 49.986258669811946, 49.98627835427522, 49.986298010540885, 49.98631763864936, 49.98633723864102, 49.98635681055617, 49.98637635443506, 49.98639587031789, 49.98641535824479, 49.98643481825583, 49.986454250391034, 49.98647365469035, 49.98649303119368, 49.98651237994086, 49.986531700971675, 49.98655099432583, 49.986570260042996, 49.986589498162765, 49.986608708724695, 49.98662789176825, 49.986647047332866, 49.986666175457906, 49.98668527618267, 49.9867043495464, 49.9867233955883, 49.98674241434748, 49.98676140586302, 49.98678037017408, 49.986799307321036, 49.986818217342986, 49.9868371002786, 49.98685595616652, 49.986874785045316, 49.98689358695352, 49.98691236192961, 49.986931110012016, 49.98694983123911, 49.986968525649225, 49.98698719328064, 49.98700583417159, 49.987024448360245, 49.98704303588474, 49.98706159678315, 49.987080131093514, 49.98709863885381, 49.987117120101956, 49.98713557487584, 49.9871540032133, 49.98717240515211, 49.987190780729996, 49.98720912998465, 49.9872274529537, 49.98724574967471, 49.98726402018524, 49.987282264522754, 49.987300482724685, 49.987318674828416, 49.987336840871286, 49.987354980890565, 49.98737309492349, 49.987391183007254, 49.98740924517897, 49.987427281475746, 49.98744529193459, 49.9874632765925, 49.9874812354864, 49.98749916865318, 49.98751707612968, 49.98753495795266, 49.98755281415888, 49.987570644785016, 49.987588449867694, 49.98760622944351, 49.987623983548986, 49.987641712220615, 49.98765941549483, 49.987677093408024, 49.987694745996514, 49.9877123732966, 49.987729975344514, 49.98774755217644, 49.98776510382851, 49.98778263033682, 49.987800131737394, 49.98781760806622, 49.98783505935925, 49.987852485652354, 49.98786988698138, 49.9878872633821, 49.98790461489026, 49.98792194154155, 49.987939243371606, 49.987956520416006, 49.987973772710305, 49.98799100028997, 49.988008203190454, 49.988025381447144, 49.98804253509537, 49.98805966417043, 49.98807676870755, 49.98809384874193, 49.988110904308705, 49.98812793544296, 49.988144942179744, 49.98816192455404, 49.988178882600785, 49.988195816354875, 49.98821272585114, 49.98822961112438, 49.988246472209326, 49.98826330914068, 49.98828012195307, 49.98829691068109, 49.98831367535929, 49.988330416022144, 49.988347132704114, 49.98836382543957, 49.98838049426286, 49.98839713920829, 49.98841376031008, 49.98843035760243, 49.98844693111949, 49.98846348089534, 49.98848000696403, 49.98849650935955, 49.988512988115836, 49.98852944326679, 49.98854587484625, 49.98856228288802, 49.98857866742583, 49.98859502849337, 49.98861136612429, 49.98862768035219, 49.9886439712106, 49.988660238733026, 49.98867648295291, 49.98869270390364, 49.988708901618566, 49.988725076130976, 49.98874122747412, 49.988757355681194, 49.98877346078534, 49.98878954281965, 49.98880560181718, 49.988821637810915, 49.9888376508338, 49.98885364091874, 49.988869608098575, 49.98888555240668, 49.98890147387692, 49.98891737254189, 49.9889332484341, 49.988949101586016, 49.98896493203006, 49.98898073979862, 49.98899652492404, 49.98901228743861, 49.98902802737461, 49.98904374476424, 49.989059439639675, 49.989075112033056, 49.98909076197647, 49.98910638950197, 49.989121994641565, 49.98913757742722, 49.98915313789086, 49.98916867606437, 49.98918419197958, 49.989199685668304, 49.9892151571623, 49.98923060649327, 49.9892460336929, 49.989261438792816, 49.98927682182462, 49.989292182819845, 49.98930752181001, 49.989322838826574, 49.989338133900965, 49.989353407064556, 49.9893686583487, 49.98938388778469, 49.98939909540378, 49.98941428123719, 49.989429445316084, 49.989444587671606, 49.989459708334834, 49.989474807336826, 49.989489884708576, 49.98950494048106, 49.989519974685194, 49.98953498735186, 49.989549978511896, 49.989564948196104, 49.98957989643523, 49.98959482326, 49.98960972870108, 49.9896246127891, 49.98963947555465, 49.98965431702827, 49.98966913724047, 49.98968393622172, 49.98969871400242, 49.989713470612976, 49.98972820608372, 49.98974292044493, 49.98975761372688, 49.98977228595977, 49.98978693717378, 49.989801567399034, 49.98981617666562, 49.98983076500359, 49.98984533244293, 49.98985987901363, 49.989874404745585, 49.989888909668686, 49.98990339381276, 49.989917857207615, 49.989932299882994, 49.98994672186861, 49.98996112319414, 49.98997550388921, 49.989989863983396, 49.99000420350626, 49.99001852248728, 49.990032820955946, 49.99004709894165, 49.99006135647379, 49.99007559358169, 49.99008981029465, 49.990104006641914, 49.9901181826527, 49.990132338356176, 49.990146473781465, 49.99016058895766, 49.99017468391379, 49.990188758678876, 49.990202813281854, 49.99021684775167, 49.99023086211717, 49.990244856407216, 49.99025883065058, 49.990272784876026, 49.990286719112255, 49.99030063338794, 49.990314527731705, 49.99032840217214, 49.990342256737776, 49.990356091457116, 49.99036990635862, 49.99038370147071, 49.990397476821755, 49.990411232440096, 49.99042496835401, 49.990438684591766, 49.990452381181555, 49.990466058151554, 49.99047971552988, 49.990493353344625, 49.99050697162382, 49.990520570395475, 49.99053414968754, 49.99054770952793, 49.99056124994453, 49.990574770965154, 49.9905882726176, 49.99060175492963, 49.990615217928934, 49.99062866164318, 49.9906420861, 49.99065549132697, 49.99066887735163, 49.99068224420147, 49.99069559190401, 49.99070892048773, 49.99072222998042, 49.990735520409295, 49.99074879180152, 49.99076204418423, 49.99077527758452, 49.990788492029445, 49.990801687546046, 49.990814864161315, 49.9908280219022, 49.99084116079565, 49.990854280868525, 49.99086738214769, 49.99088046465997, 49.99089352843215, 49.99090657349098, 49.990919599863176, 49.99093260757541, 49.990945596654335, 49.99095856712656, 49.99097151901867, 49.990984452357196, 49.990997367168646, 49.991010263479495, 49.99102314131618, 49.9910360007051, 49.99104884167263, 49.9910616642451, 49.9910744684488, 49.99108725431001, 49.99110002185495, 49.991112771109805, 49.99112550210075, 49.9911382148539, 49.991150909395344, 49.99116358575114, 49.99117624394731, 49.99118888400983, 49.99120150596467, 49.99121410983772, 49.99122669565487, 49.99123926344198, 49.99125181322486, 49.99126434502926, 49.991276858880944, 49.991289354805616, 49.99130183282895, 49.991314292976575, 49.99132673527411, 49.9913391597471, 49.991351566421095, 49.99136395532158, 49.99137632647404, 49.991388679903885, 49.99140101563652, 49.99141333369729, 49.991425634111536, 49.99143791690454, 49.99145018210155, 49.991462429727804, 49.99147465980847, 49.99148687236871, 49.99149906743363, 49.99151124502832, 49.99152340517782, 49.991535547907155, 49.99154767324128, 49.991559781205154, 49.99157187182367, 49.99158394512172, 49.99159600112412, 49.99160803985569, 49.991620061341195, 49.99163206560536, 49.99164405267288, 49.991656022568435, 49.991667975316645, 49.99167991094211, 49.99169182946938, 49.991703730922985, 49.99171561532741, 49.99172748270712, 49.99173933308652, 49.99175116649002, 49.99176298294194, 49.99177478246662, 49.99178656508833, 49.99179833083133, 49.99181007971981, 49.99182181177796, 49.991833527029925, 49.9918452254998, 49.99185690721167, 49.99186857218957, 49.991880220457496, 49.99189185203942, 49.99190346695928, 49.991915065240974, 49.99192664690836, 49.99193821198527, 49.9919497604955, 49.991961292462804, 49.99197280791091, 49.99198430686352, 49.99199578934427, 49.99200725537679, 49.992018704984666, 49.992030138191446, 49.99204155502065, 49.99205295549575, 49.99206433964021, 49.992075707477426, 49.99208705903078, 49.99209839432361, 49.992109713379236, 49.99212101622092, 49.99213230287191, 49.99214357335539, 49.99215482769455, 49.99216606591251, 49.99217728803237, 49.992188494077205, 49.99219968407003, 49.99221085803384, 49.992222015991615, 49.992233157966254, 49.99224428398066, 49.99225539405769, 49.992266488220125, 49.99227756649028, 49.9922886288908] +E_W = 0.0